Quick Check
Decompiled Android APK on MAC - apktool, dex2jar, jd-jui installation (with manual signature) Preceding text This paper introduces the process of decompiling APK with powerful APK-Multi-Tool on Windows platform, and then recompiling to APK after modifying smali source code.
Mac need for speed underground. Get into your car and feel the realism of this great game of EA Games, Need For Speed Underground.Need for Speed Underground gives you 20 licensed and fully customizable streetcars, with aftermarket parts available from a large variety of manufacturers and drops you in a gritty night-time urban environment.You only have to look at the captures of the game to imagine the graphics of the game. The level of detail in this game is amazing. All this accompanied by tunning options have made of Need for Speed Underground one of the most downloaded games in UpToDown.What are you waiting for?
Apktool For Mac
- Is at least Java 1.8 installed?
- Does executing java -version on command line / command prompt return 1.8 or greater?
- If not, please install Java 8+ and make it the default. (Java 7 will also work at this time)
Installation for Apktool
- APKTool is an incredibly useful reverse engineering tool from developer ibotpeaches.It can be used to decode most Android apps into smali, which can then be converted to Java for easier analysis.
- I went downloaded the Apktools from the website and got 2 files: Apktool.txt and Apktool2.2.2. I renamed the Apktool2.2.2 to Apktools.jar per the instructions. I then went to terminal and this.
Apktool For Macbook
- Windows:
- Download Windows wrapper script (Right click, Save Link As
apktool.bat
) - Download apktool-2 (find newest here)
- Rename downloaded jar to
apktool.jar
- Move both files (
apktool.jar
&apktool.bat
) to your Windows directory (UsuallyC://Windows
) - If you do not have access to
C://Windows
, you may place the two files anywhere then add that directory to your Environment Variables System PATH variable. - Try running apktool via command prompt
- Download Windows wrapper script (Right click, Save Link As
- Linux:
- Download Linux wrapper script (Right click, Save Link As
apktool
) - Download apktool-2 (find newest here)
- Rename downloaded jar to
apktool.jar
- Move both files (
apktool.jar
&apktool
) to/usr/local/bin
(root needed) - Make sure both files are executable (
chmod +x
) - Try running apktool via cli
- Download Linux wrapper script (Right click, Save Link As
- macOS:
- Download Mac wrapper script (Right click, Save Link As
apktool
) - Download apktool-2 (find newest here)
- Rename downloaded jar to
apktool.jar
- Move both files (
apktool.jar
&apktool
) to/usr/local/bin
(root needed) - Make sure both files are executable (
chmod +x
) - Try running apktool via cli
Or you can install apktool via Homebrew:
- Install Homebrew as described in this page
- Execute command
brew install apktool
in terminal (no root needed). The latest version will be installed in/usr/local/Cellar/apktool/[version]/
and linked to/usr/local/bin/apktool
. - Try running apktool via cli
- Download Mac wrapper script (Right click, Save Link As
Installation for Apktool
- APKTool is an incredibly useful reverse engineering tool from developer ibotpeaches.It can be used to decode most Android apps into smali, which can then be converted to Java for easier analysis.
- I went downloaded the Apktools from the website and got 2 files: Apktool.txt and Apktool2.2.2. I renamed the Apktool2.2.2 to Apktools.jar per the instructions. I then went to terminal and this.
Apktool For Macbook
- Windows:
- Download Windows wrapper script (Right click, Save Link As
apktool.bat
) - Download apktool-2 (find newest here)
- Rename downloaded jar to
apktool.jar
- Move both files (
apktool.jar
&apktool.bat
) to your Windows directory (UsuallyC://Windows
) - If you do not have access to
C://Windows
, you may place the two files anywhere then add that directory to your Environment Variables System PATH variable. - Try running apktool via command prompt
- Download Windows wrapper script (Right click, Save Link As
- Linux:
- Download Linux wrapper script (Right click, Save Link As
apktool
) - Download apktool-2 (find newest here)
- Rename downloaded jar to
apktool.jar
- Move both files (
apktool.jar
&apktool
) to/usr/local/bin
(root needed) - Make sure both files are executable (
chmod +x
) - Try running apktool via cli
- Download Linux wrapper script (Right click, Save Link As
- macOS:
- Download Mac wrapper script (Right click, Save Link As
apktool
) - Download apktool-2 (find newest here)
- Rename downloaded jar to
apktool.jar
- Move both files (
apktool.jar
&apktool
) to/usr/local/bin
(root needed) - Make sure both files are executable (
chmod +x
) - Try running apktool via cli
Or you can install apktool via Homebrew:
- Install Homebrew as described in this page
- Execute command
brew install apktool
in terminal (no root needed). The latest version will be installed in/usr/local/Cellar/apktool/[version]/
and linked to/usr/local/bin/apktool
. - Try running apktool via cli
- Download Mac wrapper script (Right click, Save Link As
Apktool For Mac
Note - Wrapper scripts are not needed, but helpful so you don't have to type java -jar apktool.jar over and over.