-1

我在 Google Play 商店中有版本代码“20100000”和版本名称“1.0.0”的 android 应用程序。

我想更新我的新应用程序版本,但我对版本代码有疑问。

更新我的应用程序时出现错误“20100000 版本代码已存在”。我更改了所有的版本代码,但我总是看到这个错误。有人知道我可以如何更改版本代码吗?

清单.json

{
  "name": "",
  "short_name": "",
  "background_color": "#ffffff",
  "display": "standalone",
  "orientation": "any",
  "start_url": "index.html",
  "xwalk_app_version": "3.5",
  "xwalk_command_line": "",
  "xwalk_package_id": "",
  "xwalk_target_platforms": [
    "android"
  ],
  "xwalk_android_animatable_view": true,
  "xwalk_android_keep_screen_on": false,
  "xwalk_android_permissions": [
    "ACCESS_NETWORK_STATE",
    "ACCESS_WIFI_STATE",
    "INTERNET"
  ],
  "xwalk_windows_update_id": "",
  "icons": [
    {
      "src": "icon.png",
      "sizes": "72x72"
    }
  ]
}

命令

python make_apk.py --package=x --manifest=x/manifest.json --arch=arm --keystore-path=x\crosswalk-17.46.448.10\x.keystore --keystore-alias=x --keystore-passcode=xxx

谢谢。

4

1 回答 1

0

尝试--app-versionCode使用 make_apk.py 传递命令。

--app-versionCode=APP_VERSIONCODE An integer corresponding to the android:versionCode attribute of the Android App Manifest. If specified, the value of the "--app-version" option is not used to set the value of the android:versionCode attribute.

于 2016-03-24T05:38:32.130 回答