How to Change an Android App'S Name

How to change an Android app's name?

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

Note: If you have added a Splash Screen and added

     android:name=".SplashActivity"
android:label="@string/title_activity_splash_screen"
android:theme="@style/AppTheme">






to your Splash Screen, then the Launcher Icon name will be changed to the name of your Splash Screen Class name.

Please make sure that you change label:

android:label="@string/title_activity_splash_screen"

in your Splash Screen activity in your strings.xml file. It can be found in Res -> Values -> strings.xml

See more here.

How can I change the app display name build with Flutter?

UPDATE: From the comments this answer seems to be out of date

The Flutter documentation points out where you can change the display name of your application for both Android and iOS. This may be what you are looking for:

  • Preparing an Android App for Release
  • Preparing an iOS App for Release

For Android

It seems you have already found this in the AndroidManifest.xml as the application entry.

Review the default App Manifest file AndroidManifest.xml located in
/android/app/src/main/ and verify the values are correct,
especially:

application: Edit the android:label in the application tag to reflect the final name of the
app.

For iOS

See the Review Xcode project settings section:

Navigate to your target’s settings in Xcode:

In Xcode, open Runner.xcworkspace in your app’s ios folder.

To view your app’s settings, select the Runner project in the Xcode project
navigator. Then, in the main view sidebar, select the Runner target.

Select the General tab. Next, you’ll verify the most important
settings:

Display Name: the name of the app to be displayed on the home screen
and elsewhere.

How to rename an app name?

The name of your application is defined in the AndroidManifest.xml, using the android:label attribute in the applicationtag:

    android:label="your app name">

Change android application name

Just go to your values property, then strings and you will be able change it.


My application

Android change the name of app which is to installed on homescreen

Android label tag is used for both Default Title bar and App Name in Home Screen

 android:label="@string/app_name"

If you want to change only App Name then change label and set Title Bar Text to your desire in onCreate() in your activity as below:

this.setTitle("Your Title");

Hope this helps.

Android app name under settings

try this

      android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

inside your strings.xml

your app name


Related Topics



Leave a reply



Submit