Reputation: 6277
Please help me with fixing the following error:
This Android SDK requires Android Developer Toolkit version 14.0.0 or above.
Current version is 12.0.0.v201106281929-138431. Please update ADT to the latest version.
I am facing this error problem when I am using Eclipse.
Upvotes: 19
Views: 25492
Reputation: 2603
if you don't want to update your ADT version, you can do this for fix your problem.
modify ${android-sdk}/tools/lib/plugin.prop plugin.version to your current version, restart eclipse.
# begin plugin.prop
plugin.version=22.3.0
# end plugin.prop
enjoy it.
Upvotes: 6
Reputation: 11308
This error happens due to an incompatibility between ADT and SDK.
To fix it:
Similar problem was already discussed here: Eclipse: won't let me use Android SDK, wrongly claims my ADT is out of date
Upvotes: 68
Reputation: 4386
Upvotes: 6
Reputation: 1112
For those of you who are experiencing this problem:
Eclipse says the ADT needs an update -You click to check for updates -It tells you there are no updates
You need to run Eclipse as administrator. This will immediately fix the problem.
Upvotes: 5
Reputation: 2260
As a general rule, the version of the ADT plugins in Eclipse are paired to a specific SDK version. It's not very well documented, but if you update one at any point, you need to update the other. The version number of the tools and the plugins are usually in sync, but in some cases, they aren't. In fact, right now (June 27) the SDK is version 19 and the plugins are 18. Of course, that will change later today when Google IO starts. The intent is to keep the version numbers in sync, but it doesn't always work out that way.
You can get the older versions of ADT and/or the SDK from the Android tools site. In some cases, you have to figure out the secret for the URL to directly download the older packages, but they are there.
It shouldn't be necessary though. The plugins and the SDK work with all prior versions of the platform, so you should always be safe installing the latest SDK and plugins directly from the Android Developers site.
Upvotes: 2
Reputation: 28093
The reason is that you have updated android sdk but your android adt plugin is not up to date. So updating your Eclipse plugin would resolve the problem.
Upvotes: 12
Reputation: 737
Eclipse -> Help -> Check for updates
Check 'Android Development Tools' and install the update
Upvotes: 3