Shubham Singh
12/23/2022, 6:05 AMimplementation("dev.icerock.moko:kswift-runtime:0.6.1")
is only available for KMM but my project supports Android, iOS, and Web as well. So can I instruct KMP to not fetch its deps for JS?xxfast
12/23/2022, 7:02 AMShubham Singh
12/23/2022, 8:11 AMJavier
12/23/2022, 8:55 AMMustafa Ozhan
12/23/2022, 9:52 AMmobile
val commonMain by getting {
dependencies {
}
}
val mobileMain by creating {
dependencies {
dependsOn(commonMain.get())
// here is the mobile only dependencies
}
}
val androidMain by getting {
dependencies {
dependsOn(mobileMain)
}
}
val iosMain by getting {
dependencies {
dependsOn(mobileMain)
}
}
val jsMain by getting {
dependencies {
}
}
darkmoon_uk
12/23/2022, 10:02 AMShubham Singh
12/23/2022, 11:16 AM