Problem finding pods compatible version when upgrading from SDK 32 to 33

Hello. I’m upgrading my expoKit app from SDK 32 to SDK 33 and I’m running into a lot of problems on iOS (not even tried on android yet, oh god).
When I run pod install or pod update I get:

[!] CocoaPods could not find compatible versions for pod "FBAudienceNetwork":
  In Podfile:
    EXAdsFacebook (from `../node_modules/expo-ads-facebook/ios`) was resolved to 5.0.1, which depends on
      FBAudienceNetwork

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      FBAudienceNetwork (= 5.1.1)

CocoaPods could not find compatible versions for pod "FBSDKCoreKit":
  In Podfile:
    EXFacebook (from `../node_modules/expo-facebook/ios`) was resolved to 5.0.1, which depends on
      FBSDKCoreKit

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      FBSDKCoreKit (= 4.40.0)

CocoaPods could not find compatible versions for pod "FBSDKLoginKit":
  In Podfile:
    EXFacebook (from `../node_modules/expo-facebook/ios`) was resolved to 5.0.1, which depends on
      FBSDKLoginKit

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      FBSDKLoginKit (= 4.40.0)

CocoaPods could not find compatible versions for pod "Google-Mobile-Ads-SDK":
  In Podfile:
    EXAdsAdMob (from `../node_modules/expo-ads-admob/ios`) was resolved to 5.0.1, which depends on
      Google-Mobile-Ads-SDK

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      Google-Mobile-Ads-SDK (~> 7.22.0)

CocoaPods could not find compatible versions for pod "GoogleMaps":
  In Podfile:
    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      Google-Maps-iOS-Utils (~> 2.1.0) was resolved to 2.1.0, which depends on
        GoogleMaps

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      GoogleMaps (~> 2.5.0)

CocoaPods could not find compatible versions for pod "GoogleMobileVision/Detector":
  In Podfile:
    EXFaceDetector (from `../node_modules/expo-face-detector/ios`) was resolved to 5.0.1, which depends on
      GoogleMobileVision/FaceDetector (~> 1.1.0) was resolved to 1.1.0, which depends on
        GoogleMobileVision/Detector (= 1.1.0)

    react-native-camera/BarcodeDetectorMLKit (from `../node_modules/react-native-camera`) was resolved to 2.6.0, which depends on
      Firebase/MLVision was resolved to 5.20.2, which depends on
        FirebaseMLVision (= 0.15.0) was resolved to 0.15.0, which depends on
          GoogleMobileVision/Detector (~> 1.4)

My Podfile is:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'

target 'baladapp---produtor' do
  pod 'ExpoKit',
      git: 'http://github.com/expo/expo.git',
      tag: 'ios/2.11.1',
      subspecs: [
        'Core'
      ],
      inhibit_warnings: true

  # install unimodules
  require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
  use_unimodules!

  pod 'React',
      path: '../node_modules/react-native',
      inhibit_warnings: true,
      subspecs: %w[
        Core
        ART
        RCTActionSheet
        RCTAnimation
        RCTCameraRoll
        RCTGeolocation
        RCTImage
        RCTNetwork
        RCTText
        RCTVibration
        RCTWebSocket
        DevSupport
        CxxBridge
      ]
  pod 'yoga',
      path: '../node_modules/react-native/ReactCommon/yoga',
      inhibit_warnings: true
  pod 'DoubleConversion',
      podspec: '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec',
      inhibit_warnings: true
  pod 'Folly',
      podspec: '../node_modules/react-native/third-party-podspecs/Folly.podspec',
      inhibit_warnings: true
  pod 'glog',
      podspec: '../node_modules/react-native/third-party-podspecs/glog.podspec',
      inhibit_warnings: true

  pod 'react-native-camera', path: '../node_modules/react-native-camera', subspecs: [
    'BarcodeDetectorMLKit'
  ]

  pod 'Firebase/Core'

  post_install do |installer|
    installer.pods_project.main_group.tab_width = '2'
    installer.pods_project.main_group.indent_width = '2'

    installer.target_installation_results.pod_target_installation_results
             .each do |pod_name, target_installation_result|

      if pod_name == 'ExpoKit'
        target_installation_result.native_target.build_configurations.each do |config|
          config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
          config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'EX_DETACHED=1'

          # Enable Google Maps support
          config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'HAVE_GOOGLE_MAPS=1'
          config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'HAVE_GOOGLE_MAPS_UTILS=1'
        end
      end

      if ['Amplitude-iOS', 'Analytics', 'AppAuth', 'Branch', 'CocoaLumberjack', 'FBSDKCoreKit', 'FBSDKLoginKit', 'FBSDKShareKit', 'GPUImage', 'JKBigInteger2'].include? pod_name
        target_installation_result.native_target.build_configurations.each do |config|
          config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
        end
      end

      # Can't specify this in the React podspec because we need to use those podspecs for detached
      # projects which don't reference ExponentCPP.
      if pod_name.start_with?('React')
        target_installation_result.native_target.build_configurations.each do |config|
          config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
          config.build_settings['HEADER_SEARCH_PATHS'] ||= ['$(inherited)']
        end
      end

      # Build React Native with RCT_DEV enabled and RCT_ENABLE_INSPECTOR and
      # RCT_ENABLE_PACKAGER_CONNECTION disabled
      next unless pod_name == 'React'

      target_installation_result.native_target.build_configurations.each do |config|
        config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
        config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_DEV=1'
        config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_ENABLE_INSPECTOR=0'
        config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'ENABLE_PACKAGER_CONNECTION=0'
      end
    end
  end
