Guest User

decompile-apk

a guest
Nov 18th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #!/bin/bash -e
  2. if ! [ "$1" ]; then
  3. echo "usage: $0 <file.apk>"
  4. exit -1
  5. fi
  6.  
  7. fn=${1%.apk}
  8. target_apk=$fn.apk
  9. java -jar apktool.jar -r d -f "$target_apk" -o smali
  10. echo "Done."
Advertisement
Add Comment
Please, Sign In to add comment