菜单 学习猿地 - LMONKEY

VIP

开通学习猿地VIP

尊享10项VIP特权 持续新增

知识通关挑战

打卡带练!告别无效练习

接私单赚外块

VIP优先接,累计金额超百万

学习猿地私房课免费学

大厂实战课仅对VIP开放

你的一对一导师

每月可免费咨询大牛30次

领取更多软件工程师实用特权

入驻
494
0

关于The specified Android SDK Build Tools version (26.0.2) is ignored, as it is below the minimum...

原创
05/13 14:22
阅读数 6203

今天将项目迁移到另一台笔记本,进行build出现以下问题,导致build失败

The specified Android SDK Build Tools version (26.0.2) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.1.
Android SDK Build Tools 27.0.3 will be used.
To suppress this warning, remove "buildToolsVersion '26.0.2'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.
Update Build Tools version and sync project Open File
  • 1
  • 2
  • 3
  • 4

大致意思,目前使用的build工具版本26.0.2不合适。因为当前使用Gradle插件版本是3.1.1,这个版本至少需要build对应版本为27.0.3 
而且,现在每一个Gradle插件版本都对应一个build工具版本,不能混用

从上述内容看出,需要修改build对应的版本,

android {
    //xxxx
    buildToolsVersion '27.0.3'
    //xxxxx
}
  • 1
  • 2
  • 3
  • 4
  • 5

这里需要注意,如果项目本身还依赖其他lib,也要记得修改对应的build.gradle 
重新build,正常

发表评论

0/200
494 点赞
0 评论
收藏
为你推荐 换一批