android - Restrict the build installing in the 10" Tab -
i have added following lines manifest.xml
, still install .apk in 10" devices . want .apk file installed in 7" tablet .
<supports-screens android:smallscreens="false" android:normalscreens="false" android:largescreens="true" android:xlargescreens="false" android:requiressmallestwidthdp="600" android:largestwidthlimitdp="700"/> <compatible-screens> <!--no small size screens --> <!--no normal size screens --> <!-- large size screens --> <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" /> <!-- no xlarge size screens --> </compatible-screens>
i don't know going wrong . in advance .
<supports-screen>
, <compatible-screens>
affects google play store downloading (i.e., devices not compatible not show install targets). however, sideloading apk gets around google play compatibility filtering (as google play not involved).
Comments
Post a Comment