First, APK anti-compilation to get the program's source code, pictures, XML configuration, language resources and other files
Open the Command line interface (run-cmd), navigate to the Apktool folder, and enter the following command: Apktool.bat d-f test.apk Test
(test.apk in the command refers to the full name of the APK file to be deserialized, and test is the directory name for the post-compilation resource file, which is:
Second, apk anti-compilation to get Java source code
Under command line, navigate to the directory where Dex2jar.bat is located, enter Dex2jar.bat Classes.dex
In the directory will be generated a Classes_dex2jar.jar file, and then open the tool Jd-gui folder Jd-gui.exe, and then use the tool to open the Classes_dex2jar.jar file generated before, you can see the source
Thank you for this Bo friend's article: http://blog.csdn.net/vipzjyno1/article/details/21039349