jeggy
09/19/2020, 10:42 PMallprojects
and this works fine, but as soon as I add a include
to my settings.gradle.kts
file I immedietally get this error: Extension with name 'kotlin' does not exist. Currently registered extension names: [ext]
.
Does anyone know how to setup a multiplatform multi project using kotlin gradle script? or is this something that's not possible yet?msink
09/20/2020, 12:39 AMsubprojects {
?kotlin {
block you can use
subprojects {
apply(plugin = "kotlin-multiplatform")
configure<KotlinMultiplatformExtension> {
rnett
09/20/2020, 2:57 AMjeggy
09/20/2020, 3:49 PMallprojects
previously, but I don't know why, I just try stuff out until it works, which is hard 😛
Do you know if there are any examples of this on GitHub or somewhere_(not as big as ktor though)_