Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android application name and icon doesn't change until phone is rebooted (after application update)

Tags:

android

Problem : In the latest update of my Android application, the application name and logo have changed. However, when users update the application, the name and icon don't change until the phone is rebooted.

Questions : Is there anything I could do to enforce the change immediately? Or should I inform users somehow that a reboot is necessary? Or can I somehow force a reboot? Any other ideas?

like image 389
Andy A Avatar asked Mar 30 '12 08:03

Andy A


People also ask

How can I permanently change my Android app icons?

You can use Shortcut Maker to customize app icons and names on any device. Go to Settings > Themes to download and apply icon packs on Samsung devices. You can download and install custom icons via Google Play Store on any Android device. You may need to install a launcher to change app icons.

How do I change the name of an app before installing it?

Go to the app > res > values > strings. xml file as shown in the below image. In this file we have a string name as app_name it is the string resource that holds the current app name which is passed in the Manifest. xml file's application tag inside the label attribute.


2 Answers

The icon is stored in cache, so the only ways to refresh it are to reboot the phone or to clean app cache then update.

like image 130
Manitoba Avatar answered Nov 16 '22 03:11

Manitoba


You need to restart your launcher in order to refresh the icon and name. For this, you may go to Settings -> Applications -> Your-Installed-Launcher -> Force stop. Once you land on home screen, your launcher will kick-in and refresh everything itself

like image 31
waqaslam Avatar answered Nov 16 '22 05:11

waqaslam