Reputation: 25
drawable/icondrawable/icon
<?xml version="1.0" encoding="utf-8"?>
<resources
<string name="app_name">MerjProject</string>
<string name="hello">Hello World!</string>
<string name="menu_settings">Settings</string>
<string name="ref">this is a reference</string>
</resources>
Where have i gone wrong??
Upvotes: 0
Views: 3972
Reputation: 336128
Your XML file is missing a >
in the second line:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">MerjProject</string>
<string name="hello">Hello World!</string>
<string name="menu_settings">Settings</string>
<string name="ref">this is a reference</string>
</resources>
Upvotes: 1