How to change the name of the application for Android

I started with an Android app with a dumb name. I did not understand that he should have his own name. And now I want this to be changed throughout the application.
I am not sure how I can achieve this in Eclipse. Should I just copy the insertion of the new name into the entire application, or is there a second option that might be easy?

A rock

+5
source share
3 answers

just change the value of res / value / string.

<string name="app_name">put appropriate name</string>

if it doesn’t work, then the android manifest

< activity android:name="< app name>" android:label="< >" android:configChanges="orientation|keyboardHidden">

try your work.

+7
source

As I understand it, you just need to change the attribute android:labelin AndroidManifest.xmlfor the Application tag .

0

change application name in String.xml file

like <string name="app_name">MyAppname</string>

it will be automatically changed in the manifest file

0
source

All Articles