基本上我按照firebase.google.com网站的说明进行了操作,了解如何设置。一切都设置好,直到我尝试在App Delegate中的FIRApp.Configure()。收到错误。重新安装Cocoapods以实现版本是2.5.1,我不相信是最新版本。那么我如何获得最新版本是我的问题?
注意:使用Swift,pod搜索仅显示最新的2.5.1。
Pod文件:
# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
target 'OptionMeFood' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for OptionMeFood
pod 'Firebase'
end
答案 0 :(得分:2)
只需将它放在没有版本号的Podfile中,然后加载最新版本(3.2):
pod 'Firebase'
见这里:https://firebase.google.com/docs/ios/setup#add_the_sdk
这将添加最新版本的Firebase pod,其中包括/ Core subspec。这提供了Firebase Analytics。下面提供了当前可用的pod和subspecs列表。这些也在功能特定的设置指南中链接。