android版本号android版本名cordova
android version Code android version name cordova
更改我的代码后,我尝试使用 cordova 更新我的 android 应用程序版本构建。
在 AndroidManifest.xml 中,我将 android:versionName 更改为更高的数字,例如“1.2.9”到“1.2.10”,并将 android:versionCode 更改为同一文件。
使用 cordova 构建后,这两个数字会自动更改。我试图在 config.xml 文件中添加 android:versionName 但在 cordova 构建之后发生了同样的事情并且在构建过程中我收到错误
FAILURE: Build failed with an exception.
- 出了什么问题:
任务“:processReleaseResources”的执行失败。
com.android.ide.common.process.ProcessException: Failed to execute aapt
知道如何解决这个问题吗?
要为 android 设置版本代码和版本名称,您必须将 android-versionCode=""
和 version=""
添加到 config.xml
中的 <widget>
标签如下例所示:
<widget android-versionCode="100" version="1.0.0" ... >
您不应该直接修改 platforms
文件夹中的任何内容,因为当您 prepare/build/readd 平台时它会被重新创建。
更改我的代码后,我尝试使用 cordova 更新我的 android 应用程序版本构建。 在 AndroidManifest.xml 中,我将 android:versionName 更改为更高的数字,例如“1.2.9”到“1.2.10”,并将 android:versionCode 更改为同一文件。 使用 cordova 构建后,这两个数字会自动更改。我试图在 config.xml 文件中添加 android:versionName 但在 cordova 构建之后发生了同样的事情并且在构建过程中我收到错误
FAILURE: Build failed with an exception.
- 出了什么问题:
任务“:processReleaseResources”的执行失败。
com.android.ide.common.process.ProcessException: Failed to execute aapt
知道如何解决这个问题吗?
要为 android 设置版本代码和版本名称,您必须将 android-versionCode=""
和 version=""
添加到 config.xml
中的 <widget>
标签如下例所示:
<widget android-versionCode="100" version="1.0.0" ... >
您不应该直接修改 platforms
文件夹中的任何内容,因为当您 prepare/build/readd 平台时它会被重新创建。