cocoapods로 포드 추가를 시도하고 있는데, pod ( SQlite.swift )를 사용하는 동안 swift 3을 사용하고 있습니다.
나는 사용하려고하는데 최신 swift 버전의 마스터가 없지만 swift 3에 대한 분기 가 있습니다.
그렇다면 특정 브랜치를 다운로드하도록 podfile을 어떻게 설정해야합니까? 가능할까요?
내 podfile은 다음과 같습니다.
platform :ios, '10.0'
target 'RedShirt' do
use_frameworks!
# Pods for RedShirt
pod 'SQLite.swift', :git => 'https://github.com/stephencelis/SQLite.swift.git'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
:tag => '1.0.0'