Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to decompile an android app from the google play store

I want to decompile one android app that is available on google play store. Can anybody suggest to me an online tool or any apktool that will help me to decompile source code of apk?

Thanks in advance.

like image 296
Sushant Patekar Avatar asked May 03 '17 06:05

Sushant Patekar


1 Answers

I found apktool much faster as you can run it on your computer. The problem with the websites pointed to in other answers is that most of the time they have a little bit longer queue while processing decompilation requests. Also, internet speeds can be a limiting factor in many countries as not everyone gets good upload speed when they want to decompile large apk files.

check this tool out. https://ibotpeaches.github.io/Apktool/install/

After installing run this command to decompile your apk files. apktool d myfile.apk

like image 96
prasadsunny1 Avatar answered Oct 05 '22 23:10

prasadsunny1