Posts

Showing posts with the label java

How to decompile Android apk to Java source code

Image
Finally we found a way to easily decompile Android apk to original java source code.Here are the instructions to decompile android apk to java source code. This method is also called as Reverse Engineering. requirements Eclipse IDE: Download and install eclipse IDE from the link. http://www.eclipse.org/downloads/ Dex2jar: Dex2jar converts the DEX (Dalvik Executable) files to the Java source. Download and extract dex2jar from the link. https://dex2jar.googlecode.com/files/dex2jar-0.0.9.15.zip JD-GUI: JD-GUI is used to see the soure Java Class files from the converted jar files. Download and extract JD-GUI from the link. https://innlab.googlecode.com/files/jd-gui-0.3.3.windows.zip Decompiling Instructions: 1.Open  Eclipse IDE and create a new Java project named Android2Java. 2.Create a new folder “libs” in the root of your Android2Java project. 3.Paste the jar files in the lib folder of extracted dex2jar to the newly created libs folder of Android2Java project. dex2jar-0.0.9.15/lib/(All