如何保证Android应用只能在平板电脑上运行?
我的 Android 应用程序是专门为平板电脑设计的,我不希望它在手机上运行。
如何确保应用程序只能在平板电脑上运行?
谢谢。
My Android app is specifically designed for tablet, and I do not want it to run on mobile phones.
How to ensure the app can only be run on a tablet ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
其他问题被链接为重复项,所以这里是替代答案:
是的,进入 Android 市场发布者页面。
确保您的应用已上传。
单击您的应用程序名称。
向下滚动到“显示设备”所在的位置。
点击该按钮,您可以阻止所有手机下载您的
应用程序。
如果失败,您可以在清单中设置屏幕尺寸等的一些参数,但这不太可靠。
Other question got linked as a duplicate, so here is the alternative answer:
Yes go into the android market publisher page.
Make sure your app is uploaded.
Click on your app name.
Scroll down to where it says 'Show devices'.
Click that and you can exlude all mobile phones from downloading your
app.
Failing that you can set some parameters in your manifest for screen size etc, but this is less reliable.
将清单文件中的最小和目标 SDK 版本设置为 11。
或者,如果在 Eclipse 中进行编辑,请在 Manifest Extras 中选择 Uses Sdk 并在其中输入它们。
Set the min and target SDK version in the manifest file to 11.
Or if editing in Eclipse, select Uses Sdk in Manifest Extras and enter them there.