gpt4 book ai didi

ios - 由于 iCloud 组件,无法将开发应用程序分发到 Testflight

转载 作者:行者123 更新时间:2023-11-29 11:35:08 29 4
gpt4 key购买 nike

我正在尝试通过 Appcenter 将应用上传到 testflight,并且我有 icloud 文档存储功能,因此我在 enlistement.plist 中添加了以下征集:

<?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.developer.icloud-services</key>
<array>
<string>CloudKit</string>
<string>CloudDocuments</string>
</array>
<key>com.apple.developer.icloud-container-identifiers</key>
<array>
<string>iCloud.com.company.appname</string>
</array>
<key>com.apple.developer.ubiquity-kvstore-identifier</key>
<string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
</dict>
</plist>

我遵循了这个教程: https://developer.apple.com/library/content/technotes/tn2415/_index.html enter image description here

但是当我尝试将发布推送到 itunes 连接到 testflight 时,我收到此错误:

DEBUG [2018-04-24 06:34:46.43]: [Transporter]: DBG-X: parameter ErrorMessage = ERROR ITMS-90046: "Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value 'Development' for key 'com.apple.developer.icloud-container-environment' in 'Payload/App.MobileApp.iOS.app/App.MobileApp.iOS' is not supported."

我的证书分发和配置文件已按照此处的建议设置为生产:What kind of Certifcate and Provisioning Profile is needed for an iOS Apple TestFlight release? .

最佳答案

我花了很多时间试图弄清楚如何在 App Center 上解决这个问题,我想出了一个解决方法。

使用此名称在您的权利中定义一个 key :com.apple.developer.icloud-container-environment

它将包含一个带有字符串值的数组:生产

您的权利将如下所示:

<key>com.apple.developer.icloud-container-environment</key>
<array>
<string>Production</string>
</array>

确保您的构建定义处于 Release 或 AppStore 模式,并且您在配置文件中拥有正确的权利,您应该没问题。

解释:我认为通过 AppCenter 检查您的权利的过程在获得可用于您的构建的环境时会获得这两个值,而不是使用 Xcode/VS Studio/Itunes Connect 在通过 Apples Developer Account 验证您的配置文件环境时使用的过程API。

希望这对你有用。

关于ios - 由于 iCloud 组件,无法将开发应用程序分发到 Testflight,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50006896/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com