Archiving my project in XCode is creating a multi-application bundle, instead of bundling my main target for release, which is what I want. Specifically, when I validate my archive in Organizer, it gives me the message:

"[projectname] does not contain a single–bundle application or contains multiple products. Please select another archive, or adjust your scheme to create a single–bundle application."

It sounds like there is some setting in the scheme that needs to be adjusted, but I can't figure out what's causing other targets to be included.

I'm using XCode 4.0 by the way.

link|improve this question
1  
@Orbit your link is broken. – Jesse Rusak Mar 14 '11 at 23:06
feedback

2 Answers

OK, answering my own question. Turns out it is an issue with dependent projects in XCode 4. If this happens to you, go through the Build Settings for all your dependent projects (e.g. static libraries) and make sure that the "Skip Install" option under "Deployment" is set to YES.

More detail here: http://flakasoft.com/developer-tips/xcode-4-bug-solution-for-archiving-build-with-static-library/

link|improve this answer
You, sir, are my hero! I would not have found that easily :P – Andrew Natoli Mar 11 '11 at 5:23
3  
Changed it to "YES" ... still failing. :( – Joe D'Andrea Mar 20 '11 at 16:49
3  
Skip Install needs to be set to Yes on the static library only, not your Project or Target. This blog post on ad hoc distribution applies equally to app store builds and has a section on Skip Install: musicalgeometry.com/?p=1237 – jj0b May 2 '11 at 22:33
i'll second that Skip Install needs to be set to Yes on the static library only, not your Project or Target. – burrows111 May 10 '11 at 10:02
5  
Some libraries (like CorePlot) require you to change the Copy Headers section of their build phase, too. So make make sure you look at Ryan's answer, too. – Tim Swast Sep 4 '11 at 2:06
show 3 more comments
feedback

Two things needed to be fixed in the sub-project(s) to resolve this issue:

  1. As Jared discovered, under the Build Settings, set the "Skip Install" to "Yes"
  2. Under the Build Phases, examine the Copy Headers section. If there are any header files listed as Private or Public, drag them down to the Project section.
link|improve this answer
2  
I really love you dude! :D – arielcamus Mar 31 '11 at 15:10
3  
I fixed all the "Skip Install" settings but what I was missing was the Copy Header section, Thanks! – Thomas Einwaller Apr 26 '11 at 21:22
2  
I'm using three20. This project has header files listed as Private or Public but if I move them in the project section it doesn't compile. Any suggestion? – Breezeight May 13 '11 at 15:43
6  
Stop using Three20, even if you do get over this Xcode issue. I'm completely serious! – Adam Eberbach Jul 29 '11 at 6:27
1  
@Breezeight: Did you ever manage to successfully create an archive for submission with three20? If so, would really appreciate if you could let us know how you resolved it as we're using three20 (unfortunately) in one of our projects and are unable to submit at this time. – Fulvio Sep 9 '11 at 0:57
show 9 more comments
feedback

protected by Robert Harvey Mar 23 '11 at 2:13

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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