1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:02:08 +02:00
tldr/pages/android/pm.md
Emily Grace Seville d6699a289f
pm, settings: refresh pages (#9717)
* Refresh `pm`:
- simplify descriptions
- fix placeholder for keywords

* Refresh `settings`:
- deprecate `the` in favor of `a`

* pm,settings: update Tamil translation

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-01-03 22:23:22 +05:30

24 lines
462 B
Markdown

# 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 system apps:
`pm list packages -s`
- List all installed 3rd-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}}`