Android decompilation tool jadx-gui

jadx-gui is a graphical interface tool based on the jadx project, a tool for decompiling Android applications . By using jadx-gui, developers can open APK (Android Application Package) files and view their decompiled source code . This is very useful for profiling, understanding and debugging Android applications. jadx-gui provides a user-friendly interface that enables users to browse the application's classes, methods, variables, etc., and to search for specific code snippets.


Project link: https://github.com/skylot/jadx

 As of 2023/6/5, the latest version is 1.4.7, I will download the latest version here, or you can choose the previous version by yourself

 Because jadx-gui needs jre environment to run , if not, here also provides a version that includes jre environment


After downloading, unzip it and open the exe directly:

It's very concise. Open the file directly and you can see the decompiled APK information. Here I take the APK of the open source framework as an example:

 That's it, what should I say? It cannot be said that it has nothing to do with the IDE. It is exactly the same. Press and hold ctrl + left mouse button or double-click the left mouse button to jump to the corresponding class


It can be realized that this tool is really powerful, and it is a good choice for those who need to decompile and analyze Android applications. Its user-friendliness, decompilation quality and rich functions can meet some decompilation needs of some developers or security researchers

Guess you like

Origin blog.csdn.net/weixin_47592544/article/details/131046619