Hello, Can someone please direct me to a gradle sc...
# ios
m
Hello, Can someone please direct me to a gradle script/MPP project that uses Apple lipo to create a fat framework. The purpose is to be able to use the same framework on a real device and simulator at the same time.
s
assuming you have kotlin 1.3.30, you can use gradle plugin id("org.jetbrains.kotlin.native.cocoapods") version "1.3.30" to generate a cocoapod with all three architectures (arm32, arm64 and x64). This is what i use and so far i haven't had any problems yet
👍 1
m
Thanks @Steven