我想通過Cocoa豆莢爲我的Objective-C iOS應用程序安裝Firebase。我Podfile如下:FireBase可可豆莢安裝不工作
target 'RandomName' do
pod 'Firebase/Core'
pod 'Firebase/AdMob'
end
當我運行pod install
,我得到以下錯誤:
[!] Unable to satisfy the following requirements:
- `Firebase/Core` required by `Podfile`
None of your spec sources contain a spec satisfying the dependency: `Firebase/Core`.
You have either:
* out-of-date source repos which you can update with `pod repo update`.
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0, `pod repo update` does not happen on `pod install` by default.
可可豆莢最新版本的安裝,我已經嘗試運行莢回購更新。有一個Podfile以下工作正常,但是當我嘗試在我的AppDelegate.m文件中@import Firebase;
時,Xcode無法找到該模塊。
target 'RandomName' do
pod 'Firebase'
end
但是,下面的組合不安裝:
target 'RandomName' do
pod 'Firebase'
pod 'Firebase/AdMob'
end
任何幫助,將不勝感激!
在podfile中使用pod'Firebase'並將Firebase導入爲@import Firebase後;你建立這個項目嗎?如果沒有,然後嘗試構建它。因爲Xcode抱怨沒有找到模塊,但構建錯誤消失了。當我整合其他框架時,我面臨類似的問題並花費了數小時的時間。但建成後開始工作。所以也許同樣的情況可能與你同在。 –