ฉันกำลังพยายามเพิ่มพ็อดโดย cocoapods และฉันใช้ swift 3 ในขณะที่พ็อด ( 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'