Search code examples
androidgoogle-playtablet

How to make my app NOT support tablets


When I am trying to publish my app on Google play, it is said that my app support tablets so I need to upload the screen shots of the tablets .

BUT I want to make my app for smartphones only. how ?


Solution

  • You can add a supports-screen element in the manifest.

    For example:

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