Adham
Adham

Reputation: 64844

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 ?

Upvotes: 1

Views: 86

Answers (2)

Henry
Henry

Reputation: 43738

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"/>

Upvotes: 2

Alexander
Alexander

Reputation: 48262

You can use supports-screens and largestWidthLimitDp

see the docs here: http://developer.android.com/guide/topics/manifest/supports-screens-element.html

And overall explanation here http://developer.android.com/guide/practices/screens_support.html

Upvotes: 1

Related Questions