end

My package.json is as following:

{
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "eject": "expo eject"
  },
  "dependencies": {
    "axios": "^0.18.0",
    "crypto-js": "^3.1.9-1",
    "date-fns": "^1.30.1",
    "expo": "^33.0.7",
    "expokit": "33.0.1",
    "lodash": "^4.17.11",
    "prop-types": "^15.6.2",
    "react": "16.5.0",
    "react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
    "react-native-camera": "git+https://github.com/otaviogaiao/react-native-camera",
    "react-native-expo-image-cache": "git+https://github.com/otaviogaiao/react-native-expo-image-cache.git#3.3.7",
    "react-native-iphone-x-helper": "^1.2.0",
    "react-native-keyboard-aware-scroll-view": "^0.8.0",
    "react-native-masked-text": "^1.10.1",
    "react-native-modal": "^11.0.0",
    "react-native-optimized-flatlist": "git+https://github.com/otaviogaiao/react-native-optimized-flatlist.git#v1.1.1",
    "react-native-picker-select": "^6.1.0",
    "react-native-render-html": "^4.1.2",
    "react-native-responsive-screen": "^1.2.0",
    "react-native-root-siblings": "^3.1.7",
    "react-native-status-bar-height": "^2.2.0",
    "react-navigation": "^3.9.1",
    "react-redux": "^6.0.0",
    "redux": "^4.0.1",
    "redux-logger": "^3.0.6",
    "redux-persist": "^5.10.0",
    "redux-saga": "^0.16.2",
    "sentry-expo": "^1.12.0"
  },
  "devDependencies": {
    "@babel/core": "^7.0.0-0",
    "babel-eslint": "^10.0.1",
    "babel-preset-expo": "^5.0.0",
    "eslint": "^5.12.0",
    "eslint-config-airbnb": "^17.1.0",
    "eslint-config-prettier": "^3.5.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jsx-a11y": "^6.1.2",
    "eslint-plugin-prettier": "^3.0.1",
    "eslint-plugin-react": "^7.12.4",
    "prettier": "^1.15.3",
    "prettier-eslint": "^8.8.2",
    "react-native-unimodules": "^0.4.0"
  },
  "private": true
}

I did some research but could not find a solution for my problem. I’m already using Cocoapods version 1.7.3.

Could you delete your Podfile.lock and Gemfile.lock, then navigate into your ios directory and run bundle check || bundle install && pod install?

I just did that, same problem :disappointed:

