【cocoaPods】初心者だけどbut they required a higher minimum deployment target.って言われた件

cocoaPodsで偉い人がつくった便利なライブラリを拝借しようとして起きたエラーを解決してみた.

スポンサードリンク



どんなエラー?

Podfileのなかに

use_frameworks!
platform :ios, "7.0"
pod 'Kanna', '~> 1.0.0'

みたいなことを書いて、ターミナルで

pod install

をするという基本の流れを行うと

Analyzing dependencies
[!] Unable to satisfy the following requirements:
- `Kanna (~> 1.0.0)` required by `Podfile`
- `Kanna (= 1.0.5)` required by `Podfile.lock`
Specs satisfying the `Kanna (~> 1.0.0)` dependency were found, but they required a higher minimum deployment target.
Specs satisfying the `Kanna (= 1.0.5)` dependency were found, but they required a higher minimum deployment target.

というエラーが出てきた.
(Kannaは偉い人が作ったhtmlパーサー)