iTunes Store operation failed. You must supply a CFBundleIdentifier for this request

扶醉桌前 提交于 2019-12-12 12:14:03

问题


i just signed up for this place, i have made app everything is working fine with app all the certificates and files are updated but when i try to upload to app store from xcode i keep getting this error. if anybody could help me to fix it it will be great thank you

iTunes Store operation failed.You must supply a CFBundleIdentifier for this request.


回答1:


Your info.plist application is wrong. open your info.plist,"Bundle OS Type code" is null.I met the same problem,and add "APPL" to "Bundle OS Type code",that's OK.




回答2:


Your info.plist configuration is wrong. open your info.plist,"Bundle OS Type code" is null.I met the same problem,and add "APPL" to "Bundle OS Type code",that's OK. See image here




回答3:


Login in Apple Developer, go to Certificates*Profiles, delete all development and distribute signing certificates and provisioning profiles. Then in Xcode8 you select "Automatically manage signing", recreate signing certificates and provisioning profiles,archive and upload to appstore again.




回答4:


This one nearly put me mad. How I fixed it was creating a test project and doing an archive on it, and validate, which passed. I then copies all of the build setting from the test project to my project and thankfully everything worked. I know its along way off doing it, but it works.




回答5:


this is what i have done and it did work for me

i did have to explicitly add the bundle identifier in the .plist file like this

<key>CFBundleIdentifier</key>
<string>com.AppIdentifier</string>

instead of

<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>

the reason might be that i do have multiple target in the project and i was uploading the app from the application loader

please note that in both cases i was able to archive successfully

env. Xcode 10.1 High Sierra 10.13.6



来源:https://stackoverflow.com/questions/38277355/itunes-store-operation-failed-you-must-supply-a-cfbundleidentifier-for-this-req

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!