Fabric told me to update Crashlytics from 3.3.4 to 3.4.0. My Podfile does not specify the version of Crashlytics so I run update directly as:
pod update 'Crashlytics'
Output:
[...]
Using Crashlytics (3.3.4)
[...]
Pod file:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
pod 'Fabric'
pod 'Crashlytics'
Using CocoaPods 0.39.0.
you'll have to run pod update Fabric
since Fabric has a dependency upon Crahslytics
Or include both if you want to be super specific: pod update Fabric Crashlytics
Thanks guys! That was it!
Most helpful comment
Or include both if you want to be super specific:
pod update Fabric Crashlytics