在我的xcode项目中,firebase realtime database
和Analytics
已经实施并成功运作。为了实现Firebase remote config
功能,我在项目中添加了FirebaseRemoteConfig.framework
和Protobuf.framework
。我收到以下消息的构建错误。我还没有编写任何与远程配置相关的代码。
Undefined symbols for architecture arm64:
"_kFIRAppIsDefaultAppKey", referenced from:
+[FIRRemoteConfig(FIRApp) receivedReadyToConfigureNotification:] in FirebaseRemoteConfig(FIRRemoteConfig+FIRApp_718fa6fc16d7fc9251249ec4e3a58ce2.o)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
答案 0 :(得分:3)
我找到了这个问题的解决方案。首先,您需要添加firebase的所有更新框架。如果你正在使用它。在我的情况下,我有旧版本的firebase sdks。我刚刚更新了它&错误消失了。快乐编码:)