iTunes 连接 - 测试版权利缺失错误 [英] itunes connect - beta entitlement missing error

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

问题描述

我创建了一个新的 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 分发构建的权利

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?

有谁知道是什么问题?

提前致谢

推荐答案

我通过将 beta-reports-active 键额外添加到我的 Target 的 Entitlements.plist Xcode 项目中的文件.

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 键必须添加到配置文件到目标的权利.

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>

在将权利添加到我的目标后,我能够成功地将构建上传到 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 连接 - 测试版权利缺失错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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