segmentio / analytics-react-native

The hassle-free way to add analytics to your React-Native app.
https://segment.com/docs/sources/mobile/react-native/
MIT License
367 stars 191 forks source link

CocoaPods could not find compatible versions for pod "Analytics" #252

Closed isonlaxman closed 3 years ago

isonlaxman commented 3 years ago

I recently upgraded my @react-native-firebase/app and @react-native-firebase/messaging to 10.4.0, and since then I've not been able to do 'pod install'. I've removed pods, podfile.lock, and also done pod update. I'm stuck with this error:

[!] CocoaPods could not find compatible versions for pod "Analytics":
  In Podfile:
    RNAnalytics (from `../node_modules/@segment/analytics-react-native`) was resolved to 1.3.2, which depends on
      Analytics (~> 4.1)

    RNAnalyticsIntegration-Firebase (from `../node_modules/@segment/analytics-react-native-firebase`) was resolved to 1.3.2, which depends on
      Analytics

    RNAnalyticsIntegration-Firebase (from `../node_modules/@segment/analytics-react-native-firebase`) was resolved to 1.3.2, which depends on
      Segment-Firebase was resolved to 2.4.1, which depends on
        Analytics (~> 3.2)

CocoaPods could not find compatible versions for pod "nanopb":
  In Podfile:
    RNAnalyticsIntegration-Firebase (from `../node_modules/@segment/analytics-react-native-firebase`) was resolved to 1.3.2, which depends on
      Segment-Firebase was resolved to 2.7.0, which depends on
        FirebaseAnalytics (~> 6.1) was resolved to 6.1.2, which depends on
          nanopb (~> 0.3)

    RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`) was resolved to 10.4.0, which depends on
      Firebase/Messaging (~> 7.3.0) was resolved to 7.3.0, which depends on
        Firebase/CoreOnly (= 7.3.0) was resolved to 7.3.0, which depends on
          FirebaseCore (= 7.3.0) was resolved to 7.3.0, which depends on
            FirebaseCoreDiagnostics (~> 7.0) was resolved to 7.3.0, which depends on
              nanopb (~> 2.30906.0)

Podfile:

require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'

platform :ios, '11.0'

target 'sofy' do
  config = use_native_modules!
  use_react_native!(:path => config["reactNativePath"])
  use_unimodules!(modules_paths: ['../node_modules'])

  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable these next few lines.
  use_flipper!
  post_install do |installer|
    flipper_post_install(installer)
  end
end

Package.json:

"@segment/analytics-react-native": "^1.3.2",
"@segment/analytics-react-native-firebase": "^1.3.2",
"@react-native-firebase/app": "^10.4.0",
"@react-native-firebase/messaging": "^10.4.0",
FadiAboMsalam commented 3 years ago

same issue here any fix ?

Karthiksheety commented 3 years ago

Same issue i am facing if you guys had fix it please update it here.

Mine Deployment target was 10

Issue says that Specs satisfying the RNAnalytics (from../node_modules/@segment/analytics-react-native) dependency were found, but they required a higher minimum deployment target.

isonlaxman commented 3 years ago

Issue says that Specs satisfying the RNAnalytics (from../node_modules/@segment/analytics-react-native) dependency were found, but they required a higher minimum deployment target.

You can fix that issue by just making the deployment target = 11, but then you'll face the issue that I face

dgranahan commented 3 years ago

I ran pod update Analytics which fixed this issue for me.

isonlaxman commented 3 years ago

I ran pod update Analytics which fixed this issue for me.

If I do this I get compatibility issues with Firebase/CoreOnly

brayn003 commented 3 years ago

@segment/analytics-react-native and @react-native-firebase/app are creating conflicts because of different versions of the same dependency

isonlaxman commented 3 years ago

@segment/analytics-react-native and @react-native-firebase/app are creating conflicts because of different versions of the same dependency

yeah, that seems to be the issue, if I satisfy one of them the other complaints.

zer0flag commented 3 years ago

Same issue here. You could change the pinned Analytics version in the podfile in the node_modules folder but that's not a good solution 😄 Seems to be we need to wait for an updated version provided by the segment team?

DmytroKhutornoi commented 3 years ago

This worked for me:

isonlaxman commented 3 years ago

This worked for me:

  • in Podfile change platform :ios, '10.0' to platform :ios, '11.0'
  • in project.pbxproj set all iOS Deployment Targets to 11.0
  • update Firebase and Appcenter versions in package.json
  • delete Podfile.lock to renew Firebase dependencies

can I know exactly what versions of @react-native-firbease/app, @react-native-firebase/messaging, @segmentio/react-native-firebase, and @segmentio/react-native-firebase-analytics you have? Thanks

rodrigocoliveira commented 3 years ago

I am currently stucked on the same issue.

brayn003 commented 3 years ago

I just removed segment and integrated firebase without it

isonlaxman commented 3 years ago

I just removed segment and integrated firebase without it

that's what I'm thinking of doing right now

nsmet commented 3 years ago

We're having the same issue. We downgraded our firebase packages to all releases before they started using the new IOS SDK 7.x. But this is really not ideal as we're getting a ton of warnings from versions not being aligned...

ErickMaeda commented 3 years ago

I was able to solve it by just downgrade the platform version required from 11 to 10.

File node_modules/@segment/analytics-react-native/RNAnalytics.podspec

Changed from s.platform = :ios, '11.0' to s.platform = :ios, '10.0'

run pod install again, and it's working.

bsneed commented 3 years ago

fixed, release coming shortly.

FadiAboMsalam commented 3 years ago

@bsneed when this will be released ?

bsneed commented 3 years ago

@FadiAboMsalam running into CI issues atm, but as soon as I'm past that. hoping for today or tomorrow at the latest.

brayn003 commented 3 years ago

Is there a way I can help with this?

bsneed commented 3 years ago

Not really, but I do appreciate the offer! Thanks so much!

raybotha commented 3 years ago

This actually isn't fixed because @segment/analytics-react-native-firebase uses Segment-Firebase which depends on Analytics (~> 3.2) so the same conflict happens.

bsneed commented 3 years ago

@raybotha you should update your pods. segment-firebase hasn't been pinned for some time now I believe, see here: https://github.com/segment-integrations/analytics-ios-integration-firebase/blob/master/Segment-Firebase.podspec

Use 2.7.0, should work for you.

raybotha commented 3 years ago

@raybotha you should update your pods. segment-firebase hasn't been pinned for some time now I believe, see here: https://github.com/segment-integrations/analytics-ios-integration-firebase/blob/master/Segment-Firebase.podspec

Use 2.7.0, should work for you.

2.7.0 also conflicts because of its outdated FirebaseAnalytics dependency:


  In Podfile:
    RNAnalyticsIntegration-Firebase (from `../node_modules/@segment/analytics-react-native-firebase`) was resolved to 1.4.1, which depends on
      Segment-Firebase was resolved to 2.7.0, which depends on
        FirebaseAnalytics (~> 6.1) was resolved to 6.1.2, which depends on
          nanopb (~> 0.3)

    RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`) was resolved to 10.6.4, which depends on
      Firebase/Messaging (~> 7.5.0) was resolved to 7.5.0, which depends on
        FirebaseMessaging (~> 7.5.0) was resolved to 7.5.0, which depends on
          FirebaseCore (~> 7.0) was resolved to 7.5.0, which depends on
            FirebaseCoreDiagnostics (~> 7.4) was resolved to 7.5.0, which depends on
              nanopb (~> 2.30907.0)```
bsneed commented 3 years ago

Hi @raybotha, I did some sleuthing and see this to be a known issue internally. If you can give me some details as to the impact on your business I can get it added to the internal JIRA ticket and try to get it prioritized with the appropriate team.

Optionally, you can also contact our support department and they can do this for you too in a more private manner. The internal ticket is STRATCONN-544, support should be able to look that up on JIRA and get your info added to it.

nsmet commented 3 years ago

Hi we're also still experiencing problems with firebase packages in combination with @segment/analytics-react-native-firebase. We're not getting the pod dependency cycle problems, but other problems rose.

I'm not able to build my app because of GoogleUtilities when using the segment firebase package. giving the following error:

'GoogleUtilities/GULAppEnvironmentUtil.h' file not found

Package.json

"@react-native-firebase/app": "^10.8.0",
"@react-native-firebase/auth": "^10.8.0",
"@react-native-firebase/crashlytics": "^10.8.0",
"@react-native-firebase/database": "^10.8.0",
"@react-native-firebase/firestore": "^10.8.0",
"@react-native-firebase/functions": "^10.8.0",
"@react-native-firebase/remote-config": "^10.8.0",
"@segment/analytics-react-native": "^1.4.1",
"@segment/analytics-react-native-branch": "^1.3.2",
"@segment/analytics-react-native-firebase": "^1.4.1",

Pod install output

Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`
Fetching podspec for `Folly` from `../node_modules/react-native/third-party-podspecs/Folly.podspec`
Fetching podspec for `glog` from `../node_modules/react-native/third-party-podspecs/glog.podspec`
Downloading dependencies
Installing Analytics (3.9.0)
Installing AppAuth (1.4.0)
Installing BVLinearGradient (2.5.6)
Installing Base64 (1.1.2)
Installing BoringSSL-GRPC (0.0.7)
Installing Branch (0.35.0)
Installing CodePush (7.0.0)
Installing DoubleConversion (1.1.6)
Installing FBLazyVector (0.63.2)
Installing FBReactNativeSpec (0.63.2)
Installing FBSDKCoreKit (8.2.0)
Installing FBSDKLoginKit (8.2.0)
Installing FBSDKShareKit (8.2.0)
Installing Firebase (3.3.0)
Installing Firebase (7.6.0)
Installing FirebaseABTesting (7.6.0)
Installing FirebaseAnalytics (3.2.1)
Installing FirebaseAuth (7.6.0)
Installing FirebaseCore (7.6.0)
Installing FirebaseCoreDiagnostics (7.6.0)
Installing FirebaseCrashlytics (7.6.0)
Installing FirebaseDatabase (7.6.0)
Installing FirebaseFirestore (7.6.0)
Installing FirebaseFunctions (7.6.0)
Installing FirebaseInstallations (7.6.0)
Installing FirebaseInstanceID (1.0.9)
Installing FirebaseRemoteConfig (7.6.0)
Installing Folly (2020.01.13.00)
Installing GTMAppAuth (1.1.0)
Installing GTMSessionFetcher (1.5.0)
Installing GoogleDataTransport (8.2.0)
Installing GoogleInterchangeUtilities (1.2.2)
Installing GoogleSignIn (5.0.2)
Installing GoogleSymbolUtilities (1.1.2)
Installing GoogleUtilities (1.3.2)
Installing GoogleUtilities (7.2.2)
Installing Intercom (6.0.2)
Installing JWT (3.0.0-beta.12)
Installing OneSignal (3.1.0)
Installing PromisesObjC (1.2.12)
Installing Purchases (3.9.2)
Installing PurchasesCoreSwift (3.9.2)
Installing PurchasesHybridCommon (1.5.0)
Installing RCTRequired (0.63.2)
Installing RCTTypeSafety (0.63.2)
Installing RNAnalytics (1.4.1)
Installing RNAnalyticsIntegration-Branch (1.3.2)
Installing RNAnalyticsIntegration-Firebase (1.4.1)
Installing RNAppleAuthentication (1.1.2)
Installing RNCAsyncStorage (1.12.1)
Installing RNCMaskedView (0.1.10)
Installing RNCPushNotificationIOS (1.8.0)
Installing RNDateTimePicker (3.0.8)
Installing RNDeviceInfo (5.6.5)
Installing RNFBApp (10.8.0)
Installing RNFBAuth (10.8.0)
Installing RNFBCrashlytics (10.8.0)
Installing RNFBDatabase (10.8.0)
Installing RNFBFirestore (10.8.0)
Installing RNFBFunctions (10.8.0)
Installing RNFBRemoteConfig (10.8.0)
Installing RNGestureHandler (1.9.0)
Installing RNGoogleSignin (4.0.3)
Installing RNKeychain (4.0.5)
Installing RNLocalize (2.0.1)
Installing RNPurchases (4.0.0)
Installing RNReanimated (1.13.2)
Installing RNSVG (12.1.0)
Installing RNScreens (2.16.1)
Installing React (0.63.2)
Installing React-Core (0.63.2)
Installing React-CoreModules (0.63.2)
Installing React-RCTActionSheet (0.63.2)
Installing React-RCTAnimation (0.63.2)
Installing React-RCTBlob (0.63.2)
Installing React-RCTImage (0.63.2)
Installing React-RCTLinking (0.63.2)
Installing React-RCTNetwork (0.63.2)
Installing React-RCTSettings (0.63.2)
Installing React-RCTText (0.63.2)
Installing React-RCTVibration (0.63.2)
Installing React-callinvoker (0.63.2)
Installing React-cxxreact (0.63.2)
Installing React-jsi (0.63.2)
Installing React-jsiexecutor (0.63.2)
Installing React-jsinspector (0.63.2)
Installing ReactCommon (0.63.2)
Installing SSZipArchive (2.2.3)
Installing Segment-Branch (0.1.23)
Installing Segment-Firebase (1.0.0)
Installing Yoga (1.14.0)
Installing abseil (0.20200225.0)
Installing boost-for-react-native (1.63.0)
Installing gRPC-C++ (1.28.2)
Installing gRPC-Core (1.28.2)
Installing glog (0.3.5)
Installing leveldb-library (1.22)
Installing nanopb (2.30907.0)
Installing purse (1.0.0)
Installing react-native-branch (5.0.0)
Installing react-native-config (1.4.0)
Installing react-native-fbsdk (3.0.0)
Installing react-native-in-app-review (2.1.5)
Installing react-native-intercom (14.0.0)
Installing react-native-keep-awake (4.0.0)
Installing react-native-netinfo (4.7.0)
Installing react-native-onesignal (4.0.3)
Installing react-native-safe-area (0.5.1)
Installing react-native-safe-area-context (3.1.9)
Installing react-native-slider (2.0.9)
Installing react-native-splash-screen (3.2.0)
Installing react-native-track-player (1.2.3)
Installing react-native-webview (11.0.2)
Installing rn-fetch-blob (0.10.16)
Generating Pods project
Integrating client project
Pod installation complete! There are 71 dependencies from the Podfile and 114 total pods installed.

