此 Android SDK 需要 Android Developer Toolkit 14.0.0 或更高版本。.... 请将 ADT 更新到最新版本

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/11227335/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-20 06:24:33  来源:igfitidea点击:

This Android SDK requires Android Developer Toolkit version 14.0.0 or above. .... Please update ADT to the latest version

androidsdkadt

提问by URAndroid

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.

我在使用 Eclipse 时遇到了这个错误问题。

采纳答案by Vipul Shah

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.

原因是您已经更新了 android sdk,但是您的 android adt 插件不是最新的。所以更新你的 Eclipse 插件可以解决这个问题。

回答by Korhan Ozturk

This error happens due to an incompatibility between ADT and SDK.

发生此错误是由于 ADT 和 SDK 之间不兼容。

To fix it:

要解决这个问题:

  1. Eclipse > Help
  2. Install New Software
  3. Add thisto Work With section and press enter
  4. After developer tools appears on the list, check it and click Next
  5. Restart eclipse once download is finished
  1. Eclipse > 帮助
  2. 安装新软件
  3. 将此添加到“使用”部分并按 Enter
  4. 开发者工具出现在列表中后,勾选并点击下一步
  5. 下载完成后重启eclipse

Similar problem was already discussed here: Eclipse: won't let me use Android SDK, wrongly claims my ADT is out of date

这里已经讨论过类似的问题:Eclipse:不会让我使用 Android SDK,错误地声称我的 ADT 已过时

回答by Varun Bhatia

  1. In Eclipse go to Help.
  2. Select the "Install New Software" menu item.
  3. From this dialog, click the "Add..." button. This will bring up a new, smaller dialog.
  4. Enter the Name "ADT" and Location: "https://dl-ssl.google.com/android/eclipse/"
  5. after loading you will get Developer Tools and NDK Plugins
  6. check both if you want or check Developer Tools.
  7. click Next
  8. Accept licenses, and Finish
  1. 在 Eclipse 中,转到帮助。
  2. 选择“安装新软件”菜单项。
  3. 在此对话框中,单击“添加...”按钮。这将打开一个新的、较小的对话框。
  4. 输入名称“ADT”和位置:“ https://dl-ssl.google.com/android/eclipse/
  5. 加载后你会得到开发者工具和 NDK 插件
  6. 如果需要,请检查两者或检查开发人员工具。
  7. 点击下一步
  8. 接受许可,并完成

回答by kangear

if you don't want to update your ADT version, you can do this for fix your problem.

如果你不想更新你的 ADT 版本,你可以这样做来解决你的问题。

modify ${android-sdk}/tools/lib/plugin.prop plugin.versionto your current version, restart eclipse.

修改 ${android-sdk}/tools/lib/plugin.prop plugin.version为当前版本,重启eclipse。

# begin plugin.prop
plugin.version=22.3.0
# end plugin.prop

enjoy it.

好好享受。

回答by brainmurphy1

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

Eclipse 说 ADT 需要更新 - 您单击以检查更新 - 它告诉您没有更新

You need to run Eclipse as administrator. This will immediately fix the problem.

您需要以管理员身份运行 Eclipse。这将立即解决问题。

回答by Bojan Radivojevic Bomber

Eclipse -> Help -> Check for updates

Eclipse -> 帮助 -> 检查更新

Check 'Android Development Tools' and install the update

检查“Android 开发工具”并安装更新

回答by Eric Cloninger

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.

作为一般规则,Eclipse 中的 ADT 插件版本与特定的 SDK 版本配对。它没有很好的文档记录,但是如果您在任何时候更新一个,则需要更新另一个。工具和插件的版本号通常是同步的,但在某些情况下,它们不是。事实上,现在(6 月 27 日)SDK 是 19 版,插件是 18 版。当然,这将在今天晚些时候 Google IO 启动时改变。目的是保持版本号同步,但并不总是这样。

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.

您可以从 Android 工具站点获取旧版本的 ADT 和/或 SDK。在某些情况下,您必须找出 URL 的秘密才能直接下载较旧的软件包,但它们就在那里。

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.

不过应该没有必要。插件和 SDK 可与该平台的所有先前版本一起使用,因此您应该始终安全地直接从 Android 开发人员站点安装最新的 SDK 和插件。