I'm trying to implement facebook login in my app so I followed facebook instructions and I needed to create strings.xml file because I didn't have this file, but when I start the app I get this error:
Execution failed for task ':app:mergeDebugResources'.
Error: The processing instruction target matching "[xX][mM][lL]" is not allowed.
My strings.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">name</string>
<string name="facebook_app_id">00000000000</string>
<string name="fb_login_protocol_scheme">fb000000000000</string>
</resources>
What should I do to solve this problem?