Bradleycorn
08/19/2024, 8:01 PMyou can disable ios in KMP when building for Android, and vice-versa.how do you do that? Would you just set/pass a gradle property, and then not setup the ios targets if building for android?
kotlin {
if (BUILD_MODE != "android") {
iosX64()
iosArm64()
}
}
Something like that?