christophsturm
05/26/2020, 4:42 PMkotlin {
jvm()
sourceSets {
val jvmMain by getting {
dependencies {
implementation(enforcedPlatform("org.jetbrains.kotlin:kotlin-bom:$kotlinVersion"))
the enforcedPlatform part is highlighted in red in my gradle filelouiscad
05/26/2020, 5:00 PMplatform instead.christophsturm
05/26/2020, 5:08 PMchristophsturm
05/26/2020, 5:09 PMlouiscad
05/26/2020, 7:27 PMchristophsturm
05/26/2020, 8:12 PMlouiscad
05/26/2020, 8:58 PMchristophsturm
05/27/2020, 10:13 AMUnresolved reference: platform 🙂Darren Bell
07/21/2020, 8:13 AMplatform or enforcedPlatform to work as part of my multiplatform project. I too am having the same issue as you. Did you get it resolved? Or what did you do to work around it?christophsturm
07/21/2020, 8:25 AMchristophsturm
07/21/2020, 8:25 AMDarren Bell
07/21/2020, 8:36 AMDarren Bell
07/21/2020, 9:03 AMDarren Bell
07/23/2020, 8:02 AMval jvmMain by getting {
dependencies {
implementation(project.dependencies.enforcedPlatform("..."))
}
}christophsturm
07/23/2020, 8:17 AM