Page 1 of 1

XML Entity not defined

Posted: Thu May 18, 2017 6:49 pm
by Rares
In this code at the link i have this error: Entity 'id' not defined.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<applicationID appID="AstroAndAliensLauncher">
<latestVersion>2.0</latestVersion>
<latestVersionUrl>https://docs.google.com/uc?export=download&id=0B5zn7TabTxbjM1kwdEZYRGo3NEU</latestVersionUrl>
<description>Is Working</description>
</applicationID>
How i can solve that?

Re: XML Entity not defined

Posted: Thu May 18, 2017 6:55 pm
by adrian
Hi,

& is a special character in XML. You need to escape it.
Replace & (from &id) with &

Regards,
Adrian