Declaring custom 'clean' task when using the standard Gradle lifecycle plugins is not allowed
直接在build.grade文件中将以下代码删除即可.
task customClean(type: Delete) {
delete rootProject.buildDir
}
本文介绍了解决在使用标准Gradle生命周期插件时,不允许声明自定义'clean'任务的问题。通过简单地从build.gradle文件中删除特定代码段,可以避免此错误。
直接在build.grade文件中将以下代码删除即可.
task customClean(type: Delete) {
delete rootProject.buildDir
}
1万+
646
5205
2171
1108

被折叠的 条评论
为什么被折叠?