Google Play Distributing to Phones only

Posted by Bororo on Stack Overflow See other posts from Stack Overflow or by Bororo
Published on 2012-12-04T23:03:02Z Indexed on 2012/12/04 23:03 UTC
Read the original article Hit count: 138

I read the guide Distributing to Specific Screens and i tried both

<compatible-screens
   android:smallScreens="false"
   android:normalScreens="false" 
   android:largeScreens="true"
   android:xlargeScreens="true"/> 

and

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

even combined (iknow... i know... :D)

But i can't seem to be able to limit my app from showing up in searches from my tablet (and of course it also installs)

The reverse setting works though..

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

my phone appears incompatible with the tablet version of the APK. What gives? is there something i'm not getting in the way that Google play filters using the Manifest?

© Stack Overflow or respective owner

Related posts about android

Related posts about android-manifest