android 编译错误 Error:(1, 0) Plugin with id 'com.android.application' not found. 解决

如果出现如上错误,只需要在build.gradle中添加下面代码即可:

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

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

allprojects {
    repositories {
        jcenter()
    }
}

你可能感兴趣的:(android 编译错误 Error:(1, 0) Plugin with id 'com.android.application' not found. 解决)