Conflicting pods. Here it installs older versions of Firebase and GoogleUtilitites and then overrides it with newer versions.

Installing Firebase 3.3.0
Installing Firebase 7.6.0 (was 3.3.0)
Installing GoogleUtilities 1.3.2
Installing GoogleUtilities 7.2.2 (was 1.3.2)

Anyone know how this is being caused?

bsneed commented 3 years ago

Segment-Firebase is using an out of date version it looks like. We have a ticket internally and that team is looking into it.

zer0flag commented 3 years ago

Segment-Firebase is using an out of date version it looks like. We have a ticket internally and that team is looking into it.

I'm still running into the same issue regarding the outdated Segment-Firebase version. When do you think this will be fixed @bsneed? I'm thinking of removing segment at all because firebase is essential for us but actually I don't want to do that :)

cmlarsen commented 3 years ago

Segment-Firebase is using an out of date version it looks like. We have a ticket internally and that team is looking into it.

We also need to upgrade Firebase (in prep for iOS 14.5 and the ad attribution changes) but can't until we are able to get Segment to work with it.

nsmet commented 3 years ago

we have the same issue with the attribution, we decided to remove this package until we can have it fixed

bsneed commented 3 years ago

Just a heads up, since you all reported it so much, STRATCONN-544 ended up getting assigned to me. Look for an update soon!

