[SOLVED] Set Android App Showing Name
-
Hi, everyone!
I'm pretty sure someone mus have ask the same before me, but I could not find a post or anny in google to solve this.
So here is my question (Maybe re-asked)I'm deploying an app on Android.
I have auto generated the following files inside my project folder:@android
├── AndroidManifest.xml
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── res
└── values
└── libs.xml@Editing AndroidManifest.xml allow me to set the app icon etc etc...
But the App Name, as it is set here, is only show in the install and uninstall screen.
The App Icon in the Launcher always show the project name.
How can it be set different?
Regards
-
The android:label value is already set in the AndroidManifest.xml
But in android the app icon at the launcher still have the project name.
The Label is only shown on the app information screen at the phone settings.
-
Strange. I always set the android:label and it's shown everywhere.
The first time you installed the app on the device the android:label was already set or not ?
Because, some devices doesn't update information on the launcher if the app is upgraded via deployment on USB cable (as you normally do for testing the app).
If it's the case, the completely delete the app and re-install. -
Thank you very much DOOMer,
It solve the problem.
Regards