I only want my app installed on a tablet and attempts to install it on a phone should be blocked. How do I do this?
Asked
Active
Viewed 68 times
0
-
http://stackoverflow.com/questions/11330363/how-to-detect-device-is-android-phone-or-android-tablet – Vny Kumar Oct 13 '14 at 08:47
-
Checkout http://stackoverflow.com/questions/5832368/tablet-or-phone-android/9590506#9590506 – forcewill Oct 13 '14 at 08:51
-
possible duplicate of [Determine if the device is a smartphone or tablet?](http://stackoverflow.com/questions/5832368/tablet-or-phone-android) – Himanshu Agarwal Oct 13 '14 at 08:57
1 Answers
0
add this in your manifest :
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:requiresSmallestWidthDp="600"
android:smallScreens="false"
android:xlargeScreens="true" />

TootsieRockNRoll
- 3,218
- 2
- 25
- 50