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

前端 未结 12 1554
情深已故
情深已故 2020-12-03 17:24

build.gradle:

\"build.gradle\"

Android build.gradle shows following error

ERROR: Parse         


        
相关标签:
12条回答
  • 2020-12-03 17:40

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

    0 讨论(0)
  • 2020-12-03 17:42

    I got the same error similar one like

    Message: expected start or end tag
    Affected Modules: app
    [row, cal] 17,17
    

    I forget an unnecessary /> characters in Manifest. Try to clean it any one has it.

    0 讨论(0)
  • 2020-12-03 17:45

    also had the same error. just look at the location [row] at the Manifest file and fix the problem (I had extra ">")

    0 讨论(0)
  • 2020-12-03 17:47

    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

    0 讨论(0)
  • 2020-12-03 17:48

    I got a Commented line in manifest file, when i removed the commented line and build the gradle file then the error is solved.

    0 讨论(0)
  • 2020-12-03 17:52

    check any unwanted characters that are added in the manifest file by mistake. After removing those characters/lines the problem was solved in my working application. check once and happy coding

    0 讨论(0)
提交回复
热议问题