It seems all my searches to figure this out are fruitless. Knowing me it's one stupid checkbox or pulldown I'm missing. Is it maybe my install? Do I need to uninstall XCode4 and reinstall?

I've gone through all these steps and tricks and fixes all over the net and on SO, yet nothing gets me closer to getting an archive to pop up in my organizer. When I go to look at the archive that was built, it's just a zero k file. I get a build succeed, I change skip install to both yes and no ... I do all these things I find on the net, I'm going crazy. I'm pretty sure my certificates are all set up correctly, I have things checked where I'm told to be checked. It's driving me crazy. 99% of the solutions I see are:

"Anyway, in the "Skip Install", set the value for "Release" as "NO" (the help doc told you the opposite). Once you set it to "NO", archive again. You'll immediately see your app showing up in the archive organizer."

Well, it's not working or any further answers after aren't either.

link|improve this question
feedback

3 Answers

Just:

  1. Go to BuildSettings.
  2. Find "Skip Install".
  3. Select "NO" for Release.

That did worked for me.

link|improve this answer
feedback

Go through this checklist, and you should find an answer somewhere:

  1. Create a new scheme labeled "[App name]-AppStore"
  2. Create a build configuration labeled "Distribution" by duplicating release
    • Click the project and hit the + under build configurations in the "Info" tab.
  3. Set the archive to build as "Distribution" under the new scheme
  4. Verify all certificates
  5. Verify all provisioning profiles
  6. Verify your private key under your name in your keychain. (in the system keychain)
  7. Make sure that in the Distribution code signing, you are setting the profile to your iPhone/iPad distribution profile in ALL signing instances.
  8. Make sure that in your project info, the Distribution code signing is set to your iPhone/iPad distribution profile.
  9. Make sure that you have the option, skip install, in build settings of your target set to "NO" for Distribution.
  10. Make sure that your currently selected scheme is "[App Name]-AppStore > iOS Device"
  11. If nothing else, clean all builds, delete all old archive attempts, build for archiving, and if there are no other errors, try archiving again. One problem that I ran into was when I let XCode always allow signing with my private key. Simply deleting that and redownloading the certificates forced XCode to re-ask me to allow code signing. I only click allow now and I haven't had that problem ever again.

If you are still having problems, you should delete all of your provisioning, revoke all of your certificates, reissue them all, and reinstall them all. Try resetting your code signing after that, and if it still doesn't work, use one of your two free TSIs given to you by Apple Dev Support. If nothing works, they can fix it for you I'm sure.

Hope this helps.

link|improve this answer
feedback

I just had this issue and what resolved it for me was this:

  1. Verify Code Signing on the release is set to your Distribution Profile. I did this and it actually reverted it at one point. Make sure that setting wasn't reverted and try again.
  2. You mentioned the "Skip Install" value, I also had similar results. Setting to YES would not open the archive list, setting to NO would.

Hope this helps (more that #1 above helps).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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