Próbuję dodać dodać strąk przez cocoapods i używam swift 3, podczas gdy pod ( SQlite.swift ).
Próbuję użyć, nie mam mistrza najnowszej wersji Swift, ale jest gałąź dla Swift 3.
Jak więc ustawić plik podfile, aby pobierał określoną gałąź? Czy to możliwe?
Oto mój plik 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'