Today I upgraded to Android SDK 2.3 and I also upgraded the Eclipse Plugin Androi Developer Tools 8.0 (from 0.9.9). I also upgraded my Java Development Kit to 1.6_22.

Now in Eclipse I get many errors in all my Android projects.

The error messages are like:

The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files.

How can I fix this so I can use my Android projects again?

In the Build Path for these projects, I don't have any references to an android.jar but a message:

Unable to get system library for project

link|improve this question

feedback

13 Answers

up vote 13 down vote accepted

That is rather difficult to answer, given the limited information you have supplied. Here are some suggestions:

  • Make sure that an appropriate android.jar is in your build path, since that is where java.lang.Object would come from.

  • Do a Project > Clean, to make sure you have 1.6 .class files, in case that is part of the problem.

  • Try creating a new project from scratch and see if that works.

link|improve this answer
The android.jar seems to be in my Build path. I have already tried with Clean but it doesn't help. I get the same errors when I create new projects. – Jonas Dec 7 '10 at 8:52
If I look in the Properties for my project, under "Java Build Path" there is a message: Unable to get system library for project. I think this is the problem, but I don't know how to fix it. – Jonas Dec 7 '10 at 9:12
8  
@Jonas: Go into Window > Preferences > Android and make sure your SDK is still configured with the appropriate directory. – CommonsWare Dec 7 '10 at 12:04
I was wrong, I just get this error on old projects and not on new projects and the old doesn't seem to have an android.jar in the build path, but a message Unable to get system library for project. – Jonas Dec 7 '10 at 12:34
4  
@Jonas: You might get that if you have your project configured for some target that you no longer have on the system (e.g., you removed it as part of your round of upgrades). In the project properties dialog, go into the Android area and make sure you have a valid target checked. – CommonsWare Dec 7 '10 at 12:40
show 2 more comments
feedback

For me, the problem was simply that in the Project settings - Android tab, I had no selected Android version selected.

link|improve this answer
For me too, but with the addition that selecting a version in the Androids simply unset itself after reopening the preferences. – Thomas Ahle Jul 6 '11 at 13:51
The solution worked like magic. Thank you. – khr2003 Sep 16 '11 at 12:19
feedback

I had this problem even though I had a valid target selected. I fixed it by changing to a different target, applying changes and then changing back. That seems to have sorted it.

link|improve this answer
feedback

i have also encoutered this and solve it by changing the android choice in project properties. My error is because the project can't find proper lib from the android SDK. Then fix the project using android fix tool in right click of project, clean it and then correct.

link|improve this answer
this fixed my problem too! – Tod Jan 20 at 22:27
feedback

Try cleaning your project, that might help.

On eclipse, click on the menu item above called "Project", then click on "Clean Build". On that screen, check the checkbox that says "Clean projects selected below", select the project(s) that's giving you problems, and click Ok.

It will rebuild your project and that usually helps with strange eclipse errors like this.

link|improve this answer
I have tried with Clean but it doesn't help. – Jonas Dec 7 '10 at 8:53
Update your ADT on eclipse, they just pushed a new version to deal with some bugs: twitter.com/#!/romainguy/status/12222143299330050 – velazcod Dec 8 '10 at 1:48
I actually fixed this problem as CommonsWare described. And now I upgraded to ADT 8.0.1 and got the same problems again, but his fix solved it again. – Jonas Dec 8 '10 at 12:22
feedback

Please see your .classpath file, and see if all reference lib projects or src projects are added with correct path and name.

link|improve this answer
feedback

tl;dr: also check for stale SDK paths in the "local.properties" file.

Here's how I fixed it: I went through the answer given by Richard Le Mesurier, and also checked the path to the Android SDK in Window > Preferences > Android as mentioned by CommonsWare (since I did indeed change the SDK directory a while ago), however it still couldn't find it.

Then I noticed that I had a file called "local.properties" which referenced the old location for "sdk.dir". I changed that to the new location to match what was in Window > Preferences > Android. Then deselected the build target in Project > Properties > Android, hit Apply, re-selected it, and hit OK and cleaned the project. That worked! Thanks all!

link|improve this answer
feedback

try to create new project like this then try itenter image description here

link|improve this answer
after that clean the project and then try to run it – Nilesh Gawade Nov 28 '11 at 13:11
feedback

In my case, my project.properties had android-8 listed as the target, which I didn't have installed.

link|improve this answer
feedback

my case was not created the right AVD

after AVD created, go to project Property and find Android, select the right SDK version and then go to JAVA Build Path, delete the library (Unable to get system library for project) and add android library.

link|improve this answer
feedback

This problem was caused for my old projects on a new machine that did not have an older Android SDK installed.

To fix, simply go into project.properties and observe your old version number:

# Project target.
target=Google Inc.:Google APIs:3

Simply update the version number, like so:

# Project target.
target=Google Inc.:Google APIs:7

You will find that Eclipse then picks up the right SDK version and starts working.

link|improve this answer
feedback

The best way here as I tried before, is to create a new project and choose :

create a project from an existing source and choose the location of the android project that you want to import, then next, you will see the build target of android like : 2.3.3 or 2.1 ..

Just choose one of them then finish!

You are done! ..

link|improve this answer
feedback

I had this problem come out of nowhere.

What worked for me was to right-click the project, select Android Tools, Add support Library..

It is the android.jar that is missing, and this restores it.

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.