Search code examples
androidadb

How to get the icon of the installed application in the Android system?


In which folder of the Android system are the icons of the installed APKs stored in the Android system? Is it possible to get the icon of the installed apk using adb?

I try to use adb to read the application directory but it says insufficient permissions.


Solution

  • The steps required to get an app's icon are:

    1. pull the apk of the app you are interested with the following procedure

    2. decompile the apk using apktool

    3. search for the app's icon in a folder named res. For instance you can use the following unix command: find . -name "ic_launcher*"

    Hope this helps