iOS で Firebase を使用していますが、GeoFire を追加したいと考えています。https://github.com/firebase/geofire-objcの指示に従っていますが、ポッド 'GeoFire', '>=1.1' をポッドファイルに追加して更新すると、エラーが発生します
$ 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.
私のポッドファイルは次のようになります
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
ここで何が起こっているのかわかりません。