在发布到Cordova的Play商店时更改应用版本

时间:2017-06-25 16:39:46

标签: cordova google-play

我正在尝试更新处于测试阶段的Play商店上的apk,但每当我上传apk时,我都会收到以下错误。

You need to use a different version code for your APK because you already have one with version code 10000.

我正在使用以下命令生成关键笔划文件。

keytool -genkey -v -keystore example.keystore -alias example -keyalg RSA -keysize 2048 -validity 10000

我尝试将有效值更改为10001,但仍然无效。我可能会做错事。

我很陌生,缺乏知识。

这是AndroidManifest.xml:

android:versionCode="10001" android:versionName="1.0.1"

现在我在将apk上传到Play商店时遇到错误。

You uploaded an APK signed with a certificate that expires too soon. You need to sign your APK with a certificate that expires farther into the future.

3 个答案:

答案 0 :(得分:0)

您需要在应用 build.gradle 中更改版本代码和版本名称。为每个上传到播放控制台的新apk

答案 1 :(得分:0)

您可以在cordova项目的config.xml中设置版本代码。

<?xml version='1.0' encoding='utf-8'?>    
<widget android-versionCode="1001" version="1.0.1 id="io.cordova.hellocordova" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloCordova</name>
<description>
    A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
    Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
    <allow-intent href="market:*" />
</platform>
<platform name="ios">
    <allow-intent href="itms:*" />
    <allow-intent href="itms-apps:*" />
</platform>
</widget>

答案 2 :(得分:0)

尝试在config.xml中提供更高版本的值,构建您的应用并在您的android项目文件androidmanifest.xml中检查android:versionCode值。如果它是10000或更少,则再次增加版本值。