Skip to content

Instantly share code, notes, and snippets.

@davidnunez
Created November 29, 2011 13:20
Show Gist options
  • Save davidnunez/1404789 to your computer and use it in GitHub Desktop.
Save davidnunez/1404789 to your computer and use it in GitHub Desktop.
list all installed packages in android adb shell
pm list packages -f
@SashaDesigN
Copy link

adb shell 'pm list packages' | sed 's/.*://g'

thx worked well

@theChandrayMurmu
Copy link

What is the command that shows the list of user-installed applications on the Android Phone?

@Anubioz
Copy link

Anubioz commented Oct 1, 2024

What is the command that shows the list of user-installed applications on the Android Phone?

pm list packages -3

(as in 3-rd party)

That fortunately requires root to work

@theChandrayMurmu
Copy link

(as in 3-rd party)

That fortunately requires root to work

@Anubioz Thank you for your reply. However, my phone is not rooted. I will look for an alternative solution and let you know if I find anything.

@username-is-not
Copy link

username-is-not commented Sep 18, 2025

For anyone wondering about full command using adb adb shell pm list packages -f worked for me

Yo... it "works", because that it the CMD to use. xD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment