I have made an app but not designed a UI compatible with tablets and until I do, I would like to take it off the market for tablets. The problem is however that to use:
<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"/>
I need to bump up the SDK version s开发者_StackOverflow中文版o that using xlargeScreens doesn't cause an error. This would limit the number of devices at the required minSdkVersion, something that I do not want to cut off.
It seems like a problem that shouldn't really be happening, could anyone help me out?
According to the SDK docs, maxSdkVersion
is not longer enforced by Android after 2.01. However, the Google Android Market will filter the app for download based on it.
http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#max
When you submit to Amazon AppStore you can select the form factor of phone only. Sorry, don't know the answer for Google Android Market.
精彩评论