I've built an app but due to layout issues in tablets i decided not to make the application available to them. I've put in manifest as.
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="11"
android:maxSdkVersion="12"/>
<supports-screens android:resizeable="false"
android:smallScreens="true" android:normalScreens="true"
android:largeScreens="false" android:anyDensity="false" />
but still application can be installed on tablets..
I think you can use compatible-screens as described here for specific installations...
More Here
I have meet the same problem, don't require any tag. just use it, it will work like charm.
<screen android:screenSize="small" android:screenDensity="ldpi" />
<screen android:screenSize="small" android:screenDensity="mdpi" />
<screen android:screenSize="small" android:screenDensity="hdpi" />
<screen android:screenSize="small" android:screenDensity="xhdpi" />
<screen android:screenSize="normal" android:screenDensity="ldpi" />
<screen android:screenSize="normal" android:screenDensity="mdpi" />
<screen android:screenSize="normal" android:screenDensity="hdpi" />
<screen android:screenSize="normal" android:screenDensity="xhdpi" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With