mattinger
09/15/2022, 1:18 PMerror build: Undefined symbol: _OBJC_CLASS_$_AnalyticsMultiplatformActionEventV5
I’m kind of presuming that this is because the generated xcframework only contains ios-arm64 and ios-x86_44 versions (i’m on an m1). I tried to add the iosSimulatorArm64:
iosSimulatorArm64 {
binaries {
framework {
baseName = "AnalyticsMultiplatform"
xcFramework.add(this)
}
}
}
val iosSimulatorArm64Main by getting {
dependsOn(iosMain)
}
But assembling the framework always fails:
the path does not point to a valid framework: .../analytics-multiplatform/build/analytics_multiplatformXCFrameworkTemp/fatframework/debug/iosSimulator/analytics_multiplatform.framework
MarkRS
09/17/2022, 9:18 AM