Xcode 6 Gm Creating Archive

Xcode 6 GM creating archive

Using a development certificate, I was unable to generate an .ipa. However, using a distribution certificate for ad hoc, I could generate an .ipa. I'm assuming this is either a new 'feature' or a bug in Xcode 6 that requires ad hoc to have a distribution certificate and profile to deploy via ad hoc.

Archive in xcode 6 is producing a pkg, not ipa

Add LSRequiresIPhoneOS YES to your Info.plist

The key can be found as Application requires iPhone environment

xcode is creating generic xcode archive instead of iOS App Archive

In my case problem was "Skip install" set to "NO" for one of embedded static libraries.
Also useful link: https://developer.apple.com/library/mac/technotes/tn2215/_index.html

Xcode 7 GM created generic archive instead of iOS app archive

OP here.
The members of my team all tried Cocoapods' beta and it fixed the problem for us. Therefore I'm going to accept my own answer.

Although it might fix the problem, I believe Christian Navelot's answer to not be scalable and certainly not manageable within a team.

Also, all of us tried using the cp beta without removing the Copy Pod Resources build phase. This means that I won't be accepting Todd Anderson's answer either.

We are not using static libraries either, we are using frameworks (aka use frameworks! inside the Podfile).

Thanks to all for contributing to this question. Looks like we all got put into the same boat by Xcode 7!
Cheers!

Export .xcarchive in XCode 6?

Just take the file from the finder, it's already on your file system:

In Xcode chose

  • Windows -> Organizer
  • On the left chose your app
  • On the right chose the version
  • Right click -> show in finder

Cannot generate iOS App archive in xcode

Check Build Settings:

  1. Skip install is NO for the main project target
  2. Skip install is YES for framework (sub-projects) targets
  3. In Build Phases for sub-projects, Copy Headers needs to be in Project, not Public (does not apply if building static library)
  4. Installation Directory under Deployment is valid (/Applications for example)

xcode is creating generic xcode archive instead of iOS App Archive

In my case problem was "Skip install" set to "NO" for one of embedded static libraries.
Also useful link: https://developer.apple.com/library/mac/technotes/tn2215/_index.html



Related Topics



Leave a reply



Submit