After upgrading xcode11, I found that the application loader was canceled. Now how to upload the ipa package to the appstore, is there an alternative application loader tool?
Asked
Active
Viewed 2,122 times
3 Answers
6
Apple has released a new util tool called Transporter that basically does what application loader used to do.
You can find it here: https://apps.apple.com/us/app/transporter/id1450874784?mt=12

Miki Maine Amdu
- 199
- 1
- 12
-
Yes, transporter can replace application loader, thank you – hang wu Oct 31 '19 at 06:36
3
You can use Xcode's Top Menu -> Window -> Organizer -> Archives Section -> find the archive you want to upload -> Distribute App from the right pane.

bseh
- 447
- 7
- 13
-
The actual situation is like this. I have not installed the release certificate on my own computer. This method is not suitable for me. I don't need my computer archive. I can only get the ipa package here. I only upload it. Ipa package – hang wu Sep 23 '19 at 11:07
-
1Then there is an alternative option. You can use "xcrun altool --upload-app -f your_ipa_file -u $username -p $password" from terminal – bseh Sep 23 '19 at 12:49
1
Apple removed Application Loader from XCode 11. You have to:
- Open the Organizer window in Xcode (menu Window > Organizer)
- Click on the Archives icon in the top middle
- Select the desired archive by app name and date
- Distribute
If you use Visual Studio 2019: To create Archive you have to right mouse click on iOS project and choose Archive...

Sadjad Khazaie
- 2,102
- 22
- 22