Easy to use, cross-platform tool to upload iOS apps to App Store Connect.
- OS: Windows, macOS or Linux
- Node.js: v18 or newer (bundled with standalone binaries)
If you have Node.js and npm installed the simplest way is to just install the package globally. The tool will automatically be added to your PATH as ios-uploader
.
npm install -g ios-uploader
The program is also available as standalone binaries for all major OS:es on github.com.
If you have used altool
previously to upload applications the process should be very familiar.
$ ios-uploader -u <username> -p <password> -f <path/to/app.ipa>
is equivalent to the following command using altool (macOS only):
$ xcrun altool --upload-app -u <username> -p <password> -f <path/to/app.ipa>
See this page for information on how to generate an app specific password:
https://support.apple.com/en-us/HT204397
-v, --version output the current version and exit
-u, --username <string> your Apple ID
-p, --password <string> app-specific password for your Apple ID
-f, --file <string> path to .ipa file for upload (local file, http(s):// or ftp:// URL)
-c, --concurrency <number> number of concurrent upload tasks to use (default: 4)
-h, --help output this help message and exit
This package is not endorsed by or in any way associated with Apple Inc. It is provided as is without warranty of any kind. The program may stop working at any time without prior notice if Apple decides to change the API.