sindrenm
12/03/2020, 9:36 AMkotlinCompilerClasspath
would downgrade my Kotlin version from 1.4.20 → 1.4.10, or could perhaps point me in the right direction on where to look?
I see this when I run `./gradlew dependencies`:
kotlinCompilerClasspath
+--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.20 -> 1.4.10
| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
| | \--- org.jetbrains:annotations:13.0
| +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.10
| +--- org.jetbrains.kotlin:kotlin-reflect:1.4.10
| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
| +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.4.10
| \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.10 (*)
There are no (direct) references to 1.4.10 in my dependency declarations, either. And that's the only place where I see the downgrade to 1.4.10.
My Kotlin dependencies:
object Kotlin {
const val version = "1.4.20"
const val gradlePlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:$version"
const val stdLib = "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$version"
}
kqr
12/03/2020, 9:39 AMkqr
12/03/2020, 9:39 AMkqr
12/03/2020, 9:40 AMsindrenm
12/03/2020, 9:41 AMsindrenm
12/03/2020, 9:42 AMsindrenm
12/03/2020, 9:43 AMsindrenm
12/03/2020, 9:47 AMsindrenm
12/03/2020, 9:47 AMkotlinCompilerVersion
in my build scripts, it seems! O__Osindrenm
12/03/2020, 10:05 AMkqr
12/03/2020, 12:01 PMsindrenm
12/03/2020, 2:39 PMno
12/03/2020, 3:58 PMsindrenm
12/03/2020, 4:01 PMcomposeOptions
with a Compose and Kotlin version is currently necessary for Compose projects. Not sure I wanna dive down the hole of figuring out why that is, and just live with the fact that it is for now, seeing as it solved my problem. simple smile