当前位置: 首页 > 知识库问答 >
问题:

插件太旧,请更新到最新版本,或设置ANDROID_DAILY_覆盖(注意:我使用ANDROID Studio 2.0 Preview 9版本)

邓卓
2023-03-14
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'.

我使用Android Studio 2.0预览版9

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

我下载gradle 2.11和更改gradle分布从文件/设置/gradle在Android Studio

所有这些解决办法还不能解决我的问题。

关于这个错误有什么想法或解决方案吗?

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'
}
// 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
}

共有3个答案

吴哲
2023-03-14

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

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

我在这里保留了一个答案,其中列出了最新版本:

Android Studio 2.0-插件太旧,请更新到更新版本,或设置ANDROID_DAILY_OVERRIDE

百里光熙
2023-03-14

我删除了Android Studio 2.0预览9和我加载Android Studio 1.5.1之后,问题解决了。谢谢你们帮我...

东门阳飇
2023-03-14

卡恩奇公司。Android工具。构建:gradle:2.0.0-alpha9'to'com.Android工具。构建:渐变:2.0.0-6'

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

 类似资料: