有什么方法可以将 Android 应用程序安装限制在手机上吗?通过代码/游戏商店?我不希望我的应用安装在平板电脑上
问问题
425 次
3 回答
1
我不知道任何优雅的方式来做到这一点。但这可能会帮助你。基本上它消除了大屏幕。
<manifest>
....
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"
android:anyDensity="true"
android:compatibleWidthLimitDp="integer"
android:largestWidthLimitDp="integer"/>
<application>
......
</application>
<manifest>
于 2013-10-23T13:29:01.277 回答
0
...为此,您可以通过向清单文件添加元素来启用外部服务(例如 Google Play)的过滤,这些元素指定您的应用程序支持的屏幕配置。
来源: http: //developer.android.com/guide/practices/screens-distribution.html#FilteringHansetApps。
于 2013-10-23T13:28:24.517 回答