facebook / facebook-ios-sdk

Used to integrate the Facebook Platform with your iOS & tvOS apps.
https://developers.facebook.com/docs/ios
Other
7.79k stars 3.55k forks source link

"FBSDKCoreKit/FBSDKCoreKit.h file not found" error after updating to Facebook SDK v11.0 #1773

Closed alperkayabasi closed 3 years ago

alperkayabasi commented 3 years ago

Checklist

Environment

Describe your dev environment here, giving as many details as possible. If you have them, make sure to include:

Goals

I want to build my project.

Expected Results

I expect my project to build successfully without any errors.

Actual Results

I can't build my project. I get 'FBSDKCoreKit/FBSDKCoreKit.h' file not found error in FBSDKCoreKitImport.h class after trying to build.

Steps to Reproduce

Code Samples & Details

Here is my podfile;

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'PodTest' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for PodTest
pod 'FBSDKCoreKit'
pod 'FBAudienceNetwork'
pod 'FBSDKLoginKit'

end

Screen Shot 2021-06-15 at 17 28 04 Screen Shot 2021-06-15 at 17 28 21

jamestouri commented 3 years ago

I replicated the error and it seems like it's caused by pod 'FBAudienceNetwork' in the Podfile. We're not sure at the moment why it's causing this error, but we're looking into it right now. Seems like when installing the pod 'FBAudienceNetwork' it installs FBSDKCoreKit 9.3.0 instead of 11.0.0

joesus commented 3 years ago

Thanks for bringing this to our attention!

The latest published version (6.5.0) of Audience Network (AN) relies on FBSDKCoreKit/Basics. This is a sub-spec of the FBSDKCoreKit pod.

The latest published version (11.0.0) of FBSDKCoreKit relies on a new pod - FBSDKCoreKit_Basics - and thus no longer includes the sub-spec Basics.

The version of AN that you're using is trying to resolve it's dependency on Basics by looking for the subspec which is no longer there.

While we are in the process of releasing a new version of the AN pod that relies on the new, standalone FBSDKCoreKit_Basics pod, you can either:

a) Incorporate the library manually by downloading AN from https://developers.facebook.com/resources/FBAudienceNetwork-6.5.0.zip and dropping it into your project.

b) Downgrade FBSDKCoreKit and FBSDKLoginKit to 9.3.0 and wait for the new version of AN to be published.

alperkayabasi commented 3 years ago

Hello @joesus, Thanks for your answer. Now I get why we faced this issue. I think it's best for us to downgrade and wait for the new AN SDK to be published for now. Cheers.

sharoni commented 3 years ago

Hi, AN SDK 6.5.1 has been released with updated dependency config in podspec.

joesus commented 3 years ago

Thanks @sharoni for the quick resolution!

AiFuYou commented 3 years ago

@sharoni Hi, there is an error about AN. What should I do?

Podfile:

WechatIMG2

error:

WechatIMG1
sharoni commented 3 years ago

Hi @AiFuYou, could you pate the contents of your Podfile.lock file?

teodorusluo commented 3 years ago

@sharoni Hi, I face the same problem

Podfile

use_frameworks!

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

platform :ios, '11.0'

def appodeal
  pod 'APDAdColonyAdapter', '2.10.1.1' 
  pod 'APDAmazonAdsAdapter', '2.10.1.1' 
  pod 'APDAppLovinAdapter', '2.10.1.2' 
  pod 'APDBidMachineAdapter', '2.10.1.3' 
  pod 'APDFacebookAudienceAdapter', '2.10.1.2'
  pod 'APDGoogleAdMobAdapter', '2.10.1.1' 
  pod 'APDIronSourceAdapter', '2.10.1.2' 
  pod 'APDMyTargetAdapter', '2.10.1.2' 
  pod 'APDOguryAdapter', '2.10.1.1' 
  pod 'APDSmaatoAdapter', '2.10.1.1' 
  pod 'APDStartAppAdapter', '2.10.1.2' 
  pod 'APDUnityAdapter', '2.10.1.1' 
  pod 'APDVungleAdapter', '2.10.1.1' 
  pod 'APDYandexAdapter', '2.10.1.1' 
end

target 'doublekill' do
  config = use_native_modules!

  use_react_native!(
    :path => config[:reactNativePath],
    # to enable hermes on iOS, change `false` to `true` and then install pods
    :hermes_enabled => false
  )

  pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-async-storage/async-storage'

  pod 'RNAppodeal', :path => '../node_modules/react-native-appodeal'

  target 'doublekillTests' do
    inherit! :complete
    # Pods for testing
  end

  post_install do |installer|
    react_native_post_install(installer)
  end

  appodeal
end

error:

Screen Shot 2021-08-04 at 10 25 40

Podfile.lock