bsneed commented 3 years ago

Just pushed a new version of Segment-Firebase to CocoaPods. This should resolve the build problems ya'll were seeing. Changelog here: https://cocoapods.org/pods/Segment-Firebase#changelog

zer0flag commented 3 years ago

Just pushed a new version of Segment-Firebase to CocoaPods. This should resolve the build problems ya'll were seeing. Changelog here: https://cocoapods.org/pods/Segment-Firebase#changelog

Thanks @bsneed! Now it works perfectly! Just 💅 - On the changelog there's a typo on the year:

Version 2.7.1 (5th March, 2021)

bsneed commented 3 years ago

@zer0flag sweet! ah crud! it will live in infamy now. :S

alexscarlett commented 3 years ago

@bsneed I'm experiencing the same type of dependency error when attempting to add @segment/analytics-react-native-firebase to my project alongside @react-native-firebase/app (and many other @react-native-firebase/* packages for that matter)

Looks like the packages depend on Firebase/CoreOnly = 5.0.0 and = 7.4.0 respectively.

For context -- I'm attempting to follow the "Usage" directions here and hoping send analytics events through Segment instead of direct to Firebase since our app is currently sending many other events being consumed by other destinations.

Seems like you fixed this dependency issue in the Pod described above, so wondering if there is a plan to fix the @segment/analytics-react-native-firebase as well?

Sorry to open this thread back up and if this isn't the appropriate place for such a question, but wasn't able to find a repo for that specific library to file an issue.

Thanks in advance for any help/guidance here!

faisal-vf commented 3 years ago

@segment/analytics-react-native-firebase integration is still not fixed. It resolves to Segment-Firebase 1.0.0. I get this error when attempting pod install

[!] CocoaPods could not find compatible versions for pod "Firebase/Core":
  In snapshot (Podfile.lock):
    Firebase/Core (= 7.3.0)

  In Podfile:
    RNAnalyticsIntegration-Firebase (from `../node_modules/@segment/analytics-react-native-firebase`) was resolved to 1.4.3, which depends on
      Segment-Firebase was resolved to 1.0.0, which depends on
        Firebase/Core (~> 3.3.0)

    RNFBAnalytics (from `../node_modules/@react-native-firebase/analytics`) was resolved to 10.4.0, which depends on
      Firebase/Analytics (~> 7.3.0) was resolved to 7.3.0, which depends on
        Firebase/Core (= 7.3.0)

