Reputation: 7309
When Application Loader isn't a part of XCode 11 after Sept 20 anymore how should we upload the application?
Upvotes: 2
Views: 517
Reputation: 7309
Steps to follow:
expo build:ios
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
Should return with a success message No errors uploading '/path/to/your/package.ipa'
You can view you build in App Store Connect -> Your App -> Activity
Upvotes: 3