Sto provando ad aggiungere un pod di cocoapods e sto usando swift 3, mentre il pod ( SQlite.swift ).
Sto provando a usare non ho un master dell'ultima versione di swift, tuttavia c'è un ramo per swift 3.
Quindi come devo impostare il mio podfile per scaricare il ramo specifico? È possibile?
Ecco il mio 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'