💨
【Xcode エラー】「Specs satisfying the `ライブラリ名` dependency were found, but t
とあるUdemyのSwiftの講座で「pod install」を実行したら以下の画像のように
「Specs satisfying the SSSpinerButton
dependency were found,but they required a higher minimum deployment target」
といったエラーメッセージが表示された。
以下の参考記事の通りに「ios」のバージョンを
「9.0」から「10.0」に変更したら
platform :ios, '9.0' // 変更前
platform :ios, '10.0' // 変更後
「Podfile」に記載されているターゲットとなるiOSのバージョンを上げたら
無事にライブラリをインストールすることができました。
ライブラリ名
dependency were found, but they required a higher minimum deployment target」が出る時の対処法
《参考記事》 【iOSアプリ開発 / CocoaPods】ライブラリのインストールでエラー「Specs satisfying the
Discussion