Where to find Application Loader app in Mac?

MacosLoader

Macos Problem Overview


I have downloaded applicationloader_1.3.dmg and installed in the destination Macintosh HD.

The messages show The installation was successfully done. But, there is the ApplicationLoader app that doesn't appear anywhere.

How to install and get the Applicationloader app in Application->Utility folder?

I'm using Mac OSX version 10.6.8.

Macos Solutions


Solution 1 - Macos

In more modern versions of Xcode, you'll find "Application Loader" under the "Xcode" menu (the first menu to the right of the Apple in the menu bar) and it'll be hiding in the "Open Developer Tools" submenu.

enter image description here

Solution 2 - Macos

As of Xcode 11, "Application Loader is no longer included with Xcode", per the Xcode 11 Release Notes:

> Xcode supports uploading apps from the Organizer window or from the command line with xcodebuild or xcrun altool. Application Loader is no longer included with Xcode. (29008875)

The Xcode Help page, Upload an app to App Store Connect, explains how to upload from the Xcode Archives Organizer.

Transporter

In October 2019, Apple announced the Transporter app for macOS, now available in the Mac App Store.

> With Transporter you can: > > * Upload your .ipa or .pkg files to App Store Connect. > * View delivery progress, including validation warnings, errors, and delivery logs, so you can quickly fix any issues. > * See a history of past deliveries, including date and time.

This was previously a download from iTunes Connect for qualified partners (FAQ)

Notes on Using the Command Line

I've uploaded non-Xcode builds with xcrun altool --upload-app -f path-to-build.ipa -u [email protected]. It won't show any progress, but you can see the network traffic in Activity Monitor. It finishes with No errors uploading 'path-to-build.ipa'.

See xcrun altool --help for usage. If your account has 2FA enabled, first visit https://appleid.apple.com/ and generate an app password.

Solution 3 - Macos

You can download Application Loader from Itunes Connect.

At the time of writing, this link is: https://itunesconnect.apple.com/apploader/ApplicationLoader_3.1.dmg

Solution 4 - Macos

I didn't find application loader anywhere, even in spotlight. You can open it through xcode.

Go to Xcode > Open Developer Tools > Application Loader

Solution 5 - Macos

With Xcode 11, Application Loader has been removed. The Mac App store now has an app called Transporter.

https://apps.apple.com/us/app/transporter/id1450874784?mt=12

Solution 6 - Macos

For anyone finding this now (23/09/2019) Application Loader has been removed from Xcode.

If you have built the application in Xcode you should be able to follow these instructions to upload your and distribute your project Upload an app

I am not sure what to do if you have been given a .ipa file, for example when building an Expo project, I'll update this post when i have an answer.

In the mean time more info can be found here. Developer Apple - Whats new

Solution 7 - Macos

Solution 8 - Macos

I have found in following way :

Go to https://itunesconnect.apple.com/ , sign in

Click "Resources and Help"

enter image description here

enter image description here

Solution 9 - Macos

you can find it by going to xcode > open developer tool > application Loader

enter image description here

Solution 10 - Macos

You can also upload an app using the Application Loader tool by using it from the terminal:

MacBook-Pro:~ denis$ altool --upload-app -f "ios-app.ipa" -u "[email protected]" -p "yourpassword"

> To use altool from anywhere in the terminal you could add it to your > PATH env variable by typing in terminal: >
> > MacBook-Pro:~ denis$ export PATH=$PATH:/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Support/ > MacBook-Pro:~ denis$ source ~/.bash_profile

Solution 11 - Macos

Now you can upload your app binary with the Transporter app.

You can download Transporter from Mac AppStore Here

Here apple mentioned its used for uploading.

Solution 12 - Macos

Application Loader now moved to tools

https://itunespartner.apple.com/en/apps/tools

Solution 13 - Macos

It's in Applications > Xcode > Show package contents > Contents > Applications - but easier to open from Xcode!

Solution 14 - Macos

This error had me really scared because I make my app using Adobe AIR, so once my AIR builder (FDT) tells me it has packaged it, I really have very little I can do if it fails.

I got this error when I uploaded my ipa through the Application Loader (v3.0 [620]) that I had downloaded from the link they provide when submitting the binary. I tried uploading the ipa through Xcode > Application Loader (v3.6 [1020]) and it worked fine.

I am going to write to Apple about this once my blood pressure returns to normal.

Solution 15 - Macos

With Application Loader now gone from Xcode I had a look around to see how to upload an .ipa file, since I use UE4 and I don't touch Xcode at all during development. Turns out it's pretty hidden away, You need to go to Window, Organiser, Archives. The archive will only appear if you ticked the "Generate Xcode Archive Package" tickbox in Project Settings. Then you just click Distribute and it's just does it.

Solution 16 - Macos

Application Loader has been removed from XCode 11, the alternative app is Transporter. you can download it from the appstore with the following link:

https://apps.apple.com/ca/app/transporter/id1450874784?mt=12

Solution 17 - Macos

Now you can use Transporter app instead of Application Loader.

Download Transporter App from this link: https://apps.apple.com/us/app/transporter/id1450874784?mt=12

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
QuestionYuvaraj.MView Question on Stackoverflow
Solution 1 - MacosMichael DautermannView Answer on Stackoverflow
Solution 2 - MacosAnsonView Answer on Stackoverflow
Solution 3 - MacosSimon EpskampView Answer on Stackoverflow
Solution 4 - MacosNightFuryView Answer on Stackoverflow
Solution 5 - MacosJamilView Answer on Stackoverflow
Solution 6 - MacosvirtualLastView Answer on Stackoverflow
Solution 7 - MacoszszenView Answer on Stackoverflow
Solution 8 - MacosVinod JoshiView Answer on Stackoverflow
Solution 9 - MacosAmr AngryView Answer on Stackoverflow
Solution 10 - Macosdenis_lorView Answer on Stackoverflow
Solution 11 - MacosGuruView Answer on Stackoverflow
Solution 12 - MacosRangi LinView Answer on Stackoverflow
Solution 13 - MacosAdam MaloneyView Answer on Stackoverflow
Solution 14 - Macosuser150812View Answer on Stackoverflow
Solution 15 - MacosMatt AtkinsonView Answer on Stackoverflow
Solution 16 - MacosmohsenView Answer on Stackoverflow
Solution 17 - MacosSandip Patel - SMView Answer on Stackoverflow