I used the instruction here :
Is there a way to get the source code from an APK file?
It was really good. I got almost everything of my lost project but no R.java file. It is nececery to import the project to eclipse. How can I extract this file from apk file? Where can I find it?
tnx.
R.java is created automatically on Eclipse and other IDEs. Removing the line from my main activity that says import R.java usually helps my IDE recognize that it’s not there, and it recreates it when you try to run the program. If that doesn’t work, try Project, Clean… and try running it again.