Tool Preparation:
<1>.android4me's AXMLPrinter2 tool
<2>dex2jar
<3>jd-gui
Tool Download: http://download.csdn.net/detail/catshitone/8491347
Start: The first step:
First use the decompression software (such as good pressure), and so on, the APK package extracted. Where the extracted XML file is garbled when opened, how to view it?
Step Two:
Open the Cmd.exe into the unpacked folder. Input:
java -jar AXMLPrinter2.jar showtimes_list.xml > h.xml
Where Showtimes_list.xml is the garbled XML file you want to view, H.xml is the converted non-garbled file. The name can be customized.
Step Three:
After extracting a classes.dex file, we need to turn the Dex file into a jar file. Here's another tool for Dex2jar. Use CMD to enter the Dex2jar file directory and copy the Classes.dex file. Enter the following command:
dex2jar.bat classes.dex
After running, there will be one more Classes.dex.dex2jar.jar file in the current folder, this file is the jar file we need.
Fourth Step:
Reverse-engineer The jar file to Java code using Jd-gui. Open the Jd-gui the jar file that you just generated and drag it to the side to see the source code directly. However, this source code is not the same as the original real source code.
Www.sltianxia.com
View Android apk source hack