Android: Disable to install app on tablets

11,843

Solution 1

To install app if we are using adb install command , it's not possible to restict app installation only to tablets or phones. Also if we give tag in menifest it's only applicable for the Google Play store filter, to check this you can try following code, put it into your menifest and try to install it in 7 inch tablet, it will allow,

<supports-screens
        android:largeScreens="false"
        android:largestWidthLimitDp="600"
        android:normalScreens="true"
        android:smallScreens="true"
        android:xlargeScreens="false" />

By using this code Google play store filters and restrict while installing only, but not in other cases as sharing apk, or installing in emulator.

So, to restrict the app installation to certain device when you upload APK at market , you need to do this Applications->select your application->APK-> Supported devices | Excluded devices

Solution 2

Just follow the doc Declaring an App is Only for Handsets and do not use the example from the accepted answer because of: (from FilteringTabletApps)

Caution: If you use the element for the reverse scenario (when your application is not compatible with larger screens) and set the larger screen size attributes to "false", then external services such as Google Play do not apply filtering. Your application will still be available to larger screens, but when it runs, it will not resize to fit the screen. Instead, the system will emulate a handset screen size (about 320dp x 480dp; see Screen Compatibility Mode for more information). If you want to prevent your application from being downloaded on larger screens, use , as discussed in the previous section about Declaring an App is Only for Handsets.

Share:
11,843
Stepan Sanda
Author by

Stepan Sanda

Updated on June 30, 2022

Comments

  • Stepan Sanda
    Stepan Sanda almost 2 years

    I'm working on app that should be installed only on phones and not tablets.

    I want to ask, how can I restrict to install only on phones?

    I was reading this article, but it seems pretty old to me: Distributing to Specific Screens

    They are not talking about xxhdpi or xxxhdpi resolutions at all and devices are divided by screen size. It could work few years ago, but now? For example Nexus 6 has 6" screen size - it can be considered almost like tablet.

    Do you know any working solution?