pod终止更新在iOS终端

时间:2017-09-01 16:08:05

标签: ios swift xcode cocoapods

我有下一个问题。

我尝试在Podfile中更新pod并在iOS终端中获取下一个错误:

[!] Unable to satisfy the following requirements:

- `FirebaseCore` required by `Podfile`
- `FirebaseCore (= 3.6.0)` required by `Podfile.lock`
- `FirebaseCore (~> 3.6)` required by `FirebaseAnalytics (3.9.0)`
- `FirebaseCore (~> 3.6)` required by `FirebaseInstanceID (1.0.10)`
- `FirebaseCore (= 4.0.0)` required by `Firebase/Core (4.0.0)`

这是我的Podfile的内容:

use_frameworks!

target 'PrayerDeck' do
pod 'Firebase', '~> 4.0.0'
pod 'Firebase/Auth'
pod 'Firebase/Crash'
pod 'FirebaseUI/Database'
pod 'Fabric'
pod 'Crashlytics'
pod 'Digits'
pod 'TwitterCore'
pod 'Firebase/Database'
pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'IQKeyboardManagerSwift'
pod 'Firebase/Storage'
pod 'MBProgressHUD'
pod 'Google/SignIn'
pod 'Firebase/Invites'
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'FBSDKLoginKit'
pod 'FBSDKMessengerShareKit'
pod 'Alamofire', '~> 4.0'
pod 'TwitterKit'
pod 'SwiftyStoreKit'
pod 'GoogleSignIn'
pod 'FirebaseAnalytics'
pod 'FirebaseCore'
end

target 'PrayerDeckTests' do

end

target 'PrayerDeckUITests' do

end

我无法解析pod的依赖关系。也许有人可以帮助我?

提前致谢。

1 个答案:

答案 0 :(得分:0)

只需从项目目录中删除Podfile.lock文件,然后再尝试安装pod。