I build an XCFramework in xcode 15.3 and install the framework in my example application. Everything is fine when I run the example app in xcode 15.3, but if I run the example app in xcode 15.2 I get this error:
Undefined symbol: _swift_FORCE_LOAD$_swiftXPC Linker command failed with exit code 1 (use -v to see invocation)
I made tests with different versions of XCode and differents versions of XCFramework compilation and only versions compiled in XCode 15.3 has problems
Resume:
- App Xcode 15.3 -> Framework 15.3 -> ✅
- App xcode 15.2 -> Framework 15.3 -> ❌
- App xcode 15.1 -> Framework 15.3 -> ❌
- App Xcode 15.3 -> Framework 15.2 -> ✅
- App xcode 15.2 -> Framework 15.2 -> ✅
- App xcode 15.1 -> Framework 15.2 -> ✅
- App Xcode 15.3 -> Framework 15.1 -> ✅
- App xcode 15.2 -> Framework 15.1 -> ✅
- App xcode 15.1 -> Framework 15.1 -> ✅
Could it be a bug on xcode 15.3?