wysiwyg
wysiwyg

Reputation: 85

Supporting /restricting android app only for normal resolution?

Say if I decided to support only normal 320X480 screen resolution for the first release of my app,

Will these lines, hide the app from the high and small resolution screens on android market ?

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

If not can some one point in the right direction as to how to make sure that the app is not visible or available for download for rest of the screens ?

Thanks in advance.

Upvotes: 0

Views: 941

Answers (2)

Guzba
Guzba

Reputation: 2671

If you only want to support 320x480 screen resolution, you can simply use Android 1.5 as your build target. This will force all devices to emulate HVGA if they don't have that as their native display.

Upvotes: 1

nicholas.hauschild
nicholas.hauschild

Reputation: 42834

The Android Documentation says this about android:normalScreens

http://developer.android.com/guide/topics/manifest/supports-screens-element.html#normal

HVGA medium density screens, WQVGA low density screens, and WVGA high density screens are included in this group.

I do not believe there is a way to restrict your app to one specific screen resolution.

Upvotes: 0

Related Questions