Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to upload IPA file to App Store from Mac OS X Catalina

I just created an app in Apple Developer portal and now I want to upload an IPA file created from Phonegap to App Store. How can I do it? In Mac OS X Catalina there is no iTunes app and I don't find in XCode > Open Developer Tool > Application loader.

UPDATE: I can open Archives window in XCode but my app does not appear in the list.

like image 977
Ángel Carlos del Pozo Muela Avatar asked Dec 07 '22 11:12

Ángel Carlos del Pozo Muela


2 Answers

And if you don't want to used cli you can use Transporter

This app allows developers to easily upload files to App Store Connect and more.

Available in the Mac AppStore. (https://apps.apple.com/us/app/transporter/id1450874784?mt=12)

like image 119
Enzo B. Avatar answered Jan 19 '23 00:01

Enzo B.


Try xcrun altool command line:

xcrun altool --upload-app --type ios --file <Path-to-ipa> --username <Username> --password <One-time-pass>

Remember to use the one time pass from https://appleid.apple.com/account/manage .

No double quote for the content, just replace the < Path-to-ipa >,< Username > and < One-time-pass >!

I'm using Xcode11.1.

Click here to the source answer!

like image 39
manman Avatar answered Jan 18 '23 22:01

manman