-1

Well, I've lost a source to my project by accident but I have this app installed on my phone with ctrl+F11 from eclipse.

Now, all I can do is to compress this app to an apk and take the code out with dex2jar and resources with apktool.

But the code after decompiling is quite different and not the same I wrote.

IS there any other way to extract java code from my phone other than compress it to apk (with backup) and decompile it?

I really need that code :(

Mogsdad
  • 44,709
  • 21
  • 151
  • 275
Lyubov Alekseeva
  • 209
  • 1
  • 4
  • 10

1 Answers1

0

Not to my knowledge. The app installed in your phone is always the compiled version. While decompiling can get you the logic back, it will always be like generated code instead of the exact code you compiled.

bidyut
  • 93
  • 1
  • 8