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

I updated my android sdk to and I tried updating my adt via ecplise through

Help-> Check for updates.

This action results in the dialog that says -

'no updates found'

But my sdk says-

This android is SDK requires Android Development Kit 21.1.0 or above
  Current version is 21.1.0.v201212060256-543035

Please update ADT to the latest version.

Help me out and you have my enormous undying gratitude.

share|improve this question
go to sdk manager and update the ADT – Deepzz Feb 22 at 11:04

3 Answers

up vote 6 down vote accepted

The fastest installation way I found to solve that a couple of days before, without deleting eclipse, or loosing any data/settings:

  1. Go here download ADT-21.1.0.zip
  2. At Eclipse > Help > Install new software... > Uncheck Contact all update sites during install to find required software (last bottom preference) that will avoid any unwanted delays during install.
  3. then at the same screen (top) Click Add > Archive > select downloaded ADT-21.1.0.zip > follow on screen installation steps
share|improve this answer
Yup!! It works! Now I can keep all my plugin in intact and I don't have to use a new eclipse and do the whole thing over again. Thanks a lot! :) – user1528506 Feb 22 at 12:15
After doing this I still had a "missing requirement" and had to enable a source: "download.eclipse.org/tools/cdt/releases/indigo";, which might have also been the original problem. (from: stackoverflow.com/a/12107559/317110) – John Lehmann Mar 5 at 1:08

I had the same problem. The command line update didn't work for me for some reason. It's some sort of bug that I haven't experienced in any update before this one. Here's what I did to fix it:

  • I deleted my eclipse installation

  • Downloaded a fresh copy of the sdk from the developer website

  • unzipped the sdk and copied only the eclipse folder

  • replaced my old eclipse folder with this one (deleted the rest of the download since I already had the sdk)

  • started up eclipse and pointed the workspace location to the old workspace I already had. All my projects were back as I had left them.

There might be other methods as well. This one seemed simplest to me. Others have suggested updating every eclipse component one by one and things like that but it seemed too tedious to me. If your eclipse installation is heavily customized and you have a lot of plugins installed then it might make sense to find an alternative. My install is always pretty minimalistic so I didn't mind throwing it away and starting from scratch.

Hope this helps!

share|improve this answer
Thank you very much, your solution worked. You are awesome! – user1528506 Feb 22 at 12:12
Glad I could help. – Anup Cowkur Feb 22 at 12:33
Can't up vote I do not have enough reputation points yet. – user1528506 Mar 6 at 6:56

You can always try to update the SDK Tools and Platform tools outside Eclipse.

in CMD or Terminale type:

 $ android

and the SDK manager will start.

share|improve this answer
The SDK is updated , it is the eclipse that refuses to update. – user1528506 Feb 22 at 11:09

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.