Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 1.08 KB

README.md

File metadata and controls

22 lines (14 loc) · 1.08 KB

APK Decompiler

This project makes it easy to convert an installed Android app that was built with the Android SDK into readable source files.

How to use:

  • Ensure you have ADB installed
  • Attach your Android device
  • Run dist/decompile.bat

That's it! The output will be a zip file of the passed in package or keyword that contains as much of the decompiled code as possible.

NOTE: There will be no .java files, but .class files will be generated. I'd recommend using something like JD-Gui (https://github.com/java-decompiler/jd-gui/releases) to convert it into Java code.

Some of the dependent projects are not able to parse all APKs, so it isn't guaranteed to be a complete decompilation. If you see any problems during the run of APK Decompiler, I would encourage you to file a bug report with the appropriate project author!

APK Decompiler wraps the following projects:

Building

mvn clean package -U