View the name of the system application package

Adb looks at the package name and installation location of the application on the Android phone

  1. Connect the phone to the PC
  2. And put the phone in developer mode, open USB debugging
  3. Enter the command on the PC terminal to check whether it is connected to the mobile phone
adb devices
Copy the code

  1. Enter the shell of the specified device
Adb shell or adb -s ********* shellCopy the code
  1. Adb views all installed packages
pm list packages   
Copy the code

Or look up packages based on a keyword

PM list packages | grep keyword (tencent)Copy the code

  1. View the installation position of the package
pm list packages -f
Copy the code

You can also filter

PM list packages - f | grep keyword (tencent)Copy the code

  1. Pull the APK to the PC
$ exit
$ adb pull /data/app/com.tencent.tbs-1/base.apk ~/Downloads
Copy the code

Generating application Signatures

Download the signature tool GenSignature and install it on your mobile phone

reference

www.kancloud.cn/moxiuxun/ta…