faogustavo
09/29/2020, 6:57 PMval commonMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9")
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
russhwolf
09/29/2020, 9:18 PMval customMain by creating { ... }
) then you'd need to add the dependency on common manually. See docs here https://kotlinlang.org/docs/reference/mpp-share-on-platforms.html#configure-the-hierarchical-structure-manuallyfaogustavo
09/29/2020, 9:22 PM