How to Change the App Name (Application Name) in Android Studio
You can change the app name displayed on the home screen by modifying the strings.xml
and AndroidManifest.xml
files.
Step 1: Update strings.xml
- Open your Android Studio project.
- Go to:
app/src/main/res/values/strings.xml
- Find the line:
<string name="app_name">YourOldAppName</string>
- Change it to your new app name:
<string name="app_name">YourNewAppName</string>
Step 2: Update AndroidManifest.xml
(If Necessary)
- Go to:
app/src/main/AndroidManifest.xml
- Find the
<application>
tag:<application android:label="@string/app_name"
- If you want a custom name without using
strings.xml
, replace it directly:<application android:label="YourNewAppName"
Step 3: Rebuild & Run the App
- Click Build > Rebuild Project in Android Studio.
- Run the app on an emulator or phone.
Your app name is now updated on the home screen and launcher!