How to Create the Upload File for Application Loader?

IosUploadReleaseIpaApplication Loader

Ios Problem Overview


When I use Application Loader, I get to the point where it asks me to "Choose..." the file to be uploaded.

If I understand correctly, it supposes to be the appName.app file I see under "Products" on my app bundle (I right click it and select "Show in Finder" to get to the specific file in library; then I'm supposed to ZIP it and the ZIP file is what I will choose in Application Loader). First, am I correct with this assumption?

if yes...

What should I define different in XCode than the way I used to build the application for testing (on simulator and on my personal iPhone)?

Should I change the Info--->Command-line build use from Debug to Release?

How should I define the Build Settings--->Code Signing section (in which field should I select the "iPhone Developer" option and in which should it be "iPhone Distribution")?

Are there any other important Info/Build Settings/p.list/etc... fields I should relate to?

any help will be appreciated...

Ios Solutions


Solution 1 - Ios

  • Launch Xcode 5 (Product > Archive to build the archive)
  • Goto Window > Organizer
  • Select the latest archive and click on the Export button
  • Select Save for Enterprise Deployment or Save for Ad Hoc Deployment
  • Select your provisioning profile and then Export
  • Choose a location to save the .ipa file

This is basically it. Hope it will help anyone looking for the answer.

Solution 2 - Ios

Go and login to the iOS Provisioning Portal. From the menu on the left, select "Distribution" and you should be landed to the "Prepare App" tab. Read through the instructions carefully, you mostly need the information under "Building your Application with Xcode for Distribution". Remember that "Only Team Agents are authorized to prepare and submit applications for distribution".

Solution 3 - Ios

If I remember correctly, the file that you need to choose is a "*.ipa" file which I was able to generated by archiving to project.

If you have xcode 4 it is recommended to add another scheme e.g. dist scheme and configure the scheme to release. Than compile (using the dist scheme) and go to the organizer to view/share/ or submit the application.

If you are using xcode 4, it has a bug which crashes the xcode if you choose validate or submit, in this case you should save upload the *.ipa using the application loader.

Hope this helps.

Solution 4 - Ios

I fixed this issue simply by renaming the storyboard file for the iPhone storyboard to Main_iPhone.storyboard.

Xcode looks for this file because it's built in to your plist (property list) file when you create a new project.

I created a universal app, and somewhere along the way I renamed that storyboard file. Because my app is universal, I didn't want to go monkeying around with deleting plist keys.

After trying again, I got the same error. Then I quit Xcode, restarted, re-validated, and it worked.

Good luck.

Solution 5 - Ios

Download the latest Application loader from here: https://itunesconnect.apple.com/apploader/ApplicationLoader_3.1.dmg. (Download the latest one. This doesn't get updated automatically. If you haven;t downloaded this recetnly you probably have a older version that may have errors which are solved in the newer version)

Then 1) Archive your build. 2) After your build archives, you will be in the builds page.

  1. Export that build
  2. Click "App Store blablabla" row
  3. Save the file somewhere
  4. Open Application Loader
  5. click upload
  6. upload that saved file.

Done.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionOhad RegevView Question on Stackoverflow
Solution 1 - IosMuhammad NasirView Answer on Stackoverflow
Solution 2 - IosphiView Answer on Stackoverflow
Solution 3 - IosspiceItView Answer on Stackoverflow
Solution 4 - Iosuser3444710View Answer on Stackoverflow
Solution 5 - Ioscoolcool1994View Answer on Stackoverflow