I'm trying to create an IPA in XCode 4, much like the person who asked this question:

Xcode 4: create IPA file instead of .xcarchive

So--I got my Archive completing successfully--supposedly. It dumps .xcarchive files for the project in its destination folder. But these archives don't show up in my Organizer window. So I can't share them as described in the above question to create the IPA.

There are no errors in the archiving process--they seem to be signed OK. So why aren't the archives showing up in the archive panel on the Organizer? Is there some step I'm missing...or obscure setting I need to modify?

link|improve this question
I'm having the same problem. +1 for an answer please :) – Smikey Mar 11 '11 at 15:21
1  
Same problem over here as well. Plus old archives from previous version are gone. – Ron Srebro Mar 11 '11 at 21:52
Had the same problem. Didnt config the Skip Install Flag properly. (Had them mixed up somehow) Now it worked. Yay – Helge Becker Apr 19 '11 at 8:15
@Helge Becker: What did you do to make it work? – allthewayapps Apr 25 '11 at 0:15
feedback

9 Answers

EDIT (Incorporated all comments to a single answer)

Try one of the following (or all)

  1. Instead of using Build For -> Archive, in the product menu just use archive. It will show up then.

  2. In the scheme editor, edit the scheme and go to the Archive tab, make sure the check box for show in Organizer is checked.

  3. In the archive tab in the scheme editor check the build configuration used for archiving. Make sure it has the right entitlements file & certificates.

  4. In the build settings switch Skip Install -> Release to NO, for the build settings used for archiving.

Thanks to @Smikey & @Ralph B & @Scott McMillin

link|improve this answer
1  
I ended up figuring it out. Both Build For -> Archive and Archive didn't work for me. But I took out the entitlements.plist I had from my 3.X version--double checked that the scheme used in the Archive build was using the right cert....and it showed up. Took me ALL DAY to figure it out though. – Ralph B Mar 12 '11 at 8:48
Hmm didn't work for me. Tried both methods of archiving, deleted all copies of entitlements.plist, tripple checked the certs... Still no archives appearing :( Anything else you tried that may have had anything to do with it? – Smikey Mar 12 '11 at 15:49
21  
Well I seem to have fixed it. In the build settings, in the deployment section, I switched Skip Install -> Release to NO. I'd set it to YES following the Apple advice... guess that was the wrong thing to do. – Smikey Mar 12 '11 at 17:25
10  
Same problem here; followed @Smirkey's advice and changed Skip Install back to NO and it worked. – Scott McMillin Mar 15 '11 at 1:46
6  
Skip Install -> NO was the trick – jottos Jun 24 '11 at 1:49
show 9 more comments
feedback

This is based on another answer from a similar question which can be found at Archive does not appear in xcode4 organizer

I take no credit for this answer, but this together with the suggestions from Ron fixed the problem for me.

For the "Release" configuration do the following:

Set "Skip Install" to YES on your project

Set "Skip Install" to NO on your application target

Set "Skip Install" to YES on all static library targets that are included

Choose Product -> Archive from the menu.

This also worked for me, and according to the original answer poster, is based on advice from the Apple Dev Forums.

link|improve this answer
2  
good on you for crediting.. – DefenestrationDay Apr 28 '11 at 4:57
worked for me too. – RyeMAC3 Aug 14 '11 at 20:17
Only this answer did the trick! Probably because I mixed up the project and target settings for "Skip Install". Thank you! – Randy Marsh Dec 13 '11 at 14:16
You are a legend, this worked for me after too many hours of mucking around with build settings... – suihock May 13 at 9:15
feedback

I had the same problem... I had mistakenly set "Installation Directory" (INSTALL_PATH) to an empty string in my Build Settings. Removing this setting and using the default /Applications solved my issue.

link|improve this answer
WOW. That worked for me!! – Ravi Feb 7 at 6:07
None of the above answers did it. Xcode just changed this value out from under me, I assume, as archives were working fine and suddenly stopped. Thanks for this! – jmstone Apr 5 at 19:15
Same here, this is a working fix. Glad I didn't give up on the lower voted answers. – Gerald Kaszuba Apr 29 at 5:44
feedback

I had a similar issue where the distribution compiled and signed fine, but never showed up in the Archive tab. Turns out I needed to attach a device to get it to build a "real" iOS build. Once I attached my device, I ran Product -> Archive and it showed up as expected.

link|improve this answer
feedback

Same problem ! And resolved :)

I add this into my info.plist file:

create a new property "Bundle versions string, short" and provide the same version number as for "Bundle version" property. (Thanks to Rahul Choudhary, in his post "XCode 4 Archive Version Unspecified")

link|improve this answer
feedback

I tried them all and still nothing worked. Then I reconnected my iPad, reselected Skip Install = NO for release and archive ...Build failed for code sign Reselected Scheme iPad, rather than simulator Build succeeded.

Not sure this will work for anyone else, but I've have just spent 5 hours going thru all the hints, and tripped up on this success. I don't think it clears it up, and hope Apple gets this squared away. In the year 2011, this is just absurd.

link|improve this answer
Correction, even after all that, it failed on validation.ugh!!!! – Rich M. Aug 7 '11 at 17:43
Ok now it works. Reselected Skip Install = NO for Debug, Release AND Distribution. Reselected the distribution certificate for the distribution builds ( even though it already showed the correct ones). And of course reset the submission state to 'Ready for Upload'. Validate and Submitted thru XCode Organizer. I have made dozens of updates to my product, but now XCode 4.0 has created a nightmare. – Rich M. Aug 7 '11 at 17:48
This is the one that did it for me. Even though it goes against Apple's instructions, I couldn't get anything to show in the Archive list without setting Skip Install to NO for Release (click project name -> target -> build settings -> under Deployment -> maxmize Skip Install -> Release=NO) – DonamiteIsTnt Mar 9 at 9:24
feedback

One more thing to check: Search for the "Installation Directory" in your Build Settings (All) and make sure it's set to "/Applications".

link|improve this answer
feedback

i think it not really big a problem archive does not appear if your using simulator it was easily fixed by selecting your device in the edit scheme, then click archive in the archive tab

no complicated steps

link|improve this answer
feedback

Yes! Finally. I too was stuck on this for 2 days! I should have checked here first!

Skip Install ... moved it to NO and it worked!

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.