Im trying to change the label of an android activity:
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main">
The above is valid, but when I change it to something like:
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main_test">
It doesnt work, I get the error:
Error in an XML file: aborting build.
Any ideas?
The value of (title_activity_main_test) shuld be declared in the strings.xml file in res/values..