Steps to upload an iPhone application to the AppStore - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T22:33:58Zhttp://stackoverflow.com/feeds/question/796482http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/796482/steps-to-upload-an-iphone-application-to-the-appstore6Steps to upload an iPhone application to the AppStoreArun Thakkar2009-04-28T06:36:00Z2009-04-28T17:09:25Z
<p>I want to know the basic steps for uploading my iPhone application to AppStore.</p>
<p>How do I make a provisioning profile using a certificate and what other settings do I need to do to upload an application?</p>
<p>I have just made an application on my iMac using Xcode and the iPhone SDK V2.2.1. What do I need to do for uploading it on the Apple iTunes store?</p>
<p>I am member of that and I have also a distribution certificate.</p>
http://stackoverflow.com/questions/796482/steps-to-upload-an-iphone-application-to-the-appstore/796680#7966804Answer by Mitch Wheat for Steps to upload an iPhone application to the AppStoreMitch Wheat2009-04-28T07:43:48Z2009-04-28T07:43:48Z<p>This <a href="http://arstechnica.com/apple/guides/2009/04/app-store-lessons-dealing-with-pink-uploads-of-doom.ars" rel="nofollow">arstechnica article</a> describes the basic steps:</p>
<blockquote>
<p>Start by visiting the program portal
and make sure that your developer
certificate is up to date. It expires
every six months and, if you haven't
requested that a new one be issued,
you cannot submit software to App
Store. For most people experiencing
the "pink upload of doom," though,
their certificates are already valid.
What next?</p>
<p>Open your Xcode project and check that
you've set the active SDK to one of
the device choices, like Device - 2.2.
Accidentally leaving the build
settings to Simulator can be a big
reason for the pink rejection. And
that happens more often than many
developers would care to admit.</p>
<p>Next, make sure that you've chosen a
build configuration that uses your
distribution (not your developer)
certificate. Check this by
double-clicking on your target in the
Groups & Files column on the left of
the project window. The Target Info
window will open. Click the Build tab
and review your Code Signing Identity.
It should be iPhone Distribution:
followed by your name or company name.</p>
<p>You may also want to confirm your
application identifier in the
Properties tab. Most likely, you'll
have set the identifier properly when
debugging with your developer
certificate, but it never hurts to
check.</p>
<p>The top-left of your project window
also confirms your settings and
configuration. It should read
something like "Device - 2.2 |
Distribution". This shows you the
active SDK and configuration.</p>
<p>If your settings are correct but you
still aren't getting that upload
finished properly, clean your builds.
Choose Build > Clean (Command-Shift-K)
and click Clean. Alternatively, you
can manually trash the build folder in
your Project from Finder. Once you've
cleaned, build again fresh.</p>
<p>If this does not produce an app that
when zipped properly loads to iTunes
Connect, quit and relaunch Xcode. I'm
not kidding. This one simple trick
solves more signing problems and "pink
rejections of doom" than any other
solution already mentioned.</p>
</blockquote>
http://stackoverflow.com/questions/796482/steps-to-upload-an-iphone-application-to-the-appstore/798956#7989561Answer by Tom Harrington for Steps to upload an iPhone application to the AppStoreTom Harrington2009-04-28T17:09:25Z2009-04-28T17:09:25Z<p>Apple provides detailed, illustrated instructions covering every step of the process. Log in to the iPhone developer site and click the "program portal" link. In the program portal you'll find a link to the program portal user's guide, which is a really good reference and guide on this topic.</p>