views:

125

answers:

4

Hi,

I am trying to run my project but eclipse is saying I have errors but there are no errors just a red cross where the project name is. I have tried deleting the R.java and generating a new one but that didnt work

Thanks In Advance

+4  A: 

Do you see them in

Window->Show View->Problems
or
Window->Show View->Error Log

?

Fortega
Description Resource Path Location TypeProject 'footballforum' is missing required Java project: 'ApiDemos' footballforum Build path Build Path ProblemThe project cannot be built until build path errors are resolved footballforum Unknown Java Problem
JonniBravo
@JonniBravo Please add the comment above to your original question.
Fortega
+2  A: 

This happens from time to time in Eclipse. In the "Project" menu there's a "Clean" option, that usually takes care of the problem.

David Hedlund
tried this didnt work
JonniBravo
+4  A: 

Based on the error you showed ('footballforum' is missing required Java project: 'ApiDemos'), I would check your build path. Right-click the footballforum project and choose Build Path > Configure Build Path. Make sure ApiDemos is on the projects tab of the build path options.

MikeG
A: 

Ensure you have Project | Build Automatically flagged. I ran into this issue too and turning that on fixed the problem.

Dan Watling