What should be the manifestation of an Android application that only supports a device, not a tablet. The size of the device may be different, but the maximum should be 7 inches.
I developed an application for different devices for tablet and tablet. Now I want to run as an assembly on the market, but after the manifest recording also supports a 10 inch tablet.
<uses-sdk
android:minSdkVersion="6"
android:targetSdkVersion="8" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="false" />
I want to limit the download of this assembly to a 10-inch tablet, and a tablet with 10-inch tablets should not load on a tablet other than 10 inches.
Please offer me the perfect manifest for this.
source
share