如何正确设置UIRequiredDeviceCapability?

发布于 2024-09-25 01:18:33 字数 207 浏览 5 评论 0原文

我有一个应用程序被 Apple 拒绝,指出我需要在 info.plist 中实现 UIRequiredDeviceCapability,因为我的应用程序需要相机闪光灯。我理解这个问题,但我不确定如何正确设置此键。我是否将 UIRequiredDeviceCapability 创建为字典或数组?相机闪光灯是布尔值还是字符串?任何帮助表示赞赏!谢谢!

I have had an app rejected by Apple stating that I need to implement UIRequiredDeviceCapabilities in my info.plist due to my app requiring a camera flash. I understand the issue but I am not sure how to properly set this key. Do I create UIRequiredDeviceCapabilities as a dictionary or array? and camera-flash as a bool or string? Any help is appreciated! Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝礼 2024-10-02 01:18:33

将此文本添加到应用程序的 Info.plist 文件中:

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>camera-flash</string>
</array>

如果某些功能要求需要为 false,则仅需要字典。

来自文档的重要说明:

对于应用更新,您只能维持或放宽能力要求。提交带有附加要求的更新会阻止一些之前下载过您的应用的客户运行更新。

Add this text to your app's Info.plist file:

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>camera-flash</string>
</array>

You only need a dictionary if some of the capability requirements need to be false.

Important note from docs:

For app updates, you can only maintain or relax capability requirements. Submitting an update with added requirements would prevent some customers who previously downloaded your app from running the update.

痞味浪人 2024-10-02 01:18:33

在 Xcode 中 ->信息(info.plist)

添加密钥
UIRequiredDeviceCapbility

在该键中添加:

camera-flash

still-camera

In Xcode -> Info(info.plist)

add key
UIRequiredDeviceCapabilities

in this key add:

camera-flash

still-camera

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文