Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play tablet optimization tips - how to resolve issues?

When listing an app in Google Play the optimization tips tells me 3 issues:

WHAT YOU SHOULD DO  WHY WE ARE PROPOSING THIS   
Design your app for tablets
Your APK needs to meet the following criteria:
1) Target and minimum Android versions support tablets (check targetSdkVersion and     minSdkVersion). Learn more
2) Supports common tablet screen sizes (LARGE and XLARGE). Learn more
3) Includes custom drawables and assets for common tablet screen densities. Learn more

Here is my manifest concerning the first 2 issues:

<uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="17" />

<supports-screens android:smallScreens="false"
                 android:normalScreens="true"
                 android:largeScreens="true"
                 android:xlargeScreens="true"
                 android:requiresSmallestWidthDp="480" />

The "Learn more" link sends me off to the instructions. The app works on phones but I'm targeting tablets so I want Google play to know it is tablet compatible. What am I doing wrong here? I'm still in the "alpha/ready-to-publish" phase so I cant tell if it really will get listed in the tablet section yet...

like image 333
WigglyWorld Avatar asked May 21 '13 16:05

WigglyWorld


People also ask

What happens if I clear all data on Google Play Services?

Clearing the cache will remove temporary files associated with Google Play on your device, while clearing the data will remove any personal settings. When troubleshooting a problem, you can clear both. Clearing your Google Play cache and data will not delete any apps or other programs you have downloaded.


1 Answers

I had this problem too - I think the Optimization Tips only refer to the "Production" APK, not an alpha/beta one, so if you don't have a production APK, it gives all these warnings. When I transferred the APK to production, the warnings went away. (Beware, you can't move an APK back from Production to Alpha/Beta, or otherwise remove it, so unfortunately this isn't useful as an easy way to check.)

like image 187
mark Avatar answered Oct 12 '22 12:10

mark