Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android build.gradle ERROR: ParseError at [row,col]:[65,9] Message: expected start or end tag Affected Modules: app

build.gradle:

build.gradle

Android build.gradle shows following error

ERROR: ParseError at [row,col]:[65,9] Message: expected start or end tag Affected Modules: app 
like image 642
Sreenu Avatar asked Oct 17 '18 05:10

Sreenu


2 Answers

I got the same error, and the wrong character was found in the [row, col] position of the AndroidManifest.xml, not build.gradle

like image 116
Nguyen Pham Avatar answered Oct 11 '22 11:10

Nguyen Pham


I got this same error, and finally I found that there is error in Mainfest.xml file

 <service         android:name=".onboarding.httpserver.HttpService"         android:exported="false"         >     </service>> 

you see, there are two >> after /service. which is wrong. After I fix this error, this message is disappear

like image 34
user946110 Avatar answered Oct 11 '22 11:10

user946110