Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 5 doesn't let me export unsigned cocoa application

When I try to export a cocoa application in XCode 5 GM (which probably isn't anymore under NDA, if it is it will be off tomorrow) doesn't give me the option to export an unsigned application as it did in xcode 4.6 < When I pick up an archive and select export as application as shown here:

export as application

In the next screen I have no chances to save it as an unsigned application, as I did before.

Xcode 5:

xcode5

Xcode 4:

xcode4

Any Idea on why? is this a bug?

Thanks

like image 431
superandrew Avatar asked Sep 15 '13 18:09

superandrew


1 Answers

This seems like a bug. Even with the target signing settings set to "None" as below, I get the same prompt as you do.

enter image description here

A work around

Select Export as Archive instead. Once you save the archive, you can control (or right)-click on the archive in Finder and select Show Package Contents. The .app will be located under Products/Applications in side of the package.

An alternative would be to control (or right)-click on the build in the Xcode organizer and select Show in Finder to show the archive without exporting it. From there you can browse the archive as above to find the .app.

enter image description hereenter image description here

like image 54
BergQuester Avatar answered Oct 22 '22 02:10

BergQuester