Any help/guidance regarding this will be greatly appreciated.

Andriiklymiuk commented 3 years ago

Same issue on clean project and latest version of firebase, any help or solution? My setup: "@segment/analytics-react-native": "^1.5.0", "@segment/analytics-react-native-firebase": "^1.5.0", "@segment/analytics-react-native-mixpanel": "^1.5.0", "react": "17.0.2", "react-native": "0.65.1", "@react-native-firebase/analytics": "^12.7.3", "@react-native-firebase/app": "^12.7.3", "@react-native-firebase/crashlytics": "^12.7.3", "@react-native-firebase/messaging": "^12.7.3",

And the error is 
 ```CocoaPods could not find compatible versions for pod "FirebaseAnalytics": In Podfile:
RNAnalyticsIntegration-Firebase (from `../node_modules/@segment/analytics-react-native-firebase`) was resolved to 1.5.0, which depends on
  Segment-Firebase (~> 2.7.7) was resolved to 2.7.7, which depends on
    FirebaseAnalytics (~> 7.7)

RNFBAnalytics (from `../node_modules/@react-native-firebase/analytics`) was resolved to 12.7.3, which depends on
  Firebase/Analytics (= 8.6.0) was resolved to 8.6.0, which depends on
    Firebase/Core (= 8.6.0) was resolved to 8.6.0, which depends on
      FirebaseAnalytics (~> 8.6.0)```
butri71 commented 3 years ago

any fix yet?

Godzilla912 commented 2 years ago

if anyone get this problem. delete pod lock file with pod folder (remember not pod file) then install agian pod "pod install"

ajith-acumen commented 1 year ago

i adding firebase auth package then get error

Running pod install... CocoaPods' output: ↳ Preparing

Analyzing dependencies

Inspecting targets to integrate
  Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``)

Fetching external sources
-> Fetching podspec for `Flutter` from `Flutter`
-> Fetching podspec for `arkit_plugin` from `.symlinks/plugins/arkit_plugin/ios`
-> Fetching podspec for `document_scanner_flutter` from `.symlinks/plugins/document_scanner_flutter/ios`
-> Fetching podspec for `firebase_auth` from `.symlinks/plugins/firebase_auth/ios`
-> Fetching podspec for `firebase_core` from `.symlinks/plugins/firebase_core/ios`
-> Fetching podspec for `flutter_appauth` from `.symlinks/plugins/flutter_appauth/ios`
-> Fetching podspec for `flutter_inappwebview` from `.symlinks/plugins/flutter_inappwebview/ios`
-> Fetching podspec for `flutter_restart` from `.symlinks/plugins/flutter_restart/ios`
-> Fetching podspec for `flutter_secure_storage` from `.symlinks/plugins/flutter_secure_storage/ios`
-> Fetching podspec for `fluttertoast` from `.symlinks/plugins/fluttertoast/ios`
-> Fetching podspec for `google_mlkit_barcode_scanning` from `.symlinks/plugins/google_mlkit_barcode_scanning/ios`
-> Fetching podspec for `google_mlkit_commons` from `.symlinks/plugins/google_mlkit_commons/ios`
-> Fetching podspec for `google_mlkit_digital_ink_recognition` from `.symlinks/plugins/google_mlkit_digital_ink_recognition/ios`
-> Fetching podspec for `google_mlkit_entity_extraction` from `.symlinks/plugins/google_mlkit_entity_extraction/ios`
-> Fetching podspec for `google_mlkit_face_detection` from `.symlinks/plugins/google_mlkit_face_detection/ios`
-> Fetching podspec for `google_mlkit_image_labeling` from `.symlinks/plugins/google_mlkit_image_labeling/ios`
-> Fetching podspec for `google_mlkit_language_id` from `.symlinks/plugins/google_mlkit_language_id/ios`
-> Fetching podspec for `google_mlkit_object_detection` from `.symlinks/plugins/google_mlkit_object_detection/ios`
-> Fetching podspec for `google_mlkit_pose_detection` from `.symlinks/plugins/google_mlkit_pose_detection/ios`
-> Fetching podspec for `google_mlkit_selfie_segmentation` from `.symlinks/plugins/google_mlkit_selfie_segmentation/ios`
-> Fetching podspec for `google_mlkit_smart_reply` from `.symlinks/plugins/google_mlkit_smart_reply/ios`
-> Fetching podspec for `google_mlkit_text_recognition` from `.symlinks/plugins/google_mlkit_text_recognition/ios`
-> Fetching podspec for `google_mlkit_translation` from `.symlinks/plugins/google_mlkit_translation/ios`
-> Fetching podspec for `image_cropper` from `.symlinks/plugins/image_cropper/ios`
-> Fetching podspec for `image_picker` from `.symlinks/plugins/image_picker/ios`
-> Fetching podspec for `path_provider_ios` from `.symlinks/plugins/path_provider_ios/ios`
-> Fetching podspec for `permission_handler_apple` from `.symlinks/plugins/permission_handler_apple/ios`
-> Fetching podspec for `product_management` from `.symlinks/plugins/product_management/ios`
-> Fetching podspec for `profile_management` from `.symlinks/plugins/profile_management/ios`
-> Fetching podspec for `shared_preferences_ios` from `.symlinks/plugins/shared_preferences_ios/ios`
-> Fetching podspec for `url_launcher_ios` from `.symlinks/plugins/url_launcher_ios/ios`
-> Fetching podspec for `video_player` from `.symlinks/plugins/video_player/ios`
-> Fetching podspec for `video_thumbnail` from `.symlinks/plugins/video_thumbnail/ios`
-> Fetching podspec for `wakelock` from `.symlinks/plugins/wakelock/ios`
-> Fetching podspec for `webview_flutter` from `.symlinks/plugins/webview_flutter/ios`

