Android Question <Solved> Parsing Error, AndroidManifest.xml:10:error...

Javier Donayre

Member
Licensed User
Hi,
Since I installed B4A version 9.01.2, I have the following error:

Packaging files: Error
AndroidManifest.xml:10:error:Error parsing XML: not well-formed (invalid token)
AAPT path: C:/Android/tools/../build-tools/27.0.1/appt.exe
Exit code:1


The AndroidManifest.xml file hat in line 10:

<support-screens android:
largeScreens="true"
android:normalScreens="true"
...
/>​

When line 10 is changed in the following way and the file property is read-only, there is no error.
<supports-screens android:largeScreens="true"
android:normalScreens="true"
...
/>​

Where is the problem? Any idea?
 
Last edited:
Top