Sometimes I have a trouble matching application's package name in /data/data/
or /data/app/*.apk
with the user-friendly activity label I see in GUI.
How do I list application packages together with their activities?
Expecting something like this:
$ adb shell list_apps
de.shandschuh.sparserss "Sparse rss"
org.vudroid "VuDroid"
jcpezzullo.statical "StatiCal"
tone.control "Tone Control"
...
aapt
on host:for i in /directory/with/downloaded/apk/files/*.apk; do printf '%s %s\n' "`aapt dump badging \"$i\" | grep application-label:`" "$i"; done
– Vi0 Jan 15 '15 at 01:38