Y
Hacker News
new
|
ask
|
show
|
jobs
by
xrisk
2647 days ago
How do I generate a list like this?
1 comments
akerro
2647 days ago
Login to android shell using adb
link
kopijahe
2647 days ago
More specifically:
adb shell pm list packages
You can sort it alphabetically by piping it through the "sort" command, like this:
adb shell "pm list packages | sort"
link