diff --git a/ios/Podfile b/ios/Podfile index 32ffcd8..05c49a0 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,55 +1,78 @@ platform :ios, '11.0' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' target 'sylk' do # Pods for sylk # use_frameworks! pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector" pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec" pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired" pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety" pod 'React', :path => '../node_modules/react-native/' pod 'React-Core', :path => '../node_modules/react-native/' pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules' pod 'React-Core/DevSupport', :path => '../node_modules/react-native/' pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS' pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation' pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob' pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image' pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS' pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network' pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings' pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text' pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration' pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/' pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact' pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi' pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor' pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector' pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon" pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon" pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga' pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec' pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec' target 'sylkTests' do inherit! :search_paths # Pods for testing +post_install do |installer| + ## Fix for XCode 12.5 + find_and_replace("../node_modules/react-native/React/CxxBridge/RCTCxxBridge.mm", + "_initializeModules:(NSArray> *)modules", "_initializeModules:(NSArray *)modules") + find_and_replace("../node_modules/react-native/ReactCommon/turbomodule/core/platform/ios/RCTTurboModuleManager.mm", + "RCTBridgeModuleNameForClass(module))", "RCTBridgeModuleNameForClass(Class(module)))") +end + + end use_native_modules! end target 'sylk-tvOS' do # Pods for sylk-tvOS target 'sylk-tvOSTests' do inherit! :search_paths # Pods for testing end end + + +def find_and_replace(dir, findstr, replacestr) + Dir[dir].each do |name| + text = File.read(name) + replace = text.gsub(findstr,replacestr) + if text != replace + puts "Fix: " + name + File.open(name, "w") { |file| file.puts replace } + STDOUT.flush + end + end + Dir[dir + '*/'].each(&method(:find_and_replace)) +end diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 1d50814..a7cd6a5 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,588 +1,588 @@ PODS: - boost-for-react-native (1.63.0) - BVLinearGradient (2.5.6): - React - DoubleConversion (1.1.6) - FBLazyVector (0.61.5) - FBReactNativeSpec (0.61.5): - Folly (= 2018.10.22.00) - RCTRequired (= 0.61.5) - RCTTypeSafety (= 0.61.5) - React-Core (= 0.61.5) - React-jsi (= 0.61.5) - ReactCommon/turbomodule/core (= 0.61.5) - Firebase/Core (6.13.0): - Firebase/CoreOnly - FirebaseAnalytics (= 6.1.6) - Firebase/CoreOnly (6.13.0): - FirebaseCore (= 6.4.0) - Firebase/Messaging (6.13.0): - Firebase/CoreOnly - FirebaseMessaging (~> 4.1.9) - FirebaseAnalytics (6.1.6): - FirebaseCore (~> 6.4) - FirebaseInstanceID (~> 4.2) - GoogleAppMeasurement (= 6.1.6) - GoogleUtilities/AppDelegateSwizzler (~> 6.0) - GoogleUtilities/MethodSwizzler (~> 6.0) - GoogleUtilities/Network (~> 6.0) - "GoogleUtilities/NSData+zlib (~> 6.0)" - nanopb (= 0.3.9011) - FirebaseAnalyticsInterop (1.5.0) - FirebaseCore (6.4.0): - FirebaseCoreDiagnostics (~> 1.0) - FirebaseCoreDiagnosticsInterop (~> 1.0) - GoogleUtilities/Environment (~> 6.2) - GoogleUtilities/Logger (~> 6.2) - FirebaseCoreDiagnostics (1.2.4): - FirebaseCoreDiagnosticsInterop (~> 1.2) - GoogleDataTransportCCTSupport (~> 3.0) - GoogleUtilities/Environment (~> 6.5) - GoogleUtilities/Logger (~> 6.5) - nanopb (~> 0.3.901) - FirebaseCoreDiagnosticsInterop (1.2.0) - FirebaseInstanceID (4.2.7): - FirebaseCore (~> 6.0) - GoogleUtilities/Environment (~> 6.0) - GoogleUtilities/UserDefaults (~> 6.0) - FirebaseMessaging (4.1.10): - FirebaseAnalyticsInterop (~> 1.3) - FirebaseCore (~> 6.2) - FirebaseInstanceID (~> 4.1) - GoogleUtilities/AppDelegateSwizzler (~> 6.2) - GoogleUtilities/Environment (~> 6.2) - GoogleUtilities/Reachability (~> 6.2) - GoogleUtilities/UserDefaults (~> 6.2) - Protobuf (>= 3.9.2, ~> 3.9) - Folly (2018.10.22.00): - boost-for-react-native - DoubleConversion - Folly/Default (= 2018.10.22.00) - glog - Folly/Default (2018.10.22.00): - boost-for-react-native - DoubleConversion - glog - glog (0.3.5) - GoogleAppMeasurement (6.1.6): - GoogleUtilities/AppDelegateSwizzler (~> 6.0) - GoogleUtilities/MethodSwizzler (~> 6.0) - GoogleUtilities/Network (~> 6.0) - "GoogleUtilities/NSData+zlib (~> 6.0)" - nanopb (= 0.3.9011) - GoogleDataTransport (6.2.1) - GoogleDataTransportCCTSupport (3.0.0): - GoogleDataTransport (~> 6.0) - nanopb (~> 0.3.901) - GoogleUtilities/AppDelegateSwizzler (6.7.1): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - GoogleUtilities/Environment (6.7.1): - PromisesObjC (~> 1.2) - GoogleUtilities/Logger (6.7.1): - GoogleUtilities/Environment - GoogleUtilities/MethodSwizzler (6.7.1): - GoogleUtilities/Logger - GoogleUtilities/Network (6.7.1): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" - GoogleUtilities/Reachability - "GoogleUtilities/NSData+zlib (6.7.1)" - GoogleUtilities/Reachability (6.7.1): - GoogleUtilities/Logger - GoogleUtilities/UserDefaults (6.7.1): - GoogleUtilities/Logger - nanopb (0.3.9011): - nanopb/decode (= 0.3.9011) - nanopb/encode (= 0.3.9011) - nanopb/decode (0.3.9011) - nanopb/encode (0.3.9011) - PromisesObjC (1.2.9) - Protobuf (3.12.0) - RCTRequired (0.61.5) - RCTTypeSafety (0.61.5): - FBLazyVector (= 0.61.5) - Folly (= 2018.10.22.00) - RCTRequired (= 0.61.5) - React-Core (= 0.61.5) - React (0.61.5): - React-Core (= 0.61.5) - React-Core/DevSupport (= 0.61.5) - React-Core/RCTWebSocket (= 0.61.5) - React-RCTActionSheet (= 0.61.5) - React-RCTAnimation (= 0.61.5) - React-RCTBlob (= 0.61.5) - React-RCTImage (= 0.61.5) - React-RCTLinking (= 0.61.5) - React-RCTNetwork (= 0.61.5) - React-RCTSettings (= 0.61.5) - React-RCTText (= 0.61.5) - React-RCTVibration (= 0.61.5) - React-Core (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default (= 0.61.5) - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/CoreModulesHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/Default (0.61.5): - Folly (= 2018.10.22.00) - glog - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/DevSupport (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default (= 0.61.5) - React-Core/RCTWebSocket (= 0.61.5) - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - React-jsinspector (= 0.61.5) - Yoga - React-Core/RCTActionSheetHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTAnimationHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTBlobHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTImageHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTLinkingHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTNetworkHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTSettingsHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTTextHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTVibrationHeaders (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-Core/RCTWebSocket (0.61.5): - Folly (= 2018.10.22.00) - glog - React-Core/Default (= 0.61.5) - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsiexecutor (= 0.61.5) - Yoga - React-CoreModules (0.61.5): - FBReactNativeSpec (= 0.61.5) - Folly (= 2018.10.22.00) - RCTTypeSafety (= 0.61.5) - React-Core/CoreModulesHeaders (= 0.61.5) - React-RCTImage (= 0.61.5) - ReactCommon/turbomodule/core (= 0.61.5) - React-cxxreact (0.61.5): - boost-for-react-native (= 1.63.0) - DoubleConversion - Folly (= 2018.10.22.00) - glog - React-jsinspector (= 0.61.5) - React-jsi (0.61.5): - boost-for-react-native (= 1.63.0) - DoubleConversion - Folly (= 2018.10.22.00) - glog - React-jsi/Default (= 0.61.5) - React-jsi/Default (0.61.5): - boost-for-react-native (= 1.63.0) - DoubleConversion - Folly (= 2018.10.22.00) - glog - React-jsiexecutor (0.61.5): - DoubleConversion - Folly (= 2018.10.22.00) - glog - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - React-jsinspector (0.61.5) - react-native-background-timer (2.1.1): - React - react-native-contacts (5.2.3): - React - react-native-fast-openpgp (1.6.5): - React - react-native-randombytes (3.6.1): - React-Core - react-native-simple-crypto (0.2.15): - React - react-native-splash-screen (3.2.0): - React - react-native-sqlite-storage (5.0.0): - React - react-native-webrtc (1.84.0): - React - React-RCTActionSheet (0.61.5): - React-Core/RCTActionSheetHeaders (= 0.61.5) - React-RCTAnimation (0.61.5): - React-Core/RCTAnimationHeaders (= 0.61.5) - React-RCTBlob (0.61.5): - React-Core/RCTBlobHeaders (= 0.61.5) - React-Core/RCTWebSocket (= 0.61.5) - React-jsi (= 0.61.5) - React-RCTNetwork (= 0.61.5) - React-RCTImage (0.61.5): - React-Core/RCTImageHeaders (= 0.61.5) - React-RCTNetwork (= 0.61.5) - React-RCTLinking (0.61.5): - React-Core/RCTLinkingHeaders (= 0.61.5) - React-RCTNetwork (0.61.5): - React-Core/RCTNetworkHeaders (= 0.61.5) - React-RCTSettings (0.61.5): - React-Core/RCTSettingsHeaders (= 0.61.5) - React-RCTText (0.61.5): - React-Core/RCTTextHeaders (= 0.61.5) - React-RCTVibration (0.61.5): - React-Core/RCTVibrationHeaders (= 0.61.5) - ReactCommon/jscallinvoker (0.61.5): - DoubleConversion - Folly (= 2018.10.22.00) - glog - React-cxxreact (= 0.61.5) - ReactCommon/turbomodule/core (0.61.5): - DoubleConversion - Folly (= 2018.10.22.00) - glog - React-Core (= 0.61.5) - React-cxxreact (= 0.61.5) - React-jsi (= 0.61.5) - ReactCommon/jscallinvoker (= 0.61.5) - ReactNativeIncallManager (3.2.3): - React - RNCallKeep (4.0.1): - React - RNCAsyncStorage (1.8.0): - React - RNCPushNotificationIOS (1.2.0): - React - RNDeviceInfo (5.5.4): - React - RNDtmf (1.0.0): - React - RNFBApp (6.3.4): - Firebase/Core (~> 6.13.0) - React - RNFBMessaging (6.3.4): - Firebase/Messaging (~> 6.13.0) - React - RNFBApp - RNFS (2.16.6): - React - RNShare (3.3.3): - React - RNSoundPlayer (0.10.8): - React - RNSVG (12.1.0): - React - RNVectorIcons (6.6.0): - React - RNVoipPushNotification (2.1.0): - React-Core - Yoga (1.14.0) DEPENDENCIES: - 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/Libraries/FBReactNativeSpec`) - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - 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-background-timer (from `../node_modules/react-native-background-timer`) - react-native-contacts (from `../node_modules/react-native-contacts`) - react-native-fast-openpgp (from `../node_modules/react-native-fast-openpgp`) - react-native-randombytes (from `../node_modules/react-native-randombytes`) - react-native-simple-crypto (from `../node_modules/react-native-simple-crypto`) - react-native-splash-screen (from `../node_modules/react-native-splash-screen`) - react-native-sqlite-storage (from `../node_modules/react-native-sqlite-storage`) - react-native-webrtc (from `../node_modules/react-native-webrtc`) - 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`) - ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - ReactNativeIncallManager (from `../node_modules/react-native-incall-manager`) - RNCallKeep (from `../node_modules/react-native-callkeep`) - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNCPushNotificationIOS (from `../node_modules/@react-native-community/push-notification-ios`)" - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNDtmf (from `../node_modules/react-native-dtmf/ios`) - "RNFBApp (from `../node_modules/@react-native-firebase/app`)" - "RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`)" - RNFS (from `../node_modules/react-native-fs`) - RNShare (from `../node_modules/react-native-share`) - RNSoundPlayer (from `../node_modules/react-native-sound-player`) - RNSVG (from `../node_modules/react-native-svg`) - RNVectorIcons (from `../node_modules/react-native-vector-icons`) - RNVoipPushNotification (from `../node_modules/react-native-voip-push-notification`) - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) SPEC REPOS: trunk: - boost-for-react-native - Firebase - FirebaseAnalytics - FirebaseAnalyticsInterop - FirebaseCore - FirebaseCoreDiagnostics - FirebaseCoreDiagnosticsInterop - FirebaseInstanceID - FirebaseMessaging - GoogleAppMeasurement - GoogleDataTransport - GoogleDataTransportCCTSupport - GoogleUtilities - nanopb - PromisesObjC - Protobuf 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/Libraries/FBReactNativeSpec" Folly: :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec" glog: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" RCTRequired: :path: "../node_modules/react-native/Libraries/RCTRequired" RCTTypeSafety: :path: "../node_modules/react-native/Libraries/TypeSafety" React: :path: "../node_modules/react-native/" 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-background-timer: :path: "../node_modules/react-native-background-timer" react-native-contacts: :path: "../node_modules/react-native-contacts" react-native-fast-openpgp: :path: "../node_modules/react-native-fast-openpgp" react-native-randombytes: :path: "../node_modules/react-native-randombytes" react-native-simple-crypto: :path: "../node_modules/react-native-simple-crypto" react-native-splash-screen: :path: "../node_modules/react-native-splash-screen" react-native-sqlite-storage: :path: "../node_modules/react-native-sqlite-storage" react-native-webrtc: :path: "../node_modules/react-native-webrtc" 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" ReactCommon: :path: "../node_modules/react-native/ReactCommon" ReactNativeIncallManager: :path: "../node_modules/react-native-incall-manager" RNCallKeep: :path: "../node_modules/react-native-callkeep" RNCAsyncStorage: :path: "../node_modules/@react-native-community/async-storage" RNCPushNotificationIOS: :path: "../node_modules/@react-native-community/push-notification-ios" RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNDtmf: :path: "../node_modules/react-native-dtmf/ios" RNFBApp: :path: "../node_modules/@react-native-firebase/app" RNFBMessaging: :path: "../node_modules/@react-native-firebase/messaging" RNFS: :path: "../node_modules/react-native-fs" RNShare: :path: "../node_modules/react-native-share" RNSoundPlayer: :path: "../node_modules/react-native-sound-player" RNSVG: :path: "../node_modules/react-native-svg" RNVectorIcons: :path: "../node_modules/react-native-vector-icons" RNVoipPushNotification: :path: "../node_modules/react-native-voip-push-notification" Yoga: :path: "../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c BVLinearGradient: e3aad03778a456d77928f594a649e96995f1c872 DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2 FBLazyVector: aaeaf388755e4f29cd74acbc9e3b8da6d807c37f FBReactNativeSpec: 118d0d177724c2d67f08a59136eb29ef5943ec75 Firebase: 458d109512200d1aca2e1b9b6cf7d68a869a4a46 FirebaseAnalytics: 45f36d9c429fc91d206283900ab75390cd05ee8a FirebaseAnalyticsInterop: 3f86269c38ae41f47afeb43ebf32a001f58fcdae FirebaseCore: 307ea2508df730c5865334e41965bd9ea344b0e5 FirebaseCoreDiagnostics: b59c024493a409f8aecba02c99928d0d8431d159 FirebaseCoreDiagnosticsInterop: 296e2c5f5314500a850ad0b83e9e7c10b011a850 FirebaseInstanceID: ebd2ea79ee38db0cb5f5167b17a0d387e1cc7b6e FirebaseMessaging: 089b7a4991425783384acc8bcefcd78c0af913bd Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51 glog: 1f3da668190260b06b429bb211bfbee5cd790c28 GoogleAppMeasurement: dfe55efa543e899d906309eaaac6ca26d249862f GoogleDataTransport: 9a8a16f79feffc7f42096743de2a7c4815e84020 GoogleDataTransportCCTSupport: 0f39025e8cf51f168711bd3fb773938d7e62ddb5 GoogleUtilities: e121a3867449ce16b0e35ddf1797ea7a389ffdf2 nanopb: 18003b5e52dab79db540fe93fe9579f399bd1ccd PromisesObjC: b48e0338dbbac2207e611750777895f7a5811b75 Protobuf: 2793fcd0622a00b546c60e7cbbcc493e043e9bb9 RCTRequired: b153add4da6e7dbc44aebf93f3cf4fcae392ddf1 RCTTypeSafety: 9aa1b91d7f9310fc6eadc3cf95126ffe818af320 React: b6a59ef847b2b40bb6e0180a97d0ca716969ac78 React-Core: 688b451f7d616cc1134ac95295b593d1b5158a04 React-CoreModules: d04f8494c1a328b69ec11db9d1137d667f916dcb React-cxxreact: d0f7bcafa196ae410e5300736b424455e7fb7ba7 React-jsi: cb2cd74d7ccf4cffb071a46833613edc79cdf8f7 React-jsiexecutor: d5525f9ed5f782fdbacb64b9b01a43a9323d2386 React-jsinspector: fa0ecc501688c3c4c34f28834a76302233e29dc0 react-native-background-timer: 1b6e6b4e10f1b74c367a1fdc3c72b67c619b222b react-native-contacts: e342f93e42bbaac13729e551ffa35ad4a5b90a45 react-native-fast-openpgp: f79c11db92a059ab2a93142a2d8d4d0f1888ff5a react-native-randombytes: 421f1c7d48c0af8dbcd471b0324393ebf8fe7846 react-native-simple-crypto: 499ddd9f317932677e50393e58e7a72bca2a86e1 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-sqlite-storage: 418ef4afc5e6df6ce3574c4617e5f0b65cffde55 react-native-webrtc: 9268ae9a2bc9730796b0968d012327e92c392adf React-RCTActionSheet: 600b4d10e3aea0913b5a92256d2719c0cdd26d76 React-RCTAnimation: 791a87558389c80908ed06cc5dfc5e7920dfa360 React-RCTBlob: d89293cc0236d9cb0933d85e430b0bbe81ad1d72 React-RCTImage: 6b8e8df449eb7c814c99a92d6b52de6fe39dea4e React-RCTLinking: 121bb231c7503cf9094f4d8461b96a130fabf4a5 React-RCTNetwork: fb353640aafcee84ca8b78957297bd395f065c9a React-RCTSettings: 8db258ea2a5efee381fcf7a6d5044e2f8b68b640 React-RCTText: 9ccc88273e9a3aacff5094d2175a605efa854dbe React-RCTVibration: a49a1f42bf8f5acf1c3e297097517c6b3af377ad ReactCommon: 198c7c8d3591f975e5431bec1b0b3b581aa1c5dd ReactNativeIncallManager: 155aa4612c0daa6e8f0af761b7b660aa6b13e20f RNCallKeep: eac6e6b4892f1b1c2890a1ce6d5f5451d7543c57 RNCAsyncStorage: 5d83b49070d41fd72906a116c5e7bdac4ea3a814 RNCPushNotificationIOS: 4d9ffd08f00ef6c1029ebbf4d72fc711eca3ff01 RNDeviceInfo: 6a3d16fce033f6979c4a6a41e62244d183e8c765 RNDtmf: 3d027df415fd00b707061864e2ce270f04d22f3d RNFBApp: 7d4006751de8bb5cafa2e8d2e7d94ee250df81db RNFBMessaging: 51cc7f6beaf4c4feac6f18ea941bba5854e3d9c6 RNFS: 2bd9eb49dc82fa9676382f0585b992c424cd59df RNShare: f4ec422e27904e0dc9310038d1110460a59ad30d RNSoundPlayer: aa3c998a1f9beaa0f9fdd4485846a74a53df7d07 RNSVG: ce9d996113475209013317e48b05c21ee988d42e RNVectorIcons: 0bb4def82230be1333ddaeee9fcba45f0b288ed4 RNVoipPushNotification: 6b38227bbbb2359dc11cbf826044f8ed4bd8de36 Yoga: f2a7cd4280bfe2cca5a7aed98ba0eb3d1310f18b -PODFILE CHECKSUM: 3d499b79550f65e7db6085556cbc30ef8d39b6b2 +PODFILE CHECKSUM: c8fcb55af012b108bb9ae585bfae6e79d49c0f42 -COCOAPODS: 1.8.4 +COCOAPODS: 1.10.1