elect
08/02/2022, 6:46 AMtoLowerCase()
should be marked deprecated (and I should have lowerCase()
available both are not. I'm using
plugins {
kotlin("multiplatform") version embeddedKotlinVersion // 1.6.21 as Gradle 7.5
}
elect
08/02/2022, 6:57 AMjvm {
compilations.all { kotlinOptions.jvmTarget = "1.8" }
withJava()
testRuns["test"].executionTask.configure { useJUnit() }
}