Bundler can't satisfy your Gemfile's dependencies.
Install missing gems with `bundle install`.
Fetching gem metadata from https://rubygems.org/.............
Fetching gem metadata from https://rubygems.org/..
Resolving dependencies...
Using CFPropertyList 3.0.0
Fetching public_suffix 2.0.5
Installing public_suffix 2.0.5
Using addressable 2.6.0
Using atomos 0.1.3
Fetching babosa 1.0.2
Installing babosa 1.0.2
Using bundler 1.17.2
Using claide 1.0.2
Fetching colored 1.2
Installing colored 1.2
Using colored2 3.1.2
Fetching highline 1.7.10
Installing highline 1.7.10
Fetching commander-fastlane 4.4.6
Installing commander-fastlane 4.4.6
Fetching declarative 0.0.10
Installing declarative 0.0.10
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching digest-crc 0.4.1
Installing digest-crc 0.4.1
Using unf_ext 0.0.7.6
Using unf 0.1.4
Using domain_name 0.5.20180417
Fetching dotenv 2.7.4
Installing dotenv 2.7.4
Fetching emoji_regex 1.0.1
Installing emoji_regex 1.0.1
Fetching excon 0.64.0
Installing excon 0.64.0
Fetching multipart-post 2.0.0
Installing multipart-post 2.0.0
Fetching faraday 0.15.4
Installing faraday 0.15.4
Using http-cookie 1.0.3
Fetching faraday-cookie_jar 0.0.6
Installing faraday-cookie_jar 0.0.6
Fetching faraday_middleware 0.13.1
Installing faraday_middleware 0.13.1
Fetching fastimage 2.1.5
Installing fastimage 2.1.5
Using gh_inspector 1.1.3
Using jwt 2.1.0
Fetching memoist 0.16.0
Installing memoist 0.16.0
Using multi_json 1.13.1
Fetching os 1.0.1
Installing os 1.0.1
Fetching signet 0.11.0
Installing signet 0.11.0
Fetching googleauth 0.6.7
Installing googleauth 0.6.7
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Using mime-types-data 3.2019.0331
Using mime-types 3.2.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching google-api-client 0.23.9
Installing google-api-client 0.23.9
Fetching google-cloud-env 1.2.0
Installing google-cloud-env 1.2.0
Fetching google-cloud-core 1.3.0
Installing google-cloud-core 1.3.0
Fetching google-cloud-storage 1.16.0
Installing google-cloud-storage 1.16.0
Fetching json 2.2.0
Installing json 2.2.0 with native extensions
Fetching mini_magick 4.5.1
Installing mini_magick 4.5.1
Using multi_xml 0.6.0
Fetching plist 3.5.0
Installing plist 3.5.0
Fetching rubyzip 1.2.3
Installing rubyzip 1.2.3
Fetching security 0.1.3
Installing security 0.1.3
Fetching naturally 2.2.0
Installing naturally 2.2.0
Fetching simctl 1.6.5
Installing simctl 1.6.5
Fetching slack-notifier 2.3.2
Installing slack-notifier 2.3.2
Fetching terminal-notifier 2.0.0
Installing terminal-notifier 2.0.0
Fetching unicode-display_width 1.6.0
Installing unicode-display_width 1.6.0
Fetching terminal-table 1.8.0
Installing terminal-table 1.8.0
Fetching tty-screen 0.7.0
Installing tty-screen 0.7.0
Fetching tty-cursor 0.7.0
Installing tty-cursor 0.7.0
Fetching tty-spinner 0.9.1
Installing tty-spinner 0.9.1
Fetching word_wrap 1.0.0
Installing word_wrap 1.0.0
Using nanaimo 0.2.6
Using xcodeproj 1.10.0
Fetching rouge 2.0.7
Installing rouge 2.0.7
Fetching xcpretty 0.3.0
Installing xcpretty 0.3.0
Fetching xcpretty-travis-formatter 1.0.0
Installing xcpretty-travis-formatter 1.0.0
Fetching fastlane 2.126.0
Installing fastlane 2.126.0
Bundle complete! 1 Gemfile dependency, 65 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Installing unimodules:
 expo-ads-admob@5.0.1 from ../node_modules/expo-ads-admob/ios
 expo-ads-facebook@5.0.1 from ../node_modules/expo-ads-facebook/ios
 expo-analytics-amplitude@5.0.1 from ../node_modules/expo-analytics-amplitude/ios
 expo-analytics-segment@5.0.1 from ../node_modules/expo-analytics-segment/ios
 expo-app-auth@5.0.1 from ../node_modules/expo-app-auth/ios
 expo-app-loader-provider@5.0.1 from ../node_modules/expo-app-loader-provider/ios
 expo-av@5.0.2 from ../node_modules/expo-av/ios
 expo-background-fetch@5.0.1 from ../node_modules/expo-background-fetch/ios
 expo-barcode-scanner@5.0.1 from ../node_modules/expo-barcode-scanner/ios
 expo-blur@5.0.1 from ../node_modules/expo-blur/ios
 expo-brightness@5.0.1 from ../node_modules/expo-brightness/ios
 expo-calendar@5.0.1 from ../node_modules/expo-calendar/ios
 expo-camera@5.0.1 from ../node_modules/expo-camera/ios
 expo-constants@5.0.1 from ../node_modules/expo-constants/ios
 expo-contacts@5.0.2 from ../node_modules/expo-contacts/ios
 expo-crypto@5.0.1 from ../node_modules/expo-crypto/ios
 expo-document-picker@5.0.2 from ../node_modules/expo-document-picker/ios
 expo-face-detector@5.0.1 from ../node_modules/expo-face-detector/ios
 expo-facebook@5.0.1 from ../node_modules/expo-facebook/ios
 expo-file-system@5.0.1 from ../node_modules/expo-file-system/ios
 expo-font@5.0.1 from ../node_modules/expo-font/ios
 expo-gl@5.0.1 from ../node_modules/expo-gl/ios
 expo-gl-cpp@5.0.1 from ../node_modules/expo-gl-cpp/cpp
 expo-google-sign-in@5.0.1 from ../node_modules/expo-google-sign-in/ios
 expo-haptics@5.0.1 from ../node_modules/expo-haptics/ios
 expo-image-manipulator@5.0.1 from ../node_modules/expo-image-manipulator/ios
 expo-image-picker@5.0.2 from ../node_modules/expo-image-picker/ios
 expo-keep-awake@5.0.1 from ../node_modules/expo-keep-awake/ios
 expo-linear-gradient@5.0.1 from ../node_modules/expo-linear-gradient/ios
 expo-local-authentication@5.0.1 from ../node_modules/expo-local-authentication/ios
 expo-localization@5.0.1 from ../node_modules/expo-localization/ios
 expo-location@5.0.1 from ../node_modules/expo-location/ios
 expo-mail-composer@5.0.1 from ../node_modules/expo-mail-composer/ios
 expo-media-library@5.0.1 from ../node_modules/expo-media-library/ios
 expo-permissions@5.0.1 from ../node_modules/expo-permissions/ios
 expo-print@5.0.1 from ../node_modules/expo-print/ios
 expo-random@5.0.1 from ../node_modules/expo-random/ios
 expo-secure-store@5.0.1 from ../node_modules/expo-secure-store/ios
 expo-sensors@5.0.1 from ../node_modules/expo-sensors/ios
 expo-sharing@5.0.1 from ../node_modules/expo-sharing/ios
 expo-sms@5.0.1 from ../node_modules/expo-sms/ios
 expo-speech@5.0.2 from ../node_modules/expo-speech/ios
 expo-sqlite@5.0.1 from ../node_modules/expo-sqlite/ios
 expo-task-manager@5.0.1 from ../node_modules/expo-task-manager/ios
 expo-web-browser@5.0.3 from ../node_modules/expo-web-browser/ios
 unimodules-barcode-scanner-interface@2.0.1 from ../node_modules/unimodules-barcode-scanner-interface/ios
 unimodules-camera-interface@2.0.1 from ../node_modules/unimodules-camera-interface/ios
 unimodules-constants-interface@2.0.1 from ../node_modules/unimodules-constants-interface/ios
 unimodules-core@2.0.1 from ../node_modules/@unimodules/core/ios
 unimodules-face-detector-interface@2.0.1 from ../node_modules/unimodules-face-detector-interface/ios
 unimodules-file-system-interface@2.0.1 from ../node_modules/unimodules-file-system-interface/ios
 unimodules-font-interface@2.0.1 from ../node_modules/unimodules-font-interface/ios
 unimodules-image-loader-interface@2.0.1 from ../node_modules/unimodules-image-loader-interface/ios
 unimodules-permissions-interface@2.0.1 from ../node_modules/unimodules-permissions-interface/ios
 unimodules-react-native-adapter@2.0.1 from ../node_modules/@unimodules/react-native-adapter/ios
 unimodules-sensors-interface@2.0.1 from ../node_modules/unimodules-sensors-interface/ios
 unimodules-task-manager-interface@2.0.1 from ../node_modules/unimodules-task-manager-interface/ios

