Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem generating a iOS App archive from an application. The application compiles just fine and even works in the simulator. Now I wanted to make som ad hoc testing and cannot generate the iOS App Archive. When I click on the Product -> Archive it generates a generic xcode archive. Can anyone help me. I should mention, that I have already generated an iOS App Archive of this application. It has just stopped to generate iOS Archive for some reason. Thanks a lot.

share|improve this question

7 Answers

up vote 27 down vote accepted

Check Build Settings:

  1. Skip install is NO for the main project target
  2. Skip install is YES for framework (sub-projects) targets
  3. Sub-projects need to have Copy Headers in Project not Public
  4. Installation Directory under Deployment is valid (/Applications for example)
share|improve this answer
2  
This is the most complete answer which incorporates the above partial answers. Thanks Alex L! I think this should be the chosen answer for this question. – Brandon Feb 20 at 20:42
As a meta question, how did you figure this out? Seems like I rely on Stackoverflow for all my build-related questions. – Philosophistry Apr 16 at 19:45
@Philosophistry Same here. I encountered this error several times. Usually it's the Skip Install issue. The last time it was #4 and I spent several hours reading Stackoverflow before figuring out the issue. – Alex L Apr 16 at 20:03
NB: #3 is only an issue if you included sub-projects by drag/dropping them into Xcode. If you build them as a static lib, and just drag/drop the output lib + headers, everything works perfectly - you can leave your headers as "public" etc and all is fine. This is a pretty big advert for NOT using Apple's drag/drop project embedding :( – Adam Apr 30 at 13:56

This can happen if you've added a framework/library ... you need to edit the Target->Build Settings of that library and set the 'Skip Install' setting to 'Yes'. When you re-archive, XCode should start producing a 'iOS App Archive' again rather than a 'generic xcode archive'.

share|improve this answer
but "Skip Install" is not available in xcode 4.4.1, at least i am unable to find skip intall in my xcode – Mashhadi Sep 21 '12 at 12:57
Thank you. Muchas gracias. – Schrockwell Oct 12 '12 at 20:31
1  
The same applies to added bundles. – Mark Horgan Jan 16 at 16:10
@MarkHorgan I wish I could give you 100 upvotes – Kevin Craft May 8 at 4:06

In addition of Skip Install to Yes and in case you opened another lib/framwork project within your app project you have to move headers (if any) from public to project in the Build Phase / Copy Headers.

build phase of your lib/framwork target

share|improve this answer
I was just about to lose hope, as Skip Install to Yes did not work for me. Copying headers to Project did the trick for me. Thanks! – nvln Sep 7 '12 at 23:25
To help you localize the faulty Xcode subproject, you can show the Generic Xcode Archive in the Finder and explore the package. Inside the .xcarchive, you will see the faulty headers in Products/usr/local/include. – Mathieu Godart Jan 3 at 21:27
Thank you so much! – Sergi Gracia Jan 16 at 20:12
1  
Why would putting a few files to copy headers to public screw this up? – mskw Mar 20 at 16:43
mskw, I guess if the artifact built contains one or more public header it cannot became an "device deployable" archive (iOS App Archive from where you generate an IPA). It remain a Xcode project archive. Thanks – ebtokyo Apr 22 at 21:40
show 1 more comment

I did the following to make it work for me:

  1. I had a three20 static library, I used cocoapods to include the files within the main project
  2. followed the skip install for all other sub projects/static libraries and switched the copy headers from public to project as stated above
  3. most importantly: in each library your project uses go to build phases -> Copy Files and ensured that destination is changed from Absolute path to products directory. Note: see the hint below to narrow your search to find the library causing this error.

and that was it!

hint: to get an idea of the offending files that's causing your archive to create an archive file rather than an ipa do this:

  1. Select the archive and click the Distribute button.
  2. Select the 'Save Built Products' option.
  3. Hit Next and Save.
  4. Browse the created directory in Finder.
  5. The 'libraries' subdirectory will identify the libraries that you need to set the Skip Install to Yes.
  6. in some cases usr/local/include will identify the culprit header files you need to move from Public to Project or the files that you have to change from absolute path to products directory. but that directory (ie usr/local/include) varies depending on your sublibrary directory structure. In many cases.. you will see all the files listed under Copy Files in step 3 above listed here. If you find them here, then you have a definite answer for the cause of your problem.
share|improve this answer

In my case, i had to move both FMDB and BlocksKit to static libraries. Previously they were built as subprojects. Remember you can use lipo to create universal libraries. When building the final products, the simulator code will be stripped automagically.

share|improve this answer

This is not the right solution, however, I was able to generate the App archive. I deleted the whole project and made a fresh checkout (I know, really stupid, but after couple hours of xcode refusing to generate the app archive I would have done anything). Once I set the correct code signing it worked. So probably, xcode had some mismatch in the configuration. If anyone knows, what (what possible configuration) could actually prevent xcode from generating an app archive I'll be glad to hear it. Thank you guys anyway.

share|improve this answer
well in my case "Skip Install" is not available in xcode 4.4.1, at least i am unable to find skip intall in my xcode – Mashhadi Sep 21 '12 at 13:00
I suggest accepting Alex L's answer since you yourself say this is not the right solution. – Brandon Feb 20 at 20:44

After creating an Archive, in Xcode's Organizer, Select your Archived project file and select Distribute.

This brings up another window that allows you to Save for Enterprise or Ad-Hoc Deployment.

This is the option you want, upon selecting Next you can choose the Distribution Profile to use, followed by the Location you want the .ipa to be saved to.

Make sure you select the Save for Enterprise or Ad-Hoc Deployment option and not the Export as Xcode Archive one :

enter image description here

share|improve this answer
No, it does not, because it generates an generic XCode archive, not the iOS App Archive. You can do that only with iOS App Archives. – Filip Majernik May 23 '12 at 7:38
1  
+1 @skram, this is the correct answer. I've just edited your answer to include a screenshot – Mutix May 23 '12 at 8:07
4  
This is certainly an answer - but it is not the correct answer to the question. You cannot Validate or Distribute a 'generic xcode archive', only an 'iOS App Archive' and the original question states that the poster is generating a 'generic xcode archive' not an 'iOS App Archive'. – delany May 23 '12 at 21:07

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.