Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to change the name of an app without creating a new project?

Example: On the home page where my apps are, I have an icon and the name x, but i want to change the name to y. Can I do this?

share|improve this question

7 Answers

up vote 70 down vote accepted

Yes you can. By changing the "android:label" field in your application node in AndroidManifest.xml.

As Pixie mentioned, it's the label attribute. Thanks.

See more here

share|improve this answer
3  
android:name attribute is for subclassing Application. Application label can be changed using android:label attribute. – Michael Mar 26 '11 at 21:18
1  
@Pixie: Thanks for correcting me. – Binyamin Sharet Mar 26 '11 at 21:22
26  
And for any complete beginners you might find this 'android:label="@string/app_name"'. In /res/values/strings.xml you will find the definition for the string app_name: <string name="app_name">Your app name</string>. Hope that saves someone a little time as they are starting out. – Michael Reed Feb 11 '12 at 15:59
i have <string name="app_name">myname</string> in my strings.xml and use it in my manifest: android:label="@string/app_name". i still have my old developername (SplashActivity) even after an uninstall (it is named "myname" when i need to confirm uninstall) – Wandang Feb 21 at 16:45
1  
user864555 gave me the full solution (3 post to the bottom) – Wandang Feb 21 at 16:55

There's the android:label for the application, and the android:label for the launch activity. The former is what you see under Settings -> Applications -> Manage Applications on your device. The latter is what you see under Applications, and by extension in any shortcut to your application, e.g.

<application
    android:label="@string/turns_up_in_manage_apps" >
    <activity
        android:name=".MainActivity"
        android:label="@string/turns_up_in_shortcuts" >
        ...
    </activity>
</application>
share|improve this answer

You mind have to change also the name of your main activity "android:label" as explained in Naming my application in android

share|improve this answer
thanks, that was exactly my problem! – Wandang Feb 21 at 16:54

Nevermind I found it. It can be done in the manifest file under application just set the android label. Was thrown off at first becasue it didn't change my shortcut of the application's name.

share|improve this answer

It depends what you want to do. I personally wanted to rename my project so it didn't say MainActivity at the top of the app and underneath the icon on my phone menu.

To do this I went into the Android Manifest.xml file and edited

<activity
        android:name=".MainActitivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

And edited the android:name=".Mynewname" and then edited the string title_activity_main in the strings.xml file to match the name.

Hope that helps!

share|improve this answer
This is the root cause, when we create a new activity thru the New-> Wizard in eclipse. Good catch – Siddharth Oct 9 '12 at 5:33
Strange that this fixed it when the actual Application android:label did not. – loeschg May 8 at 20:36

very easy go to res file -> values -> strings.xml....

<string name="app_name">MitsuhoSdn Bhd</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>

hope this is ur mean for changing application name

share|improve this answer

Yes Of-course........Android Supports to change the name of the App before making build just like iOS (Build Configuration). You can change it by Modifying the Android manifest file for the project.

share|improve this answer

protected by Community May 14 at 8:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.