I think something is messed up with kotlin std-jdk...
# multiplatform
e
I think something is messed up with kotlin std-jdk in my MP project, because in the code
toLowerCase()
should be marked deprecated (and I should have
lowerCase()
available both are not. I'm using
Copy code
plugins {
    kotlin("multiplatform") version embeddedKotlinVersion // 1.6.21 as Gradle 7.5
}
How do you specify the kotlin jdk to use for the jvm counterpart? This is what I have atm, pretty vanilla
Copy code
jvm {
    compilations.all { kotlinOptions.jvmTarget = "1.8" }
    withJava()
    testRuns["test"].executionTask.configure { useJUnit() }
}