Skip to content

Instantly share code, notes, and snippets.

@spudtrooper
Created October 21, 2011 14:47
Show Gist options
  • Select an option

  • Save spudtrooper/1304026 to your computer and use it in GitHub Desktop.

Select an option

Save spudtrooper/1304026 to your computer and use it in GitHub Desktop.
Prints out the classes in a dex file
#!/bin/sh
dexdump "$@" | awk -F\' '/Class descriptor/ {print $2}' | sed -e 's/^L//g' -e 's/;$//g' -e 's/\//./g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment