错误:android studio ---> Error:(1, 0) Plugin with id 'com.android.application' not found.

在导入一个Android Studio的项目时报出这个错误:Error:(1, 0) Plugin with id 'com.android.application' not found.

错误:android studio ---> Error:(1, 0) Plugin with id 'com.android.application' not found._第1张图片

解决步骤:

打下这个目录下的gradle文件,如下图:

错误:android studio ---> Error:(1, 0) Plugin with id 'com.android.application' not found._第2张图片

在插入下图中红框内的代码:

错误:android studio ---> Error:(1, 0) Plugin with id 'com.android.application' not found._第3张图片

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'
    }
}
然后同步一下项目,如果有下面这个错误:

Error:(23, 17) Failed to resolve: junit:junit:4.12

错误:android studio ---> Error:(1, 0) Plugin with id 'com.android.application' not found._第4张图片

这个时候只须要继续添加下面的代码就可以:

错误:android studio ---> Error:(1, 0) Plugin with id 'com.android.application' not found._第5张图片

allprojects {
    repositories {
        jcenter()
    }
}

再同步一下项目就可以了。


你可能感兴趣的:(android)