Resolving dependencies of `Podfile`
  CDN: trunk Relative path: CocoaPods-version.yml exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_0_3_5.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/10.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.0.5/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.0.7/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.0.9/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.4/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.5/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.6/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.7/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.9/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.10/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.11/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.12/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.2.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.2.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.2.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.0.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.0.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.0.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.1.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.2.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.2.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.3.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.3.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.3.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.5.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.2.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.5.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.5.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.7.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.11.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.16.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.17.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.4/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.8.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.10.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.0.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.4.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.8.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.16.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.17.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.18.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.19.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.20.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.20.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.20.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.8.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.16.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.17.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.18.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.19.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.20.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.21.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.22.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.23.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.24.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.25.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.26.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.27.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.27.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.28.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.28.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.29.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.30.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.31.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.31.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.32.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.32.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.33.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.34.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.2.0-M1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.3.0-M1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.4.0-M1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.8.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.9.0-k1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.9.0-k2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.6.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.9.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.12.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/10.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/10.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/10.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_8_3_c.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/3/c/FirebaseCoreDiagnostics/9.6.0/FirebaseCoreDiagnostics.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_2_a_7.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/a/7/Auth0/2.3.2/Auth0.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_d_a_2.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/a/2/Alamofire/5.6.4/Alamofire.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_1_9_2.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/1/9/2/libwebp/1.2.4/libwebp.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.8.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.16.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.17.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.18.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.19.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.20.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.21.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.22.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.23.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.24.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.25.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.26.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.27.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.27.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.28.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.28.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.29.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.30.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.31.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.31.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.32.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.32.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.33.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.34.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.0.5/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.0.7/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.0.9/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.4/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.5/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.6/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.7/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.9/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.10/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.11/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.1.12/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.2.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.2.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/1.2.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.0.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.0.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.0.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.1.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.2.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.2.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.3.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.3.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.3.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.4.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/2.5.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.2.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.5.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.5.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.7.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.11.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.16.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/3.17.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.3/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.0.4/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.8.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.10.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/4.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.0.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.4.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.8.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.16.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.17.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.18.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.19.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.20.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.20.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/5.20.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.8.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.12.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.16.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.17.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.18.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.19.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.20.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.21.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.22.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.23.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.24.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.25.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.26.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.27.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.27.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.28.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.28.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.29.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.30.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.31.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.31.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.32.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.32.2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.33.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/6.34.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.2.0-M1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.3.0-M1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.4.0-M1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.8.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.9.0-k1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.9.0-k2/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/7.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.1.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.6.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.7.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.8.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.9.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.9.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.10.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.11.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.12.1/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.13.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.14.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/8.15.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.4.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/9.6.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/10.0.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/10.1.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/3/5/Firebase/10.2.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_b_b_9.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/b/9/AppAuth/1.6.0/AppAuth.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_5_1_0.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/5/1/0/Toast/4.0.0/Toast.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_8_1_e.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/4.2.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_b_e_b.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.2.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_3_7_4.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/7/4/TOCropViewController/2.6.1/TOCropViewController.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_0_f_d.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/f/d/WeScan/1.7.0/WeScan.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_6_8_6.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/8/6/OrderedSet/5.0.0/OrderedSet.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/e/b/GoogleMLKit/3.1.0/GoogleMLKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_5_f_f.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/5/f/f/MLKitEntityExtraction/1.0.0-beta9/MLKitEntityExtraction.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/5/f/f/MLKitEntityExtraction/1.0.0-beta9/MLKitEntityExtraction.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/5/f/f/MLKitEntityExtraction/1.0.0-beta8/MLKitEntityExtraction.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_0_d_7.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/d/7/MLKitNaturalLanguage/4.2.0/MLKitNaturalLanguage.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/d/7/MLKitNaturalLanguage/4.2.0/MLKitNaturalLanguage.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_c_e_3.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/3.0.0/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.0/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.1/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.2/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.3/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.4/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.5/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.6/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.7/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.8/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.9/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.10/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.11/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.12/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.13/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.14/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.1.15/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.2.0/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.2.1/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.2.2/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.3.0/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.3.1/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.4.0/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.5.0/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.6.0/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.6.1/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.7.0/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.7.1/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/e/3/GTMSessionFetcher/1.7.2/GTMSessionFetcher.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_7_4_b.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/3.0.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.3/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.4/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.3/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.4/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.3/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.4/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.3/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.4/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.2.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.0/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.1/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.3.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_c_c_6.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/c/6/MLKitCommon/8.0.0/MLKitCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_e_c_d.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/e/c/d/Protobuf/3.21.9/Protobuf.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_7_4_f.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/f/MLKitObjectDetection/2.2.0/MLKitObjectDetection.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/4/f/MLKitObjectDetection/2.1.0/MLKitObjectDetection.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_4_b_d.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/4/b/d/MLKitObjectDetectionCommon/4.2.0/MLKitObjectDetectionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_a_e_f.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/a/e/f/MLKitVisionKit/5.2.0/MLKitVisionKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_f_8_1.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/f/8/1/MLKitLanguageID/3.2.0/MLKitLanguageID.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_3_c_a.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/c/a/MLKitPoseDetection/1.0.0-beta10/MLKitPoseDetection.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/c/a/MLKitPoseDetection/1.0.0-beta10/MLKitPoseDetection.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/c/a/MLKitPoseDetection/1.0.0-beta9/MLKitPoseDetection.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_d_4_7.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/4/7/MLKitPoseDetectionCommon/1.0.0-beta10/MLKitPoseDetectionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_d_1_d.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/1/d/MLKitXenoCommon/1.0.0-beta10/MLKitXenoCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/1/d/MLKitXenoCommon/1.0.0-beta10/MLKitXenoCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/4/7/MLKitPoseDetectionCommon/1.0.0-beta10/MLKitPoseDetectionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_b_8_1.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/8/1/MLKitTranslate/2.2.0/MLKitTranslate.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_f_8_5.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/f/8/5/MLKitSegmentationSelfie/1.0.0-beta8/MLKitSegmentationSelfie.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/f/8/5/MLKitSegmentationSelfie/1.0.0-beta8/MLKitSegmentationSelfie.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/f/8/5/MLKitSegmentationSelfie/1.0.0-beta7/MLKitSegmentationSelfie.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_c_5_3.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/5/3/MLKitSegmentationCommon/1.0.0-beta8/MLKitSegmentationCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/5/3/MLKitSegmentationCommon/1.0.0-beta8/MLKitSegmentationCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_8_1_c.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/c/MLKitImageLabelingCustom/2.2.0/MLKitImageLabelingCustom.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_2_8_e.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/8/e/MLKitPoseDetectionAccurate/1.0.0-beta10/MLKitPoseDetectionAccurate.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/8/e/MLKitPoseDetectionAccurate/1.0.0-beta10/MLKitPoseDetectionAccurate.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/8/e/MLKitPoseDetectionAccurate/1.0.0-beta9/MLKitPoseDetectionAccurate.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_e_2_0.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/e/2/0/MLKitTextRecognition/1.4.0-beta6/MLKitTextRecognition.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/e/2/0/MLKitTextRecognition/1.4.0-beta6/MLKitTextRecognition.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/e/2/0/MLKitTextRecognition/1.4.0-beta5/MLKitTextRecognition.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_7_c_c.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/c/c/MLKitTextRecognitionCommon/1.0.0-beta6/MLKitTextRecognitionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/c/c/MLKitTextRecognitionCommon/1.0.0-beta6/MLKitTextRecognitionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/f/8/1/MLKitLanguageID/3.1.0/MLKitLanguageID.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/d/7/MLKitNaturalLanguage/4.2.0/MLKitNaturalLanguage.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/d/7/MLKitNaturalLanguage/4.1.0/MLKitNaturalLanguage.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_d_2_7.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/2/7/MLKitTextRecognitionKorean/1.0.0-beta6/MLKitTextRecognitionKorean.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/2/7/MLKitTextRecognitionKorean/1.0.0-beta6/MLKitTextRecognitionKorean.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/2/7/MLKitTextRecognitionKorean/1.0.0-beta5/MLKitTextRecognitionKorean.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/4.2.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_0_a_c.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/a/c/MLImage/1.0.0-beta3/MLImage.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/4.2.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/4.1.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/4.2.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/4.1.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/4.0.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/3.0.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/2.0.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/1.3.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/1.2.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/1.1.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/1.0.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/0.64.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/0.63.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/0.62.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/0.61.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/e/MLKitVision/0.60.0/MLKitVision.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/a/c/MLImage/1.0.0-beta3/MLImage.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/c/6/MLKitCommon/8.0.0/MLKitCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_0_6_a.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.2.0/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_0_8_4.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.0.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.1.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.1.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.2.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.2.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.3.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.3.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.4.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.4.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.4.3/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.5.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.5.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.5.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.6.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.7.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.8.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_8_8_9.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/8/9/GoogleUtilitiesComponents/1.1.0/GoogleUtilitiesComponents.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/c/6/MLKitCommon/7.0.0/MLKitCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_0_f_6.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/f/6/MLKitDigitalInkRecognition/2.2.0/MLKitDigitalInkRecognition.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_1_2_e.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/1/2/e/MLKitObjectDetectionCustom/2.2.0/MLKitObjectDetectionCustom.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/8/6/OrderedSet/5.0.0/OrderedSet.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/b/9/AppAuth/1.4.0/AppAuth.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/b/9/AppAuth/1.4.0/AppAuth.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/b/9/AppAuth/1.4.0/AppAuth.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_8_1_2.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/2/MLKitImageLabeling/2.2.0/MLKitImageLabeling.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_d_5_7.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/5/7/MLKitTextRecognitionDevanagari/1.0.0-beta6/MLKitTextRecognitionDevanagari.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/5/7/MLKitTextRecognitionDevanagari/1.0.0-beta6/MLKitTextRecognitionDevanagari.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/5/7/MLKitTextRecognitionDevanagari/1.0.0-beta5/MLKitTextRecognitionDevanagari.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/c/6/MLKitCommon/7.0.0/MLKitCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/c/5/3/MLKitSegmentationCommon/1.0.0-beta7/MLKitSegmentationCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/1/d/MLKitXenoCommon/1.0.0-beta9/MLKitXenoCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/4/7/MLKitPoseDetectionCommon/1.0.0-beta9/MLKitPoseDetectionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_a_f_4.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/a/f/4/MLKitFaceDetection/2.2.0/MLKitFaceDetection.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/a/f/4/MLKitFaceDetection/2.1.0/MLKitFaceDetection.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/c/c/MLKitTextRecognitionCommon/1.0.0-beta5/MLKitTextRecognitionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_b_5_4.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/5/4/MLKitBarcodeScanning/2.2.0/MLKitBarcodeScanning.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_6_6_3.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/6/3/MLKitTextRecognitionChinese/1.0.0-beta6/MLKitTextRecognitionChinese.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/6/3/MLKitTextRecognitionChinese/1.0.0-beta6/MLKitTextRecognitionChinese.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/6/3/MLKitTextRecognitionChinese/1.0.0-beta5/MLKitTextRecognitionChinese.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/c/MLKitImageLabelingCustom/2.1.0/MLKitImageLabelingCustom.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_2_a_5.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/a/5/MLKitImageLabelingCommon/4.2.0/MLKitImageLabelingCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_8_a_6.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/a/6/MLKitSmartReply/2.2.0/MLKitSmartReply.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/1/2/e/MLKitTextRecognitionJapanese/1.0.0-beta6/MLKitTextRecognitionJapanese.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/1/2/e/MLKitTextRecognitionJapanese/1.0.0-beta6/MLKitTextRecognitionJapanese.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/1/2/e/MLKitTextRecognitionJapanese/1.0.0-beta5/MLKitTextRecognitionJapanese.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/1/2/e/MLKitObjectDetectionCustom/2.1.0/MLKitObjectDetectionCustom.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/3/c/FirebaseCoreDiagnostics/1.4.0/FirebaseCoreDiagnostics.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_b_c_f.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/c/f/GoogleDataTransportCCTSupport/3.2.0/GoogleDataTransportCCTSupport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.6.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.6.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_6_1_e.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/1/e/nanopb/2.30909.0/nanopb.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/a/6/MLKitSmartReply/2.1.0/MLKitSmartReply.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/1/e/nanopb/1.30905.0/nanopb.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/1/e/nanopb/1.30905.0/nanopb.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/6/1/e/nanopb/1.30905.0/nanopb.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/8/1/MLKitTranslate/2.1.0/MLKitTranslate.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_2_1_2.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/1/2/SSZipArchive/2.5.2/SSZipArchive.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/5/4/MLKitBarcodeScanning/2.1.0/MLKitBarcodeScanning.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/1/2/MLKitImageLabeling/2.1.0/MLKitImageLabeling.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/f/6/MLKitDigitalInkRecognition/2.1.0/MLKitDigitalInkRecognition.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_3_3_f.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/3/f/MLKitMDD/4.2.0/MLKitMDD.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/f/8/1/MLKitLanguageID/3.2.0/MLKitLanguageID.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/f/8/1/MLKitLanguageID/3.1.0/MLKitLanguageID.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/c/f/GoogleDataTransportCCTSupport/3.2.0/GoogleDataTransportCCTSupport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/b/c/f/GoogleDataTransportCCTSupport/3.1.0/GoogleDataTransportCCTSupport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/4/b/d/MLKitObjectDetectionCommon/4.2.0/MLKitObjectDetectionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/4/b/d/MLKitObjectDetectionCommon/4.1.0/MLKitObjectDetectionCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/7/4/TOCropViewController/2.6.1/TOCropViewController.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/7/4/TOCropViewController/2.6.0/TOCropViewController.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/3/f/MLKitMDD/4.2.0/MLKitMDD.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/3/3/f/MLKitMDD/4.1.0/MLKitMDD.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/a/e/f/MLKitVisionKit/5.2.0/MLKitVisionKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/a/e/f/MLKitVisionKit/5.1.0/MLKitVisionKit.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/a/5/MLKitImageLabelingCommon/4.2.0/MLKitImageLabelingCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/a/5/MLKitImageLabelingCommon/4.1.0/MLKitImageLabelingCommon.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/8/9/GoogleUtilitiesComponents/1.1.0/GoogleUtilitiesComponents.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/8/8/9/GoogleUtilitiesComponents/1.0.0/GoogleUtilitiesComponents.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/1.0.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/1.1.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/1.2.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/1.3.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/1.3.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/1.3.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.1.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.2.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.2.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.2.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.2.3/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.3.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.3.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.3.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.3.3/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.3.4/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.3.5/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.3.6/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.3.7/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.4.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.4.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.5.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.6.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.7.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/5.8.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.0.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.1.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.2.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.2.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.2.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.2.3/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.2.4/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.2.5/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.3.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.3.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.3.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.4.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.5.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.6.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/6.7.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.0.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.1.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.1.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.2.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.2.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.3.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.3.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.4.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.4.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.4.3/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.5.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.5.1/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.5.2/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.6.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.7.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.8.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/a/2/Alamofire/5.2.2/Alamofire.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/a/2/Alamofire/5.2.1/Alamofire.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/d/a/2/Alamofire/5.2.0/Alamofire.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/a/7/Auth0/1.39.1/Auth0.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/a/7/Auth0/1.39.0/Auth0.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/a/7/Auth0/1.38.1/Auth0.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/2/a/7/Auth0/1.38.0/Auth0.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_9_d_4.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/9/d/4/SimpleKeychain/1.0.1/SimpleKeychain.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: all_pods_versions_7_3_e.txt exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/7/3/e/JWTDecode/3.0.0/JWTDecode.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/6.2.1/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/6.2.0/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/6.1.1/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/6.1.0/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/9/d/4/SimpleKeychain/0.12.5/SimpleKeychain.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/9/d/4/SimpleKeychain/0.12.4/SimpleKeychain.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/9/d/4/SimpleKeychain/0.12.3/SimpleKeychain.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/9/d/4/SimpleKeychain/0.12.2/SimpleKeychain.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/9/d/4/SimpleKeychain/0.12.1/SimpleKeychain.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/9/d/4/SimpleKeychain/0.12.0/SimpleKeychain.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.2.0/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.1.4/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.1.3/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.1.2/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.1.0/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.0.1/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
  CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.0.0/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update
