Cordova Build minSdkVersion 从 16 更改为 19

Cordova Build minSdkVersion change 16 to 19

我的项目中有 android 版本 7.1.1

添加 android 后,我使用 "cordova Build" 命令构建项目

我得到以下错误

See http://g.co/androidstudio/manifest-merger for more information about the manifest merger.

:app:processDebugManifest FAILED
uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library [:CordovaLib] C:\Users\trikonuser\TestAgain\WebCall_AS_tsim\webCall\platforms\android\CordovaLib\build\ intermediates\manifests\full\debug\AndroidManifest.xml as the library might be using APIs not available in 16

Suggestion: use a compatible library with a minSdk of at most 16,
        or increase this project's minSdk version to at least 19,
        or use tools:overrideLibrary="org.apache.cordova" to force usage (may lead to runtime failures)

现在魔法在我的档案中 www/config.xml 和 xml/config.xml

<preference name="android-minSdkVersion" value="19" /> 
<preference name="android-targetSdkVersion" value="27"/>

和main/AndroidManifest.xml文件我放了

<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="27" />

虽然我的 gradle 文件还包含

project.ext {

defaultBuildToolsVersion="27.0.1" //String
defaultMinSdkVersion=19 //Integer - Minimum requirement is Android 4.4
defaultTargetSdkVersion=27 //Integer - We ALWAYS target the latest by default
defaultCompileSdkVersion=27 //Integer - We ALWAYS compile with the latest by default
}

但是在 运行 执行命令 cordova build 之后,它会将我自动进行的所有配置更改为之前的配置,如下所示

www/config.xml 和 xml/config.xml

<preference name="android-minSdkVersion" value="16" />
<preference name="android-targetSdkVersion" value="27"/>

和main/AndroidManifest.xml文件我放了

<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="27" />

如果 Cordova Build 命令 运行 已经想要 19

,如何再次更改为 16

我用的是phonegap以下版本

<preference name="phonegap-version" value="cli-6.3.0" />

删除 android 平台并添加:

cordova platform add android@7.0.0

这应该对你有帮助。