Open bdaz opened 2 years ago
This is still an issue, FYI! Really easy fix for you guys.
Thanks, it worked
Please update the lib !
Wow! Can't believe this issue has been open for such long!!! Thanks for the workaround
Still an issue. The workaround works.
Checklist before submitting a bug report
Xcode version
14.0
Facebook iOS SDK version
14.1.0
Dependency Manager
CocoaPods
SDK Framework
Core
Goals
The directory structure of
FBSDKCoreKit.framework
is invalid for an embedded framework, becauseFacebookSDKStrings.bundle
is in the wrong place. This prevents macCatalyst builds when the app includesFBSDKCoreKit
, because code signing will fail.Simply moving
FBSDKCoreKit/XCFrameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle
toFBSDKCoreKit/XCFrameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Resources/FacebookSDKStrings.bundle
fixes this issue.Expected results
You should be able to codesign the
FBSDKCoreKit
framework for macCatalyst without issue.Actual results
Steps to reproduce
FBSDKCoreKit
as a dependency. In my case, I'm using Cocoapods.Code samples & details
No response