-1

Hello I lost my last backup of my project and there is just installed the app on my phone so I need to rescue my codes.

I searched dex2jar,apktools etc but they did not work. In my apk there is 6 dex class so I can not reach my code

Nirav Joshi
  • 1,713
  • 15
  • 28
  • 1
    Simply say, You can't. By using any method you can't get your source code as you have in android studio. At max you can get class files which you can view – Vivek Mishra Dec 28 '17 at 13:58
  • Why in a world did you not use git and hosted your code on Githuib.com or similar version control hosting provider? Please put your code under Version Control – Rinav Dec 28 '17 at 14:03
  • I forgot you're right :/ i will never make this mistake again however i got my xml files – Çağatay Duru Dec 28 '17 at 14:07

1 Answers1

0

You can extract your code from http://www.javadecompilers.com/apk this link

Note: It can give you all your java classes and resources, but you have to work on it for some missing constraints. Please do not make misuse of that....

But its better to have something than nothing.

Vivek Mishra
  • 5,669
  • 9
  • 46
  • 84
Pramod Waghmare
  • 1,273
  • 13
  • 21
  • Unfortunately, it did not work.its still six classes.dex and whent i use dex2jar output is unnecessary things like com>android>tools>ir and other things not my classes. :/ – Çağatay Duru Dec 28 '17 at 19:00
  • After uploading apk, you find various folder open com -> packagename -> here your java files and for xmls res - > layout – Pramod Waghmare Dec 29 '17 at 05:43