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

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

build.gradle:

\"build.gradle\"

Android build.gradle shows following error

ERROR: Parse         


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

    In manifest file I commented like

    /* something i wrote here
    */
    

    When i deleted this commented line then it was synced and run properly.

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

    It usually happens when there is mistakenly if you have entered any special character or alphabets or numbers in AndroidManifest.xml file

    Here meaning [row,col]:[65,9] error in line number between 64 to 66

    In my case it happenen because as I shown in below screen shot

    Here meaning [row,col]:[65,9] error in line number between 64 to 66 Hope it helps

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

    when say [27:15] that means you have an error in that position . go to the 27th line and if you have any wrong character correct it or maybe forget the /> or any little mistake in your manifest.xml

    NOTE: some times the Merged Manifest can help you.

    0 讨论(0)
  • 2020-12-03 18:01

    You're using the wrong comment syntax.

    Please remove the # comment from the Manifest file and replace it with <!-- Comment -->.

    0 讨论(0)
  • 2020-12-03 18:02
    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.
    
    0 讨论(0)
  • 2020-12-03 18:04

    I got this error after updating the Gradle version, Manifest file was the same though. However reformatting the code in Manifest fixed it.

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