Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having this weird issue when I was trying to merge my projects from eclipse to netbeans. Now when trying to rerun eclipse I get this error

"Android SDK requires android developer toolkit version 17.0.0 or above"

What I have tried to do to resolve the issue was try and update the SDK and toolkit inside of it.

So far everything is updated and now I am clueless.

Error message when starting up eclipse

share|improve this question

4 Answers

up vote 15 down vote accepted

Run software updates in Eclipse (Help > Check for Updates) and update the ADT.

share|improve this answer

Had the same problem. Tried to update through Help > Check for Updates, but was getting an alert message like this:

Contacting software sites has encountered a problem

And after that the update process failed. Googled and found the solution.

You just need to add one line in eclipse.ini, which is located in Eclipse folder. Add this line to the end of the file:

-Djava.net.preferIPv4Stack=true

And after that the update process went normally.

The problem lies in the fact that the upload process goes through IPv6, but the internet service provider supports IPv4.

Source (russian)

share|improve this answer

Go to your eclipse, click on Help -> install new software -> Add... -> type in 'ADT plugin' for name, type in 'https://dl-ssl.google.com/android/eclipse/' for URL, then a couple selections including ADT will show up in the window, click on the things you want to update then click okay, and you will be able to update your ADT.

share|improve this answer

Just update your Android Developer Toolkit. It's automatically done through the included GUI updater/manager.

share|improve this answer
2  
Like I said on my question, everything is updated to the max. Pretty much the android developer toolkit doesn't have any more updates than the 15. I couldn't run android sdk on eclipse since it is locked and can't be found so I had to update in on the folder location which everything is updated. – sdfwer Apr 9 '12 at 14:21
You're wrong. Latest is 17, also here – m0skit0 Apr 9 '12 at 14:23
Yes, you right my mistake. – sdfwer Apr 9 '12 at 14:48

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.