tags:

views:

74

answers:

1

I just had the odd case that my Android project for some reason would not properly rebuild in Eclipse (v3.5/Galileo). Occasionally that happends and so I did the usual Project => Clean... as I always do in such cases. But this time I now have the odd effect that almost all files show bugs, and looking closer it's that the compiler can't find the R-file (which is indeed missing from the gen subtree).

How do I force eclipse to rebuild that file?

Michael

A: 

"W/ResourceType( 8032): Bad XML block: no root element node found" means that you have a malformed XML resource. I think the error message should indicate which file it does not like.

CommonsWare
Solved! I had an icon specified that could not be found. Odd reaction. I have to say, I find the ADT sometimes pretty unforgiving...
mmo