Hi there! Any idea on why KotlinTargetContainerWit...
# multiplatform
e
Hi there! Any idea on why KotlinTargetContainerWithPresetFunctions exposes android() but it won’t work inside the kotlin block of a build.gradle ?
Copy code
Extension with name 'android' does not exist. Currently registered extension names: [ext, kotlin, defaultArtifacts, reporting, sourceSets, java]`
build.gradle
Copy code
plugins {
    kotlin("multiplatform") version "1.3.31"
}

kotlin {
    android()
}
r
You’re missing the entire android plugin
e
Thanks I’ll try it as soon as I’m back at the office. Btw is there any reference to all this? I feel really lost with the multiplatform kotlin gradle
r