Skip to content

Instantly share code, notes, and snippets.

@spudtrooper
Created December 14, 2011 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spudtrooper/1477952 to your computer and use it in GitHub Desktop.
Save spudtrooper/1477952 to your computer and use it in GitHub Desktop.
Lists the offending class names in stacktraces created from assemlbing an APK when there are multiple class definitions.
#!/bin/sh
#
# Lists the offending class names in stacktraces created from
# assemlbing an APK when there are multiple class definitions.
#
awk '/already added/ { print $4 }' | sed -e 's/;//g' -e 's/^L//g' -e 's/\//./g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment