Reputation: 1426
In xcode 6: I have problem while submitting app to app store that when i archive apps,it show me provisioning profile "none" as show in below image.
I have install all certificate in keychain as well.
can you please tell me how it show me such result.
In xcode 5 : it will give me "No identity found"
Upvotes: 3
Views: 5172
Reputation: 222
In my case this issue started with the recent Xcode update. For whatever reason, Xcode's automatic signing was failing to select the correct profile when archiving.
After sinking a few hours into toggling things, cleaning things and refreshing things, I simply disabled the "Automatically manage signing" setting and did it the old fashioned way.
That is, create relevant provisioning profiles in the Developer Console and select them manually in the "Signing" sections that appear after disabling automatic signing.
Upvotes: 2
Reputation: 6882
Try the following in xcode6:
1. Xcode->preferences->accounts->View Details->click the refresh button
2. click your project->click Targets->click build settings tab->choose your distribute provisioning profile in Code Signing
Then, try to submit your app again.
Upvotes: 0