I have a .dex file, call it classes.dex.
.dex
classes.dex
Is there a way to \"read\" the contents of that classes.dex and get a list of all class
dxshow mydexfile.dex
dxshow:
strings -a $1 | grep "^L.*/" | grep -v "Ljava" | grep -v "Landroid" | sed "s/^L\(.*\);/\1/" | sed "s:/:.:g"
ezpz hack... didn't wanna spend a lifetime java coding