2

I have developed an Android application and installed it on a device. I want to fetch app icon as well as app name from a server dynamically while the application is running. Is it possible to do so?

Jordan
  • 713
  • 15
  • 30
cbin z
  • 23
  • 1
  • 5

2 Answers2

0

Since the application's name & icon are hardcore in manifest file. And these values are hardcore ones. We can't change it once it's made. We can't change Raw values. See this post,

Changing of raw values programatically.

Manoj Perumarath
  • 9,337
  • 8
  • 56
  • 77
0

Since application's name & icon are hardcore in manifest file,but we can't change the manifest file. Also, we can't change the res file when the app has installed. So it is impossible to change the icon & name.

But, if the icon & name are already in the res file, we can change them,see this:How to change an application icon programmatically in Android?

Maybe there is a solution by Hook,plug-ins or Hot fix?

cbin z
  • 23
  • 1
  • 5