Facundo Schiavoni
Facundo Schiavoni

Reputation: 65

Upload app to App Store

I've already set all de iTunes Connect stuff(Snapshots, Description, Tags, etc...) and downloaded the Application Loader but it asks me for an .app file and I don't know how to get the .app file from my Xcode project or if I need a Certificate to do it or something please can someone help me?

Upvotes: 0

Views: 474

Answers (2)

Javier Flores Font
Javier Flores Font

Reputation: 2093

I think you mean the .ipa file, in that case:

1) Product >> Clean Build Folder

2) Change the build target from iPad/iPhone Simulator to iOS Device.

3) Under the Product menu, select Archive. This will build your application and code sign it using the Distribution (Ad Hoc or App Store). Once the build has completed the Organizer window will appear. If it does not, open it using CMD-Shift–2 or Window -> Organizer. If you see a message popup saying “codesign wants to sign using key ”privateKey“ in your keychain.”, select Allow or Always Allow. Go to the Archives tab in Organizer and select your application, if it was not automatically selected, and choose the archive you wish to share.

4) Click the Distribute button. In the next window select that you want to upload to the app store, and click Next. In the Code Signing Identity drop down, select the same Distribution Provisioning Profile specified in the Release configuration. And that's pretty much the steps to upload to the App Store.

Upvotes: 1

tizaks
tizaks

Reputation: 172

A great place to look for answers to questions such as this is the Apple Documentation

In short, you need to:

  • Ensure you have a valid App ID, or wildcard App ID set in the Developer Member Centre
  • Select Product > Archive in Xcode with the project open, making sure you have "iOS Device" selected in the top left corner
  • At the archive screen, you can then select Validate and (if there are no issues) Submit. The build will then appear in iTunes Connect.

The documentation linked above will guide you through this step by step.

Upvotes: 0

Related Questions