Created
January 9, 2014 02:30
-
-
Save chrishuan9/8328471 to your computer and use it in GitHub Desktop.
Dumping package list of installed applications on your android device
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
>$ adb shell pm list packages | |
#will give you a list of all installed package names. | |
#You can then use dumpsys | grep -A18 "Package \[my.package\]" to grab the package information such as version identifiers etc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment