Diego
09/17/2020, 2:22 PMiosArm64
and iosX64
. I have configured them to generate a .framework
with the following 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?Diego
09/17/2020, 2:29 PM