Reputation: 18276
I already read the http://developer.android.com/guide/practices/screens_support.html
My question is, how can I filter on Google Play only for Galaxy Tab 7.0 (Android 2.2) or higher?
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="11" />
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:smallScreens="false"
android:xlargeScreens="true" />
I actually did that, but it's looks like that great phones like Galaxy S2 or XPeria Arc has "large" screens so this app will be available for those too. How can I filter that?
Upvotes: 0
Views: 113
Reputation: 9657
After uploading to Google play, you can manually filter out the extra devices that you don't to support.
This link has extra information on this subject.
Upvotes: 2