2017-10-12 12 views
0

The GitHub page for CalendarKitはスウィフト3の設定があることを指定します。、スウィフト3の「0.1.22」とXcode 8.3.3

pod 'CalendarKit', '0.1.22' 

それがエラーをスローします。

[!] Unable to satisfy the following requirements: - CalendarKit (= 0.1.22) required by Podfile None of your spec sources contain a spec satisfying the dependency: CalendarKit (= 0.1.22) .

You have either:
* out-of-date source repos which you can update with pod repo update or with pod install --repo-update .

答えて

1

彼らが提供した情報は間違っています、彼らのPodspecは最新ではありません。あなたはスウィフト3用CalendarKitをダウンロードするためにgitとあなたのPodfileでcommit for 0.1.22を指定する必要があります。

pod 'CalendarKit', :git => 'https://github.com/richardtop/CalendarKit.git', :commit => '65ace5a' 
1

あなたがpod repo updateを試してみて、このことができますかどうかを確認してもらえますか?

もう1人のユーザーがa similar problemで、CocoaPods仕様リポジトリを更新していました。

対応するバージョンにはpodspecが該当しますので、Specsリポジトリ自体に問題はありません。

開示:私はCalendarKitの執筆者です

関連する問題