Xcode 8.1 を使用しています。Cocoa Pods を使用してプロジェクトに RealmSwift をインストールしようとしています。Cocoa Pods のバージョンは 1.1.1 です。ただし、次のエラーが発生します。
Unable to find a specification for 'RealmSwift'
私の Podfile の内容は以下のとおりです。
platform :ios, '9.0'
target 'Validator' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'RealmSwift'
end
# Pods for Validator
target 'ValidatorTests' do
inherit! :search_paths
# Pods for testing
use_frameworks!
pod 'RealmSwift'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '2.3' # or '3.0'
end
end
end
私は何を間違っていますか?iOS のバージョンを 10.0 に変更しても問題は解決しません。