Hi, I’m trying to compile iOS framework with all a...
# multiplatform
t
Hi, I’m trying to compile iOS framework with all architectures support Arm64 and iosX64, someone knows how to do it?
s
I did this in my build gradle:
Copy code
final def iOSTarget = System.getenv('SDK_NAME')?.startsWith("iphoneos")   \
                                ? presets.iosArm64 : presets.iosX64

        fromPreset(iOSTarget, 'ios') {
            compilations.main.outputKinds('FRAMEWORK')
        }
t
this export me iosArm64 or iosX64 framework, I need them both
follow the link there to the gist
t
10x