Cordova建置失败,因为aapt2不明的区块类型'200'

xa9qqrwz  于 2022-11-15  发布在  其他
关注(0)|答案(1)|浏览(1080)

我有cordova@11 + cordova-android@10.1.2的构建问题,对于一个空的应用程序,我得到

aapt2.exe W 07-07 09:09:11  9232  8132 LoadedArsc.cpp:682] Unknown chunk type '200'.

我已经更新了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 name="scheme" value="app" />
    <preference name="hostname" value="test.app" />
    <preference name="deployment-target" value="12.0" />
    <preference name="android-minSdkVersion" value="23" />
    <preference name="android-maxSdkVersion" value="32" />
    <preference name="android-targetSdkVersion" value="32" />
    <preference name="Orientation" value="portrait" />
    <preference name="DisallowOverscroll" value="true" /> 
    <preference name="EnableViewportScale" value="true" />
</widget>

然后构建看起来是成功的,但是如果我添加任何插件,我得到设备没有准备好(没有激发5秒)。我如何调试这个?

cnwbcb6i

cnwbcb6i1#

尝试将构建目标更改为30。我认为构建工具还不能构建SDK32。

相关问题