prevent tablet downloads of app

末鹿安然 提交于 2019-11-29 08:00:23
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"/>

But I suspect that it will prevent your app to run on Galaxy Tab but you can gave it a try

You can use the <compatible-screens> element to prevent, for example, devices with x-large screens from seeing your app in Google Play.

http://developer.android.com/guide/topics/manifest/compatible-screens-element.html

Haphazard

This question has been going around a lot recently and it seems that you cannot stop people from downloading and installing your app based on their device-type.

A couple things you can try are:

  1. Create an extra set of images for the higher def devices
  2. Check the resolution on initial app run and either tell them that their device is not supported (and exit) or warn them that it may not look so good.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!