如果不满足功能,则阻止用户安装我的应用程序
我正在开发一个应用程序,它的主要需求是自动对焦相机。如果用户没有自动对焦相机,如何阻止他们安装此应用程序?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在开发一个应用程序,它的主要需求是自动对焦相机。如果用户没有自动对焦相机,如何阻止他们安装此应用程序?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
好吧,如果您确实想阻止用户在没有自动对焦相机的情况下安装您的应用程序,那么您可以在 info.plist 文件中添加“UIRequiredDeviceCapability”键,并可以向其中添加“auto-focus-camera”值。欲了解更多信息,您可以访问我的博客条目 - http://www.makebetterthings.com/blogs/iphone/how-to-prevent-apps-to-being-installed-on-wrong-or-incapable-devices/
well if you really want to prevent users from installing your app if they don't have a autofocus camera then you can add "UIRequiredDeviceCapabilities" key in your info.plist file and can add "auto-focus-camera" value to it. for more info you can visit my blog entry - http://www.makebetterthings.com/blogs/iphone/how-to-prevent-apps-to-being-installed-on-wrong-or-incapable-devices/
您需要 Info.plist 的
UIRequiredDeviceCapability
键(请参阅 Apple 文档);具体来说,就是自动对焦相机功能。You need the
UIRequiredDeviceCapabilities
key of your Info.plist (see Apple's documentation); specifically, the capabilityauto-focus-camera
.您需要向 Info.plist 文件添加
UIRequiredDeviceCapability
键。那个键是一本字典;您需要将它的auto-focus-camera
设置为 true。请参阅 功能的完整列表和更多详细信息。
You need to add a
UIRequiredDeviceCapabilities
key to your Info.plist file. That key is a dictionary; you need it to containauto-focus-camera
set to true.See the full list of capabilities and more details.
查看 Info.plist 文件中的 UIRequiredDeviceCapability 键。如果您将“自动对焦相机”作为该数组中的项目之一,则除非设备具有该功能,否则不应安装应用程序。
玩得开心!
Check out the UIRequiredDeviceCapabilities key in your Info.plist file. If you include "auto-focus-camera" as one of the items in that array, the app shouldn't install unless the device has that capability.
Have fun!