我正在尝试添加一个豆荚,我使用的是swift 3,而豆荚(SQlite.swift)。
我尝试使用没有掌握最新的swift版本,但是有一个branch的swift 3。
那么我应该如何设置我的播客文件来下载特定的分支呢?有可能吗?
下面是我的播客文件:
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
3条答案
按热度按时间iklwldmw1#
podfile指南提到了以下语法:
要使用存储库的其他分支:
所以在你的情况下,这将是:
9rnv2umw2#
如果你只想使用主分支(master),写下面的命令:
但如果你想使用替代/不同的分支,这一个是为你:
很简单!😊
ggazkfy83#
有特殊分支的椰子
Cocoapods(https://stackoverflow.com/a/59257708/4770877)
在
Podfile
中使用:branch
请注意,该分支必须在根目录中包含
.podspec
当您指定
:branch
时,Cocoapods将尝试直接在那里查找.podspec
,而不是在集中式存储库中搜索Local CocoaPods(https://stackoverflow.com/a/57812997/4770877)