我在 iOS 上使用 Firebase,我想添加 GeoFire。我正在按照此处的说明进行操作:https ://github.com/firebase/geofire-objc ,但是在将 pod 'GeoFire', '>=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
我不确定这里发生了什么。