【发布时间】:2016-05-27 18:19:07
【问题描述】:
我在 iOS 上使用 Firebase,我想添加 GeoFire。我按照这里的说明进行操作:https://github.com/firebase/geofire-objc,但在添加 pod 之后 '地火', '>=1.1' 到我的 podfile 并更新我得到错误
$ pod update
Update all pods
Updating local specs repositories
Analyzing dependencies
[!] Unable to satisfy the following requirements:
- `Firebase (~> 2.1)` required by `GeoFire (1.1.0)`
Specs satisfying the `Firebase (~> 2.1)` dependency were found, but they required a higher minimum deployment target.
我的 podfile 看起来像
use_frameworks!
platform :ios, '8.1'
pod 'Firebase/Core'
pod 'Firebase/Storage'
pod 'Firebase/AdMob'
pod 'Firebase/Auth'
pod 'Firebase/Crash'
pod 'Firebase/Database'
pod 'Firebase/RemoteConfig'
pod 'GeoFire', '>=1.1'
target 'FriendlyChatSwift' do
end
我不确定这里发生了什么。
【问题讨论】:
标签: ios firebase cocoapods geofire