⏱️ Reading Time: 1 minute | 📝 Word Count: 169
Changing App Name in Android Studio
There are 2 places where you can change the app name:
Method 1: Change in strings.xml (Recommended)
- In the Project panel, go to:
app → res → values → strings.xml - Find this line:
<string name="app_name">YourCurrentAppName</string>
- Replace the name with your desired name:
<string name="app_name">MyNewAppName</string>
- Save the file (
Ctrl+S/Cmd+S)
Method 2: Change in AndroidManifest.xml
- Go to:
app → manifests → AndroidManifest.xml - Find the
<application>tag and look for theandroid:labelattribute:
<application
android:label="@string/app_name"
... >
- You can either:
- Keep it pointing to
@string/app_nameand editstrings.xml(Method 1) - Or directly hardcode the name:
xml android:label="MyNewAppName"
- Save the file
After Changing
- Clean & Rebuild the project:
Build → Clean Project, thenBuild → Rebuild Project - Run the app on a device/emulator to see the updated name
Tip: Method 1 (strings.xml) is the best practice because it supports multiple languages (localization) easily.