Android decompile
Tools required:
dex2jar : http://laichao.googlecode.com/files/dex2jar-0.0.7-SNAPSHOT.zip
JD-GUI: http://laichao.googlecode.com/files/jdgui.zip
usage method:
After decompressing the Android APK file with zip, the classes.dex file is found, and then the dex2jar tool is invoked to convert it into.Jar file. The command is:
dex2jar.bat classes.dex
Read the. Jar file with jd-gui. I believe everyone is familiar with it.
There is also an easy-to-use tool apktool, which is an APK compilation tool provided by Google. It requires a Java running environment. Download address: http://code.google.com/p/android-apktool/
This tool can only parse APK packages into. SmalI files. This is a language that Android phones can read, similar to
Compilation. The command used is: apktool D E: anypath.apk e: anypath.
Reproduced at: https://www.cnblogs.com/cnforest/archive/2012/05/03/2480404.html