failed to apply plugin [id 'com.android.application']

工具:Android studio


可能在配置react native环境的时候,动了配置,导致以前编译正常的工程出现如下错误:


同时还会出现如下错误:


当时一直把精力放在第二张图上,认为是什么插件过期了,检查了gradle、buildtools等,发现不是该问题;

接着重新编译,发现了图一的错误,就大概定位到了时 com.android.application的问题,然后在stackover找到了如下链接:

http://stackoverflow.com/questions/24795079/error1-0-plugin-with-id-com-android-application-not-found


然后我将:

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

    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'
    }
}
替换了在gradle文件夹下build.gradle文件中的头部,再重新编译就OK。 




你可能感兴趣的:(android,android,gradle,环境配置,插件,Studio,Studio)