Quantcast
Channel: The Crazy Programmer
Viewing all articles
Browse latest Browse all 761

Decompile APK to Source Code in Single Click

$
0
0

In this tutorial I will guide you how to decompile apk to source code in just one 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.

Also Read: 5 Best Java Decompilers

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

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 Decompile button.

Decompile APK to Source Code in Single Click

 

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

Decompile APK to Source Code in Single Click

 

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

You can also watch below video tutorial.

Isn’t it very simple? Yes off course. This tool will let you decompile any apk file, if still you are facing any issue then you can find the general long method at below link.

http://stackoverflow.com/questions/3593420/is-there-a-way-to-get-the-source-code-from-an-apk-file

 

Comment below if you are facing any problem. If you found this tutorial useful then please take your few seconds to share it.

The post Decompile APK to Source Code in Single Click appeared first on The Crazy Programmer.


Viewing all articles
Browse latest Browse all 761

Trending Articles