-
|
I got my iOS app somewhat running by using the skip-fuse example project as base, but now need to switch from the default Swift 6 to 5 as otherwise too many changes on the iOS app-side are currently needed. Changing the following to 5, cleanign the build folder, restarting Xcode and android emulator and rebuild, still results in Swift 6 strict concurrence check in the android toolchain in some way as I still see the same errors: Anything else to change? Or is creating a new project from scratch and copying the iOS source files into it the quicker way? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Can you try setting The XCode |
Beta Was this translation helpful? Give feedback.
Can you try setting
Package(…, swiftLanguageModes: [.v5])in yourPackage.swift? SettingswiftLanguageModes to
v5should disable Swift 6 concurrency enforcement.The XCode
SWIFT_VERSIONwill only affect the Xcode project itself, but each imported SwiftPM module will define its own language mode.