我有一个 iOS 项目,它使用 Firebase 和 Google Toolbox for Mac,它们是通过 Pods 添加的。我的 Podfile 如下:
target 'MyApp' do
pod 'GoogleToolboxForMac', '~> 2.1'
pod 'GTMSessionFetcher', '~> 1.1'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Database'
pod 'Firebase/Messaging'
end
当我在 Xcode 中构建项目时,出现此错误:
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_GTMLogger", referenced from:
objc-class-ref in FirebaseMessaging(GIPReachability_ae5504e4a6a28a1d8997c6f38e8bff8b.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
任何人都可以建议吗?从其他类似的问题来看,我可能需要在Linked Frameworks and Libraries
. 我已经添加UserNotifications.framework
了 Firebase 消息传递,但不确定我还需要什么......?