Hello,
I have archives for all iOS devices working, but when I include archive for macosx the XCFramework works fine in a native MacApp but not with the iOS app including Mac Catalyst.
Here is my xcodebuild statement
xcodebuild archive -project "$FRAMEWORK".xcodeproj -scheme "$FRAMEWORK" \
-sdk macosx \
-archivePath "$FRAMEWORK"M.xcarchive SKIP_INSTALL=NO clean
The error I am getting is "While building for Mac Catalyst, no library for this platform was found in '[framework].xcframework
So the question that I have: Is there another -sdk setting to include Mac Catalyst binaries ?
Thank you, your help is appreciated.