XCGLogger version 4.0.0 and CocoaPods error

201 Views Asked by At

I am trying to use CocoaPods to acquire XCGLogger for Swift 3. I have tried specifying version 4.0.0 and 4.0.0-beta.3 in my pod file. However when I run a pod update or pod install I get the following error:

Analyzing dependencies [!] Unable to satisfy the following requirements:

  • XCGLogger (~> 4.0.0-beta.3) required by Podfile
1

There are 1 best solutions below

2
Dave Wood On

You can add this to your Podfile:

pod 'XCGLogger', :git => '[email protected]:DaveWoodCom/XCGLogger.git', :branch => 'swift_3.0'

Specifying the branch will mean you'll get updates as I push them, Beta 4 etc.