-1

I am creating an app in Android Studio.
While creating the app I select the phone and tablet option in Android Studio. But I need to set the project to be tablet-only.
How to make it tablet-only?

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
teena
  • 41
  • 8

1 Answers1

0

Please keep below lines in your AndroidManifest.xml file to support only for tablet.

<manifest ... >
<supports-screens android:smallScreens="false"
                  android:normalScreens="false"
                  android:largeScreens="true"
                  android:xlargeScreens="true"
                  android:requiresSmallestWidthDp="600" />
...
<application ... >
    ...
</application>

Sai's Stack
  • 1,345
  • 2
  • 16
  • 29