1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 23:42:07 +02:00
tldr/pages/android/pm.md
marchersimon c1fb61cf25
android/pm: add page (#5458)
It's time for another new platform :D 🎉
2021-03-25 00:50:45 +00:00

24 lines
490 B
Markdown

# pm
> Show information about apps on an Android device.
> More information: <https://developer.android.com/studio/command-line/adb#pm>.
- Print a list of all installed apps:
`pm list packages`
- Print a list of all installed system apps:
`pm list packages -s`
- Print a list of all installed 3rd-Party apps:
`pm list packages -3`
- Print a list of apps matching specific keywords:
`pm list packages {{keywords}}`
- Print the path of the APK of a specific app:
`pm path {{app}}`