What would be the build.gradle.kts equivalent of `...
# multiplatform
m
What would be the build.gradle.kts equivalent of
Copy code
androidMain {
            dependencies {
                implementation kotlin("stdlib")
            }
        }
?
d
Copy code
named("androidMain") {
    dependencies {
        implementation(kotlin("stdlib"))
    }
}
m
Thanks !
One day, I'll be able to understand what all these NamedObjectProviders are in gradle....
Do you happen to know why I have something like this for jvm ?
Copy code
jvm().compilations["main"].defaultSourceSet {
            dependencies {
                implementation(Libs.stdlibJdk8)
                api(Libs.kotlinxIoJvm)
            }
        }
(Or why
android().compilations["main"]
does not work ?)
d
Android is configured differently iirc. Don't remember the details.