android - Filters for phone and tablets in Google Play -


i want put filter application google play.
want display application phone devices , not tablet users.

so kind of filter can put except <screen-supports> ?
there specific filter phone or tablet or pads?

declaring app tablets;

  <supports-screens android:smallscreens="false"                        android:normalscreens="false"                        android:largescreens="true"                        android:xlargescreens="true"                        android:requiressmallestwidthdp="600" /> 

declaring app handsets

<compatible-screens>         <!-- small size screens -->         <screen android:screensize="small" android:screendensity="ldpi" />         <screen android:screensize="small" android:screendensity="mdpi" />         <screen android:screensize="small" android:screendensity="hdpi" />         <screen android:screensize="small" android:screendensity="xhdpi" />         <!-- normal size screens -->         <screen android:screensize="normal" android:screendensity="ldpi" />         <screen android:screensize="normal" android:screendensity="mdpi" />         <screen android:screensize="normal" android:screendensity="hdpi" />         <screen android:screensize="normal" android:screendensity="xhdpi" />     </compatible-screens> 

for detailed information : http://developer.android.com/guide/practices/screens-distribution.html#filteringhandsetapps

edit: no selector xxhdpi in compatible-screens can use; tablet:

<supports-screens android:smallscreens="false"                       android:normalscreens="false"                       android:largescreens="true"                       android:xlargescreens="true" /> 

phone :

<supports-screens android:smallscreens="true"                      android:normalscreens="true"                      android:largescreens="false"                      android:xlargescreens="false" /> 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -