Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to select an app to automatic upload with xcrun?

My company have more than 60 apps on the apple store (all the same base), so when we have an update, it takes a lot of times to upload all of them So i'm trying to find a way to automate the maximum

I found something interesting for uploading an app with xcrun:

xcrun -sdk iphoneos Validation -online -upload -verbose "path to ipa"

So it validates and try to upload But the issue is that if I have more than one app with the status "waiting for upload", it just picks the first one, I wanted to know if there is a way to specify the bundle id or the app id to select the one I want to upload ?

I found an idea of solution on internet, doing a script to change the status of only one app on the itunesconnect to 'waiting for upload', but I think it's kinda not safe, because if there is only one fail, it will be a pretty mess.

So if somebody has a solution by command line, thanks you to share !

like image 224
John Smith Avatar asked Nov 12 '22 18:11

John Smith


1 Answers

Use application loader tool: altool --upload-app -f file -u username [-p password] [--output-format xml]

https://help.apple.com/itc/apploader/#/apdATD1E53-D1E1A1303-D1E53A1126

like image 103
Moran77 Avatar answered Nov 15 '22 07:11

Moran77