December 2018
Beginner to intermediate
328 pages
8h 29m
English
For this step, we will need another file from the APK file: classes.dex. To convert .dex (Dalvik Executable) to .class files in a .jar container, we need to perform decompilation. We can use dex2jar to solve this task, which is available here: https://github.com/pxb1988/dex2jar.
To decompile classes.dex, run d2j-dex2jar.bat from the Command Prompt with the following argument:
d2j-dex2jar.bat classes.dex -o classes.jar
This is it. Now, we have a classes.jar file that contains all of the Java classes from classes.dex. We will view and analyze this .jar file in the following section.
Read now
Unlock full access