I get this error when I try to clean a project: ERROR: Unable to open class file ....R.java: No such file or directory

So I can't build my projects any more. But R.java is there in the gen folder and looks fine when I open it.

This happens to every one of my projects. I tried completely deleting the Eclipse folder and reinstalling it (Helios on Windows) and Android ADT. No luck.

I have also tried moving my workspace to a different drive. No luck.

I made sure all folders in my workspace are not read only. This worked the first time, but immediately the error came back when I cleaned my project.

This all started right after installing ADT 10.0. I am wondering if it somehow is building R.java as a read-only file.

EDIT: Is deleting the eclipse directory sufficient to reset all of its configuration?

More info: All my projects are fine, until I rebuild or clean them. Then every class that looks at R.java throws an error.

link|improve this question

feedback

5 Answers

Did you try to remove "bin" and "gen" folders and after that make clean/build?

link|improve this answer
Yes, I've deleted them both. I've tried changing Java Build Path to gen, to bin, and just changing it from Folder to Project. Nothing has worked so far. – TenFour04 Feb 27 '11 at 15:23
feedback
up vote 1 down vote accepted

I have somehow managed to fix it, but I don't know exactly what did it. Here are things I did.

  • Deleted eclipse directory and reinstalled it and ADT.
  • Deleted my original project that was the first to have the problem.'
  • Created a new project with my original's project name.
  • Manually copied all my class and res files into the new project and refreshed it.
  • Pasted the text of the old manifest into the new manifest.

I did all this, because simply importing the original project again didn't solve anything.

After the above changes, my other projects still had the problem after pressing clean on them. But then I could fix those by deleting the Gen folder, and making sure the Java Build Path had all folders checked.

link|improve this answer
feedback

I think format C: and reinstalling windows
will be preferred way to solve this issue :)
now for serious that work for me
install all updates restart eclipse and close your project
restart eclipse and delete gen from eclipse and rebuild your project

link|improve this answer
feedback

I found this issue reported on Mac: http://code.google.com/p/android/issues/detail?id=15209

But it's the same for Windows, and I guess, for Linux. I've posted there a workaround, very similar to the one by TenFour04, but without the need to reinstall anything:

  1. Delete project from Eclipse;
  2. Delete all project generated and configuration files and folders (bin, gen, .classpath, .project, default.properties);
  3. Go to Eclipse and create a new Android Project (do not import an existing one) choosing your original source files;
  4. Adjust all setting (JRE, libraries, linked files, aspects, etc...)
  5. Clean.
link|improve this answer
feedback

if you're having the problem for all of your projects, it could be this:

"Debug certificate expired" error in eclipse android plugins

that's what fixed it for me, even though I wasn't getting any debug certificate errors. apparently the debug certificate is only valid for one year.

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.