Hello guys. In my common library I have two iOS ta...
# kotlin-native
d
Hello guys. In my common library I have two iOS targets
iosArm64
and
iosX64
. I have configured them to generate a
.framework
with the following code:
Copy code
iosArm64() {
    binaries {
        framework {
            baseName = "KiplingCommonArm64"
        }
    }
}
iosX64() {
    binaries {
        framework {
            baseName = "KiplingCommonX64"
        }
    }
}
Like with any other third party iOS framework, I would like to have a single one that can run in the simulator and the real devices. Is that possible? If so, how can I do it?
d
Thank you @Kris Wong! 🤜🏻🤛🏻
🍻 1