欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-04-29 15:15:01
...

https://blog.csdn.net/seafishyls/article/details/53572939

 

一般出现这个问题,是在导入其他工程时,编译报错,而原因是导入的工程只有Modul:xxx的build.gradle文件,而不包含Project:xxx的build.gradle,

解决方法:新建一个项目,然后将Project:xxx的build.gradle文件中的内容复制到新导入的Modul:xxx中

或者将这个modul导入到新创建的项目中,

比如我的项目中,将下面的代码(项目的build.gradle)复制到Modul的build.gradle中即可运行:


buildscript {
    
    repositories {
        google()
        jcenter()
    }
    dependencies {
        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
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

 

 

 

 

 

相关标签: gradle