Get up to date Tech &Security related news and books to become a Hacker

Breaking

Monday, December 11, 2017

How to decompile Android APK file in single click

APK file is compressed form of java classes, XML and several other files. As an android developer you may require to decompile apk file to get actual source code. Like if you saw an app with awesome design and you want to know how to implement that design in your project. We use reverse engineering process to get the source code.

There are several tools available on the internet like dex2jar, apktool, etc. that
will help you to convert apk to soruce code. But for that you have to run several commands and follow lengthy process.

Luckily I found a great online apk decompiler tool www.javadecompilers.com. This tool uses an open sources APK and DEX decompiler known as jadx. It will help you to obtain source code from apk file in just one click.

Decompile-APK-to-Source-Code-in-Single-Click-1

How to Decompile APK to Source Code

1. First of all go the below link.
http://www.javadecompilers.com/apk

2. Now select the apk file by Choose File option and then click on Upload and Decompilebutton.

Decompile-APK-to-Source-Code-in-Single-Click-2

3. It will take time to decompile depending upon the size of the file.

Decompile-APK-to-Source-Code-in-Single-Click-3

4. After decompilation process finished, click on Save button to download the source code.

source:codingsec.net

No comments:

Post a Comment