Analyzing dependencies
Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`
Fetching podspec for `EXAV` from `../node_modules/expo-av/ios`
Fetching podspec for `EXAdsAdMob` from `../node_modules/expo-ads-admob/ios`
Fetching podspec for `EXAdsFacebook` from `../node_modules/expo-ads-facebook/ios`
Fetching podspec for `EXAmplitude` from `../node_modules/expo-analytics-amplitude/ios`
Fetching podspec for `EXAppAuth` from `../node_modules/expo-app-auth/ios`
Fetching podspec for `EXAppLoaderProvider` from `../node_modules/expo-app-loader-provider/ios`
Fetching podspec for `EXBackgroundFetch` from `../node_modules/expo-background-fetch/ios`
Fetching podspec for `EXBarCodeScanner` from `../node_modules/expo-barcode-scanner/ios`
Fetching podspec for `EXBlur` from `../node_modules/expo-blur/ios`
Fetching podspec for `EXBrightness` from `../node_modules/expo-brightness/ios`
Fetching podspec for `EXCalendar` from `../node_modules/expo-calendar/ios`
Fetching podspec for `EXCamera` from `../node_modules/expo-camera/ios`
Fetching podspec for `EXConstants` from `../node_modules/expo-constants/ios`
Fetching podspec for `EXContacts` from `../node_modules/expo-contacts/ios`
Fetching podspec for `EXCrypto` from `../node_modules/expo-crypto/ios`
Fetching podspec for `EXDocumentPicker` from `../node_modules/expo-document-picker/ios`
Fetching podspec for `EXFaceDetector` from `../node_modules/expo-face-detector/ios`
Fetching podspec for `EXFacebook` from `../node_modules/expo-facebook/ios`
Fetching podspec for `EXFileSystem` from `../node_modules/expo-file-system/ios`
Fetching podspec for `EXFont` from `../node_modules/expo-font/ios`
Fetching podspec for `EXGL` from `../node_modules/expo-gl/ios`
Fetching podspec for `EXGL-CPP` from `../node_modules/expo-gl-cpp/cpp`
Fetching podspec for `EXGoogleSignIn` from `../node_modules/expo-google-sign-in/ios`
Fetching podspec for `EXHaptics` from `../node_modules/expo-haptics/ios`
Fetching podspec for `EXImageManipulator` from `../node_modules/expo-image-manipulator/ios`
Fetching podspec for `EXImagePicker` from `../node_modules/expo-image-picker/ios`
Fetching podspec for `EXKeepAwake` from `../node_modules/expo-keep-awake/ios`
Fetching podspec for `EXLinearGradient` from `../node_modules/expo-linear-gradient/ios`
Fetching podspec for `EXLocalAuthentication` from `../node_modules/expo-local-authentication/ios`
Fetching podspec for `EXLocalization` from `../node_modules/expo-localization/ios`
Fetching podspec for `EXLocation` from `../node_modules/expo-location/ios`
Fetching podspec for `EXMailComposer` from `../node_modules/expo-mail-composer/ios`
Fetching podspec for `EXMediaLibrary` from `../node_modules/expo-media-library/ios`
Fetching podspec for `EXPermissions` from `../node_modules/expo-permissions/ios`
Fetching podspec for `EXPrint` from `../node_modules/expo-print/ios`
Fetching podspec for `EXRandom` from `../node_modules/expo-random/ios`
Fetching podspec for `EXSMS` from `../node_modules/expo-sms/ios`
Fetching podspec for `EXSQLite` from `../node_modules/expo-sqlite/ios`
Fetching podspec for `EXSecureStore` from `../node_modules/expo-secure-store/ios`
Fetching podspec for `EXSegment` from `../node_modules/expo-analytics-segment/ios`
Fetching podspec for `EXSensors` from `../node_modules/expo-sensors/ios`
Fetching podspec for `EXSharing` from `../node_modules/expo-sharing/ios`
Fetching podspec for `EXSpeech` from `../node_modules/expo-speech/ios`
Fetching podspec for `EXTaskManager` from `../node_modules/expo-task-manager/ios`
Fetching podspec for `EXWebBrowser` from `../node_modules/expo-web-browser/ios`
Pre-downloading: `ExpoKit` from `http://github.com/expo/expo.git`, tag `ios/2.11.1`
Fetching podspec for `Folly` from `../node_modules/react-native/third-party-podspecs/Folly.podspec`
Fetching podspec for `React` from `../node_modules/react-native`
Fetching podspec for `UMBarCodeScannerInterface` from `../node_modules/unimodules-barcode-scanner-interface/ios`
Fetching podspec for `UMCameraInterface` from `../node_modules/unimodules-camera-interface/ios`
Fetching podspec for `UMConstantsInterface` from `../node_modules/unimodules-constants-interface/ios`
Fetching podspec for `UMCore` from `../node_modules/@unimodules/core/ios`
Fetching podspec for `UMFaceDetectorInterface` from `../node_modules/unimodules-face-detector-interface/ios`
Fetching podspec for `UMFileSystemInterface` from `../node_modules/unimodules-file-system-interface/ios`
Fetching podspec for `UMFontInterface` from `../node_modules/unimodules-font-interface/ios`
Fetching podspec for `UMImageLoaderInterface` from `../node_modules/unimodules-image-loader-interface/ios`
Fetching podspec for `UMPermissionsInterface` from `../node_modules/unimodules-permissions-interface/ios`
Fetching podspec for `UMReactNativeAdapter` from `../node_modules/@unimodules/react-native-adapter/ios`
Fetching podspec for `UMSensorsInterface` from `../node_modules/unimodules-sensors-interface/ios`
Fetching podspec for `UMTaskManagerInterface` from `../node_modules/unimodules-task-manager-interface/ios`
Fetching podspec for `glog` from `../node_modules/react-native/third-party-podspecs/glog.podspec`
Fetching podspec for `react-native-camera` from `../node_modules/react-native-camera`
Fetching podspec for `yoga` from `../node_modules/react-native/ReactCommon/yoga`
[!] CocoaPods could not find compatible versions for pod "AppAuth":
  In Podfile:
    EXAppAuth (from `../node_modules/expo-app-auth/ios`) was resolved to 5.0.1, which depends on
      AppAuth

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      AppAuth (~> 0.4)

