質問

I have an application in the market that I want only Nexus S-users to be able to download. How can I do this?

There is a "Supported Devices" in the publishing process, but I dont want to exclude devices 700times.

Can I in the manifest support only the Nexus S?

Dag

役に立ちましたか?

解決

I'm not sure why you would want to exclude all other devices instead of the filtering by features of the device, but I'd suggest following the directions for Market Filters in the Android Developer Documentation that is provided by Google. I'd suggest using the Nexus S specs as the minimum specs and go from there.

EDIT: Google recently released a Device Availability Dialog in the Developer Console that allows you to understand which devices can run your application, as well as allowing you to filter out devices that you don't want to run your application.

他のヒント

Try this in your manifest:

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

good luck

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top