出现了:Error:(1, 0) Plugin with id 'com.android.application' not found.这个错误提示
解决方法:
看看你的项目里面是否缺少build.gradle 文件,缺少的话加上,有的话看看有没有内容,没哟偶的话加上下面的代码:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
}
}
allprojects {
repositories {
mavenCentral()
}
}
然后try again一下
文章评论