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 !