I've built an app for the iTunes store. However, being a noob to the platform, I can't figure out how to submit the app.

Where is the actual binary that I need to submit to the iTunes store? What folder does it get built in?

link|improve this question

superuser.com .... – Mitch Wheat Sep 21 '09 at 2:48
feedback

2 Answers

up vote 2 down vote accepted

By default, you'll see a build directory inside the directory containing your project.
In that build directory:

<Project Name>.build` contains all the object files created during compilation

and a series of folders with the following naming scheme:

<build setting>-<platform>

You're likely looking for something like "Release-iphoneos". In that folder you should find the .app package to submit.

link|improve this answer
2  
Is it the same in XCode 4? I can't find it (using XCode 4 preview 2). – TomA Aug 27 '10 at 21:02
1  
@TomA - no. See the answer below that recommends revealing the product file in finder. That is a more foolproof answer across releases of the IDE. – mobibob Sep 6 '11 at 20:39
@mobibob yup, since posting that comment I have found the Derived Data folder and bookmarked it in Finder. – TomA Sep 6 '11 at 21:34
2  
This is incorrect in XCode 4+ – norskben Feb 13 at 17:19
feedback

You could use XCode and on the left expand "Products". Highlight your .app and then go up top where it says "Action" drop that down and select "Reveal in Finder"

link|improve this answer
This answer is XCode version independent and the project file structure is significantly changed from 3.x to 4.x. Keep in mind that the "Derived Data" folder is hidden in some of the Finder views (i.e., during attachment in email). – mobibob Sep 6 '11 at 20:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.