Error:The specified Android SDK Build Tools version (25.0.0) is ignored, as it is below the minimum

1,报错;

       Error:The specified Android SDK Build Tools version (25.0.0) is ignored, as it is below the minimum supported version (26.0.2) for Android Gradle Plugin 3.0.1. Android SDK Build Tools 26.0.2 will be used.

 

2,解决方式:将   buildToolsVersion '25.0.2'改为   buildToolsVersion '26.0.2'

             android {
                         compileSdkVersion 25
                         buildToolsVersion '26.0.2'
                        defaultConfig {
                                        applicationId "laobi.com.recycleviewdemo"
                                        minSdkVersion 18
                                        targetSdkVersion 25
                                        versionCode 1
                                        versionName "1.0"
                                        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
                 }


 

你可能感兴趣的:(异常情况)