java - Can't update the version code in a PhoneGap Android application -
i have tried upload new apk application google play keeps telling me version code still "1" when have stated in both config.xml , androidmanifest.xml (main) version code should "9".
this new android project since lost source old 1 in hard drive crash.
config.xml:
<widget xmlns = "http://www.w3.org/ns/widgets" id = "com.phonegap.helloworld" version = "1.3.0" android-versioncode = "9" >
androidmanifest.xml:
<application android:allowbackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" android:versioncode="9" android:versionname="1.3.0" >
i have been on hunt answer on multiple forums both on @ google, phonegap, cordova , here no solution far. suggestions?
this depends on buildtool. if android-gradle, value build.gradle
override corresponding value in androidmanifest.xml
.
Comments
Post a Comment