Skip to content

Instantly share code, notes, and snippets.

@barend
Created October 2, 2013 09:34
Show Gist options
  • Save barend/6791274 to your computer and use it in GitHub Desktop.
Save barend/6791274 to your computer and use it in GitHub Desktop.
Find string literals in smali
find . -name '*.smali' \
| grep -vE 'actionbarsherlock|watson|support' \
| xargs grep -F const-string \
| awk '{ print substr($0, index($0, "\"")) }' \
| sort \
| uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment