cocoapodでライブラリを入れたいですがうまく導入できずに困っています
pod installをするとこのようになってしまいます。
導入したいと持っているライブラリは以下のものです、通常の入れ方だと何か問題があるのでしょうか?
https://github.com/malt03/OverlappingViewsSeparator
podfile
# Uncomment the next line to define a global platform for your project # platform :ios, '9.0' target 'OverlappingView' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! pod 'OverlappingViewsSeparator' # Pods for OverlappingView target 'OverlappingViewTests' do inherit! :search_paths # Pods for testing end target 'OverlappingViewUITests' do # Pods for testing end end
試しに入れてみましたが、CocoaPods だと import OverlappingViewsSeparator がエラーになって、Swift Package Manager にしたらうまく行きました。(import してビルドしただけですが。)