The problem with XML causing the IDE to not work properly.
XML files generated by the XML2map.map2XML support library can have serious problems parsing in B4X:
When the "comment" node has no content, the resulting XML file is written as "<comment/>".
This is not approved by the B4X compiler.Can cause unexpected errors.
Because b4X-IDE is parsing the support library help file ".xml", encountered this method of writing the file will not work.
It only accepts :<comment></comment>
The XML on the left is unmodified and can be recognized by the IDE.The XML on the right is generated by the library parsing and is not recognized by b4X-IDE.
As Erel said. Because the XML file was corrupted.
XML files generated by the XML2map.map2XML support library can have serious problems parsing in B4X:
When the "comment" node has no content, the resulting XML file is written as "<comment/>".
This is not approved by the B4X compiler.Can cause unexpected errors.
Because b4X-IDE is parsing the support library help file ".xml", encountered this method of writing the file will not work.
It only accepts :<comment></comment>
The XML on the left is unmodified and can be recognized by the IDE.The XML on the right is generated by the library parsing and is not recognized by b4X-IDE.
As Erel said. Because the XML file was corrupted.