Change APP icon after installed - IONIC

1

I am developing an APP in ionic 1.x and would like to know if it is possible to change the APP icon after it is installed on the user's phone.

I saw some solutions but all in native code of their devices.

Does anyone have this knowledge?

    
asked by anonymous 05.09.2016 / 14:42

1 answer

3

Native code solutions are valid, you can import the project you are working (ionic) into the android studio and make the icons change and generate in the new .apk. How to import this project?

  • When you run the 'ionic platform add android' command, ionic will create a folder with a project that can be imported into android studio into the root folder of your project within \ platforms \ android (when importing with android studio it will identify as an android project).
  • After importing it you should change the images that are located inside the res / drawable folder (when changing the images observe the extensions and sizes) to keep a pattern you should keep the current ones.
  • 12.12.2016 / 12:59