为此应用指定的联系人 phone 号码无效

Invalid contact phone number specified for this app

我在使用 gradle-play-publisher

发布 apk 时收到此消息
{
    "code" : 403,
    "errors" : [ {
      "domain" : "androidpublisher",
      "message" : "Invalid contact phone number specified for this app.",
      "reason" : "invalidAppContactPhone"
    } ],
    "message" : "Invalid contact phone number specified for this app."
  }

我不想为应用程序指定任何 phone 编号,因为它不是必填字段,我如何使用 gradle-play-publisher 来做到这一点?

谢谢

已在 gradle-play-publisher 更新版本 1.1.2 中修复:

dependencies {
    classpath 'com.github.triplet.gradle:play-publisher:1.1.2'
}

更新依赖项并按照说明 How to force gradle to redownload dependencies 重新下载 gradle 依赖项后,它已修复。