前端之家收集整理的这篇文章主要介绍了
更新Android内置工具至18.0,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我曾经使用
Android Built-Tools 17来构建项目,现在我已经更新到18.0的工具,现在我改变了build.gradle:
android {
compileSdkVersion 18
buildToolsVersion "18.0.1"
}
当我运行它时,它是错误的,Gradle:执行失败的任务’:HandyHis:compileDebugAidl’.
Failed to find Build Tools revision 18.0.0
我该怎么办?
在SDK Manager中查看您最高的Android SDK Build-tools版本,并将此版本号复制到android / buildToolsversion
属性中的项目“build.gradle”
文件中(对我来说,版本为“18.1.1”).
希望它有所帮助!
原文链接:https://www.f2er.com/android/309135.html