CocoaPods could not find compatible versions for pod "FBAudienceNetwork":
  In Podfile:
    EXAdsFacebook (from `../node_modules/expo-ads-facebook/ios`) was resolved to 5.0.1, which depends on
      FBAudienceNetwork

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      FBAudienceNetwork (= 5.1.1)

CocoaPods could not find compatible versions for pod "FBSDKCoreKit":
  In Podfile:
    EXFacebook (from `../node_modules/expo-facebook/ios`) was resolved to 5.0.1, which depends on
      FBSDKCoreKit

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      FBSDKCoreKit (= 4.40.0)

CocoaPods could not find compatible versions for pod "FBSDKLoginKit":
  In Podfile:
    EXFacebook (from `../node_modules/expo-facebook/ios`) was resolved to 5.0.1, which depends on
      FBSDKLoginKit

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      FBSDKLoginKit (= 4.40.0)

CocoaPods could not find compatible versions for pod "Google-Mobile-Ads-SDK":
  In Podfile:
    EXAdsAdMob (from `../node_modules/expo-ads-admob/ios`) was resolved to 5.0.1, which depends on
      Google-Mobile-Ads-SDK

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      Google-Mobile-Ads-SDK (~> 7.22.0)

CocoaPods could not find compatible versions for pod "GoogleMaps":
  In Podfile:
    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      Google-Maps-iOS-Utils (~> 2.1.0) was resolved to 2.1.0, which depends on
        GoogleMaps

    ExpoKit/Core (from `http://github.com/expo/expo.git`, tag `ios/2.11.1`) was resolved to 33.0.0, which depends on
      GoogleMaps (~> 2.5.0)

