Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to run an Android project that someone else has created. I have opened the project in Eclipse as: File --> New --> Project --> Android Project from existing code

Here are the first two lines of one of Java files:

package aa.bb.cc;

import java.io.File;

There is red cross sign at the beginning of these lines and when I hold the mouse over them I get this message for the first line: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files anfd for the second line get this message: The import java.net cannot be resolved.

What is the reason and how can I resolve these error messages?

Thanks.

TJ

share|improve this question
2  
Do you have JRE in class path configured? – Nambari Nov 5 '12 at 2:56
1  
How shall I do this configuration? – TJ1 Nov 5 '12 at 2:58
2  
Right click on project---> Properties---> lib tab and see if have any installed there. – Nambari Nov 5 '12 at 3:00
what should be installed? – TJ1 Nov 5 '12 at 3:06
2  
I added JRE System Library and the error went away. Thanks for the help. – TJ1 Nov 5 '12 at 3:17

1 Answer

up vote 6 down vote accepted

Do one more step before running:

Right Click(Project) -> Properties -> Java Build Path -> Libraries -> 
                                          Add Library -> Select the Java Library

Click OK and then clean-build (Project -> Clean & Project -> Build All or Ctrl+B) your project. It should be fine.

share|improve this answer
When I try to do this I don't see "Java Library" in the list. here is what I see: Android ClassPath Container, JRE System Library, JUnit, Maven Managed Dependencies, User Library – TJ1 Nov 5 '12 at 3:03
Ok I added JRE System Library and the error went away. Thanks for the help. – TJ1 Nov 5 '12 at 3:16
@TJ1: I was typing that and you posted the comment. Good to know it worked. – Yogendra Singh Nov 5 '12 at 3:17
thanks for the help. Now I have another error in a line: setContentView(R.layout.myFunc) that says R cannot be resolved to a variable, do you know what it could be? – TJ1 Nov 5 '12 at 3:27
@TJ1: Do you see any import statement in the top of your source file ending with R? I forgot to ask, have you added, android libraries also added in you classpath, as you just did for JRE? – Yogendra Singh Nov 5 '12 at 3:32
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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