Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I create a release build in Xcode?

Why is it that when I build an application, Xcode creates a debug build? I want to create a release build. How can I do this?

like image 265
cyclingIsBetter Avatar asked Apr 18 '11 17:04

cyclingIsBetter


People also ask

How do you do release build in Xcode?

Create an Xcode Archive. To test the exact conditions your app user's experience, create a release build. In your Xcode project's scheme editor, set the run destination to a device and adjust the archive task to the Release configuration. Then, choose the Archive option in Xcode's Product menu.

What is release build?

A release build uses optimizations. When you use optimizations to create a release build, the compiler will not produce symbolic debugging information.


1 Answers

Product / Scheme / Edit Scheme..

enter image description here

And from the menu that comes up, select Release under "Build Configuration".

enter image description here

like image 176
bobobobo Avatar answered Sep 28 '22 23:09

bobobobo