RajeshVijayakumar
RajeshVijayakumar

Reputation: 10630

Creating a Android Project throws Error "The tools must be updated via SDK manager"

When I'm creating an android project in eclipse juno version, It throws error like this The tools need to be updated via the SDK Manager. Please Help me

Bug Image

Upvotes: 3

Views: 16923

Answers (3)

Christopher Adams
Christopher Adams

Reputation: 1300

None of the above worked for me. I had to "delete" SDK Build tools packages and then re-install the packages. After doing that, I could now create a new android project.

Upvotes: 1

Robert Estivill
Robert Estivill

Reputation: 12497

The problem is that your platform/sdk tools are incompatible with the version of ADT eclipse plugin you have installed. Most likely, the plugin is updated, and the tools are not.

This is why you need to update the tools using the SDK manager.

enter image description here

Upvotes: 4

MLQ
MLQ

Reputation: 13511

You probably haven't pointed Eclipse to your android-sdk folder yet.

In Eclipse, go to Preferences -> Android -> then in the SDK location text box, browse through your android-sdk folder.

Upvotes: 8

Related Questions