Cocoapods: Cannot update pod

Created on 14 Nov 2015  路  3Comments  路  Source: CocoaPods/CocoaPods

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.

Most helpful comment

Or include both if you want to be super specific: pod update Fabric Crashlytics

All 3 comments

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!

Was this page helpful?
0 / 5 - 0 ratings