HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pm — Display information about apps on an Android device. More information: <https://developer.android.co

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandappscliinformationpmaboutandroiddisplay
mobile

Problem

How to use the pm command: Display information about apps on an Android device. More information: <https://developer.android.com/tools/adb#pm>.

Solution

pm — Display information about apps on an Android device. More information: <https://developer.android.com/tools/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}}

Code Snippets

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}}

Context

tldr-pages: android/pm

Revisions (0)

No revisions yet.