LoginSignup
0
0

【Xcode エラー】「Specs satisfying the `ライブラリ名` dependency were found, but they required a higher minimum deployment target」【解決法】

Last updated at Posted at 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」が出る時の対処法

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0