💨

【Xcode エラー】「Specs satisfying the `ライブラリ名` dependency were found, but t

2023/05/25に公開

とあるUdemyのSwiftの講座で「pod install」を実行したら以下の画像のように

「Specs satisfying the SSSpinerButton dependency were found,but they required a higher minimum deployment target」

といったエラーメッセージが表示された。

スクリーンショット 2023-05-25 13.13.37.png

以下の参考記事の通りに「ios」のバージョンを
「9.0」から「10.0」に変更したら

platform :ios, '9.0' // 変更前
platform :ios, '10.0'  // 変更後

「Podfile」に記載されているターゲットとなるiOSのバージョンを上げたら
無事にライブラリをインストールすることができました。

《参考記事》 【iOSアプリ開発 / CocoaPods】ライブラリのインストールでエラー「Specs satisfying the ライブラリ名 dependency were found, but they required a higher minimum deployment target」が出る時の対処法

https://naoya-ono.com/swift/cocoapods-install-error/

Discussion