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. All I have is the APK file that is st
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:
apktool
to get the resource files out of the apkdex2jar
to get a jar file that contains the classes in a format that Eclipse will like.JDGui
to view the source codeJDGui
, stick it in a class inside Eclipse and modify it