Reputation: 339
I am using the code below to exclude other devices according to their screen size, but how would you know which one is which. Is Droid X and Droid Bionic is considered normal screen or large screen? And how about Android Tablet is it Large Screen Or XLargeScreen?
<supports-screens android:resizeable=["true"| "false"]
android:smallScreens=["true" | "false"]
android:normalScreens=["true" | "false"]
android:largeScreens=["true" | "false"]
android:xlargeScreens=["true" | "false"]
android:anyDensity=["true" | "false"]
android:requiresSmallestWidthDp="integer"
android:compatibleWidthLimitDp="integer"
android:largestWidthLimitDp="integer"/>
Upvotes: 0
Views: 832