I have an application that is not yet optimized for xlarge tablet screens, so I have the following manifest code:
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="false" />
However, when I upload the .apk file to the 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 the application only for working on phones:
<uses-sdk android:maxSdkVersion="10" />
... but I want the app to be available for phones using Ice Cream Sandwich when they appear.
source share