Actually i trying to extract code of an .apk file called cloudfilz.apk and wanted to manipulate in its source code so i followed the steps given below:-

make a new folder and put .apk file (which you want to decode) now rename this .apk file with extension .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 file...so continue...

step 2:

now extract this zip apk file in the same folder(in this eg or case NEW FOLDER). now dowmload dex2jar from this link http://code.google.com/p/dex2jar/ and extract it to the same folder (in this case NEW FOLDER).....now open command prompt and reach to that folder (in this case NEW FOLDER)....after reaching write "dex2jar classes.dex" and press enter.....now you get classes.dex.dex2jar file in the same folder......

=>Question:-I was successfull to achieve step 1 but in step2 when i am executing dex2jar classes.dex i am getting an error on command prompt java.lang.UnsupportedClassVersionError ,I know this is due incompability between my installed jdk version and classes.dex jdk version number so stuck here and dnt have way out...

link|improve this question

If the author of that application wanted you to see the source, he/she would have published it as Open Source. My guess is it's not open source and you have no right to try and extract it. – NickT Oct 25 '11 at 11:13
possible duplicate of Android: Getting source code from an APK file – brendan Apr 27 at 20:18
feedback

2 Answers

step 1:

enter image description hereDownload dex2jar here. Create a java project and paste (dex2jar-0.0.7.11-SNAPSHOT/lib ) jar files .

Copy apk file into java project

Run it and after refresh the project ,you get jar file .Using java decompiler you can view all java class files

step 2: Download java decompiler here

link|improve this answer
Thanks Sony for response but i am not able to fetch jar file so please can u explain in detail...ur screen shot is showing that your dex2jar lib jar files another location but it should be saved inside java project how its feasible..please clear my ambiguity.. – Gaurav Chawla Oct 25 '11 at 13:05
just you copy dext2jar lib jar files in java project ,not src folder – Ramesh Akula Oct 26 '11 at 9:01
I have put apk file into src. & What is the Main class ? is it this com.googlecode.dex2jar.dump.Dump? – Piraba Apr 19 at 11:17
feedback

There's a tool for it here: http://code.google.com/p/android-apktool/

Bear in mind that you are not supposed to decompile code though and I would advise you not to do so.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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