<@U8NMFHUGJ> mentioned the other day that: &gt; y...
# touchlab-tools
b
@kpgalligan mentioned the other day that:
you 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?
Copy code
kotlin {
   if (BUILD_MODE != "android") {
        iosX64()
        iosArm64()
   }
}
Something like that?