Android: restrict supported devices in Android Market

I have an application on the market that I want to allow Nexus S users to boot. How can i do this?

There are “Supported devices” during the publishing process, but I do not want to exclude devices for a while.

Can I only support the Nexus S in the manifest?

Doug

+3
source share
2 answers

I'm not sure why you would like to exclude all other devices instead of filtering by device functions, but I would suggest the following guidelines for Market filters in the Android developer documentation provided by Google. I would suggest using the Nexus S specifications as minimum specifications and moving on from there.

EDIT: Google recently released the Device Availability Dialog in the developer console , which allows you to understand which devices can run your application, and also allow you to filter devices that you do not want to run the application.

+7
source

Try this in your manifest:

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

luck

+1
source

All Articles