解决错误:Plugin with id 'com.android.application' not found

Error:(1, 0) Plugin with id ‘com.android.application’ not found.Open File

在这里插入图片描述

这个错误是build.gradle造成的,我们打开文件

解决错误:Plugin with id 'com.android.application' not found_第1张图片

打开报错的项目的build.gradle,看看有没有buildscript{}(应该是没有的,因为就是没有这个东西才报错的

buildscript {
repositories {
mavenCentral() // or jcenter()
}
dependencies {
classpath ‘com.android.tools.build:gradle:1.5.0’ //last version Jan 2016
}
}

把这个粘贴进去,点在这里插入图片描述同步,错误应该消失了,

效果如图:解决错误:Plugin with id 'com.android.application' not found_第2张图片

就是这样子了,这项目有点不一样,我是import进去的,在gradle配置里面的,一般情况下是没有红色框框上面的配置的。

问题顺利解决了。
问题归根揭底是
解决错误:Plugin with id 'com.android.application' not found_第3张图片

你可以看看报错前和解决后的这个视图有什么变化,哈哈

https://blog.csdn.net/qq_26819733/article/details/50935632

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