Hello!
When I use
apply(plugin="org.jetbrains.kotlin.multiplatform")
kotlin { // <- error failed to resolve symbol
....
}
But
configure<KotlinMultiplatformExtension> { // ok
....
}
When
plugins{
kotlin("multiplatform") version "1.3.41"
}
kotlin { // <- OK
....
}
How can I make last variant work with apply construction?
I need it cause I'm applying it in my custom gradle plugin and now it is not possible to use plugins in this case.