Many tablets like Galaxy Tab report as large
screens, instead of xlarge
. So if I filter out tablets from using my app via
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"
/>
Does it mean that no tablet will be able to see my app on Play Store? Not even Galaxy Tab and similar devices (which are recognized as large-hdpi
?
The same thing. If I make a tablet app and want it to be used only by tablet and set it via
<supports-screens
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="true"
/>
Will any Galaxy Tab or similar device be able to see this app?