Publish an Android App on Google Play only for smartphone -


for day i've looked way pubblish android app on google play store smartphone.

i found way http://developer.android.com/guide/practices/screens-distribution.html#filteringhansetapps:

<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" />         <screen android:screensize="small" android:screendensity="480" />         <screen android:screensize="small" android:screendensity="560" />         <!-- 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" />         <screen android:screensize="normal" android:screendensity="480" />         <screen android:screensize="normal" android:screendensity="560" />     </compatible-screens> 

but result more strange.. application appeared compatible device , other not no apparently sense. example: application compatible : galaxy s6, galaxy s6 edge plus , google nexus 6 not samsung galaxy s6 edge .

what have obtain goal pubblish app smartphone , not tablet or minipc ?

p.s : there way see result of manifest modification without re-pubblish app every time ?

edited :: changed entire answer.

<screen android:screensize="small" android:screendensity="xxdpi" /> <screen android:screensize="small" android:screendensity="xxxhdpi" /> <screen android:screensize="small" android:screendensity="tvdpi" />   <screen android:screensize="normal" android:screendensity="xxdpi" /> <screen android:screensize="normal" android:screendensity="xxxhdpi" /> <screen android:screensize="normal" android:screendensity="tvdpi" /> 

so after clarifying question precisely figured missing 6 lines of code densities small , normal screen sizes.

let me know if solve samsum s6 edge issue.


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -