我正在尝试从特定分支安装Pod(发行版中尚不支持swift5):
pod 'Mockingjay', :git => 'https://github.com/jakeholland/Mockingjay.git', :branch => 'swift5'# for swift5 support
pod 'URITemplate', :git => 'https://github.com/kylef/URITemplate.swift.git', :branch => 'update' # for swift5 support
pod的预下载和安装成功,但是URITemplate源未添加到项目:
从Podfile中删除URITemplate时,MockingJay会自动下载URITemplate的旧版本,所有源均已正确安装(但当然不兼容swift5)。
原因可能是什么?可能的解决方法是什么?