ENABLE_BITCODE missing for Swift Packages on Xcode 14

None of my iOS projects build any more on Xcode 14 as it complains about missing bit-code for local swift packages. The solution is to create .lproj project files for the swift packages and create xcframeworks with ENABLE_BITCODE enabled but that's no solution at all.

Project builds fine on Xcode 13 / 12./

XXXXXXX.framework/XXXXXXX' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target.

🤦‍♂️ Release notes say bit code is no longer supported. Got it.

For Xcode 14 disable bitcode for any of your projects as it is now deprecated.

ENABLE_BITCODE missing for Swift Packages on Xcode 14
 
 
Q