Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I change my Android app icon and name in later release?

This is going to sound stupid in a way, but I want to know if it is possible to change the application logo (icon) and Android name in my subsequent releases?

Say, today I push my app in the Android market, and tomorrow I want to change the logo/icon (I know I "should" not do this), but is it possible to do so? Also, what about the application name?

Thanks

like image 456
Kraken Avatar asked Sep 29 '14 06:09

Kraken


People also ask

Can I change app icon and name?

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.

Can you change the name of an icons on Android?

When you install an app on an Android device, a shortcut for the app is created with a default name and added to your home screen. The Android system does not allow you to change the name of your shortcuts.

Can we change app name dynamically in Android?

It's not possible by the moment. It is a fixed string in the AndroidManifest. xml file which cannot be changed at runtime.


1 Answers

I got the same question and I asked this to android developer support, got their reply as below

You may update your icon displayed in Google Play by uploading the updated icon to the Store Listing tab of the Play Console. However, once the app has been installed on a device, the icon will be displayed from the graphic assets of the APK as defined in the “android:icon=” manifest property. The icon that is displayed in the apps list in the Play Console is also taken from the APK.

To display a different icon, please update the icon image file in your APK. To find the location of the existing icon, you can use the manifest property or check your APK’s “res” folder.

So I got the icon updated at app store without submitting the app again (Note: I have already submitted with the icon change, so what I was looking to is how this can be reflected to App store icon). Please see screenshots attached for getting someone who is needy.

Left tab right tab

like image 122
Anand Avatar answered Sep 25 '22 21:09

Anand