Last active
August 22, 2022 14:41
-
-
Save creativcoder/5dc5c2e35cd218ce9b5d to your computer and use it in GitHub Desktop.
Get list of installed packages(apps) in android via adb shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Issue this command to terminal with your device connected : | |
$ adb shell pm list packages | |
If that doesn't work, then: | |
$ adb shell | |
$ su | |
$ pm list packages |
Worked. Love you, man!
Thanks, its still works at 2019)
I didn't need su and just did this: "adb shell pm list packages"
thanks
it's work for me, this command: adb shell pm list packages
work very good!
thanks
really thx mate
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
good it worked