0

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?

Chilledrat
  • 2,593
  • 3
  • 28
  • 38

1 Answers1

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