Skip to content

Instantly share code, notes, and snippets.

@goatesmatt26
goatesmatt26 / android-decompile.sh
Created January 29, 2020 07:46 — forked from nstarke/android-decompile.sh
Android APK Decompile Script
#!/bin/bash
APK=$1
# Linux only right now.
if [ ! -d "$HOME/.android-decompile-tools" ]; then
mkdir "$HOME/.android-decompile-tools"
fi