Plugin with id 'com.android.application' not found. Open File

Plugin with id ‘com.android.application’ not found. Open File

解决方法:
将下面的配置拷贝到build.gradle里面

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'
        //注意:更换成自己的AS的版本
    }
}

你可能感兴趣的:(安卓项目编译报错)