简体   繁体   English

org.xml.sax.SAXParseException android studio gradle 错误

[英]org.xml.sax.SAXParseException android studio gradle error

Error:错误:

org.xml.sax.SAXParseException; org.xml.sax.SAXParseException; lineNumber: 0;行号:0; columnNumber: 0;列数:0; cvc-pattern-valid: Value 'support_r23.2.1' is not facet-valid with respect to pattern '[a-zA-Z0-9_-]+' for type 'idType'. cvc-pattern-valid:值 'support_r23.2.1' 对于类型 'idType' 的模式 '[a-zA-Z0-9_-]+' 不是方面有效的。

You are using support_r23.2.1 as idType .您正在使用support_r23.2.1作为idType According to the regular expression [a-zA-Z0-9_-]+ , idType must only contain alphanumeric characters (lowercase or uppercase) as well as - and _ .根据正则表达式[a-zA-Z0-9_-]+idType必须只包含字母数字字符(小写或大写)以及-_ So your string does not match the expected format because it contains dots.所以你的字符串与预期的格式不匹配,因为它包含点。 Try to change your idType to a string that does not contain any .尝试将您的 idType 更改为不包含任何. character.特点。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 每个项目中的Android Studio org.xml.sax.SAXParseException - Android Studio org.xml.sax.SAXParseException in every project 更新Android SDK时出错(org.xml.sax.SAXParseException) - Error updating Android SDK (org.xml.sax.SAXParseException) 更新android SDK时出错(org.xml.sax.SAXParseException) - error in updating android sdk (org.xml.sax.SAXParseException) org.xml.sax.SAXParseException:解析XML时出现意外的令牌 - org.xml.sax.SAXParseException: Unexpected token while parsing XML org.xml.sax.SAXParseException:处理指令不得以xml开头 - org.xml.sax.SAXParseException: processing instructions must not start with xml 错误:org.xml.sax.SAXParseException ..任务':app:fabricGenerateResourcesDebug'的执行失败。 Crashlytics开发人员工具错误 - Error:org.xml.sax.SAXParseException .. Execution failed for task ':app:fabricGenerateResourcesDebug'. Crashlytics Developer Tools error 解析KML文件并抛出org.xml.sax.SAXParseException - Parsing the KML file throwing org.xml.sax.SAXParseException org.xml.sax.SAXParseException:意外令牌(java.io.StringReader@4156ccc8中的位置:TEXT @ 1:2) - org.xml.sax.SAXParseException: Unexpected token (position:TEXT @1:2 in java.io.StringReader@4156ccc8) org.XML.sax.SAXParseException:意外的令牌(java.io.StringReader@959e0aa中的位置:TEXT @ 1:2) - org.XML.sax.SAXParseException: Unexpected token (position:TEXT @1:2 in java.io.StringReader@959e0aa) 错误Gradle XML Android Studio - Error Gradle XML Android Studio
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM