Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The hard drive on my laptop just crashed and I lost all the source code for an app that I have been working on for the past two months (I know I am an idiot for not backing it up)

All I have is the APK file that is stored in my email from when I sent it to a friend. My question is: Is there any way to extract my source code from this APK file? I realize that is is most likely a shot in the dark... but I am really desperate.

I have read about tools like smali and apktool... could these be of help?

share|improve this question

7 Answers

up vote 286 down vote accepted

Procedure for decoding .apk files, step-by-step method:

Step 1:

Make a new folder and put .apk file in it (which you want to decode). Now rename the extension of this .apk file to .zip (eg.: rename from filename.apk to filename.apk.zip) and save it. Now you get classes.dex files, etc. At this stage you are able to see drawable but not xml and java files, so continue.

Step 2:

Now extract this zip apk file in the same folder (or NEW FOLDER). Now download dex2jar from this link http://code.google.com/p/dex2jar/ and extract it to the same folder (or NEW FOLDER). Now open command prompt and change directory to that folder (or NEW FOLDER). Then write dex2jar classes.dex and press enter. Now you get classes.dex.dex2jar file in the same folder. Then download java decompiler from http://java.decompiler.free.fr/?q=jdgui and now double click on jd-gui and click on open file. Then open classes.dex.dex2jar file from that folder. Now you get class files and save all these class files (click on file then click "save all sources" in jd-gui) by src name. At this stage you get java source but the xml files are still unreadable, so continue.

Step 3:

Now open another new folder and put these files

  1. put .apk file which you want to decode

  2. download apktool v1.x AND apktool install window using google and put in the same folder

  3. download framework-res.apk file using google and put in the same folder (Not all apk file need framework-res.apk file)

  4. Open a command window

  5. Navigate to the root directory of APKtool and type the following command: apktool if framework-res.apk

  6. apktool d "fname".apk ("fname" denotes filename which you want to decode)

now you get a file folder in that folder and now you can easily read xml files also.

Step 4:

It's not any step just copy contents of both folder(in this case both new folder)to the single one

and now enjoy with source code...

share|improve this answer
thaks emulator .. – prankul garg May 21 '11 at 11:32
3  
@prankulgarg ,In point 5 of step 3 i am getting following error: Unable to access jarfile E:\apktojava\testt\\apktool.jar – user775 Jan 30 '12 at 7:00
1  
i have completed this steps but java file name is a d c b....it's posible real java file name...? – Android Mar 13 '12 at 13:02
2  
So where does one get the framework-res.apk file.. Am unable to find a trusted copy :| – SalmanPK Jul 23 '12 at 14:48
4  
@SteveDesai follow this souldevteam.net/blog/2012/01/27/… – avirk Dec 1 '12 at 16:26
show 18 more comments

While you may be able to get an APK decompiler somewhere, you will likely hit one big issue: its not going to return the code you wrote. Its going to return whatever the compiler inlined, with variables given random names, as well as functions given random names. It very well may take significantly more time to try to decompile and restore into the code you had, then it will be to start over.

Sadly, things like this have killed many projects. For the future, I highly recommend learning a Version Control System, like CVS, SVN, git, etc... and how to back it up.

share|improve this answer
3  
A service like Dropbox will also help. – fiXedd Aug 29 '10 at 8:19
2  
+1 for dropbox. Best thing ever – Falmarri Aug 29 '10 at 11:12
1  
Funny, I actually had the Dropbox idea a while ago but didn't do it. And now, I'm googling "extract source code from apk." Guess who's upset with themselves. – Snailer Jun 21 '11 at 1:11
Burned disk :[ I'have losted many projects, everybody has own way of the Cross... – Fish on the grass Apr 4 '12 at 12:11

apktool is the best thing you can try. I have saved some xml with it, but honestly I don't know how it will work with the .java code.

I would recommend you to have a code repository even if your are the only coder. I've been using Project Locker for my own projects. It gives you free svn and git repos.

share|improve this answer

apktool will work. You don't even need to know the keystore to extract the source code (which is a bit scary). The main downside is that the source is presented in Smali format instead of Java. Other files such as the icon and main.xml come through perfectly fine though and it may be worth your time to at least recover those. Ultimately, you will most likely need to re-write your Java code from scratch.

You can find apktool here. Simply just download apktool and the appropriate helper (for Windows, Linux, or Mac OS). I recommend using a tool such as 7-zip to unpack them.

share|improve this answer

These two articles describe how to combine the use of apktool and dex2jar to take an APK file and create an Eclipse project that can build and run it.

http://blog.inyourbits.com/2012/11/extending-existing-android-applications.html

http://blog.inyourbits.com/2012/12/extending-existing-android-applications.html

Basically you:

  1. Use apktool to get the resource files out of the apk
  2. Use dex2jar to get a jar file that contains the classes in a format that Eclipse will like.
  3. Create an Eclipse project point it at the resource files and the new jar file
  4. Open the jar file with a zip utility and delete the existing resources
  5. Open the jar file with JDGui to view the source code
  6. Take whatever source code you need from JDGui, stick it in a class inside Eclipse and modify it
  7. Delete that class from the jar file (so you don't have the same class defined multiple times)
  8. Run it.
share|improve this answer

This is an alternative description - just in case someone got stuck with the description above (as happened how to get source code form apk). Follow the steps:

  1. download apktool-install-windows-r05-ibot.tar.bz2 and apktool1.5.2.tar.bz2 from http://code.google.com/p/android-apktool/
  2. put all files in one folder, i.e. aapt.exe, apktool.bat and apktool.jar
  3. open a dos box (cmd.exe) and change into that folder; verify that a Java Environment is installed
  4. Start: apktool decode [apk file]

    Intermediate result: resource files, AndroidManifest.xml

  5. unzip APK file with an unpacker of your choice

    Intermediate result: classes.dex

  6. download dex2jar-0.0.9.13.zip from http://code.google.com/p/dex2jar/downloads/detail?name=dex2jar-0.0.9.13.zip&can=2&q=
  7. drag and drop classes.dex onto dex2jar.bat

    Intermediate result: classes_dex2jar.jar

  8. unpack classes_dex2jar.jar
  9. decompile your class files (e.g. with DJ Decompiler; check http://www.neshkov.com/)

    Result: source code

Note: it is not allowed to decompile third party packages; this guide is intended to recover personal source code from an APK file only; finally, the resulting code will most likely be obfuscated

share|improve this answer
The best guide since it contains all the commands and links. – kape123 May 1 at 21:55

I'll show you other way to decompile the .apk files.

You can follow the first 2 steps from "prankul garg". So you have another opportunities:

Step 3':

Download the "JD-GUI", thats easy to found this one. Open your .jar file in "jd-gui.exe". (File > Open file > 'found your .jar file'). After this procedure, you can save all resources in a .zip file.

So,

1st - You have to rename the .apk file to .zip

2nd - You have to decode .dex file (if you want, decode the .apk file to dex2jar, that's possible)

3rd - You have to decode .jar file with JD-GUI

share|improve this answer
1  
What does this answer provide that the others don't? – jurgemaister Feb 25 at 12:30

protected by Community Jun 2 '11 at 5:18

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.