mbonnin
08/24/2019, 11:54 AMThe Kotlin Gradle plugin was loaded multiple times in different subprojects, which is not supported and may break the build.
Please add the Kotlin plugin to the common parent project or the root project, then remove the versions in the subprojects.
What exact kotlin plugin are we talking about ? My root project has modules using org.jetbrains.kotlin.android
and others using plain org.jetbrains.kotlin.jvm
. Can they/Should they both be applied in the root build.gradle.kts ?gildor
08/24/2019, 1:14 PMmbonnin
08/24/2019, 1:52 PMapply(false)
, I still need to apply them in the modules, right ?plugins {}
block or the regular apply(plugin = "org.jetbrains.kotlin.android"
?gildor
08/24/2019, 2:07 PM