最佳答案
我正在尝试添加一个 cocoapods 豆荚,我使用迅捷3,而豆荚(SQlite Swift)。
我尝试使用没有一个最新的迅速版本的大师,但有一个 树枝的迅速3。
那么我应该如何设置我的 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