fhucho
fhucho

Reputation: 34550

How can I prevent my app from showing in Android Market on tablets?

How can I prevent my app from showing in Android Market on large and xlarge screens (tablets)?

Upvotes: 1

Views: 133

Answers (2)

karora
karora

Reputation: 1303

In your android manifest you need to add a stanza like this:

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

Upvotes: 1

inazaruk
inazaruk

Reputation: 74790

You should read this documentation: Distributing to Specific Screens, specifically section named Declaring an App is Only for Handsets:

Upvotes: 2

Related Questions