About Me

My photo
Drum & Bass Producer, Software Developer, Love my Cats

Android: R.java not generated

I started a new Android project, and it didn't generate the R.java file.
The solution:
1. Remove all imports of R.java in your source
2. Begin writing a line of code that uses the R.java: "R.id.............." and now the R.java file should be generated.

Hope this helps you when your Android R.java file does not get generated automatically.