Dhaval Jardosh
Dhaval Jardosh

Reputation: 7309

TEMP FIX - Build and Upload iOS application Expo (Without Application Loader)

When Application Loader isn't a part of XCode 11 after Sept 20 anymore how should we upload the application?

Upvotes: 2

Views: 517

Answers (1)

Dhaval Jardosh
Dhaval Jardosh

Reputation: 7309

Steps to follow:

  1. Download the build created by expo build:ios
  2. run the following command xcrun altool --upload-app -f pathtothefile.ipa -u [email protected]

    Password: This isn't your app store or any other apple-related password, it's the App-Specific Password and you need to generate it first.

    Can be found at https://appleid.apple.com/account/manage

  3. Should return with a success message No errors uploading '/path/to/your/package.ipa'

  4. You can view you build in App Store Connect -> Your App -> Activity

Upvotes: 3

Related Questions