Error on first build after creating a project: XML document structures must start and end within the same entity

后端 未结 1 368
野性不改
野性不改 2021-01-23 17:27

Whenever I create a new project (I use the default options, only change the name and the domain) and the building and syncing starts (it starts automatically) I get the followin

相关标签:
1条回答
  • 2021-01-23 17:41

    In XML you have to use both starting and closing tag for the component. In your case you are missing those. Take a look.

    <application>
    <component name="PropertiesComponent">
        <property name="ATTACHED_TOOL_WINDOW.DEFAULT.NELE_EDITOR.COMPONENT_TREE.AUTO_HIDE" value="false" />
        <property name="ATTACHED_TOOL_WINDOW.DEFAULT"/>
    </component>
    </application>
    
    0 讨论(0)
提交回复
热议问题