hang wu
hang wu

Reputation: 63

Xcode11 application loader

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?

Upvotes: 6

Views: 2130

Answers (3)

Miki Maine
Miki Maine

Reputation: 350

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

Upvotes: 6

Sadjad Khazaie
Sadjad Khazaie

Reputation: 2232

Apple removed Application Loader from XCode 11. You have to:

  1. Open the Organizer window in Xcode (menu Window > Organizer)
  2. Click on the Archives icon in the top middle
  3. Select the desired archive by app name and date
  4. Distribute

If you use Visual Studio 2019: To create Archive you have to right mouse click on iOS project and choose Archive...

Upvotes: 1

bseh
bseh

Reputation: 467

You can use Xcode's Top Menu -> Window -> Organizer -> Archives Section -> find the archive you want to upload -> Distribute App from the right pane.

Upvotes: 3

Related Questions