I downloaded few source codes from Google source codes.

I executed them on Eclipse but R.java file is not created and therefore I got many errors saying that R cannot be resolved. There is no main.xml in layout too. Some other XML files are there. How can I execute these programs?

link|improve this question
3  
There are many similar questions on Stackoverflow. Please do a search, and read through the basic documentation. No Main.xml is not required. stackoverflow.com/questions/4516428/r-java-auto-generated-file stackoverflow.com/questions/2757107/… – Mayra Jan 6 '11 at 19:55
1  
FWIW, neither of those questions were answered entirely correctly. Eclipse can get itself in to a state where it does not generate an R.java file. In fact, my R.java was removed by the Project->Clean operation suggested by folks there. – dpk Feb 24 '11 at 4:32
Yes, clean will remove R.java but the next time you build it will be recreated. If it isn't, you might try exiting Eclipse and then going back in; sometimes Eclipse gets confused. – Scott Wilson Apr 28 '11 at 20:45
What sources did you download? And copy-paste exact error messages. – Gilles Sep 20 '11 at 8:15
feedback

3 Answers

Presume you have Android sdk. If you have.. just clean the project. R.java will be autogenerated.

link|improve this answer
Cleaning the project deletes the R.java file from the project. – Nuktu May 8 '11 at 15:06
@Nuktus In theory yes. That is the way it is supposed to be. In practise(eclipse), you might see the R.Java is still present after cleanup. Worst of all, sometimes the import statement in the classes, point to incorrect R.Java (eg. from the library project) – GSree May 9 '11 at 3:27
feedback

If your build.xml includes the "-resource-src" target (which it will if you include $SDK_DIR/tools/main_rules.xml or lib_rules.xml) you can rebuild it with ant.

link|improve this answer
feedback

After few hours frustration finally I have decide to remove the red marks from the my file where it was not able to resolve the R.java as it was not actually available in my code. After removing the first red line from my activity file the project builds and generated the R.java automatically.

This is something really freaking thing for me as it goes without any reason and came back with the same thing.

Hope this will help you

Kind Regards, Summved

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.