From c1fb61cf250fc794a45a2e66d7300710e9467d90 Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Thu, 25 Mar 2021 01:50:45 +0100 Subject: [PATCH] android/pm: add page (#5458) It's time for another new platform :D :tada: --- pages/android/pm.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/android/pm.md diff --git a/pages/android/pm.md b/pages/android/pm.md new file mode 100644 index 000000000..4310dcba8 --- /dev/null +++ b/pages/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Show information about apps on an Android device. +> More information: . + +- 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}}`