Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I upgraded my OSX from Snow Leopard to Lion and I downloaded Xcode 4.3.1 Now when I try to validate and publish my app I get the first screenshot. If I click on Download Identifier button I get the second screenshot.

Any suggest?

enter image description here

enter image description here

share|improve this question
2  
Got the same problem, and this worked for me : stackoverflow.com/a/11230464/1474817 – emotality Jan 14 at 15:05

7 Answers

up vote 3 down vote accepted

The certificates you created for signing your application are only valid on the machine (+ OS) which you used to create them. They can be migrated to another machine but if you already updated without doing so, I recon that this is not an option anymore. I also don't know what the "Import Developer Profile" button does (I guess it's fairly new) but you could try that out. If this doesn't do the trick, don't worry. Just log on your ADC account, revoke the old certificates, create new ones and modify your project accordingly. (Just like you did, when you first created them.)

share|improve this answer
Here is a reference on starting over fresh.[link] (developer.apple.com/library/ios/technotes/tn2250/_index.html#//…) – Andrew Thomas Oct 29 '12 at 4:12

I had this same exact error after upgrading my Xcode from 4.2.x? to 4.3.1 via the app store. I did not upgrade my OS or any hardware, and my certificates were only about 2 months old. I has submitted an app update just days before this starting happening and I feel 100% sure that something in the Xcode upgrade caused it to happen.

After a few days fiddling with it by rejecting my developer certificates and updating all the apps and provisions profiles, as well as distribution profiles. I noticed something.. See screen shot. --- The certificate that I was signing the app with was in the group "Identities with out Provisioning Profiles" I went back into the developer provisioning portal and downloaded the distribution certificate for my app, and added to my system, then updated the code signing identity with the correct certificate and I was able to get past this issue. enter image description here

In short this message may suggest, you signed the archive with the wrong certificate. check it and make sure its the one for your app for distribution and it should work.

Happy Programing!

share|improve this answer
Thanks a million! Your answer got me on the right track. – Jonatan Apr 1 at 15:15

I had this problem when we tried to upload an app too. We solved it in a way that I still don't understand completely, but I had an App ID that included some kind of ID in front of it like this: XXXXXXXXXX.com.plexical.start.bask. I put that string in my *-Info.plistfile. After having the problem above, I switched from automatic Code Signing Identity to manual and selected the same Distribution as the automatic one. Then I got a readable error from XCode complaining that the App ID didn't match com.plexical.start.bask:

enter image description here

I proceeded to change the App ID to com.plexical.start.bask in the *-Info.plist file and after that I was able to submit the App. I still don't understand completely why, but it worked for me.

share|improve this answer

In my case it was missing distribution provisioning profile.

share|improve this answer

Maybe your distribution provisioning profile is out-of-date. Just goto https://developer.apple.com/ios/manage/provisioningprofiles/viewDistributionProfiles.action and click the "Modify". After that download the provisioning profile.

share|improve this answer

I come to know how to resolve this problem, It is quite simple, you just need to add an additional distribution provision profile in ios developer center.

  1. Log into ios developer center.
  2. Enter ios Provision portal.
  3. Select provision on left column.
  4. Select the Distribution tab on top in details column.

I can't post the screenshot bcd because my reputation is not enough.

share|improve this answer

What happened to me was that my Distribution Provision Profile had expired. All I had to do was delete it and create/download a new Distribution Provision Profile. Xcode automatically installed it and went to the next screen.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.