Plugin with id 'com.android.application' not found.

构建报错:

Error:(1, 0) Plugin with id 'com.android.application' not found.

x4eygc2n.gq0

 

ctrl+alt+s 找到build tool …修改gradle为2.8版本

Plugin with id 'com.android.application' not found._第1张图片

在外层的build.gradle文件中增加下面的配置

什么是外层的 参见上一篇

复制代码

buildscript {
    repositories {
        mavenCentral() // or jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.1'
    }
}

复制代码

完了之后就是这样:

Plugin with id 'com.android.application' not found._第2张图片

你可能感兴趣的:(android)