Search code examples
iosiphoneapp-storephonegapipa

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.


Solution

  • 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!