报错:
/platforms/android/build/intermediates/res/merged/debug/xml/config.xml:79: error: Error parsing XML: unbound prefix
解决:
在widget标签引入xmlns:android="http://schemas.android.com/apk/res/android"
<widget id="com.demo.myapp" version="1.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">
网友评论