「Unable to satisfy the following requirements」エラーでpod installできない

Objective-Cについて Objective-C

PCを新しくしたので、bitbucketに入れているソースを git clone。
pod installで問題ないさ!と思ったら以下のエラー。

[!] Unable to satisfy the following requirements:

- `Google-AdMob-Ads-SDK (= 6.4.2)` required by `Podfile`

もともと、iOS6時代(しかもXcode4系)に作ったものをそのまま放置してたので
そんなにうまく行くはずもなく・・・

PodfileでiOSの指定(iOS7.1)をしてみるもうまく行かず。
しょうがないから、一回消すかーというということでAdMobは一旦削除してpod install。

・・・通ったw

もしや一回うまくいったあとにAdMobをPodfileに追加して、
もう一度pod installすればうまくいくのか・・・

・・・通ったw

以下の記事を見るになんとなく、
使ってるものの間でコンフリクト?を起こしていたんじゃないかと妄想。

error on pod install – [!] Unable to satisfy the following requirements:

うまくいったからいいこととする。

ちなみに通った最終的なPodfileは以下のとおり。

最初は「pod ‘Google-Mobile-Ads-SDK’」が2行目にあったのを
最後に移動させてpod installしたら通った形。

platform :ios, '7.1'
pod 'GoogleAnalytics-iOS-SDK'
pod 'FMDB'
pod 'SVProgressHUD'
pod 'Google-Mobile-Ads-SDK'

コメント

タイトルとURLをコピーしました