我目前正在尝试使用我的Firebase项目设置GeoFire,并有一个像这样的podfile:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target '[Appname]' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for [Appname]
pod 'Firebase/Core'
pod 'Firebase/Database'
pod 'GeoFire', '~> 1.1'
end
但是,运行pod install命令会出现此错误:
[!]无法满足以下要求:
Firebase (~> 2.1)
要求GeoFire (1.1.0)
找到了满足Firebase (~> 2.1)
依赖关系的规范,但它们需要更高的最低部署目标。
我无法弄清楚如何安装GeoFire。 GeoFire与新的Firebase不兼容吗?
答案 0 :(得分:1)
解决方案
pod 'GeoFire', :git => 'https://github.com/firebase/geofire-objc.git'