Build for debug is just press on the PLAY symbol, but I don't know how to Build for distribution/release? thank you in advance :)
feedback
|
|
I found 'How to build and submit iPhone app to AppStore with Xcode 4' to be extremely helpful. The short answer is:
| |||||||
feedback
|
|
The "play" button is specifically for build and run (or test or profile, etc). The Archive action is intended to build for release and to generate an archive that is suitable for submission to the app store. If you want to skip that, you can choose Product > Build For > Archive to force the release build without actually archiving. To find the built product, expand the Products group in the Project navigator, right-click the product and choose to show in Finder. That said, you can click and hold the play button for a menu of other build actions (including Build and Archive). | ||||
|
feedback
|
|
They've bundled all the target/build configuration/debugging options stuff into "schemes". The transition guide has a good explanation. | |||
|
feedback
|
|
You can use command line tool to build the release version. Next to your project folder, i.e.
Type the following build command:
| |||
|
feedback
|
|
That part is now located under Schemes. If you edit your schemes you will see that you can set the debug/release/adhoc/distribution build config for each scheme. | |||
feedback
|
|
To set the build configuration to Debug or Release, choose 'Edit Scheme' from the 'Product' menu. Then you see a clear choice. The Apple Transition Guide mentions a button at the top left of the Xcode screen, but I cannot see it in Xcode 4.3. | |||
|
feedback
|
|
I have a large app that was having problems uploading to the AppStore using the archive method you will find in XCode 4. The activity indicator kept spinning for hours whether I was trying to validate or distribute, so I created a support ticket to Apple. During that process, I found out you could right click on the .app in your Products folder inside the Project Navigator of XCode, and compress the app to submit using the Application Loader 2.5.1. (aka the old method). Only the Debug - iphoneos folder is accessible this way (for now) and once Apple responded, this is what they had to say:
This was very helpful information for developers who are having problems with the archive method, and my app is now uploading successfully without any concern that it won't run to the best of it's ability. | |||
|
feedback
|