0

I'm working on an application where I want to have two different APK's for Phone and Tablet. How do I restrict apk in mainifest file using support screen. I'm very confused with new attributes like android:requiresSmallestWidthDp and android:largestWidthLimitDp. Please help me out.

1 Answers1

0

you have to mention like this in manifest

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

have a look at This

Manohar
  • 22,116
  • 9
  • 108
  • 144