alltool:提供的实体包含具有无效值的关系

问题描述 投票:0回答:1

我正在尝试使用 altool 上传 .ipa,但它不接受

apple-id
参数 --apple-id id。

xcrun altool --upload-package \
    MyApp.ipa \
    --type ios \
    --asc-public-id $ASC_PUBLIC_ID \
    --apple-id [email protected] \
    --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 '[email protected]' is not a valid ID for this relationship.

altool 文档说 apple-id 是“应用程序的 ID”:

--apple-id id
                  Specify the Apple ID of the app to be uploaded with --upload-package.

这与我用于登录 Apple Developer 的 Apple ID 有什么不同吗?

ios xcodebuild xcrun notarize
1个回答
1
投票

应用程序 Apple ID 位于 App Store Connect 中的常规/应用程序信息下。

© www.soinside.com 2019 - 2024. All rights reserved.