PODS:
  - AdColony (4.6.1)
  - AmazonAd (3.1.0)
  - AmazonPublisherServicesSDK (3.3.0)
  - APDAdColonyAdapter (2.10.1.1):
    - AdColony (= 4.6.1)
    - Appodeal (= 2.10.1)
  - APDAmazonAdsAdapter (2.10.1.1):
    - AmazonAd (= 3.1.0)
    - Appodeal (= 2.10.1)
  - APDAppLovinAdapter (2.10.1.2):
    - AppLovinSDK (~> 10.3.0)
    - Appodeal (= 2.10.1)
  - APDBidMachineAdapter (2.10.1.3):
    - APDBidMachineAdapter/HeaderBidding (= 2.10.1.3)
    - Appodeal (= 2.10.1)
  - APDBidMachineAdapter/AdColony (2.10.1.3):
    - AdColony (= 4.6.1)
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
  - APDBidMachineAdapter/Amazon (2.10.1.3):
    - AmazonPublisherServicesSDK (= 3.3.0)
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
  - APDBidMachineAdapter/AppRoll (2.10.1.3):
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
    - AppRollSDK (= 3.1.2)
  - APDBidMachineAdapter/Core (2.10.1.3):
    - Appodeal (= 2.10.1)
    - BidMachine (= 1.7.3)
  - APDBidMachineAdapter/Criteo (2.10.1.3):
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
    - CriteoPublisherSdk (= 4.0.1)
  - APDBidMachineAdapter/Facebook (2.10.1.3):
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
    - FBAudienceNetwork (= 6.5.1)
  - APDBidMachineAdapter/HeaderBidding (2.10.1.3):
    - APDBidMachineAdapter/AdColony
    - APDBidMachineAdapter/Amazon
    - APDBidMachineAdapter/AppRoll
    - APDBidMachineAdapter/Criteo
    - APDBidMachineAdapter/Facebook
    - APDBidMachineAdapter/MyTarget
    - APDBidMachineAdapter/Smaato
    - APDBidMachineAdapter/Tapjoy
    - APDBidMachineAdapter/Vungle
    - Appodeal (= 2.10.1)
  - APDBidMachineAdapter/MyTarget (2.10.1.3):
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
    - myTargetSDK (= 5.11.2)
  - APDBidMachineAdapter/Smaato (2.10.1.3):
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
    - smaato-ios-sdk (= 21.6.13)
  - APDBidMachineAdapter/Tapjoy (2.10.1.3):
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
    - TapjoySDK (= 12.7.0)
  - APDBidMachineAdapter/Vungle (2.10.1.3):
    - APDBidMachineAdapter/Core
    - Appodeal (= 2.10.1)
    - VungleSDK-iOS (= 6.9.2)
  - APDFacebookAudienceAdapter (2.10.1.2):
    - Appodeal (= 2.10.1)
    - FBAudienceNetwork (= 6.5.1)
  - APDGoogleAdMobAdapter (2.10.1.1):
    - Appodeal (= 2.10.1)
    - Google-Mobile-Ads-SDK (~> 8.5.0)
  - APDIronSourceAdapter (2.10.1.2):
    - Appodeal (= 2.10.1)
    - IronSourceSDK (= 7.1.6)
  - APDMyTargetAdapter (2.10.1.2):
    - Appodeal (= 2.10.1)
    - myTargetSDK (= 5.11.2)
  - APDOguryAdapter (2.10.1.1):
    - Appodeal (= 2.10.1)
    - OguryAds (~> 2.3.4)
  - APDSmaatoAdapter (2.10.1.1):
    - Appodeal (= 2.10.1)
    - smaato-ios-sdk (~> 21.6.13)
  - APDStartAppAdapter (2.10.1.2):
    - Appodeal (= 2.10.1)
    - StartAppSDK (= 4.6.4)
  - APDUnityAdapter (2.10.1.1):
    - Appodeal (= 2.10.1)
    - UnityAds (= 3.7.1)
  - APDVungleAdapter (2.10.1.1):
    - Appodeal (= 2.10.1)
    - VungleSDK-iOS (= 6.9.2)
  - APDYandexAdapter (2.10.1.1):
    - Appodeal (= 2.10.1)
    - YandexMobileAds (= 4.1.2)
  - AppAuth (1.4.0):
    - AppAuth/Core (= 1.4.0)
    - AppAuth/ExternalUserAgent (= 1.4.0)
  - AppAuth/Core (1.4.0)
  - AppAuth/ExternalUserAgent (1.4.0)
  - AppLovinSDK (10.3.3)
  - Appodeal (2.10.1):
    - Protobuf (~> 3.12)
    - StackCrashReporter (= 1.0.0-Beta)
    - StackIAB (~> 1.4.1)
    - StackModules (~> 1.1.0)
  - AppRollSDK (3.1.2)
  - BidMachine (1.7.3.0):
    - BidMachine/Core (= 1.7.3.0)
  - BidMachine/Core (1.7.3.0):
    - Protobuf (~> 3.9)
    - StackModules (~> 1.1.0)
  - boost-for-react-native (1.63.0)
  - BVLinearGradient (2.5.6):
    - React
  - Crashlytics (3.14.0):
    - Fabric (~> 1.10.2)
  - CriteoPublisherSdk (4.0.1):
    - CriteoPublisherSdk/Sdk (= 4.0.1)
  - CriteoPublisherSdk/Sdk (4.0.1)
  - DoubleConversion (1.1.6)
  - Fabric (1.10.2)
  - FBAudienceNetwork (6.5.1):
    - FBSDKCoreKit_Basics
  - FBLazyVector (0.64.2)
  - FBReactNativeSpec (0.64.2):
    - RCT-Folly (= 2020.01.13.00)
    - RCTRequired (= 0.64.2)
    - RCTTypeSafety (= 0.64.2)
    - React-Core (= 0.64.2)
    - React-jsi (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - FBSDKCoreKit (9.3.0):
    - FBSDKCoreKit/Basics (= 9.3.0)
    - FBSDKCoreKit/Core (= 9.3.0)
  - FBSDKCoreKit/Basics (9.3.0)
  - FBSDKCoreKit/Core (9.3.0):
    - FBSDKCoreKit/Basics
  - FBSDKCoreKit_Basics (11.0.1):
    - FBSDKCoreKit_Basics/Basics (= 11.0.1)
  - FBSDKCoreKit_Basics/Basics (11.0.1)
  - FBSDKLoginKit (9.3.0):
    - FBSDKLoginKit/Login (= 9.3.0)
  - FBSDKLoginKit/Login (9.3.0):
    - FBSDKCoreKit (~> 9.3.0)
  - FBSDKShareKit (9.3.0):
    - FBSDKShareKit/Share (= 9.3.0)
  - FBSDKShareKit/Share (9.3.0):
    - FBSDKCoreKit (~> 9.3.0)
  - Firebase/Core (8.3.0):
    - Firebase/CoreOnly
    - FirebaseAnalytics (~> 8.3.0)
  - Firebase/CoreOnly (8.3.0):
    - FirebaseCore (= 8.3.0)
  - FirebaseAnalytics (8.3.0):
    - FirebaseAnalytics/AdIdSupport (= 8.3.0)
    - FirebaseCore (~> 8.0)
    - FirebaseInstallations (~> 8.0)
    - GoogleUtilities/AppDelegateSwizzler (~> 7.4)
    - GoogleUtilities/MethodSwizzler (~> 7.4)
    - GoogleUtilities/Network (~> 7.4)
    - "GoogleUtilities/NSData+zlib (~> 7.4)"
    - nanopb (~> 2.30908.0)
  - FirebaseAnalytics/AdIdSupport (8.3.0):
    - FirebaseCore (~> 8.0)
    - FirebaseInstallations (~> 8.0)
    - GoogleAppMeasurement (= 8.3.0)
    - GoogleUtilities/AppDelegateSwizzler (~> 7.4)
    - GoogleUtilities/MethodSwizzler (~> 7.4)
    - GoogleUtilities/Network (~> 7.4)
    - "GoogleUtilities/NSData+zlib (~> 7.4)"
    - nanopb (~> 2.30908.0)
  - FirebaseCore (8.3.0):
    - FirebaseCoreDiagnostics (~> 8.0)
    - GoogleUtilities/Environment (~> 7.4)
    - GoogleUtilities/Logger (~> 7.4)
  - FirebaseCoreDiagnostics (8.3.0):
    - GoogleDataTransport (~> 9.0)
    - GoogleUtilities/Environment (~> 7.4)
    - GoogleUtilities/Logger (~> 7.4)
    - nanopb (~> 2.30908.0)
  - FirebaseInstallations (8.3.0):
    - FirebaseCore (~> 8.0)
    - GoogleUtilities/Environment (~> 7.4)
    - GoogleUtilities/UserDefaults (~> 7.4)
    - PromisesObjC (~> 1.2)
  - glog (0.3.5)
  - Google-Mobile-Ads-SDK (8.5.0):
    - GoogleAppMeasurement (< 9.0, >= 7.0)
    - GoogleUserMessagingPlatform (>= 1.1)
  - GoogleAppMeasurement (8.3.0):
    - GoogleAppMeasurement/AdIdSupport (= 8.3.0)
    - GoogleUtilities/AppDelegateSwizzler (~> 7.4)
    - GoogleUtilities/MethodSwizzler (~> 7.4)
    - GoogleUtilities/Network (~> 7.4)
    - "GoogleUtilities/NSData+zlib (~> 7.4)"
    - nanopb (~> 2.30908.0)
  - GoogleAppMeasurement/AdIdSupport (8.3.0):
    - GoogleUtilities/AppDelegateSwizzler (~> 7.4)
    - GoogleUtilities/MethodSwizzler (~> 7.4)
    - GoogleUtilities/Network (~> 7.4)
    - "GoogleUtilities/NSData+zlib (~> 7.4)"
    - nanopb (~> 2.30908.0)
  - GoogleDataTransport (9.1.0):
    - GoogleUtilities/Environment (~> 7.2)
    - nanopb (~> 2.30908.0)
    - PromisesObjC (< 3.0, >= 1.2)
  - GoogleSignIn (5.0.2):
    - AppAuth (~> 1.2)
    - GTMAppAuth (~> 1.0)
    - GTMSessionFetcher/Core (~> 1.1)
  - GoogleUserMessagingPlatform (2.0.0)
  - GoogleUtilities/AppDelegateSwizzler (7.5.0):
    - GoogleUtilities/Environment
    - GoogleUtilities/Logger
    - GoogleUtilities/Network
  - GoogleUtilities/Environment (7.5.0):
    - PromisesObjC (< 3.0, >= 1.2)
  - GoogleUtilities/Logger (7.5.0):
    - GoogleUtilities/Environment
  - GoogleUtilities/MethodSwizzler (7.5.0):
    - GoogleUtilities/Logger
  - GoogleUtilities/Network (7.5.0):
    - GoogleUtilities/Logger
    - "GoogleUtilities/NSData+zlib"
    - GoogleUtilities/Reachability
  - "GoogleUtilities/NSData+zlib (7.5.0)"
  - GoogleUtilities/Reachability (7.5.0):
    - GoogleUtilities/Logger
  - GoogleUtilities/UserDefaults (7.5.0):
    - GoogleUtilities/Logger
  - GTMAppAuth (1.2.2):
    - AppAuth/Core (~> 1.4)
    - GTMSessionFetcher/Core (~> 1.5)
  - GTMSessionFetcher/Core (1.6.1)
  - IronSourceSDK (7.1.6.0)
  - myTargetSDK (5.11.2)
  - nanopb (2.30908.0):
    - nanopb/decode (= 2.30908.0)
    - nanopb/encode (= 2.30908.0)
  - nanopb/decode (2.30908.0)
  - nanopb/encode (2.30908.0)
  - OguryAds (2.3.5):
    - OguryAds/OMID (= 2.3.5)
  - OguryAds/OMID (2.3.5)
  - PromisesObjC (1.2.12)
  - Protobuf (3.17.0)
  - RCT-Folly (2020.01.13.00):
    - boost-for-react-native
    - DoubleConversion
    - glog
    - RCT-Folly/Default (= 2020.01.13.00)
  - RCT-Folly/Default (2020.01.13.00):
    - boost-for-react-native
    - DoubleConversion
    - glog
  - RCTRequired (0.64.2)
  - RCTTypeSafety (0.64.2):
    - FBLazyVector (= 0.64.2)
    - RCT-Folly (= 2020.01.13.00)
    - RCTRequired (= 0.64.2)
    - React-Core (= 0.64.2)
  - React (0.64.2):
    - React-Core (= 0.64.2)
    - React-Core/DevSupport (= 0.64.2)
    - React-Core/RCTWebSocket (= 0.64.2)
    - React-RCTActionSheet (= 0.64.2)
    - React-RCTAnimation (= 0.64.2)
    - React-RCTBlob (= 0.64.2)
    - React-RCTImage (= 0.64.2)
    - React-RCTLinking (= 0.64.2)
    - React-RCTNetwork (= 0.64.2)
    - React-RCTSettings (= 0.64.2)
    - React-RCTText (= 0.64.2)
    - React-RCTVibration (= 0.64.2)
  - React-callinvoker (0.64.2)
  - React-Core (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default (= 0.64.2)
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/CoreModulesHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/Default (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/DevSupport (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default (= 0.64.2)
    - React-Core/RCTWebSocket (= 0.64.2)
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-jsinspector (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTActionSheetHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTAnimationHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTBlobHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTImageHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTLinkingHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTNetworkHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTSettingsHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTTextHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTVibrationHeaders (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-Core/RCTWebSocket (0.64.2):
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/Default (= 0.64.2)
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsiexecutor (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - Yoga
  - React-CoreModules (0.64.2):
    - FBReactNativeSpec (= 0.64.2)
    - RCT-Folly (= 2020.01.13.00)
    - RCTTypeSafety (= 0.64.2)
    - React-Core/CoreModulesHeaders (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-RCTImage (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - React-cxxreact (0.64.2):
    - boost-for-react-native (= 1.63.0)
    - DoubleConversion
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-callinvoker (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-jsinspector (= 0.64.2)
    - React-perflogger (= 0.64.2)
    - React-runtimeexecutor (= 0.64.2)
  - React-jsi (0.64.2):
    - boost-for-react-native (= 1.63.0)
    - DoubleConversion
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-jsi/Default (= 0.64.2)
  - React-jsi/Default (0.64.2):
    - boost-for-react-native (= 1.63.0)
    - DoubleConversion
    - glog
    - RCT-Folly (= 2020.01.13.00)
  - React-jsiexecutor (0.64.2):
    - DoubleConversion
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-perflogger (= 0.64.2)
  - React-jsinspector (0.64.2)
  - react-native-admob (2.0.0-beta.6):
    - React
  - react-native-fbsdk-next (4.3.0):
    - React-Core
    - react-native-fbsdk-next/Core (= 4.3.0)
    - react-native-fbsdk-next/Login (= 4.3.0)
    - react-native-fbsdk-next/Share (= 4.3.0)
  - react-native-fbsdk-next/Core (4.3.0):
    - FBSDKCoreKit (~> 9.3)
    - React-Core
  - react-native-fbsdk-next/Login (4.3.0):
    - FBSDKLoginKit (~> 9.3)
    - React-Core
  - react-native-fbsdk-next/Share (4.3.0):
    - FBSDKShareKit (~> 9.3)
    - React-Core
  - react-native-image-picker (4.0.6):
    - React-Core
  - react-native-maps (0.28.0):
    - React-Core
  - react-native-netinfo (6.0.0):
    - React-Core
  - react-native-orientation-locker (1.3.1):
    - React-Core
  - react-native-safe-area-context (3.2.0):
    - React-Core
  - react-native-slider (3.0.3):
    - React
  - react-native-webview (11.6.5):
    - React-Core
  - React-perflogger (0.64.2)
  - React-RCTActionSheet (0.64.2):
    - React-Core/RCTActionSheetHeaders (= 0.64.2)
  - React-RCTAnimation (0.64.2):
    - FBReactNativeSpec (= 0.64.2)
    - RCT-Folly (= 2020.01.13.00)
    - RCTTypeSafety (= 0.64.2)
    - React-Core/RCTAnimationHeaders (= 0.64.2)
    - React-jsi (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - React-RCTBlob (0.64.2):
    - FBReactNativeSpec (= 0.64.2)
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/RCTBlobHeaders (= 0.64.2)
    - React-Core/RCTWebSocket (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-RCTNetwork (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - React-RCTImage (0.64.2):
    - FBReactNativeSpec (= 0.64.2)
    - RCT-Folly (= 2020.01.13.00)
    - RCTTypeSafety (= 0.64.2)
    - React-Core/RCTImageHeaders (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-RCTNetwork (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - React-RCTLinking (0.64.2):
    - FBReactNativeSpec (= 0.64.2)
    - React-Core/RCTLinkingHeaders (= 0.64.2)
    - React-jsi (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - React-RCTNetwork (0.64.2):
    - FBReactNativeSpec (= 0.64.2)
    - RCT-Folly (= 2020.01.13.00)
    - RCTTypeSafety (= 0.64.2)
    - React-Core/RCTNetworkHeaders (= 0.64.2)
    - React-jsi (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - React-RCTSettings (0.64.2):
    - FBReactNativeSpec (= 0.64.2)
    - RCT-Folly (= 2020.01.13.00)
    - RCTTypeSafety (= 0.64.2)
    - React-Core/RCTSettingsHeaders (= 0.64.2)
    - React-jsi (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - React-RCTText (0.64.2):
    - React-Core/RCTTextHeaders (= 0.64.2)
  - React-RCTVibration (0.64.2):
    - FBReactNativeSpec (= 0.64.2)
    - RCT-Folly (= 2020.01.13.00)
    - React-Core/RCTVibrationHeaders (= 0.64.2)
    - React-jsi (= 0.64.2)
    - ReactCommon/turbomodule/core (= 0.64.2)
  - React-runtimeexecutor (0.64.2):
    - React-jsi (= 0.64.2)
  - ReactCommon/turbomodule/core (0.64.2):
    - DoubleConversion
    - glog
    - RCT-Folly (= 2020.01.13.00)
    - React-callinvoker (= 0.64.2)
    - React-Core (= 0.64.2)
    - React-cxxreact (= 0.64.2)
    - React-jsi (= 0.64.2)
    - React-perflogger (= 0.64.2)
  - rn-fetch-blob (0.12.0):
    - React-Core
  - RNAppodeal (2.10.1):
    - Appodeal (= 2.10.1)
    - React
    - StackConsentManager (~> 1.1.0)
  - RNCAsyncStorage (1.15.5):
    - React-Core
  - RNCCheckbox (0.5.8):
    - React-Core
  - RNCPicker (1.16.3):
    - React-Core
  - RNDeviceInfo (8.1.3):
    - React-Core
  - RNFirebase (5.6.0):
    - Firebase/Core
    - React
    - RNFirebase/Crashlytics (= 5.6.0)
  - RNFirebase/Crashlytics (5.6.0):
    - Crashlytics
    - Fabric
    - Firebase/Core
    - React
  - RNFS (2.18.0):
    - React
  - RNGestureHandler (1.10.3):
    - React-Core
  - RNGoogleSignin (5.0.0):
    - GoogleSignIn (~> 5.0.0)
    - React-Core
  - RNScreens (3.4.0):
    - React-Core
    - React-RCTImage
  - RNShare (6.3.0):
    - React-Core
  - RNVectorIcons (8.1.0):
    - React-Core
  - smaato-ios-sdk (21.6.13):
    - smaato-ios-sdk/Full (= 21.6.13)
  - smaato-ios-sdk/Banner (21.6.13):
    - smaato-ios-sdk/Modules/Banner
    - smaato-ios-sdk/Modules/Core
    - smaato-ios-sdk/Modules/RichMedia
  - smaato-ios-sdk/Full (21.6.13):
    - smaato-ios-sdk/Banner
    - smaato-ios-sdk/Interstitial
    - smaato-ios-sdk/Native
    - smaato-ios-sdk/RewardedAds
  - smaato-ios-sdk/Interstitial (21.6.13):
    - smaato-ios-sdk/Modules/Interstitial
    - smaato-ios-sdk/Modules/RichMedia
    - smaato-ios-sdk/Modules/Video
  - smaato-ios-sdk/Modules/Banner (21.6.13):
    - smaato-ios-sdk/Modules/Core
  - smaato-ios-sdk/Modules/Core (21.6.13)
  - smaato-ios-sdk/Modules/Interstitial (21.6.13):
    - smaato-ios-sdk/Modules/Core
  - smaato-ios-sdk/Modules/Native (21.6.13):
    - smaato-ios-sdk/Modules/Core
  - smaato-ios-sdk/Modules/OpenMeasurement (21.6.13):
    - smaato-ios-sdk/Modules/Core
  - smaato-ios-sdk/Modules/RewardedAds (21.6.13):
    - smaato-ios-sdk/Modules/Core
  - smaato-ios-sdk/Modules/RichMedia (21.6.13):
    - smaato-ios-sdk/Modules/Core
    - smaato-ios-sdk/Modules/OpenMeasurement
  - smaato-ios-sdk/Modules/Video (21.6.13):
    - smaato-ios-sdk/Modules/Core
    - smaato-ios-sdk/Modules/OpenMeasurement
  - smaato-ios-sdk/Native (21.6.13):
    - smaato-ios-sdk/Modules/Core
    - smaato-ios-sdk/Modules/Native
  - smaato-ios-sdk/RewardedAds (21.6.13):
    - smaato-ios-sdk/Modules/RewardedAds
    - smaato-ios-sdk/Modules/Video
  - StackConsentManager (1.1.1)
  - StackCrashReporter (1.0.0-Beta)
  - StackIAB (1.4.3):
    - StackIAB/StackIABAssets (= 1.4.3)
    - StackIAB/StackMRAIDKit (= 1.4.3)
    - StackIAB/StackNASTKit (= 1.4.3)
    - StackIAB/StackOpenMeasure (= 1.4.3)
    - StackIAB/StackRichMedia (= 1.4.3)
    - StackIAB/StackVASTAssets (= 1.4.3)
    - StackIAB/StackVASTKit (= 1.4.3)
    - StackIAB/StackVideoPlayer (= 1.4.3)
    - StackIAB/StackXML (= 1.4.3)
    - StackModules (~> 1.1.0)
  - StackIAB/StackIABAssets (1.4.3):
    - StackModules (~> 1.1.0)
  - StackIAB/StackMRAIDKit (1.4.3):
    - StackIAB/StackIABAssets
    - StackIAB/StackOpenMeasure
    - StackModules (~> 1.1.0)
  - StackIAB/StackNASTKit (1.4.3):
    - StackIAB/StackVASTKit
    - StackModules (~> 1.1.0)
  - StackIAB/StackOpenMeasure (1.4.3):
    - StackModules (~> 1.1.0)
  - StackIAB/StackRichMedia (1.4.3):
    - StackIAB/StackIABAssets
    - StackIAB/StackVASTAssets
    - StackIAB/StackVideoPlayer
    - StackModules (~> 1.1.0)
  - StackIAB/StackVASTAssets (1.4.3):
    - StackIAB/StackIABAssets
    - StackIAB/StackXML
    - StackModules (~> 1.1.0)
  - StackIAB/StackVASTKit (1.4.3):
    - StackIAB/StackMRAIDKit
    - StackIAB/StackVASTAssets
    - StackIAB/StackVideoPlayer
    - StackModules (~> 1.1.0)
  - StackIAB/StackVideoPlayer (1.4.3):
    - StackModules (~> 1.1.0)
  - StackIAB/StackXML (1.4.3):
    - StackModules (~> 1.1.0)
  - StackModules (1.1.4):
    - StackModules/StackProductPresentation (= 1.1.4)
  - StackModules/StackFoundation (1.1.4)
  - StackModules/StackProductPresentation (1.1.4):
    - StackModules/StackUIKit
  - StackModules/StackUIKit (1.1.4):
    - StackModules/StackFoundation
  - StartAppSDK (4.6.4)
  - TapjoySDK (12.7.0)
  - UnityAds (3.7.1)
  - VungleSDK-iOS (6.9.2)
  - YandexMobileAds (4.1.2):
    - YandexMobileAds/Static (= 4.1.2)
  - YandexMobileAds/Static (4.1.2):
    - YandexMobileMetrica (< 4.0.0, >= 3.14.1)
  - YandexMobileMetrica (3.17.0):
    - YandexMobileMetrica/Static (= 3.17.0)
  - YandexMobileMetrica/Static (3.17.0):
    - YandexMobileMetrica/Static/Core (= 3.17.0)
    - YandexMobileMetrica/Static/Crashes (= 3.17.0)
  - YandexMobileMetrica/Static/Core (3.17.0)
  - YandexMobileMetrica/Static/Crashes (3.17.0):
    - YandexMobileMetrica/Static/Core
  - Yoga (1.14.0)

DEPENDENCIES:
  - APDAdColonyAdapter (= 2.10.1.1)
  - APDAmazonAdsAdapter (= 2.10.1.1)
  - APDAppLovinAdapter (= 2.10.1.2)
  - APDBidMachineAdapter (= 2.10.1.3)
  - APDFacebookAudienceAdapter (= 2.10.1.2)
  - APDGoogleAdMobAdapter (= 2.10.1.1)
  - APDIronSourceAdapter (= 2.10.1.2)
  - APDMyTargetAdapter (= 2.10.1.2)
  - APDOguryAdapter (= 2.10.1.1)
  - APDSmaatoAdapter (= 2.10.1.1)
  - APDStartAppAdapter (= 2.10.1.2)
  - APDUnityAdapter (= 2.10.1.1)
  - APDVungleAdapter (= 2.10.1.1)
  - APDYandexAdapter (= 2.10.1.1)
  - BVLinearGradient (from `../node_modules/react-native-linear-gradient`)
  - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
  - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
  - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
  - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
  - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
  - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
  - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
  - React (from `../node_modules/react-native/`)
  - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
  - React-Core (from `../node_modules/react-native/`)
  - React-Core/DevSupport (from `../node_modules/react-native/`)
  - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
  - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
  - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
  - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
  - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
  - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
  - react-native-admob (from `../node_modules/react-native-admob`)
  - react-native-fbsdk-next (from `../node_modules/react-native-fbsdk-next`)
  - react-native-image-picker (from `../node_modules/react-native-image-picker`)
  - react-native-maps (from `../node_modules/react-native-maps`)
  - "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
  - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`)
  - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
  - "react-native-slider (from `../node_modules/@react-native-community/slider`)"
  - react-native-webview (from `../node_modules/react-native-webview`)
  - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
  - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
  - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
  - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
  - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
  - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
  - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
  - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
  - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
  - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
  - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
  - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
  - rn-fetch-blob (from `../node_modules/rn-fetch-blob`)
  - RNAppodeal (from `../node_modules/react-native-appodeal`)
  - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
  - "RNCCheckbox (from `../node_modules/@react-native-community/checkbox`)"
  - "RNCPicker (from `../node_modules/@react-native-picker/picker`)"
  - RNDeviceInfo (from `../node_modules/react-native-device-info`)
  - RNFirebase (from `../node_modules/react-native-firebase/ios`)
  - RNFS (from `../node_modules/react-native-fs`)
  - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
  - "RNGoogleSignin (from `../node_modules/@react-native-community/google-signin`)"
  - RNScreens (from `../node_modules/react-native-screens`)
  - RNShare (from `../node_modules/react-native-share`)
  - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
  - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)

SPEC REPOS:
  trunk:
    - AdColony
    - AmazonAd
    - AmazonPublisherServicesSDK
    - APDAdColonyAdapter
    - APDAmazonAdsAdapter
    - APDAppLovinAdapter
    - APDBidMachineAdapter
    - APDFacebookAudienceAdapter
    - APDGoogleAdMobAdapter
    - APDIronSourceAdapter
    - APDMyTargetAdapter
    - APDOguryAdapter
    - APDSmaatoAdapter
    - APDStartAppAdapter
    - APDUnityAdapter
    - APDVungleAdapter
    - APDYandexAdapter
    - AppAuth
    - AppLovinSDK
    - Appodeal
    - AppRollSDK
    - BidMachine
    - boost-for-react-native
    - Crashlytics
    - CriteoPublisherSdk
    - Fabric
    - FBAudienceNetwork
    - FBSDKCoreKit
    - FBSDKCoreKit_Basics
    - FBSDKLoginKit
    - FBSDKShareKit
    - Firebase
    - FirebaseAnalytics
    - FirebaseCore
    - FirebaseCoreDiagnostics
    - FirebaseInstallations
    - Google-Mobile-Ads-SDK
    - GoogleAppMeasurement
    - GoogleDataTransport
    - GoogleSignIn
    - GoogleUserMessagingPlatform
    - GoogleUtilities
    - GTMAppAuth
    - GTMSessionFetcher
    - IronSourceSDK
    - myTargetSDK
    - nanopb
    - OguryAds
    - PromisesObjC
    - Protobuf
    - smaato-ios-sdk
    - StackConsentManager
    - StackCrashReporter
    - StackIAB
    - StackModules
    - StartAppSDK
    - TapjoySDK
    - UnityAds
    - VungleSDK-iOS
    - YandexMobileAds
    - YandexMobileMetrica

EXTERNAL SOURCES:
  BVLinearGradient:
    :path: "../node_modules/react-native-linear-gradient"
  DoubleConversion:
    :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
  FBLazyVector:
    :path: "../node_modules/react-native/Libraries/FBLazyVector"
  FBReactNativeSpec:
    :path: "../node_modules/react-native/React/FBReactNativeSpec"
  glog:
    :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
  RCT-Folly:
    :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
  RCTRequired:
    :path: "../node_modules/react-native/Libraries/RCTRequired"
  RCTTypeSafety:
    :path: "../node_modules/react-native/Libraries/TypeSafety"
  React:
    :path: "../node_modules/react-native/"
  React-callinvoker:
    :path: "../node_modules/react-native/ReactCommon/callinvoker"
  React-Core:
    :path: "../node_modules/react-native/"
  React-CoreModules:
    :path: "../node_modules/react-native/React/CoreModules"
  React-cxxreact:
    :path: "../node_modules/react-native/ReactCommon/cxxreact"
  React-jsi:
    :path: "../node_modules/react-native/ReactCommon/jsi"
  React-jsiexecutor:
    :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
  React-jsinspector:
    :path: "../node_modules/react-native/ReactCommon/jsinspector"
  react-native-admob:
    :path: "../node_modules/react-native-admob"
  react-native-fbsdk-next:
    :path: "../node_modules/react-native-fbsdk-next"
  react-native-image-picker:
    :path: "../node_modules/react-native-image-picker"
  react-native-maps:
    :path: "../node_modules/react-native-maps"
  react-native-netinfo:
    :path: "../node_modules/@react-native-community/netinfo"
  react-native-orientation-locker:
    :path: "../node_modules/react-native-orientation-locker"
  react-native-safe-area-context:
    :path: "../node_modules/react-native-safe-area-context"
  react-native-slider:
    :path: "../node_modules/@react-native-community/slider"
  react-native-webview:
    :path: "../node_modules/react-native-webview"
  React-perflogger:
    :path: "../node_modules/react-native/ReactCommon/reactperflogger"
  React-RCTActionSheet:
    :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
  React-RCTAnimation:
    :path: "../node_modules/react-native/Libraries/NativeAnimation"
  React-RCTBlob:
    :path: "../node_modules/react-native/Libraries/Blob"
  React-RCTImage:
    :path: "../node_modules/react-native/Libraries/Image"
  React-RCTLinking:
    :path: "../node_modules/react-native/Libraries/LinkingIOS"
  React-RCTNetwork:
    :path: "../node_modules/react-native/Libraries/Network"
  React-RCTSettings:
    :path: "../node_modules/react-native/Libraries/Settings"
  React-RCTText:
    :path: "../node_modules/react-native/Libraries/Text"
  React-RCTVibration:
    :path: "../node_modules/react-native/Libraries/Vibration"
  React-runtimeexecutor:
    :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
  ReactCommon:
    :path: "../node_modules/react-native/ReactCommon"
  rn-fetch-blob:
    :path: "../node_modules/rn-fetch-blob"
  RNAppodeal:
    :path: "../node_modules/react-native-appodeal"
  RNCAsyncStorage:
    :path: "../node_modules/@react-native-async-storage/async-storage"
  RNCCheckbox:
    :path: "../node_modules/@react-native-community/checkbox"
  RNCPicker:
    :path: "../node_modules/@react-native-picker/picker"
  RNDeviceInfo:
    :path: "../node_modules/react-native-device-info"
  RNFirebase:
    :path: "../node_modules/react-native-firebase/ios"
  RNFS:
    :path: "../node_modules/react-native-fs"
  RNGestureHandler:
    :path: "../node_modules/react-native-gesture-handler"
  RNGoogleSignin:
    :path: "../node_modules/@react-native-community/google-signin"
  RNScreens:
    :path: "../node_modules/react-native-screens"
  RNShare:
    :path: "../node_modules/react-native-share"
  RNVectorIcons:
    :path: "../node_modules/react-native-vector-icons"
  Yoga:
    :path: "../node_modules/react-native/ReactCommon/yoga"

SPEC CHECKSUMS:
  AdColony: 957c975fa756fcdb10a91e8a7d6de4cf5bfc4f78
  AmazonAd: 9adf416ea36ca2325ce2040c0cf124f071089904
  AmazonPublisherServicesSDK: 12ec8a797b49796f2714d5f99235370e24bf93e6
  APDAdColonyAdapter: 7cba313e456abb7e35ab043aff5198b66ef7a8d4
  APDAmazonAdsAdapter: b8fd0277d75d2ec54fd82b19a4e6389db2fcd9be
  APDAppLovinAdapter: f6111bdb990caa836f0262fad466a1f3e2ae1fba
  APDBidMachineAdapter: 6682df216222f99e8b8a20fa19e194104de2e260
  APDFacebookAudienceAdapter: 697eaaf4a23879a06a5c3fcd85672b92a5b2d5e7
  APDGoogleAdMobAdapter: 5d5079be9fb525b9781a4642a141da1af9677e50
  APDIronSourceAdapter: c3c89469706dd380cd29d14c683be1a4db473906
  APDMyTargetAdapter: 7e3f0ce04ea3a4fbb6dbcc8c449b8dd3582d25c0
  APDOguryAdapter: 1e3be26a3ae206ed527a8ab3ef58fc93024db00f
  APDSmaatoAdapter: fca79d8e8d8be3fdbe8b2dfbb69819f6f0e67908
  APDStartAppAdapter: e87b01a28b17937d1ae069b1fdebd22455b8640a
  APDUnityAdapter: bc41596c5e59c168ca2900c088cc6448e73e2764
  APDVungleAdapter: eb59e56d758da1fd325b39753c669998db450e9d
  APDYandexAdapter: bdfe05e2bb796d3bca08adf890fcf8edc781dff8
  AppAuth: 31bcec809a638d7bd2f86ea8a52bd45f6e81e7c7
  AppLovinSDK: 37659ac54c27c6ba5e5b983aee2ad1d2a876c9c7
  Appodeal: 1bb4a1d29eff4c30deab00ec04103ee0bf4279c1
  AppRollSDK: bd9e96ad026dd51ad07714a35d43da95bb882d5f
  BidMachine: e1cfa7f47a51ec6afbc62949d12274f61c04c1bf
  boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
  BVLinearGradient: e3aad03778a456d77928f594a649e96995f1c872
  Crashlytics: 9220f5bc89e7a618df411b4f639389dbfb0e03d2
  CriteoPublisherSdk: a7551daf9235203a040703504ae549e842b5eebf
  DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
  Fabric: ea977e3cd9c20425516d3dafd3bf8c941c51223f
  FBAudienceNetwork: 9a5f277d6ed36a46354a045c46a4858b47407a72
  FBLazyVector: e686045572151edef46010a6f819ade377dfeb4b
  FBReactNativeSpec: a8a66163acede9c879c2102c0bc04905111b4f6a
  FBSDKCoreKit: 0d1ae58388a458b8222f72025804cdc84eb5d0c3
  FBSDKCoreKit_Basics: 06780a4a12e16596bde8406add02c6aa1bf38616
  FBSDKLoginKit: aea68df6121c5e165ccae2fabfdc83c4644ee40f
  FBSDKShareKit: 70889c97c62f0c6b3ccb8b999e73a85f19024001
  Firebase: 817b9171d0d51dccc458b94a5e8edff6b1dd323d
  FirebaseAnalytics: 456f2c51599870a15ded4548d1f1f7b2cabf65a7
  FirebaseCore: a6dba751680d7033b9d3831e1cfc95ead0605118
  FirebaseCoreDiagnostics: 7e873baabcfaa9512f538554ae4fa0817aaafbdb
  FirebaseInstallations: b69db7680870dbac17bba7a51fc0b5c4b365baa7
  glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
  Google-Mobile-Ads-SDK: 6f5c41bf73db1656e5b203ba9c31e3d0899a128d
  GoogleAppMeasurement: de70802583dedceb0bca18172b345307e8f410b8
  GoogleDataTransport: 85fd18ff3019bb85d3f2c551d04c481dedf71fc9
  GoogleSignIn: 7137d297ddc022a7e0aa4619c86d72c909fa7213
  GoogleUserMessagingPlatform: ab890ce5f6620f293a21b6bdd82e416a2c73aeca
  GoogleUtilities: eea970f4a389963963bffe8d8fabe43540678b9c
  GTMAppAuth: ad5c2b70b9a8689e1a04033c9369c4915bfcbe89
  GTMSessionFetcher: 36689134877faeb055b27dfa4ccc9ceaa42e029e
  IronSourceSDK: 3cd80081469b1228cfaacb516eedb02f022745ea
  myTargetSDK: edbafedbd3c86f88366d738cae9adee9e6c2359b
  nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96
  OguryAds: 8dccce073aea7e11ddb83f1122e8ee65bf33f3c3
  PromisesObjC: 3113f7f76903778cf4a0586bd1ab89329a0b7b97
  Protobuf: 7327d4444215b5f18e560a97f879ff5503c4581c
  RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
  RCTRequired: 6d3e854f0e7260a648badd0d44fc364bc9da9728
  RCTTypeSafety: c1f31d19349c6b53085766359caac425926fafaa
  React: bda6b6d7ae912de97d7a61aa5c160db24aa2ad69
  React-callinvoker: 9840ea7e8e88ed73d438edb725574820b29b5baa
  React-Core: b5e385da7ce5f16a220fc60fd0749eae2c6120f0
  React-CoreModules: 17071a4e2c5239b01585f4aa8070141168ab298f
  React-cxxreact: 9be7b6340ed9f7c53e53deca7779f07cd66525ba
  React-jsi: 67747b9722f6dab2ffe15b011bcf6b3f2c3f1427
  React-jsiexecutor: 80c46bd381fd06e418e0d4f53672dc1d1945c4c3
  React-jsinspector: cc614ec18a9ca96fd275100c16d74d62ee11f0ae
  react-native-admob: cb7f9e5e7d6f1e68bfbf1df8f72b2e23963bc7db
  react-native-fbsdk-next: 19e974b071047b7ed1dad86a9dc3fe77dff76b8c
  react-native-image-picker: a6e56460d34905c849ada551db30897dc7f3d535
  react-native-maps: 2d405b4e8cee0282e4c02bac434d81450dfea877
  react-native-netinfo: e849fc21ca2f4128a5726c801a82fc6f4a6db50d
  react-native-orientation-locker: 998c0744e26624407dac068c04c605b4af7304a2
  react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79
  react-native-slider: e99fc201cefe81270fc9d81714a7a0f5e566b168
  react-native-webview: 2e8fe70dc32b50d3231c23043f8e8b5a5525d346
  React-perflogger: 25373e382fed75ce768a443822f07098a15ab737
  React-RCTActionSheet: af7796ba49ffe4ca92e7277a5d992d37203f7da5
  React-RCTAnimation: 6a2e76ab50c6f25b428d81b76a5a45351c4d77aa
  React-RCTBlob: 02a2887023e0eed99391b6445b2e23a2a6f9226d
  React-RCTImage: ce5bf8e7438f2286d9b646a05d6ab11f38b0323d
  React-RCTLinking: ccd20742de14e020cb5f99d5c7e0bf0383aefbd9
  React-RCTNetwork: dfb9d089ab0753e5e5f55fc4b1210858f7245647
  React-RCTSettings: b14aef2d83699e48b410fb7c3ba5b66cd3291ae2
  React-RCTText: 41a2e952dd9adc5caf6fb68ed46b275194d5da5f
  React-RCTVibration: 24600e3b1aaa77126989bc58b6747509a1ba14f3
  React-runtimeexecutor: a9904c6d0218fb9f8b19d6dd88607225927668f9
  ReactCommon: 149906e01aa51142707a10665185db879898e966
  rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba
  RNAppodeal: 1c76bb6c624b7adfee660cfcb30e4882445893b0
  RNCAsyncStorage: 56a3355a10b5d660c48c6e37325ac85ebfd09885
  RNCCheckbox: 6bd119c26c6eb8264a29d59ff66cb70a14de3349
  RNCPicker: 6724ab5fcca83c34fe1f18a89baa13e9885f0393
  RNDeviceInfo: 8d3a29207835f972bce883723882980143270d55
  RNFirebase: 37daa9a346d070f9f6ee1f3b4aaf4c8e3b1d5d1c
  RNFS: 3ab21fa6c56d65566d1fb26c2228e2b6132e5e32
  RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211
  RNGoogleSignin: ad866d4c4af2651e36801dd3b7771d7715353499
  RNScreens: 21b73c94c9117e1110a79ee0ee80c93ccefed8ce
  RNShare: 8ff5f3819c8f2b4f76cd31fa1287315754afee01
  RNVectorIcons: 31cebfcf94e8cf8686eb5303ae0357da64d7a5a4
  smaato-ios-sdk: 700f044b161581a3396072d01ce48c81c09a9fa3
  StackConsentManager: 6034d21fa46394bbb2a1192c67182ff40f37d1d3
  StackCrashReporter: 855bc6d59c5ab0a8103b1428e1d5d25abe61ed30
  StackIAB: 0229259e7616ea48da76466a325cf7c53ea860cd
  StackModules: c523e8e91b403b1c20e64fad5eab049d00c70fc6
  StartAppSDK: cb5a43363fc10ee4977b42f77d81b995d73262f0
  TapjoySDK: e863ea0d0f5d3ab3f8f12d9a9af737789d9dab6d
  UnityAds: 5b17b608ddb50ec7705b17e7884aa516be118938
  VungleSDK-iOS: f9dbcb5dde6036d424c29fbdd43159b1be19bdbd
  YandexMobileAds: 8bc89fe89d5e26e67c74492adcf6b40f97985da2
  YandexMobileMetrica: 9e713c16bb6aca0ba63b84c8d7b8b86d32f4ecc4
  Yoga: 575c581c63e0d35c9a83f4b46d01d63abc1100ac

PODFILE CHECKSUM: 26e08af0957453e66ad9cfc8c4568d00e6cb681f

COCOAPODS: 1.10.1
AiFuYou commented 3 years ago

Hi @AiFuYou, could you pate the contents of your Podfile.lock file?

Thanks for your reply. I slove it by downgrading FBAudienceNetwork to 6.5.0 and MoPub-FacebookAudienceNetwork-Adapters to 6.5.0.0. It works.