ANDROID_DAILY_OVERRIDE 的Gradle问题

build:gradle 插件版本太低,请问要怎么更新,或者有什么其他办法能解决?

please update to a more recent version, or set ANDROID_DAILY_OVERRIDE envir。。。

将代码修改一下,让Android Studio 自己判断。
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0+'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

版本呢2.0之上就行。

你可能感兴趣的:(Android/AS/NDK)