我尝试将我的应用程序的新APK上传到Google Play,但是当我在config.xml和AndroidManifest.xml(主要)中明确指出时,它一直告诉我版本代码仍为“1”版本代码应为“9”。
这是一个新的android项目,因为我在硬盘驱动器崩溃时丢失了旧的源代码。
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"
>
我一直在寻找谷歌,PhoneGap,Cordova和这里的多个论坛上的答案,但到目前为止还没有解决方案。有什么建议吗?
答案 0 :(得分:1)
这取决于您的BuildTool。如果是android-gradle,build.gradle
的值将始终覆盖AndroidManifest.xml
中的相应值。