Skip to content

Instantly share code, notes, and snippets.

@szepnapot
Forked from bmaupin/install-apktool.sh
Last active May 20, 2019 19:58
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 szepnapot/380bfc0819b9ed81749d227ba9115b27 to your computer and use it in GitHub Desktop.
Save szepnapot/380bfc0819b9ed81749d227ba9115b27 to your computer and use it in GitHub Desktop.
Install apktool in Linux
# Get latest version from https://bitbucket.org/iBotPeaches/apktool/downloads
export apktool_version=2.4.0
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