开发者

Exact Filtering devices for Android Market place

开发者 https://www.devze.com 2023-04-04 15:48 出处:网络
we have an application which is supported on devices having resolution 480*800 and above.So it is supported in supporting handsets as well as tablets.

we have an application which is supported on devices having resolution 480*800 and above.So it is supported in supporting handsets as well as tablets.

the setting used in AndroidManifest.xml are as follows

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="13"/>
<compatible-screens>
<screen android:screenSize="normal" android:screenDensity="hdpi" />
<screen android:screenSize="normal" android:screenDensity="xhdpi" />

<screen android:screenSize="large"  android:screenDensity="ldpi" />
<screen android:screenSize="large"  android:screenDensity="mdpi" />
<screen android:screenSize="large"  android:screenDensity="hdpi" />
<screen android:screenSize="large"  android:screenDensity="xhdpi" />

<screen android:screenSize="xlarge" android:screenDensity="ldpi" />
<screen android:screenSize="xlarge" android:screenDensity="mdpi" />

</compatible-screens>

This setting is 开发者_运维问答filtering out lot devices, more interesting its filtering out all the tablets except 7 versions of galaxy tab 10.1.

Instead of compatible-screens, I used support-screens but it was not helpful. Please let me know the mistake done my end.

Thanks.

0

精彩评论

暂无评论...
验证码 换一张
取 消