我试图用altool上传一个.ipa,但它不接受apple-id参数--apple-id。
xcrun altool --upload-package \
MyApp.ipa \
--type ios \
--asc-public-id $ASC_PUBLIC_ID \
--apple-id me@gmail.com \
--bundle-version 100 \
--bundle-short-version-string 1.0 \
--bundle-id com.myco.myapp \
--apiKey $APPLE_ID_KEY_ID \
--apiIssuer $APPLE_ID_ISSUER_ID \
--show-progress它错误的地方有:
The provided entity includes a relationship with an invalid value 'me@gmail.com' is not a valid ID for this relationship.工具文档显示,apple-id是“应用程序的ID”:
--apple-id id
Specify the Apple ID of the app to be uploaded with --upload-package.这和我以前登录苹果开发者的苹果ID不一样吗?
发布于 2022-08-29 18:56:31
应用程序Apple ID位于Apple中的General/App Information下。
https://stackoverflow.com/questions/73533082
复制相似问题