Slackbot
03/07/2022, 6:27 PMno
03/07/2022, 7:18 PMLilly
03/07/2022, 7:23 PMplugins {
id("de.myorg.configuration.project") version ("1.0.0")
}
and remove the version from id("de.myorg.configuration.android-app") plugin in app build.gradle.kts it works. This makes absolutely no sense to me. I have 2 other precompiled plugins, both do not load any android related plugins and both work when I put them directly into plugins block with version in app build.gradle.kts. Only the precompiled plugins that load android plugins do not work...no
03/07/2022, 7:43 PMLilly
03/07/2022, 7:46 PMpackage de.myorg.configuration
plugins {
kotlin("jvm")
}
// Set a toolchain. This will update the toolchain for Kotlin and Java compile tasks as well
kotlin {
jvmToolchain {
(this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(11))
}
}
It still does not work so it's not android plugin related or something which I assumed initially. This is really strange. Might this be a problem with the filename per se?no
03/07/2022, 7:58 PMLilly
03/07/2022, 7:58 PMLilly
03/07/2022, 10:00 PM