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()
}
}
推荐阅读
-
No plugin found for prefix spring-boot in the current project and in the plugin groups异常解决
-
Android:Failed to apply plugin [id ‘com.android.application‘]报错问题
-
stm32 下载程序出现以下问题:JLink Info: Found SWD-DP with ID 0x1BA01477
-
Failed to apply plugin [id 'org.scoverage']
-
Android Studio导入别人的module提示错误Plugin with id 'com.jfrog.bintray' not found.
-
Android Studio之提示Gradle sync failed: Plugin with id 'com.novoda.bintray-release' not found.
-
Maven 使用maven-assembly-plugin打包可执行jar,No auto configuration classes found in META-INF/spring.factori
-
【Maven 插件】为 jar 包添加代码版本信息 —— git-commit-id-plugin
-
【Maven 插件】为 jar 包添加代码版本信息 —— git-commit-id-plugin
-
导入项目时遇到的plugin with id com.android.application not found问题解决方案