未找到架构的 FBSDKLoginKit 框架 x86_64

framework not found FBSDKLoginKit for architecture x86_64

我遇到了这个错误

framework not found FBSDKLoginKit for architecture x86_64

,同时在 react native 项目中构建 IOS。任何解决方案如何解决?

也许尝试通过 Podfile 安装登录工具包:

platform :ios, '10.0'
use_frameworks!
target 'your_app' do
    pod 'FBSDKCoreKit'
    pod 'FBSDKLoginKit'
    pod 'FBSDKShareKit'
end