Android经典报错Error:(1, 0) Plugin with id 'com.android.application' not found.

  下载第三方sdk经常会遇到这个错误,每次都要去找原因,这次记录下来下次直接看:

在下载的第三方SDK的build.gradle中看看有没有:
buildscript {
repositories {
jcenter()
}
dependencies {
//你本地有的gradle
classpath 'com.android.tools.build:gradle:3.0.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

}
这个东西,没有添加上,搞定

后记:
Android经典报错Error:(1, 0) Plugin with id 'com.android.application' not found._第1张图片
image.png

还有的需要这么搞,有些第三方DEMO,还是大厂出品,下载下来居然无法打开,还要自己修改,真的是无力吐槽,还是我打开的方法有问题...

你可能感兴趣的:(Android经典报错Error:(1, 0) Plugin with id 'com.android.application' not found.)