Reputation: 1071
i want to change the app name. Not every where. only in the launcher screen of an android.
Not inside the app or in the installation screen.
is this possible?
Upvotes: 1
Views: 70
Reputation: 5351
Your Manifest.xml
file should be similar to this:
<application
....
<activity
android:name=".activities.SplashScreenActivity"
android:label="myLabel"
android:screenOrientation="portrait"
android:theme="@style/SplashTheme">
....
....
As you can see every Activity
node has a label
attribute. Changing this changes only the activity label (not all over the application)
Upvotes: 3
Reputation: 35661
Set the android:label
attribute of the main Activity
in your Android Manifest (the one that starts when the Launcher icon is pressed)
Upvotes: 0