build.gradle:
Android build.gradle显示以下错误
ERROR: ParseError at [row,col]:[65,9] Message: expected start or end tag Affected Modules: app
答案 0 :(得分:26)
我遇到了同样的错误,并且在AndroidManifest.xml的[row,col]位置找到了错误的字符,而不是build.gradle
答案 1 :(得分:2)
更新Gradle版本后出现此错误,但清单文件相同。但是,清单文件中的代码重新格式化解决了该问题。
答案 2 :(得分:2)
我遇到了同样的错误,最后我发现Mainfest.xml文件中有错误
<service
android:name=".onboarding.httpserver.HttpService"
android:exported="false"
>
</service>>
您看到,/ service之后有两个>>。这是错误的。 解决此错误后,此消息消失了
答案 3 :(得分:2)
说[27:15]
时表示您在该位置有错误。转到27th line
,如果您有任何wrong character
更正它,或者忘记了/>
或您的manifest.xml
中的小错误
注意:有时Merged Manifest
可以为您提供帮助。
答案 4 :(得分:1)
清单文件中出现了注释行,当我删除注释行并构建gradle文件时,错误得以解决。
答案 5 :(得分:1)
我遇到了类似的错误
Message: expected start or end tag
Affected Modules: app
[row, cal] 17,17
我忘记了清单中不必要的/>
个字符。尝试清洁任何有它的人。
答案 6 :(得分:1)
也有相同的错误。只需查看清单文件的位置[行]并解决问题(我有多余的“>”)
答案 7 :(得分:1)
Simple answer see any thing by mistakenly added unwanted code in the manifest.xml file.
if manifest.xml file is not visible in the android studio project
Goto project folder choose the manifest.xml file and cross check unwanted or commented code.
答案 8 :(得分:1)
通常会在错误输入AndroidManifest.xml
文件中输入任何特殊字符,字母或数字时发生
此处表示[row,col]:[65,9]
之间的行号中的64 to 66
错误
就我而言,它的发生是因为如下面的屏幕截图所示
此处表示[row,col]:[65,9]
之间的行号中的64 to 66
错误
希望对您有帮助
答案 9 :(得分:1)
答案 10 :(得分:1)
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent">
对我来说是因为我从一个 xml 文件在布局视图中插入了布局宽度。
答案 11 :(得分:0)
检查错误添加到清单文件中的所有不需要的字符。删除这些字符/行后,问题在我的工作应用程序中解决了。检查一次,祝您编码愉快
答案 12 :(得分:0)
在清单文件中,我评论为
/* something i wrote here
*/
当我删除此注释行时,它已同步并正常运行。
答案 13 :(得分:0)
在我的布局文件中,我不小心将android:padding="16dp"
放在了数据绑定布局中
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:padding="16dp" <-----this cause the error in my case
>
.............
..............
..........
</layout>
删除android:padding="16dp"
后工作正常
答案 14 :(得分:-1)
您使用了错误的注释语法。
请从清单文件中删除#
注释,并将其替换为<!-- Comment -->
。