Hacker News new | ask | show | jobs
by xrisk 2647 days ago
How do I generate a list like this?
1 comments

Login to android shell using adb
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"