Objective-C iOSアプリケーション用にFirebaseをCocoa Pods経由でインストールしようとしています。次のように私のPodfileは次のとおりです。FireBase Cocoa Podsのインストールがうまくいきません
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
任意の助けをいただければ幸いです!
Firebaseを@import Firebaseとしてインポートした後、&podfile&にpod 'Firebase'を使用しています。あなたはプロジェクトをビルドしますか?いいえ、それを構築してみてください。 Xcodeはモジュールを見つけられなかったことに不満を抱いていますが、ビルド時にはエラーがなくなります。私が他のフレームワークを統合しているとき、私は同様の問題に直面し、時間を費やしました。しかし、それを構築した後、それは働き始めた。だから同じ事件があなたと一緒にあるかもしれない。 –