问题描述
当我尝试使用应用程序加载器将我的iOS应用程序上传到应用程序商店时,我收到以下错误:
When I try to upload my iOS application to the app store using the application loader, I get the following errors:
这意味着配置文件无效。所以,我删除并重新制作配置文件,然后使用该配置文件存档应用程序,我仍然遇到此错误...我已将此应用程序上传到 iTunesConnect
之前,我没有错误,但现在,即使我没有对我的个人资料做任何事情,或在应用程序中更改它,我收到此错误。
This means that the provisioning profile is invalid. So, I deleted and re-made the provisioning profile, then archived the application using that profile, and I still got this error... I have uploaded this application to iTunesConnect
before, and I got no errors, but now, even though I didn't do anything with my profiles, or change it in the application, I'm getting this error.
我有有效和未过期的证书,我的捆绑ID是正确的。我拥有的分发配置文件是:
I have valid and non-expired certificates, and my bundle ID's are correct. The distribution provisioning profiles I have are:
我的应用程序名为 SloganGen
。
推荐答案
使用您附加的屏幕截图以查找错误&配置文件,看起来问题是区分大小写的名称。
With the Screenshot that you have attached for errors & provisioning profile, looks like the problem is with the "Case Sensitive" name.
简介: com.slogangen.slogangen
错误: com.slogangen.SloganGen
来自apple文档:
通常,Xcode项目中的软件包ID是一个格式为反向域名的字符串,例如com.MyCompany.MyProductName,您可以将MyCompanyName和MyProductName替换为您的域名和产品名称。但是,与域名不同,应用ID和包ID区分大小写。
希望有所帮助。
这篇关于XCode应用程序加载器 - 错误ITMS-9000无效的供应配置文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!