Error parsing XML: prefix must not be bound to one of the reserved namespace names

前端之家收集整理的这篇文章主要介绍了Error parsing XML: prefix must not be bound to one of the reserved namespace names前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

gradlew在android6.0 (M)正式使用

gradlew 出现问题error

Error parsing XML: prefix must not be bound to one of the reserved namespace names

我们通常会在resource file (.xml)开头加上类似

<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
这个没有问题,在加入字符串时,
注意如果是不用再加入xmlns:xliff或者xmlns:****(更不能加没有定义的namespace前缀)
比如

<stringname="XXX_txt" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">XXXXXX</string>

直接删除xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"就可以了
原文链接:https://www.f2er.com/xml/295322.html

猜你在找的XML相关文章