When I run `./gradlew assembleXCFramework` , the r...
# multiplatform
b
When I run
./gradlew assembleXCFramework
, the resulting XCFramework is missing the
ios-arm64-simulator
slice. What am I doing wrong?
d
in addition to having the iOS target, you also need to add a target for iosSimulatorArm64
Copy code
ios {}

iosSimulatorArm64 { }