我有cordova@11+的构建问题cordova-android@10.1.2,有一个空的应用程序,我得到
aapt2.exe W 07-07 09:09:11 9232 8132 LoadedArsc.cpp:682] Unknown chunk type '200'.
Run Code Online (Sandbox Code Playgroud)
我已经更新了 Android Studio 中的所有 SDK 和构建工具。这是我的配置
<?xml version='1.0' encoding='utf-8'?>
<widget id="test.app" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloCordova</name>
<description>Sample Apache Cordova App</description>
<author email="dev@cordova.apache.org" href="https://cordova.apache.org">
Apache Cordova Team
</author>
<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>
<preference …Run Code Online (Sandbox Code Playgroud) 新版本的 cordova-android (11) 添加了对 API 级别 11 和 12 的支持,现在具有 API 闪屏支持,并且该插件现已弃用。
我的问题是,如果我的目标是 Android SDK 6 到 12(对于 SDK 6 到 10),我还需要该插件吗?
谢谢