-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"
    }
  ]
}

CMD

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-versionCodemake_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 に答える