-2

I was using Android Studio and my HDD literally blow up and I lost all my projects, I just want to recover a project which I was debugging in my cellphone and I want to know if it's possible to do so and how

cibernato
  • 91
  • 1
  • 2
  • 1
    Pull out the debug apk from the phone then decompile it using tools available online. – jL4 Jul 04 '19 at 17:43
  • ^^^^^Might be a bad idea if you are using proguard to obfuscate your java source code^^^^^ – SnakeException Jul 04 '19 at 18:07
  • Also were you using git and github? – SnakeException Jul 04 '19 at 18:08
  • If I'm not wrong I was using proguard so that means i won't be able to recover the code ? – cibernato Jul 04 '19 at 18:22
  • You will but it will be... unreadable. Class names will be like "sgmfisb" and variables "dykvsjvyb" – SnakeException Jul 04 '19 at 18:25
  • @cibernato if you didn't change anything on your gradle, minify isn't set by default, if you did'n even know what he is talking about, chances are higher that you're not using it. Also, usually you set minify true on an release version, not on a debug one – Shermano Jul 04 '19 at 19:10

1 Answers1

0

Download Dex2Jar Tool and you can get some of your java files , if not all. Read more here

Sagar Balyan
  • 438
  • 4
  • 15