本文介绍了Xcode错误:“应用程序ID无法注册到您的开发团队."的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们正在为客户端将Android应用移植到iOS.他们已将我们的帐户添加到其iTunes Connect帐户并创建了一个应用程序条目.我们使用他们指定的捆绑ID开发了该应用.

We are porting an Android app to iOS for a client. They have added our account to their iTunes Connect account and created an app entry. We developed the app using the bundle ID they specified.

但是,现在,当应用程序准备好进行测试时,我们无法在Xcode中创建配置文件.设置为自动签名,并显示此错误:

But now, when the app is ready for testing, we can't create a provisioning profile in Xcode. It is set to Automatic signing and this error is shown:

应用程序ID< bundle-id>"无法注册到您的开发团队.将您的捆绑包标识符更改为唯一的字符串,然后重试.

The app ID "<bundle-id>" cannot be registered to your development team. Change your bundle identifier to a unique string to try again.

我们的帐户已被添加为其iTunes Connect帐户中的应用程序管理器,但仍然无法使用此ID进行输出.如果我们更改Xcode中的包ID,则不会显示此错误.

Our account is added as an App Manager in their iTunes Connect account, but still we can't take output with this ID. This error is not shown if we change the bundle ID in Xcode.

推荐答案

在一台Mac上遇到相同的问题,但在另一台Mac上满足.我确定捆绑包ID很好并且唯一.

Meet same Issue on one mac, but ok on another mac.I'm sure bundle ID is fine and unique.

我知道这是配置文件问题,所以尝试刷新本地计算机上的配置文件.然后就行了!

I know it is provisioning profile issue, soTry refreshing the provisioning profile on your Local computer.Then It Works!

  1. cd〜/Library/MobileDevice/Provisioning \配置文件
  2. rm *
  3. Xcode>首选项...>帐户>点击您的帐户和团队名称>点击下载手册配置文件
  4. 再次运行应用

这篇关于Xcode错误:“应用程序ID无法注册到您的开发团队."的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 15:00