itunes connect - beta权利缺失错误 [英] itunes connect - beta entitlement missing error

查看:369
本文介绍了itunes connect - beta权利缺失错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个新的App Store Distribution配置文件,其中包含通过TestFlight分发构建的beta权利,我根据包含beta权利的新配置文件创建我的应用程序,当我提交我的应用程序时出现此错误:

I create a new App Store Distribution profile containing the beta entitlement to distribute builds via TestFlight, I create my application based on new profile that was contain beta entitlement, when I submit my application I got this error:


生成一个新的App Store Distribution配置文件,其中包含通过TestFlight分发版本的beta
权利

Generate a new App Store Distribution profile containing the beta entitlement to distribute builds via TestFlight

以下是我的配置资料:

<key>Entitlements</key>
<dict>
    <key>keychain-access-groups</key>
    <array>
        <string>XXXXXXX.*</string>
    </array>
    <key>get-task-allow</key>
    <false/>
    <key>application-identifier</key>
    <string>XXXXXXX.my.companyname.test</string>
    <key>com.apple.developer.team-identifier</key>
    <string>XXXXXXX</string>
    <key>beta-reports-active</key>
    <true/>

</dict>

我的构建中有beta-reports-active,我不知道为什么我得到这个错误我重新生成一切,苹果是否在2月1日之后更改/添加了一些提交过程/测试航班而没有公告?

I have "beta-reports-active" in my build, I do not know why I got this error I regenerate everything, does apple change/add something to the submission process/test-flight after 1 February without announcement?

有谁知道这是什么问题?

Does anyone knows what is the problem?

提前致谢

推荐答案

我通过另外添加<修复此问题code> beta-reports-active Xcode项目中我的Target的 Entitlements.plist 文件的关键字。

I fixed this issue by additionally adding the beta-reports-active key to my Target's Entitlements.plist file in the Xcode project.

Apple TestFlight上传警告ITMS-90191:缺少beta-reports-active权利

beta-reports-active 密钥必须添加到配置文件 AND 到目标的权利。

The beta-reports-active key must be added to the Provisioning Profile AND to the Target's entitlements.

TargetName.entitlements

<?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>beta-reports-active</key>
    <true/>

    // ...

</dict>
</plist>

将权利添加到我的Target后,我能够成功将构建上传到iTunes Connect TestFlight没有 ITMS-90191 警告:

After adding the entitlement to my Target, I'm able to successfully upload the build to iTunes Connect TestFlight without the ITMS-90191 warning:

这篇关于itunes connect - beta权利缺失错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