插件太旧,请更新到较新版本,或设置ANDROID_DAILY_OVERRIDE(注意:我使用Android Studio 2.0 Preview 9 Version)

Plugin is too old, please update to a more recent version,or set ANDROID_DAILY_OVERRIDE (Note:I use Android Studio 2.0 Preview 9 Version)

昨晚我的项目没有问题,但今天早上突然出现这个错误:

Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE environment variable to "4a50f93953bc93b160920b1956a20e4942372a86"

Error:(1, 1) A problem occurred evaluating project ':app'.
> Failed to apply plugin [id 'com.android.application']
   > Could not create plugin of type 'AppPlugin'.

我用的是AndroidStudio 2.0 Preview 9 Version

我检查了从 SDK 管理器更新和下载新版本工具

我下载 gradle 2.11 并在 Android Studio

上从 file/Settings/gradle 更改了 gradle 发行版

所有这些解决方案都不能解决我的问题。

关于此错误有任何想法或解决方案吗?

我的build.gradle(模块)Partititon

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.myproject.myprojectname"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.android.support:support-v4:23.1.1'
}

我的build.gradle(项目)分区

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0-alpha9'
        // 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
}

改变 'com.android.tools.build:gradle:2.0.0-alpha9' 到 'com.android.tools.build:gradle:2.0.0-alpha6'

或尝试更新 ide(在开发频道中),它会自行修复

我删除了 Android Studio 2.0 Preview 9 并在问题解决后加载了 Android Studio 1.5.1。谢谢你们帮助我..

这里的其他答案是正确的但是已经过时了,因为这个问题没有那么多的访问量。

此错误表明您使用的开发环境已经过时,可能会导致奇怪的副作用,解决方案当然是升级到更新的版本。

我在这里用最新版本列表维护一个答案: