我正在尝试通过cocoapods添加pod,我正在使用swift 3,而pod(SQlite.swift)。
我正在尝试使用没有最新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'