简体   繁体   中英

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.

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*" find. -name "ic_launcher*"

Hope this helps

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM