Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I ensure that my app is only available to phones on Android Market?

I have an application that has not yet been optimised for xlarge tablet screens, so I have the following code the manifest:

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

However, when I upload the .apk file to Android Market, it tells me:

API level: 4-12+
Supported screens: small-xlarge
OpenGL textures: all

I know that it is currently possible to filter an application to only run on phones with:

<uses-sdk android:maxSdkVersion="10" />

...but I want the application to be available for phones running Ice Cream Sandwich when they appear.

like image 256
jdamcd Avatar asked Aug 28 '11 19:08

jdamcd


1 Answers

did you try using: http://developer.android.com/guide/topics/manifest/compatible-screens-element.html

<compatible-screens>    

Android Market filters the application if the device screen size and density does not match any of the screen configurations ....

like image 85
Chris Avatar answered Oct 14 '22 22:10

Chris