xcode – Mac App Store拒绝 – 未启用应用沙箱

前端之家收集整理的这篇文章主要介绍了xcode – Mac App Store拒绝 – 未启用应用沙箱前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已将我的应用程序提交到Mac App Store,并且验证正常.但是,我继续使用以下内容获取无效二进制消息;

App sandBox not enabled – The following executables must include the “com.apple.security.app-sandBox” entitlement with a Boolean value of true in the entitlements property list. Refer to the App SandBox page for more information on sandBoxing your app.

尽管在应用程序(应用程序和帮助程序)中启用了权限,但具有以下内容;

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>com.apple.security.app-sandBox</key>
    <true/>
</dict>
</plist>

不知道接下来要检查什么.

解决方法

好的,我自己解决了这个并在这里发布完整性.看起来尽管项目中存在权利文件,但除非应用程序经过编码,否则它将无法识别沙箱权利.这是即使应用程序验证成功.
原文链接:https://www.f2er.com/iOS/331416.html

猜你在找的iOS相关文章