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

今天將項目遷移到另外一臺筆記本,進行build出現如下問題,致使build失敗android

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工具版本,不能混用app

從上述內容看出,須要修改build對應的版本,工具

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

這裏須要注意,若是項目自己還依賴其餘lib,也要記得修改對應的build.gradle 
從新build,正常gradle

相關文章
相關標籤/搜索