Xcode 7 GM created generic archive instead of iOS app archive

ios, xcode

Solution

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!

Problem

I recently started using Xcode 7 GM. When I archive my project, I get a generic Xcode archive instead of an iOS archive. I'ved tried pretty much all the following: - xcode is creating generic xcode archive instead of iOS App Archive - Cannot generate iOS App archive in xcode I compared the contents of a previous successful archive and a different folder structure for some components: - Swift libraries are inside a sub folder - The app extension is outside of the .app package - The info.plist is missing keys Has anyone else encountering this problem? If so, did you solve and how? Edit We are using Cocoapods 0.38.2

Original source

Related problems