Benjamin Deroche
06/29/2022, 10:04 AMvanniktech
06/29/2022, 10:18 AMBenjamin Deroche
06/29/2022, 11:30 AMvanniktech
06/29/2022, 11:32 AMribesg
06/29/2022, 2:01 PMrusshwolf
06/29/2022, 6:10 PMBenjamin Deroche
06/30/2022, 7:21 AMrusshwolf
06/30/2022, 12:06 PMandroid()
jvm()
sourceSets {
val androidMain by getting {}
val jvmMain by getting {}
val jvmCommonMain by creating {
androidMain.dependsOn(this)
jvmMain.dependsOn(this)
dependsOn(commonMain)
}
}
You may still need to manually write some copy/paste expect/actual declarations for dependencies that the Kotlin tooling doesn't correctly recognize are accessible to both android and jvm.vanniktech
07/04/2022, 10:25 AM