How can I change application label to change app name shown from java code in android? I'm refering to:
<application android:icon="@drawable/icon" android:label="@string/app_name">
in the Android Manifest
Is there any way to update values in strings.xml file?
in the activity, i tried
this.setTitle("your text");
and it worked. I hope it's a common solution