Created
March 28, 2019 18:47
-
-
Save BoscoBecker/467f493c1bd4069a2a3c93b096556377 to your computer and use it in GitHub Desktop.
Script Shell for intall ApkTool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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