CocoaPods could not find compatible versions for pod "GoogleMobileVision/Detector":
  In Podfile:
    EXFaceDetector (from `../node_modules/expo-face-detector/ios`) was resolved to 5.0.1, which depends on
      GoogleMobileVision/MVDataOutput (~> 1.1.0) was resolved to 1.1.0, which depends on
        GoogleMobileVision/Detector (= 1.1.0)

    react-native-camera/BarcodeDetectorMLKit (from `../node_modules/react-native-camera`) was resolved to 2.6.0, which depends on
      Firebase/MLVisionBarcodeModel was resolved to 5.2.0, which depends on
        FirebaseMLVisionBarcodeModel (= 0.9.0) was resolved to 0.9.0, which depends on
          GoogleMobileVision/BarcodeDetector (~> 1.3.0) was resolved to 1.3.0, which depends on
            GoogleMobileVision/Detector (= 1.3.0)

How about updating your dependency on expo-app-auth (npm uninstall expo-app-auth && npm i --save expo-app-auth) to the latest version, then re-doing those native installs all over again cd ios && bundle check || bundle install && bundle exec pod install?

So, I don’t have that installed. Isn’t it included on ExpoKit?

I ended up creating a blank sdk 33 project and ejecting to compare the files. What fixed for me was changing:

  # Install unimodules
  require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
  use_unimodules!

to

  # Install unimodules
  require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
  use_unimodules!(
    modules_paths: ['../node_modules'],
    exclude: [
      'expo-face-detector',
      'expo-payments-stripe',
    ],
  )

Thank you for your help!

How did you update ExpoKit from SDK 32 to SDK 33? Is there any guide for this?

In the end of article

If you are using EAS, try disabling cache in eas.json file and build it again:

{
   release: {
     cache: {
       disabled: true
     }
  }
}