[!] CocoaPods could not find compatible versions for pod "GoogleDataTransport":
  In Podfile:
    FirebaseCoreDiagnostics (= 1.4.0) was resolved to 1.4.0, which depends on
      GoogleDataTransportCCTSupport (~> 3.1) was resolved to 3.2.0, which depends on
        GoogleDataTransport (~> 6.1)

    google_mlkit_selfie_segmentation (from `.symlinks/plugins/google_mlkit_selfie_segmentation/ios`) was resolved to 0.1.0, which depends on
      GoogleMLKit/SegmentationSelfie (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitSegmentationSelfie (~> 1.0.0-beta7) was resolved to 1.0.0-beta7, which depends on
          MLKitSegmentationCommon (= 1.0.0-beta7) was resolved to 1.0.0-beta7, which depends on
            MLKitCommon (~> 7.0) was resolved to 7.0.0, which depends on
              GoogleDataTransport (~> 9.0)

CocoaPods could not find compatible versions for pod "MLKitCommon":
  In Podfile:
    google_mlkit_entity_extraction (from `.symlinks/plugins/google_mlkit_entity_extraction/ios`) was resolved to 0.5.0, which depends on
      GoogleMLKit/EntityExtraction (~> 3.1.0) was resolved to 3.1.0, which depends on
        GoogleMLKit/MLKitCore (= 3.1.0) was resolved to 3.1.0, which depends on
          MLKitCommon (~> 7.0.0)

    google_mlkit_entity_extraction (from `.symlinks/plugins/google_mlkit_entity_extraction/ios`) was resolved to 0.5.0, which depends on
      GoogleMLKit/EntityExtraction (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitEntityExtraction (~> 1.0.0-beta8) was resolved to 1.0.0-beta8, which depends on
          MLKitNaturalLanguage (~> 4.1) was resolved to 4.2.0, which depends on
            MLKitCommon (~> 8.0)

    google_mlkit_selfie_segmentation (from `.symlinks/plugins/google_mlkit_selfie_segmentation/ios`) was resolved to 0.1.0, which depends on
      GoogleMLKit/SegmentationSelfie (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitSegmentationSelfie (~> 1.0.0-beta7) was resolved to 1.0.0-beta7, which depends on
          MLKitSegmentationCommon (= 1.0.0-beta7) was resolved to 1.0.0-beta7, which depends on
            MLKitCommon (~> 7.0)

CocoaPods could not find compatible versions for pod "MLKitLanguageID":
  In Podfile:
    google_mlkit_language_id (from `.symlinks/plugins/google_mlkit_language_id/ios`) was resolved to 0.4.0, which depends on
      GoogleMLKit/LanguageID (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitLanguageID (~> 3.1.0)

    google_mlkit_smart_reply (from `.symlinks/plugins/google_mlkit_smart_reply/ios`) was resolved to 0.4.0, which depends on
      GoogleMLKit/SmartReply (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitSmartReply (~> 2.1.0) was resolved to 2.1.0, which depends on
          MLKitLanguageID (~> 3.1)

CocoaPods could not find compatible versions for pod "MLKitTextRecognitionCommon":
  In Podfile:
    google_mlkit_text_recognition (from `.symlinks/plugins/google_mlkit_text_recognition/ios`) was resolved to 0.4.0, which depends on
      GoogleMLKit/TextRecognitionDevanagari (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitTextRecognitionDevanagari (~> 1.0.0-beta5) was resolved to 1.0.0-beta5, which depends on
          MLKitTextRecognitionCommon (= 1.0.0-beta5)

    google_mlkit_text_recognition (from `.symlinks/plugins/google_mlkit_text_recognition/ios`) was resolved to 0.4.0, which depends on
      GoogleMLKit/TextRecognitionJapanese (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitTextRecognitionJapanese (~> 1.0.0-beta5) was resolved to 1.0.0-beta6, which depends on
          MLKitTextRecognitionCommon (= 1.0.0-beta6)

CocoaPods could not find compatible versions for pod "MLKitVision":
  In Podfile:
    google_mlkit_commons (from `.symlinks/plugins/google_mlkit_commons/ios`) was resolved to 0.2.0, which depends on
      MLKitVision

    google_mlkit_image_labeling (from `.symlinks/plugins/google_mlkit_image_labeling/ios`) was resolved to 0.4.0, which depends on
      GoogleMLKit/ImageLabelingCustom (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitImageLabelingCustom (~> 2.1.0) was resolved to 2.1.0, which depends on
          MLKitImageLabelingCommon (~> 4.1) was resolved to 4.2.0, which depends on
            MLKitVision (~> 4.2)

    google_mlkit_selfie_segmentation (from `.symlinks/plugins/google_mlkit_selfie_segmentation/ios`) was resolved to 0.1.0, which depends on
      GoogleMLKit/SegmentationSelfie (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitSegmentationSelfie (~> 1.0.0-beta7) was resolved to 1.0.0-beta7, which depends on
          MLKitSegmentationCommon (= 1.0.0-beta7) was resolved to 1.0.0-beta7, which depends on
            MLKitXenoCommon (= 1.0.0-beta9) was resolved to 1.0.0-beta9, which depends on
              MLKitVision (~> 4.1)

CocoaPods could not find compatible versions for pod "MLKitXenoCommon":
  In Podfile:
    google_mlkit_pose_detection (from `.symlinks/plugins/google_mlkit_pose_detection/ios`) was resolved to 0.4.0, which depends on
      GoogleMLKit/PoseDetection (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitPoseDetection (~> 1.0.0-beta9) was resolved to 1.0.0-beta10, which depends on
          MLKitXenoCommon (= 1.0.0-beta10)

    google_mlkit_selfie_segmentation (from `.symlinks/plugins/google_mlkit_selfie_segmentation/ios`) was resolved to 0.1.0, which depends on
      GoogleMLKit/SegmentationSelfie (~> 3.1.0) was resolved to 3.1.0, which depends on
        MLKitSegmentationSelfie (~> 1.0.0-beta7) was resolved to 1.0.0-beta7, which depends on
          MLKitSegmentationCommon (= 1.0.0-beta7) was resolved to 1.0.0-beta7, which depends on
            MLKitXenoCommon (= 1.0.0-beta9)

/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolution.rb:317:in `raise_error_unless_state'
/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolution.rb:299:in `block in unwind_for_conflict'
/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolution.rb:297:in `tap'
/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolution.rb:297:in `unwind_for_conflict'
/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolution.rb:700:in `attempt_to_filter_existing_spec'
/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolution.rb:672:in `attempt_to_activate'
/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolution.rb:254:in `process_topmost_state'
/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolution.rb:182:in `resolve'
/Library/Ruby/Gems/2.6.0/gems/molinillo-0.8.0/lib/molinillo/resolver.rb:43:in `resolve'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/resolver.rb:94:in `resolve'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/installer/analyzer.rb:1078:in `block in resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/user_interface.rb:64:in `section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/installer/analyzer.rb:1076:in `resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/installer/analyzer.rb:124:in `analyze'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/installer.rb:416:in `analyze'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/installer.rb:241:in `block in resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/user_interface.rb:64:in `section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/installer.rb:240:in `resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/installer.rb:161:in `install!'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/command/install.rb:52:in `run'
/Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command.rb:334:in `run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/lib/cocoapods/command.rb:52:in `run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.3/bin/pod:55:in `<top (required)>'
/usr/local/bin/pod:23:in `load'
/usr/local/bin/pod:23:in `<main>'

Error running pod install Error launching application on iPhone 14 Pro Max.

Power51214 commented 8 months ago

cd ios && then run pod repo update && the run pod install it will solve the problem