Сocoapods trunk URL couldn’t be downloaded
I got it working by using below commands: pod repo remove trunk and then pod install or pod update
I got it working by using below commands: pod repo remove trunk and then pod install or pod update
The podfile guide mentions the following syntax: To use a different branch of the repo: pod ‘Alamofire’, :git => ‘https://github.com/Alamofire/Alamofire.git’, :branch => ‘dev’ ^^^ (the space is important) So in your case, that would be: pod ‘SQLite.swift’, :git => ‘https://github.com/stephencelis/SQLite.swift.git’, :branch => ‘swift3-mariotaku’
Make sure you have the latest version of CocoaPods installed. $ pod update PODNAME was introduced recently. See this issue thread for more information: $ pod update When you run pod update SomePodName, CocoaPods will try to find an updated version of the pod SomePodName, without taking into account the version listed in Podfile.lock. It … Read more