The content of the elements should consist of well-formed character data or markup. AndroidManifest.xml

When I use this code on AndroidManifest.xml

<provider android:authorities="android.androidcustom.quicknotesprovider" android:name=".QuickNotesProvider" >="" <="" pre=""> </provider> 

I have this error, how can I fix it?

The content of the elements should consist of well-formed character data or markup. AndroidManifest.xml

+4
source share
1 answer

Remove the syntax errors from the end, for example:

 <provider android:authorities="android.androidcustom.quicknotesprovider" android:name=".QuickNotesProvider" > 

I assume that you also close this tag:

 </provider> 

If you use Eclipse, sometimes different characters will appear at the end of your line when you use autocomplete functions. (Sometimes these "bonus" symbols are not even displayed, which can be frustrating!)

+3
source

Source: https://habr.com/ru/post/1435139/


All Articles