Skip to content

Instantly share code, notes, and snippets.

@blue-bird1
Forked from bmaupin/install-apktool.sh
Last active October 9, 2018 16:04
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 blue-bird1/eea42286931013d02076030f49130c4f to your computer and use it in GitHub Desktop.
Save blue-bird1/eea42286931013d02076030f49130c4f to your computer and use it in GitHub Desktop.
Install apktool in Linux #debian
# Get latest version from https://bitbucket.org/iBotPeaches/apktool/downloads
export apktool_version=2.3.1
sudo -E sh -c 'wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_$apktool_version.jar -O /usr/local/bin/apktool.jar'
sudo chmod +r /usr/local/bin/apktool.jar
sudo sh -c 'wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool -O /usr/local/bin/apktool'
sudo chmod +x /usr/local/bin/apktool
# To use:
# apktool d TelephonyProvider.apk -o TelephonyProvider
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment