如何在AppCenter上将changesNotSentForReview设置为true

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

当我尝试将其部署到 Google 上的 Alpha Track 时,我在 AppCenter 上收到以下错误。

Edit could not be committed due to an error. Changes cannot be sent for review automatically. Please set the query parameter changesNotSentForReview to true. Once committed, the changes in this edit can be sent for review from the Google Play Console UI.

我找不到任何文档来解决这个问题。

android google-play appcenter
1个回答
0
投票

如果您使用 yaml 管道,您可以像这样添加它:

        # Deploy to internal track
        - task: GooglePlayRelease@4
          inputs:
            authType: ''
            serviceAccountKey: ''
            applicationId: ''
            action: ''
            bundleFile: ''
            track: 'internal'
            releaseName: ''
            isDraftRelease: false # add these
            changesNotSentForReview: true # add these
          condition: ''
          displayName: Deploy release to Android Google Play internal track

还要检查您是否没有已处于草稿或正在审核中的版本。如果这是您第一次提交,可以手动进行。或者,如果您上次提交的内容存在尚未解决的问题,请先修复它们。这些事情会不时发生变化,但根据我的经验,这个错误并不总是正确的。当我已经正确设置变量时我得到了它。

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