Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 CocoaPods 为 Swift 3 获取 XCGLogger。我尝试在我的 pod 文件中指定版本 4.0.0 和 4.0.0-beta.3。但是,当我运行 pod update 或 pod install 时,我收到以下错误:
分析依赖关系 [!] 无法满足以下要求:
XCGLogger (~> 4.0.0-beta.3)
Podfile
您可以将其添加到您的Podfile:
pod 'XCGLogger', :git => 'git@github.com:DaveWoodCom/XCGLogger.git', :branch => 'swift_3.0'
指定分支意味着您将在我推送它们时获得更新,Beta 4 等。