Android application only for 10" tablets not latest phones -
how can limit app tablets? e.g. how back upwards galaxy tab not galaxy siii ? both have same resolution , density.
will code sufficient:
<supports-screens android:largescreens="false" android:normalscreens="false" android:requiressmallestwidthdp="720" android:smallscreens="false" android:xlargescreens="true" />
after reading docs again, having below section:
<compatible-screens> <screen android:screensize="xlarge" android:screendensity="mdpi" /> <screen android:screensize="xlarge" android:screendensity="hdpi" /> <screen android:screensize="xlarge" android:screendensity="xhdpi" /> </compatible-screens>
makes whole setup right one?
first of create above provisions in manifest
go console (developer's console)
https://play.google.com/apps/publish/
select app app listing. go apk tab (left side in page) you able see 'see supported devices' hyperlink open it,
you can see list of supported devices there. manually exclude devices not want.
android android-screen-support
No comments:
Post a Comment