1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 23:55:24 +02:00
tldr/pages/android/pm.md
Vitor Henrique 814e511bae
pages*: add missing mnemonics (part 1) (#12143)
* pages*: add missing mnemonics

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-02-09 20:04:08 +05:30

466 B

pm

Display information about apps on an Android device. More information: https://developer.android.com/studio/command-line/adb#pm.

  • List all installed apps:

pm list packages

  • List all installed [s]ystem apps:

pm list packages -s

  • List all installed [3]rd-party apps:

pm list packages -3

  • List apps matching specific keywords:

pm list packages {{keyword1 keyword2 ...}}

  • Display a path of the APK of a specific app:

pm path {{app}}