新しいCocoaPodをインストールしようとするまで、私のCocoaPodはうまく動作します。
新しいポッドをインストールしようとすると、チャートポッドにいくつかの問題があります。
どうすれば修正できますか?新しいポッドの追加中にCocoaPodsが発生する
エラーは以下のように表示:
マイpodfileは以下の通りです:
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
use_frameworks!
target 'Tranquil' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
# Pods for TranquillocationText
pod 'GooglePlaces'
pod 'UICircularProgressRing'
pod 'Alamofire', '~> 4.0' . //if i try to add this pod then error occurs
pod 'Charts'
end
'NSAttributedStringKey'。つまり、Alamofireが ''〜4.0 ''を追加したように、Swift 3に準拠したバージョンを追加します。これによると:https://github.com/danielgindi/Charts/releasesは '3.0.3'とタグ付けされたバージョンでなければなりません。 – Larme