:wave: I have two modules: `libA` and `libB` . In...
# gradle
w
👋 I have two modules:
libA
and
libB
. In
libA
I apply
org.jetbrains.kotlin.android
and in
libB
:
org.jetbrains.kotlin.jvm
. Plugins are managed via
pluginManagement { ... }
in
settings.gradle
. The issue I have is that Kotlin Gradle plugin prints out a warning that
The Kotlin Gradle plugin was loaded multiple times in different subprojects, which is not supported and may break the build.
Is it a false positive or plugin has been indeed loaded two times? If yes - why? And what is the suggested way to use Kotlin Gradle Plugin with Plugin DSL? Issue with reproduction project is available here
t
answered you in the issue. Thank you for the repro project 👋
w
Thank you! 🙇