Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

renaming the name of the APP alone in Android Eclipse IDE

I created a wonderful app, but I want to rename the "application name" alone... (i.e the name seen by the user on the app icon ) .. ( this isn't package renaming)

How do I do it, without creating a new one ...

like image 996
Zac Avatar asked Mar 21 '11 04:03

Zac


2 Answers

In the strings.xml file, there is an element app_name which is used in the AndroidManifest's application element as the app's name. Just change the value of app_name in the strings.xml file to change the name of your app.

like image 199
Mudassir Avatar answered Oct 14 '22 20:10

Mudassir


You don't need to refactor to change the name that people see. That is set in your res->values->Strings.xml file. You can call it what you want.

like image 31
apesa Avatar answered Oct 14 '22 20:10

apesa