A change is coming up on November 21 on Google Play. The applications considered by Google as not designed for tablets will be marked as designed for phones and, by default, won't appear for tablets (a setting will allow to switch to the former view, with all apps, but we can bet that most users won't change it). For B4A users, the minimum things to do to make an app "designed for tablet screens" are:
- set android:largeScreens to true in the Manifest editor (it is true by default);
- set targetSdkVersion to 11 or higher in the Manifest editor (it is set to 14 in new projects);
- add a folder \Objects\res\drawable-hdpi to your project and place the icon.png (minimum size 72x72) of your app inside;
- import at least two screenshots in the Tablet section (7" and 10") of the Google Play console.
- set android:largeScreens to true in the Manifest editor (it is true by default);
- set targetSdkVersion to 11 or higher in the Manifest editor (it is set to 14 in new projects);
- add a folder \Objects\res\drawable-hdpi to your project and place the icon.png (minimum size 72x72) of your app inside;
- import at least two screenshots in the Tablet section (7" and 10") of the Google Play console.