diff --git a/android/app/build.gradle b/android/app/build.gradle index a994a3e5..859506db 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -217,12 +217,6 @@ dependencies { implementation('com.crashlytics.sdk.android:crashlytics:2.9.9@aar') { transitive = true } - implementation(project(':react-native-jitsi-meet')) { - exclude group: 'com.facebook.react', module:'react-native-fast-image' - exclude group: 'com.facebook.react', module:'react-native-vector-icons' - exclude group: 'com.facebook.react', module:'react-native-webview' - exclude group: 'com.facebook.react', module:'react-native-background-timer' - } if (enableHermes) { def hermesPath = "../../node_modules/hermesvm/android/"; diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 50ce2d58..cf2faf44 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -9,19 +9,7 @@ - - - - - - - - - diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java index 6ee919b3..f9270582 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java +++ b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java @@ -4,7 +4,6 @@ import android.app.Application; import android.util.Log; import android.content.Context; import android.os.Bundle; - import androidx.annotation.Nullable; import com.facebook.react.PackageList; @@ -34,7 +33,6 @@ import io.invertase.firebase.analytics.RNFirebaseAnalyticsPackage; import io.invertase.firebase.perf.RNFirebasePerformancePackage; import com.nozbe.watermelondb.WatermelonDBPackage; -import com.reactnativejitsimeet.JitsiMeetPackage; import java.util.Arrays; import java.util.List; @@ -59,7 +57,6 @@ public class MainApplication extends Application implements ReactApplication, IN packages.add(new KeyboardInputPackage(MainApplication.this)); packages.add(new RNNotificationsPackage(MainApplication.this)); packages.add(new WatermelonDBPackage()); - packages.add(new JitsiMeetPackage()); packages.add(new ModuleRegistryAdapter(mModuleRegistryProvider)); return packages; } diff --git a/android/settings.gradle b/android/settings.gradle index 6c24d8e3..db6d01ba 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -8,7 +8,5 @@ include ':reactnativenotifications' project(':reactnativenotifications').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-notifications/android/app') include ':reactnativekeyboardinput' project(':reactnativekeyboardinput').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-keyboard-input/lib/android') -include ':react-native-jitsi-meet' -project(':react-native-jitsi-meet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-jitsi-meet/android') apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' diff --git a/app/index.js b/app/index.js index 4c0b4880..9782714f 100644 --- a/app/index.js +++ b/app/index.js @@ -216,7 +216,10 @@ const NewMessageStack = createStackNavigator({ const InsideStackModal = createStackNavigator({ Main: ChatsDrawer, - NewMessageStack + NewMessageStack, + JitsiMeetView: { + getScreen: () => require('./views/JitsiMeetView').default + } }, { mode: 'modal', diff --git a/app/lib/methods/callJitsi.js b/app/lib/methods/callJitsi.js index 5818f32c..c7118d0e 100644 --- a/app/lib/methods/callJitsi.js +++ b/app/lib/methods/callJitsi.js @@ -1,9 +1,5 @@ -import JitsiMeet, { JitsiMeetEvents } from 'react-native-jitsi-meet'; -import BackgroundTimer from 'react-native-background-timer'; - import reduxStore from '../createStore'; - -let jitsiTimeout = null; +import Navigation from '../Navigation'; const jitsiBaseUrl = ({ Jitsi_Enabled, Jitsi_SSL, Jitsi_Domain, Jitsi_URL_Room_Prefix, uniqueID @@ -21,33 +17,10 @@ const jitsiBaseUrl = ({ return `${ urlProtocol }${ urlDomain }${ prefix }${ uniqueIdentifier }`; }; -function callJitsi(rid, options = {}) { +function callJitsi(rid, onlyAudio = false) { const { settings } = reduxStore.getState(); - // Jitsi Update Timeout needs to be called every 10 seconds to make sure - // call is not ended and is available to web users. - JitsiMeet.initialize(); - const conferenceJoined = JitsiMeetEvents.addListener('CONFERENCE_JOINED', () => { - this.updateJitsiTimeout(rid).catch(e => console.log(e)); - if (jitsiTimeout) { - BackgroundTimer.clearInterval(jitsiTimeout); - } - jitsiTimeout = BackgroundTimer.setInterval(() => { - this.updateJitsiTimeout(rid).catch(e => console.log(e)); - }, 10000); - }); - const conferenceLeft = JitsiMeetEvents.addListener('CONFERENCE_LEFT', () => { - if (jitsiTimeout) { - BackgroundTimer.clearInterval(jitsiTimeout); - } - if (conferenceJoined && conferenceJoined.remove) { - conferenceJoined.remove(); - } - if (conferenceLeft && conferenceLeft.remove) { - conferenceLeft.remove(); - } - }); - JitsiMeet.call(`${ jitsiBaseUrl(settings) }${ rid }`, options); + Navigation.navigate('JitsiMeetView', { url: `${ jitsiBaseUrl(settings) }${ rid }`, onlyAudio, rid }); } export default callJitsi; diff --git a/app/views/JitsiMeetView.js b/app/views/JitsiMeetView.js new file mode 100644 index 00000000..495a796c --- /dev/null +++ b/app/views/JitsiMeetView.js @@ -0,0 +1,67 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import JitsiMeet, { JitsiMeetView as RNJitsiMeetView } from 'react-native-jitsi-meet'; +import BackgroundTimer from 'react-native-background-timer'; + +import RocketChat from '../lib/rocketchat'; + +import sharedStyles from './Styles'; + +class JitsiMeetView extends React.Component { + static propTypes = { + navigation: PropTypes.object + } + + constructor(props) { + super(props); + this.rid = props.navigation.getParam('rid'); + this.onConferenceTerminated = this.onConferenceTerminated.bind(this); + this.onConferenceJoined = this.onConferenceJoined.bind(this); + this.jitsiTimeout = null; + } + + componentDidMount() { + const { navigation } = this.props; + setTimeout(() => { + const url = navigation.getParam('url'); + const onlyAudio = navigation.getParam('onlyAudio', false); + if (onlyAudio) { + JitsiMeet.audioCall(url); + } else { + JitsiMeet.call(url); + } + }, 1000); + } + + // Jitsi Update Timeout needs to be called every 10 seconds to make sure + // call is not ended and is available to web users. + onConferenceJoined = () => { + RocketChat.updateJitsiTimeout(this.rid).catch(e => console.log(e)); + if (this.jitsiTimeout) { + BackgroundTimer.clearInterval(this.jitsiTimeout); + } + this.jitsiTimeout = BackgroundTimer.setInterval(() => { + RocketChat.updateJitsiTimeout(this.rid).catch(e => console.log(e)); + }, 10000); + } + + onConferenceTerminated = () => { + const { navigation } = this.props; + if (this.jitsiTimeout) { + BackgroundTimer.clearInterval(this.jitsiTimeout); + } + navigation.pop(); + } + + render() { + return ( + + ); + } +} + +export default JitsiMeetView; diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index b9364950..e40ff68a 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -182,7 +182,7 @@ class RoomActionsView extends React.Component { { icon: 'livechat', name: I18n.t('Voice_call'), - event: () => RocketChat.callJitsi(rid, { videoMuted: true }), + event: () => RocketChat.callJitsi(rid, true), testID: 'room-actions-voice' }, { diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index bbe07cc4..902e5e75 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -604,7 +604,7 @@ class RoomView extends React.Component { if (jitsiTimeout < Date.now()) { showErrorAlert(I18n.t('Call_already_ended')); } else { - RocketChat.callJitsi(this.rid, {}); + RocketChat.callJitsi(this.rid); } }; diff --git a/ios/Podfile.lock b/ios/Podfile.lock index b69329bd..da74815c 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -158,6 +158,8 @@ PODS: - React - react-native-document-picker (3.2.4): - React + - react-native-jitsi-meet (2.0.0): + - React - react-native-keyboard-input (5.3.1): - React - react-native-keyboard-tracking-view (5.5.0): @@ -283,6 +285,7 @@ DEPENDENCIES: - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) - react-native-background-timer (from `../node_modules/react-native-background-timer`) - react-native-document-picker (from `../node_modules/react-native-document-picker`) + - react-native-jitsi-meet (from `../node_modules/react-native-jitsi-meet`) - react-native-keyboard-input (from `../node_modules/react-native-keyboard-input`) - react-native-keyboard-tracking-view (from `../node_modules/react-native-keyboard-tracking-view`) - react-native-notifications (from `../node_modules/react-native-notifications`) @@ -399,6 +402,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-background-timer" react-native-document-picker: :path: "../node_modules/react-native-document-picker" + react-native-jitsi-meet: + :path: "../node_modules/react-native-jitsi-meet" react-native-keyboard-input: :path: "../node_modules/react-native-keyboard-input" react-native-keyboard-tracking-view: @@ -536,6 +541,7 @@ SPEC CHECKSUMS: React-jsinspector: 73f24a02fa684ed6a2b828ba116874a2191ded88 react-native-background-timer: 1b6e6b4e10f1b74c367a1fdc3c72b67c619b222b react-native-document-picker: c36bf5f067a581657ecaf7124dcd921a8be19061 + react-native-jitsi-meet: 27446bafcf8be0050c1e275cbddd5ea83cae7669 react-native-keyboard-input: 2a01e0aceac330592bbe9b3101761bb9d8e6d1fb react-native-keyboard-tracking-view: 1ebd24a2b6ca2314549aa51775995678094bffa1 react-native-notifications: 163ddedac6fcc8d850ea15b06abdadcacdff00f1 diff --git a/ios/Pods/Headers/Private/react-native-jitsi-meet/RNJitsiMeetView.h b/ios/Pods/Headers/Private/react-native-jitsi-meet/RNJitsiMeetView.h new file mode 120000 index 00000000..a1eebffa --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-jitsi-meet/RNJitsiMeetView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-jitsi-meet/ios/RNJitsiMeetView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-jitsi-meet/RNJitsiMeetViewManager.h b/ios/Pods/Headers/Private/react-native-jitsi-meet/RNJitsiMeetViewManager.h new file mode 120000 index 00000000..6ae9b760 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-jitsi-meet/RNJitsiMeetViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-jitsi-meet/ios/RNJitsiMeetViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-jitsi-meet/RNJitsiMeetView.h b/ios/Pods/Headers/Public/react-native-jitsi-meet/RNJitsiMeetView.h new file mode 120000 index 00000000..a1eebffa --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-jitsi-meet/RNJitsiMeetView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-jitsi-meet/ios/RNJitsiMeetView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-jitsi-meet/RNJitsiMeetViewManager.h b/ios/Pods/Headers/Public/react-native-jitsi-meet/RNJitsiMeetViewManager.h new file mode 120000 index 00000000..6ae9b760 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-jitsi-meet/RNJitsiMeetViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-jitsi-meet/ios/RNJitsiMeetViewManager.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/react-native-jitsi-meet.podspec.json b/ios/Pods/Local Podspecs/react-native-jitsi-meet.podspec.json new file mode 100644 index 00000000..9946def3 --- /dev/null +++ b/ios/Pods/Local Podspecs/react-native-jitsi-meet.podspec.json @@ -0,0 +1,30 @@ +{ + "name": "react-native-jitsi-meet", + "version": "2.0.0", + "summary": "Jitsi Meet SDK wrapper for React Native.", + "license": "Apache-2.0", + "authors": { + "name": "Sébastien Krafft", + "email": "skrafft@gmail.com" + }, + "homepage": "https://github.com/skrafft/react-native-jitsi-meet", + "platforms": { + "ios": "9.0" + }, + "source": { + "git": "https://github.com/skrafft/react-native-jitsi-meet.git", + "tag": "v2.0.0" + }, + "source_files": "ios/**/*.{h,m}", + "ios": { + "vendored_frameworks": [ + "ios/WebRTC.framework", + "ios/JitsiMeet.framework" + ] + }, + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index b69329bd..da74815c 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -158,6 +158,8 @@ PODS: - React - react-native-document-picker (3.2.4): - React + - react-native-jitsi-meet (2.0.0): + - React - react-native-keyboard-input (5.3.1): - React - react-native-keyboard-tracking-view (5.5.0): @@ -283,6 +285,7 @@ DEPENDENCIES: - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) - react-native-background-timer (from `../node_modules/react-native-background-timer`) - react-native-document-picker (from `../node_modules/react-native-document-picker`) + - react-native-jitsi-meet (from `../node_modules/react-native-jitsi-meet`) - react-native-keyboard-input (from `../node_modules/react-native-keyboard-input`) - react-native-keyboard-tracking-view (from `../node_modules/react-native-keyboard-tracking-view`) - react-native-notifications (from `../node_modules/react-native-notifications`) @@ -399,6 +402,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-background-timer" react-native-document-picker: :path: "../node_modules/react-native-document-picker" + react-native-jitsi-meet: + :path: "../node_modules/react-native-jitsi-meet" react-native-keyboard-input: :path: "../node_modules/react-native-keyboard-input" react-native-keyboard-tracking-view: @@ -536,6 +541,7 @@ SPEC CHECKSUMS: React-jsinspector: 73f24a02fa684ed6a2b828ba116874a2191ded88 react-native-background-timer: 1b6e6b4e10f1b74c367a1fdc3c72b67c619b222b react-native-document-picker: c36bf5f067a581657ecaf7124dcd921a8be19061 + react-native-jitsi-meet: 27446bafcf8be0050c1e275cbddd5ea83cae7669 react-native-keyboard-input: 2a01e0aceac330592bbe9b3101761bb9d8e6d1fb react-native-keyboard-tracking-view: 1ebd24a2b6ca2314549aa51775995678094bffa1 react-native-notifications: 163ddedac6fcc8d850ea15b06abdadcacdff00f1 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index a6bd4af9..3f5898d8 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -7,6 +7,15 @@ objects = { /* Begin PBXAggregateTarget section */ + 0457CE0B3AFDC70E0EFCBC67373B8890 /* UMImageLoaderInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 34D7AF1292B1A8222887EA38EEABDD5E /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMImageLoaderInterface; + }; 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */ = { isa = PBXAggregateTarget; buildConfigurationList = F7B9206E26DEB0994836EBA1FC0E2DE6 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; @@ -21,15 +30,6 @@ ); name = FirebaseAnalytics; }; - 27238E8DC18048F88CB6FC7AE06D4301 /* UMImageLoaderInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 3CFAC475A3E047DC5CD5E0A76C339474 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMImageLoaderInterface; - }; 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */ = { isa = PBXAggregateTarget; buildConfigurationList = 8D2EFE0FE8311293CF2DE010A71CAA8F /* Build configuration list for PBXAggregateTarget "React" */; @@ -60,15 +60,33 @@ ); name = UMConstantsInterface; }; - 4732B625A39AA6E14387EB671FCF7CB7 /* UMBarCodeScannerInterface */ = { + 4A0F8EB58C18AB13EC4AC87932790923 /* UMTaskManagerInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = CCA790BFEEE3D9306BBB3ED1F051E90B /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; + buildConfigurationList = 6D6907C2CB5A3DA15C0E4529D0AE5AE2 /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMTaskManagerInterface; + }; + 4FBB5D004566C9C8B2B9183ED6C6CDD7 /* UMBarCodeScannerInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 79EE540FD9C3424D60A461EEA4D00C1C /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; buildPhases = ( ); dependencies = ( ); name = UMBarCodeScannerInterface; }; + 56D3B9DEFD00B2D12D27DE7280EE9046 /* UMCameraInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 049B8B332EB11656CDC7DCF766756356 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMCameraInterface; + }; 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; buildConfigurationList = D714EFAF91AF42119B673C282ADF2B13 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; @@ -80,14 +98,14 @@ ); name = GoogleAppMeasurement; }; - 5A5635BEE017E125F52F95B5E1FBC6B6 /* UMCameraInterface */ = { + 57D441FD74CABBA22161F1564CB270A3 /* UMFontInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = B07A7D5286EF8EF52439BA37711CB287 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; + buildConfigurationList = B689A3AD9EE221C3EAB574805F4CB162 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMCameraInterface; + name = UMFontInterface; }; 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */ = { isa = PBXAggregateTarget; @@ -127,18 +145,18 @@ ); name = Firebase; }; - 8923451EE41ABB80D8FCB82A5916D131 /* UMFontInterface */ = { + 855548CC8E8274EAF5D336918E25ED2E /* UMSensorsInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 48B594EEC40609FD744E6BD513EB36C4 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; + buildConfigurationList = 79A76C360FCCC7C66CEDA495CD904EEF /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMFontInterface; + name = UMSensorsInterface; }; - 8F9C80EE88B6DF02CF887F4534C0C8D1 /* UMFaceDetectorInterface */ = { + 859CC2305C7CF951A89D25B76146E86C /* UMFaceDetectorInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 21052F4686CC776F142FD08D178E0B1E /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; + buildConfigurationList = 9D4B5462E60EED2D68D488C168AF1218 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; buildPhases = ( ); dependencies = ( @@ -173,1675 +191,1726 @@ ); name = Fabric; }; - E0D783B49979A14D2025F4BC2F977DDC /* UMSensorsInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 7C1B1DB3C772C0604295220C0C9C537E /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMSensorsInterface; - }; - F2EA13F7186803B14E07C507D5AC0A3F /* UMTaskManagerInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 8C2611FE63D276348E71E1CAEA055D6D /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMTaskManagerInterface; - }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ 004C151DEA47D2B7274977550CB15F7B /* GDTUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4847B482EFCF00D61052680F980A3696 /* GDTUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 004F5679B9467C475CCD10531838FAA0 /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DA48F97904C179AC3326BE4587A49249 /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00664055E778A675A220C8D08F1E31A9 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C45645B442ABB0BE358A84C461CC1B1 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0076087A5D0A9126C568927085A061ED /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D3EB049A701CA5F84DC2CB0208787F0 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00664055E778A675A220C8D08F1E31A9 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AEA92BE8A1C050899CCC34B6AF15A06 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 006DAAE24FCABF70680FDB6C960F2971 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 443357B49CD19C73D7E93F8A3201199D /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0076087A5D0A9126C568927085A061ED /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9D9808BFB89D23C6A20D156AF7E920 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0076D8A7220679D73FCAA84F43B95212 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BC634AA8832337A5495F34821D27BF7 /* GULUserDefaults.m */; }; - 007C1605B563E2866A8DF49E9E62A4F1 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = D069BCC7C93C674100AF63E3894FC7C4 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 00900A3563D5A41FA78B8EBABB0A26A6 /* RCTTextRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C947C63EB7921E2ACBA351099EC3C7C /* RCTTextRenderer.m */; }; - 00B3C290D54C5589EE73663C035CF6A4 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 619240AFCDA7BD6823699E7938D676C6 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00C58D1392530E9B48E8E0AD1D409FDC /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8B0DC69839F7955C4BA20F869AD92D3 /* RNFirebaseAdMobBannerManager.m */; }; - 00D75AF8FBB1A9C336D3F1043CB3F959 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 20EF4AC9DF7AFDEF2FA45B66352E2556 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 007C1605B563E2866A8DF49E9E62A4F1 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 51671392270A0741A3FD360EED79EF20 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 008982858B301945DE4228F619B9CFC3 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DD38C706C10C12E336FB35A6B38724 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00900A3563D5A41FA78B8EBABB0A26A6 /* RCTTextRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 08135591258921F822A06ABF4C4465C0 /* RCTTextRenderer.m */; }; + 00A77D50298DEA329DC8EC953D06C4B2 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = DB3D3DE524550989F65EEFF314A794EC /* REATransition.m */; }; + 00B3C290D54C5589EE73663C035CF6A4 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC889F14636CBC952EE2E086D4A3361 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D75AF8FBB1A9C336D3F1043CB3F959 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE56D89AB9424CE89D13F130C51526F /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00FAD6C011B67C0B8057A2D664227716 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 5396094C894A84A05ED26CF9D039DDA8 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 01368A7C0F64AB46F26BE789ACF54371 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D900897C65B4848883E1685FFDBB206 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01368A7C0F64AB46F26BE789ACF54371 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 70543A27205EACEC84D6FB71FA341B7B /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 014A953E16242C5C2D97728BE5EB3FED /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75AFACDBD8335C236D2F11C0BC8C0151 /* FirebaseCoreDiagnostics-dummy.m */; }; - 01A125B767CEE13D653CA099A17D7ECB /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CDB6E5572CF9F77A2F31C0518188160 /* REAEventNode.m */; }; - 01BFC467544C7C7121E61736E039A051 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = BEE47C639BA506ECCE98AAEBCA942A81 /* NSImage+Compatibility.m */; }; - 01DAAE65ED5BEBE1A0947A4399BA8C2D /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0E10AFD9B16663DF59E786D100868D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0159EB190D17A2885F17C768A452C3AE /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8593DBD017822F6D970D1829CB6D34BA /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CF9A5886A2B4F38B8B652517410B2D /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3493479E8F6FE68508E0AE73EB96AD /* SDImageCachesManager.m */; }; + 01DAAE65ED5BEBE1A0947A4399BA8C2D /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E36AF35E5A5A6E823912944F985493FA /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 25CE7A909D2A6AD19C964C140CB99F43 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 021104542A2A5534A044E7F8EDDCC1AC /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 053E7A37FE6132038EE3F612568E575D /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 021104542A2A5534A044E7F8EDDCC1AC /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = E15CF65609312FCFFB50C67E3859D45B /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 024146916C54C1D09E3073F043D118F4 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA293DADEDCEDC13D22CE28A2C91ABB /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 025C5E676828C11A8A6C602CEFCEF805 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 881EF7415F26D6FD4A74D598CEF34EA8 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 026B9B3383BB94BC52ECA572C2010223 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B7BEA5F009D938BF5F5F71F697E182 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 029C321F1429838EF29F0D4789B56B13 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 34231E785B8EE1A10D7C90AF0E309E0E /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 029D21FF882024FEF7B15CC0D30DE968 /* RCTExceptionsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ADD512EC5E92F7D43E8255D8EF753916 /* RCTExceptionsManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 02A16C926C5F709792EFDCE704713888 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = AB2FB23EDDE166E0FEBFA4C23BD219B7 /* RCTImageCache.m */; }; + 028E7375670CCFBEF96A031609B63062 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C15AB22352ACB1710562384C58F2C31 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 029C321F1429838EF29F0D4789B56B13 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CD142CEFBACF1123E791728807877E3 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 029D21FF882024FEF7B15CC0D30DE968 /* RCTExceptionsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F905905F83A465B4E96F7B199277348A /* RCTExceptionsManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 02A16C926C5F709792EFDCE704713888 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 19231630FAEE81DCCC5421C449A86AED /* RCTImageCache.m */; }; + 02B71DF6BE82EC193BC73EF172BD958D /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB72E8036204ABAACC2897F21840FE8 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02CC3115AB4B885AB679CB89CAA22686 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 63EC4C3D4DDABFD3BBED1D5DB0B73EE3 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0317CDBD45DD1F08482E2C1D2C55D2D5 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D3DD62244FDA6E6C36ACF68585C753E /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 03311832FDD91A029F016815F69BA8EF /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8659DC6C8D7F8183E7746FEC9E014719 /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03625EE23D0D87639BBC3435094567CD /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = C3317292C2D6C79FF816A519DBBA5251 /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0366D4991EFCC4C9DD084F0A5BAB76D2 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 28E6749E05B1D2A0F0CB925540E0BE6E /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 038C90FA9D2ECCA412B28FC875032EAF /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D9356783DFAB60412E4A95FDA1D32D7E /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B1BCBB960C0747FF8037C28EF82574 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 486C52F0584E1522A2178F6078147EB2 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D961CDABD9CE7AED36DB679390D0DF /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC349D8BE14864173F046B8F2C12790 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03E7C97EE245B6F8011A1213D74376BD /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B299FFF600468CC5F031359F11529C30 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03D961CDABD9CE7AED36DB679390D0DF /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A6EBDEA822E6E9613B5673C69D6A98A4 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0415955DF1142B1087CD77F9631924BE /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 129704FB2D8376802754D4ADDCC2C3D5 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0472215B9AB95CFF2F993F3453664174 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 65FB620DC5C3D0E52325F0302200B457 /* QBImagePickerController.m */; }; + 04187ED09BB1CA5672D8E180E57D95B6 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 852B9047FE97D3805DF016D9AC2CA991 /* RCTConvert+UIBackgroundFetchResult.m */; }; + 04275F6533264B3E5B14E101AEA3D041 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C494DC58EC950DD60D5622D8FFFC5BDD /* RNDeviceInfo.m */; }; + 0458F48BF6CAC4B29AD8B1EA1BBA435B /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAD085E5418C438B0ACE5F8D211B7414 /* RNAudio-dummy.m */; }; 04751C5988818B1F50D7C3C00D67FC77 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E04976218228CC76EBC93B283373EC06 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04BC7BD837603CB78EF00C8D5426BC0D /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C003927BED9B0875864595A388D43FF /* SDImageCachesManagerOperation.m */; }; - 04EE6CD58732AD8D49FAF083AA5AC04F /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E5B4F1DC5C89F0238898EBB3BEB431 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04A490CFE06FDD27858DE8036741E637 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = D1DFFED3C5B16186D336844AF417F2B4 /* ObservingInputAccessoryView.m */; }; + 04D230DB80E5D08755E9851EB077FD3F /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FD59BEACF23E97DAA493C4C13EEA62 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04F898F093B7468766941635C77DD78F /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DE1CFC42D5704E9089A05522A035F8 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04F8F73AF0122317FA4598734000ABC3 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E98C45D3FF69B3C893D539796D4B95 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05351A5B8B896B245A1726ECA65BC607 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B41E952EBFE66089C326F15B93995FE /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 066EF45D802AAC2C110DC22452A23229 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0593DD9793C228358400913632E671 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 067896AB1DB5B475FA52835500A8A287 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 94845D049083BF66942C66362AFBB586 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04F8F73AF0122317FA4598734000ABC3 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B14929965F17A9C69B9A87B7E036CE /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0516CA29536E14A965445F36D99AE5C6 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 361ED24B795D598831F92950AAE3106F /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05351A5B8B896B245A1726ECA65BC607 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 911213EDD482FE9C8576221ABC018F9E /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06519FCC3FC37590EE18CC9BE8B51CC8 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AD8C953CF7A28B957A85C011702E4B24 /* RNBridgeModule.m */; }; + 066EF45D802AAC2C110DC22452A23229 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2421D918A551EE3CA2567888F02CC919 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 067896AB1DB5B475FA52835500A8A287 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1D9612CFC3F7BF5A5A847A28912153 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 067C083E55ADB7E5FC14D731BEF521E2 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CE0D95CB30C7E29F8A50853A7ED744 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 069177CF722127667C4EF0F2C374D94A /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1DC369DB6469D7CD4943CD9D7A148 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 069358D28AF6423C74F54293386FC05B /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A699D19AD671A866430BBFFF9BF81558 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 079899D5F89F5E17D0C8018DA4F1D343 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 44BA23DE3207220597C857607A81DA0B /* BugsnagSessionTracker.m */; }; + 069177CF722127667C4EF0F2C374D94A /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 963CA6931CF10CA5752B949FB38CE477 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 069DF5B732CACAD06E31FE3B49D37C69 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 95326CF9943793EEF3C483A2EF154EFA /* SDImageCacheConfig.m */; }; + 0710CFC58E9814636DC21BA781A64C3D /* RTCRtpReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AFE20BEB5B1B356205A490AD8880F1A /* RTCRtpReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 079899D5F89F5E17D0C8018DA4F1D343 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = E97A7813C393CA2F898BA2815F02A1A7 /* BugsnagSessionTracker.m */; }; 079F1D9242105C9266286C47710287D2 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = B173D0AE66CCF8DB153DF8A8B1D42B7B /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0811C6C76A44F896696F32B8347DD05C /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 67472DF8B4B211AA18158D6EB435AE4B /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0824D55AA2567209381F8E1A7AF6F26E /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E6F6A9435D05558C1B18F21682D410 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 083370B054B0B72BAF5B8AE50713BC32 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A8357007FEC3306B6FBE0C1E7109D6E6 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0811C6C76A44F896696F32B8347DD05C /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = F1F090B8F521C0B01A40303D391D0659 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 083370B054B0B72BAF5B8AE50713BC32 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 6850FFDB65420927730207155E0F858E /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 08602634F40722C30A90B6F3572B639A /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B94698C378DCCD8D5BE53B980B19B437 /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 08614B47BACD0696CB199B9ADF4AB939 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA3E71057426F69B44429BE6174D6CE /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08809D10A4EFE235AE97004B3BE6B3C2 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2164313A0C0905C5B30EACB4066FAF /* UIImage+Transform.m */; }; 088BF218B07C48D03EF2675C5D535264 /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = DC8E785FF376689515D1C1A26F4C5CDD /* FIRInstanceIDCheckinPreferences.m */; }; - 08BF6B5030EA92517FD259DD7D71A5D4 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = CF74F4C975F2F3A1675CFBEE2A73917B /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08D3AA9C6A06748B16B1941F8AC9ECBE /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 92E5EFA2BF6CB4C04D42A2D3E85441C4 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 092EFF5054C9A6770A3C0932AD4570BA /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A11216E6EE4E7C0343B477383B033A /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09BEC969ADC23BF715D350A17239E6C3 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 891BE3261D0300908576300813D1D317 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A2DFF26F8C1ED8DFEB68307E34B38F7 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C1FEE866B0BBA4529C87B3D5EDC258 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A9EF37FAA8871089BFCA87CF9330A9E /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43DAA951C66CC7C457F38D7FCD5B0049 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0AC0BDFA8DFC4F598975851F4068E7EF /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C391D74F9AE575E3986797A36743D9 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0897FCCC28DFE0E0CA95EFEDE4BCD28D /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 03571C01D855A36BEFBB395C1942979E /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08BD96D91CE7BB04BC49473B233BC8AA /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 88D27A21584BC6B0F5FB196078221E49 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08D3AA9C6A06748B16B1941F8AC9ECBE /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EB36E6A39649D847AF77FD1A5239CF6 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 08E997217A230E573A3068B3BD2B1D68 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = EB40941859B6BF085262A4AA891C2C82 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09251D5333F9CE481828383B9BD436F9 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1781D89FFA2BA60622D97169AAFD88 /* UIImage+MemoryCacheCost.m */; }; + 092EFF5054C9A6770A3C0932AD4570BA /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 54FE949739715B45EBFF179A5AEBF1D8 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 097F719F2E0EBDF6D3B956EFB1B96101 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 98473CA72F08DFCE7A232FAC89E9E474 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09BEC969ADC23BF715D350A17239E6C3 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3749C2745107C4FFBD741432934B704C /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A2DFF26F8C1ED8DFEB68307E34B38F7 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = EC012FC00DC7551F0DA7F42ACE24ABFC /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A9EF37FAA8871089BFCA87CF9330A9E /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56ECF21D11C9C9E4B6DE55A85E0F4E31 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0AA1D2D8387FBA60AD37A4FD809D669C /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BE563DC36C241642DCAE3C66BBE960ED /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0ACEE146071F2404A07F1CEA99CA5B3D /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AB6DC8697BCB96DDC7099E19C0FADEFD /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ADB606B07E1E3072A34D17FD0F61C99 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B675EAACA6B6C00527A3EA87B53BAD4 /* SDImageCoderHelper.m */; }; - 0AED43DCEDB9E470E08D239621F25D2C /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EC3DD97AD69B3A7ED3FA8384D5B50C55 /* RNTapHandler.m */; }; - 0AF6BA576D35D654821BFCF4FF45BA6E /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 72C531C6966A7B8091BB3084C1D1174A /* RCTTextView.m */; }; - 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E91655710FCE7211802B85F7D60C056 /* EXRemoteNotificationRequester.m */; }; - 0B5D9BDE284DDD524E715011954F73FF /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 42076511B6CA8354982B1E02FA428877 /* SDImageCacheDefine.m */; }; - 0B9D1CE5188E7A7FB602B85B7A071C29 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EDEFADCEB7B66C33F4B35E8F4539B58 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BB9867823E23F576DB963FDA0E28793 /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = BCAA872A4D14CBCDBA296FA056611526 /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BFD785C45A1DEBB3800DC8743FA2605 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7314C58F5832505AE7285471BCAD3654 /* RCTBaseTextViewManager.m */; }; - 0C0E5D5C54B1E25D3F403E49FAA8D89E /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 214ADBA008C6F467CC7E0BFB6053DB95 /* NSTextStorage+FontScaling.m */; }; - 0C13C548664BD7C803509B231B2674B7 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ADD2993692CDDD5DC70CEA68E893CA0 /* SDWebImagePrefetcher.m */; }; - 0C2100DD0457156462484EB53C3CA06E /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = D9E51E831EF828138C136D449123FC59 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 2589CAA08CC7CF1049BFA11AF93753C9 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C5DB1BC07F2D284A32B50BC2E3D121F /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1781D89FFA2BA60622D97169AAFD88 /* UIImage+MemoryCacheCost.m */; }; - 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 439A4B82C552FD6B1A9C12ABF96D3164 /* EXLocationRequester.m */; }; - 0CEC0252D57A471D6DBD55723F13DDF7 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 660ED2C13AFBB7DD553D728EE6C227AE /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CFFC0796941C41583D75A40559E9515 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F54D4CD2861E51D3CBE468A3E4567985 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D08AB6B2C2CE84F51F8570C652DDF4F /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C4ADADD124F4F975E74A8B91890628 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D3A393C9BB1BDB480A63F99C8D5F6B0 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4142A9D57093AD7A146D02A4B8A203FF /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D4868D27051D49ACAC248A086FA8F96 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 41911965DDE207F1B002F4CF8B6317F4 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0D4BD4BEBD30CCC17AE56F0A1AB018B2 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = BE04677D8B0CC715F53B3D0CA62584AE /* REATransitionAnimation.m */; }; + 0AF6BA576D35D654821BFCF4FF45BA6E /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = E96A0F78486FC8B1B3EB1DB6D6BC96D2 /* RCTTextView.m */; }; + 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3D31A37D4195E1C71A739A6CAF3FEB /* EXRemoteNotificationRequester.m */; }; + 0B430E97757AE9F5F97A392EA97D31F2 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 015BBB460B3EFCEE96D5CDB876322B8D /* REAConcatNode.m */; }; + 0B9D1CE5188E7A7FB602B85B7A071C29 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0EA9C36D5474A3046885E58291BC6E /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BCEA4301E1B9208796F7CC08C8C87D0 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 506F7D6F7DAF97534C89FE3850C53DC9 /* RNLocalize-dummy.m */; }; + 0BDA0195E032667B337453F07F2A528D /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 87D9D56B13ED6ABE9A79C06687374A08 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BFD785C45A1DEBB3800DC8743FA2605 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 884CFEB9E4D549B09F36682459626D10 /* RCTBaseTextViewManager.m */; }; + 0C0E5D5C54B1E25D3F403E49FAA8D89E /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = DF7411D39B4ADBA745E9C31C4C1BE962 /* NSTextStorage+FontScaling.m */; }; + 0C2100DD0457156462484EB53C3CA06E /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 649B75FC11C456ED266CC9CB2FE4E66E /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 929663746CF9C0F031968CE08611C870 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A3542BB014EBFB206314887A00FA9E4 /* EXLocationRequester.m */; }; + 0CA3EF9D70F64C334EBB4FE2C7235B4D /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 63805770CE626DEEFDE79A52B42E5200 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CEC0252D57A471D6DBD55723F13DDF7 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 49BB2E12539F31E896CC296068B5744C /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CFFC0796941C41583D75A40559E9515 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E927E8D865C0A52483431C4D118EE082 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D08AB6B2C2CE84F51F8570C652DDF4F /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CCE841AF025B6C07DC6EAB37032236 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D4868D27051D49ACAC248A086FA8F96 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = AD3733C7249A87D4E7256B044DB69FA1 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0D633EC67388BD0DD536442C515A5243 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = C20E79FF6379BE775700BC9533CA620A /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D6B6FBA446C7BB91DF886F5F2CF9C3F /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4424C3577D61E6ED424D94537483105C /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D88AA8424CC8B05E833DC70FE3C92AA /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = E1A6EA2BA97A3280685E8170D63D4286 /* RNFirebaseCrashlytics.m */; }; + 0D9C77B846877F8740506EEDBA610FF4 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6402D50DCFBFD141A3F3317654803D /* RNImageCropPicker-dummy.m */; }; 0DB10DDD9AD5EB71B456E0F51F283594 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C2368C0573F26C01DB93B2C5D3EC89E /* GULSwizzler.m */; }; - 0DF2B9682BBE98F376586E4CC355D574 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = B641B14936C36FC7020029884447AA12 /* RCTConvert+REATransition.m */; }; - 0E1C8A31104AAD51C27C458E68FB0635 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = E6502F442A2519C403F7B0C65B80CBC7 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2260186E11688FECD8A2154B2DEC1E /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 44B9203ECA367EDB18E3C0F4B51A4D58 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DD75105DA042DEF4F15D65B4AEEC5B8 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2009DB4374CA5FA1CE6320D16B46D5DC /* UIView+WebCacheOperation.m */; }; + 0DEEFD30C17F762E0AF4DBA443A83DE8 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0852B3F23BF2CCC5942464F363AA829D /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E113195FD8A11667564422ECA5749F7 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A2269041F71E93DC3D5E4E62F1D9FC94 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E1C8A31104AAD51C27C458E68FB0635 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 545580904F78D61C86BDA5B749BAEF46 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2260186E11688FECD8A2154B2DEC1E /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B273F518C0660AB15FFA70B031473A9 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E23972AD194731EF4E59E44A9B006F6 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6B23FFF48BB43F31E60DC5F3C4F92C /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E3D7A64B7B7C9A1C134B565EE87E9B3 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = A4AA3740063FC210165FEFFFD556F536 /* BSG_KSMach_Arm64.c */; }; - 0E5C63315C8DB2D26508CCB1C3189919 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4642A040666803E8013DB341BCE195 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EACC2CF5CE0ED255A0C962F9F606FCA /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3DE8D8339226C9D911B3051375CAB2 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2B691FE2F88A346EC366E25F908624 /* RTCTracing.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8536EDC4DF2903E3258FDEB16AC622 /* RTCTracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E3D7A64B7B7C9A1C134B565EE87E9B3 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = F90E9B4BC7DCDAAEAF7AB5ED360C208B /* BSG_KSMach_Arm64.c */; }; + 0E5C63315C8DB2D26508CCB1C3189919 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A68E6734213B3A19BC166F35CC8579 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EACC2CF5CE0ED255A0C962F9F606FCA /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B543741C7E49CBA12FB593306D793D3 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EBAF8A0EB1B46B03E8691C80B133C80 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 513DAA47AE1BB5C7A2CE2E878E7145AC /* ReactNativeShareExtension.m */; }; + 0F19654838FF6ED43C61892E7178A1C5 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = C20AA83D8E3C884BF6BA173803CA3159 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F199BC919DA606852559D57EF858777 /* GDTLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 0708E098AAAD79EE913D0D6F7F73EBCE /* GDTLifecycle.m */; }; + 0F2566D0E560C98FF645B4C07BC22EEA /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 81ED6A414B8E02B39CC67553BB9F452C /* SDInternalMacros.m */; }; 0F7D0326C38FA3CF8745C0A798D6ACE1 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BDDCC90BDE3C4182CBC95A5B0C56BF99 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0F869D6610B8F79FB681720018044ACF /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6FED9F0BE14108E4CC6E139F97D40D3 /* SDImageCodersManager.m */; }; - 0FAC5ABB17618768EF6975F20E4397B2 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B02143D1D7C74F38519538D30B45DA /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FCCC440A1DED47C50B4263C2D109C02 /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BD25A97840A330D0437C703F4639F26 /* RCTVideo.m */; }; - 0FDA20CFA3BD063630D8A470BB8BAA4C /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CA3DC2486F7CA82B6A886AC4BDCF388 /* RCTConvert+RNNotifications.m */; }; + 0FAC5ABB17618768EF6975F20E4397B2 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 1383E8156F38969277013E939EB71108 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FD25C242522430DEEC004D7F5941768 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B41EBDD1DB022AF9820E6B5214C69976 /* UIApplication+RSKImageCropper.m */; }; 1031D7750424C86A9D1239A32DDB48DC /* GDTTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D0D476839F85C75D635CAF26AD9FB /* GDTTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1063F86D92F052500A83A7597B1C26B9 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = A7877F2D3CF70BB8D9DED1DBAB1FD501 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1063F86D92F052500A83A7597B1C26B9 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B1EBA307329FF68FF4EA03FCE3D8591 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 107BF51166C8E00581BB9828B788ADD7 /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BF894941A4BB7EDEA10BB6BB72A8B31C /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 107CD51CD5FD22E8DE8F0F74C86B5A74 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = F055CCC2B72DCFB4E1090FA3AD861F91 /* FIRInstanceIDStringEncoding.m */; }; - 10F8BFD41B75FDC410DC65D23B8BABC0 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F617B8F1DCA93C70CB9AD10E0F8FC0E5 /* RCTSettingsManager.m */; }; - 11D4DDA0D4189220C754E7EF1043FEFA /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 42EB3BA6DBFAF30441E914755CE66739 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10F8BFD41B75FDC410DC65D23B8BABC0 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B9317D9BE65232E6F83AA8B2C7B44B /* RCTSettingsManager.m */; }; + 115925A99ECF24BFEA84BC1084A18248 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C91E0DEC1D7C7AAA50A225F1D2D48A /* UIView+FindUIViewController.m */; }; + 11760192E2B72A30FA94D43722894891 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5156C8465DFCBF352F718A1DEA0AA6 /* RSKInternalUtility.m */; }; + 119A8BA7D5E944154EEB9C90A439A9F3 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F6ABD140F1AAFF23D08A1CFFECCE608C /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11D4DDA0D4189220C754E7EF1043FEFA /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5E230E475FD65202751138A8418DD8 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11DB45C13D1A87C31CDAAFE996AE3436 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = BDF37D91DBBBB9AA693725A86C6D4A96 /* RNNotificationCenterListener.m */; }; + 11EFC4E7041847BC1511810575F27EF8 /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F955CFBD57187BE53C9B28D12BCB5F /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1222E7AB723CB2D3E5811C261AF342E4 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C0A19B5100ABC1F5FBA1997C6DDAE10C /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 27C712FA63BC9FEEBC37A5B3B0032671 /* EXWebBrowser.m */; }; - 12BBAC3EF466C1D4C587B43EA5958E02 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 102F57C4D6E06B0C4A3D77CE2E0E06A9 /* RCTBackedTextInputDelegateAdapter.m */; }; + 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CDA29D754112A7FF3C7CAEAE7DBAEF9 /* EXWebBrowser.m */; }; + 12BBAC3EF466C1D4C587B43EA5958E02 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB7D2EE6D6C47162214B22EBFBCAEB2 /* RCTBackedTextInputDelegateAdapter.m */; }; + 12CE6BBB5619C03E68E96986562DCD6B /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE022D7A4B4470D1FB71A8C88B654CC /* RNGestureHandlerManager.m */; }; 12DBD85FDC2712722947D323D774B81C /* GDTStoredEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2078B73CFED3E988D47CEC70589963AD /* GDTStoredEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12FA7519507285624A8F734D8A3939CB /* GDTDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB3142967DB480025141D11A7610924 /* GDTDataFuture.m */; }; - 13311C6D84581E707C481BFEDD87D2D0 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 03088DFE62EB625D5B8B896975494B2F /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1342D218A655BAA8E5D66C84AB769E69 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6C7BC478AA059CF44CCA9A7269C7F2 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1342F3149F16AAE25D0EF7A6399047EC /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A83D24F1DFB06D832B5EA64D663D792 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 136A4111FFFD3E00C4E510648026EF28 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E888C5EC01D49518884B47E96ED3154 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13AACDCF8B27709515D70A089EEB6B5C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05295698655499A8BE5D1A5AE87C28FE /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13B005EAC1C6E03A1D5589D6F0A6F29E /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 92F77528D2E3975C5B9619D2C1AE0A68 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 13DEBE4F9697FBCA1AC5F53E117DED1A /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C0E2D38A464972E87853ED7297DCFB /* SDWebImageDefine.m */; }; - 1401A6BD8A173FE79B87098DE6E22441 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31E624D63EFD34F88E903C85CFC595CD /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1314C2259FAF9066DA0A2D9AD581B140 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC9B95661CC3866C3E05B8C73203F4F /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13311C6D84581E707C481BFEDD87D2D0 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 608C14642DC08E74C948D5497FB382CD /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1342F3149F16AAE25D0EF7A6399047EC /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 312A4336B92E83B4443F8D3E67A2DFA9 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13595C5FAC1822D4EAAD3BD095B95104 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD23090FD42C004631F10B60419583F /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13AACDCF8B27709515D70A089EEB6B5C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 135F810F48ED93CD559F9F7E1470BE5C /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13B005EAC1C6E03A1D5589D6F0A6F29E /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = E885CA4FB3886DFCCC251EE0553A5734 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 13C2C415839FAF17C35E00C174A14499 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = FBDB3FF269BAFD11FAF17A33531897E0 /* DeviceUID.m */; }; + 13D6D60D9D88425ECAFC4EB1D3E41398 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE59787DE2A1F4227CEA02F657673BA /* react-native-keyboard-input-dummy.m */; }; + 1401A6BD8A173FE79B87098DE6E22441 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ABECFADA9EF56F58E2A69627E44883A1 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 142DDBA72CDBBC8F357722E76EB54EDA /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 96FEDBFF970311D4CE8F74A6572600E0 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1498F3CA173A688554A26613C4802134 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73745FEEA820397EA66F5CB941C7136D /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14C562A251EDF20732819A22DC58585A /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2210D12E523B8DC979F9E0C783A4B7BD /* RCTConvert+FFFastImage.m */; }; + 1498F3CA173A688554A26613C4802134 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EF532FCEC293A2DEA18D3EBE58BBD7 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14C992D410FCB6E0B19C4DFE74646164 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 943DAE35342735D221D1CCE7B23499E7 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 14E952949D6733C1AE8A8BE4BDB4A683 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F769D6260F9E292438D0FFD1264C69D /* QBCheckmarkView.m */; }; - 14FCEE2CEB088210F983D904DF91583A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C51B0D1089B85084E864AF08ACA1B6BD /* React-jsiexecutor-dummy.m */; }; - 15064F8A70DB97B4A6C745ED69742E50 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8716EB975BB8EBBD888170F145E9627B /* RCTBlobCollector.mm */; }; - 154CD4DE7861F8F74796EAB61E1AF5F8 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 06559694AABD8E83371082788A8DB3E7 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 157E7DBFD6BFE881566506E822B1F8AE /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9CBC2B6CC5EBDAFC6BA6101E45C570 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14FCEE2CEB088210F983D904DF91583A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3137D223DB236E50711878670D1B760C /* React-jsiexecutor-dummy.m */; }; + 15064F8A70DB97B4A6C745ED69742E50 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5BAD548D6EE72D4DF3AE618B71C60139 /* RCTBlobCollector.mm */; }; + 154CD4DE7861F8F74796EAB61E1AF5F8 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = C0915E3E48F3EA6A6D7A49EF22D804FF /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 15B4568BD266F33A873EE39AB395FC22 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 42076511B6CA8354982B1E02FA428877 /* SDImageCacheDefine.m */; }; 15B612FE99D579BB1FF05C272D197F33 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CDEF241D2E723AE3AA76C243CD201E0 /* FIRAppAssociationRegistration.m */; }; + 15D6677949F96FB08C6951152C55AA28 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CDC54313B60DB124E822F965D0B5944 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15E7761EA4B937746CBFE05D97E561F4 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AC1E4B12462B72D713A36AEA3E12AC1 /* RNFirebase.m */; }; 1606C1BAAC2E20C7E7E6A3CCAF15711F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 465EBE9FA967B134748C301E7E1287B8 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 94E2EC112E3F35DB957FAA52620CD689 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 176A1C631A8D08C2CE4199FFF1845FF3 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC5E071A78F24A2A29B9B0D6BFEEAEF /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 178A99D9AE9FD886A3483234179F94F6 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F7A61198D347EA32E1B1EA49667E0C /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17969CC1C7C1EA6AE98EE3D13B8E2D69 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 022CFCD0C8B28302982523E1354EF66E /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C88ECFF02A0656BB3350D4BE97B9915 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17AB3A41A3DAFB6EE14EB49FC316F997 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 702C9E014B1B136A736B1B3F00B91B1A /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FD08A546373D8DA8229FC9E333763C4 /* EXCameraRollRequester.m */; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6777C36B1B42891C11983BC2FBD59C /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17969CC1C7C1EA6AE98EE3D13B8E2D69 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 30AC1D39D7B7700493542DFE95B13B43 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB0CF1D91D53AEAD98070670643EBFF /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17AB3A41A3DAFB6EE14EB49FC316F997 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = EDFA0D2123FEE81D06ED052FD0142B0F /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = D619BA46892D05FF4710CF3364E55443 /* EXCameraRollRequester.m */; }; 17C8EE850EE3AEA00E515ACE095FBC8E /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB98D2DDAE2A55A768A30FDFCFDB9AF /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1818CB61F7CBA5FEFA50850E8D607CD4 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 37E4A75866F5A17B9C02E9D166ECA7B3 /* React-RCTVibration-dummy.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C85AE5450B759E19C9116D4C03A86D3 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1818CB61F7CBA5FEFA50850E8D607CD4 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C97772F11722772EC508D94A267F785 /* React-RCTVibration-dummy.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC189011E2D6AB4ECA6572B7AAB25D3 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875FC9F710D7CE0D6B9C3BB919D18B1 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = FABF62481064ABF2C11928A42592E1AF /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 18825CEE99EC851BF8DBEBACC61D6D51 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55B3F61F2EB9BC6E05666B3449736569 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18ADA297EE35F20372E870619A0E00AF /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 797D106FB4A2A1743CC04DCBEBA74F92 /* SDWebImageIndicator.m */; }; - 18EA582429824349B2A698D290FFE86E /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8C45C37E44E2F1173DBB06500A6943 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18F48B247B4E056A83B839CCCC4F4A10 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 071768A3EFC150AC3C110ECED47803C1 /* QBAssetCell.m */; }; + 18BBBC53C30DAFFD97A767FA106AD36F /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C34446947B99F093F682D587EA14882B /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18EA582429824349B2A698D290FFE86E /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5A9E1C09D1DFB316A5023FD04A0500 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18EBD372C614595AC5AED69A37B62AD8 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F54ABAF5EC48A86E45E71E8BDB6CA43F /* en.lproj */; }; + 1905B4020BCD4D500F096B0AFF602502 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 0496BBEF347D5DD270460A759E3D2A0A /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 190ABBD013617F9F95543FC775E5B84C /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF339FC7F13314A8980D9F2882017AE /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 190D0A80F694BC787EBAC58E813A4F33 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 97BE7330857285D0663B48A8768584DA /* SDAnimatedImage.m */; }; 190F8B4C8A04E11A00BDCA1057FB1EDB /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D86A35C64C72911FC247AEB64044D1 /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195506397FAA1E491996E5C685E4D415 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8665487808600C6FF9CBE629B159900F /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195506397FAA1E491996E5C685E4D415 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = F81F6E5F778A38D830BF3018D912F519 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 198FCB093A9B9BF1DA57A126F2787358 /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D387F835AC8DA23F3D29D5423CABE800 /* FIRInstanceIDTokenOperation.m */; }; - 19CA39C00BC02E59FD3484DD2B73EBD7 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E63AABE884B350F60DF90525392EB0 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19D63C1A328B6D2DB20B6DEB47ED2BE5 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = D51E27FB2838AAFCE578FB8FAE54FEE1 /* RCTProfileTrampoline-arm64.S */; }; + 19D63C1A328B6D2DB20B6DEB47ED2BE5 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 55C552C757D667652918548D83650C25 /* RCTProfileTrampoline-arm64.S */; }; 1A0104B522DEFB57D4AA61C477C69E86 /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = B1818F7EF0C10182EBEA70AD74197B1F /* FIRInstanceIDAuthKeyChain.m */; }; - 1A0CA71109F41F826701E1810B641816 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 38F86CF6326F0EF472CDB99BA636B7C4 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A3CD020DED0285D59EEC26D6F09677A /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EF99D7F00053860409719088A4DDA847 /* es.lproj */; }; + 1A0CA71109F41F826701E1810B641816 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D12394645BC1050EAA8A5A968259371 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A56960F5181C56C80438ADE507F6B70 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E59473F2C4173F38055CEFA6CAE01DE /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A6D58CC89737632FA3D7497CD1D3A7E /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = A373EAAD3DD5F938A177DBFA6F14B104 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AFAE235552F614A2056B367799CB5C9 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AEF2B042F084C4086FD9B65ACC7FFFA /* RNNotificationCenterListener.m */; }; - 1B8CE8C8481CBE8E4522E654E8B15FEF /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A42E113DEBC0CA926C24D67F0ABF36 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C0D0441277629BCF925651EB6F2850A /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE61E0CD030365ABEA6646B226AAD8E /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A6D58CC89737632FA3D7497CD1D3A7E /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0ACE19D1CB1121ADBB32865822FC86 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B06EA3C02FB7023615C34398B60070F /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C0E2D38A464972E87853ED7297DCFB /* SDWebImageDefine.m */; }; + 1B2181C6BCA5848A25F2A132F420B99B /* UIDevice+RTCDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 162F30647909F8B46C0B09DF152E54FE /* UIDevice+RTCDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B3AD0E16337D9ACC0145F310B2CF8C5 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8529DCF7E86805C170FE18B61426189C /* SDImageLoadersManager.m */; }; + 1B8CE8C8481CBE8E4522E654E8B15FEF /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 213CE0DD0D1FB97BDFA3016971DA078E /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C0EA4058456B3D3762F435C2572EB53 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAE43A95A1DD64C112A7BC942745D2B /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C1CB445FF4AB903370BFB36D5279158 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE480FC736E0EA0FC66709D62498248 /* BSG_KSCrashSentry_NSException.m */; }; + 1C1CB445FF4AB903370BFB36D5279158 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A43456D7886D8B44C8FE665CDD1CE84 /* BSG_KSCrashSentry_NSException.m */; }; 1C293C81A7131E0A6DF0D48746434AB6 /* GDTEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = FB08E78DBDF9DB8282CFF0D8FEF7393C /* GDTEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C2BC81F064EC4039DE18F970FD0BC93 /* RTCDataChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A247210D5BDAD13D0C29737C0227412 /* RTCDataChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C849B66AE31D40851966035DD96C85F /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9E02CB5AE96400A5D13DB49DC01ED8 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C9450ADCE5F32C7CB0A25ECF2CDB414 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 420C0C04F3AD35F2F48B537FA82DB6CA /* RCTImageBlurUtils.m */; }; - 1CA314ABFFE7C81A0E1F03B8097446CC /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 894EB08A053D7C6452445489BA754F2A /* BSG_KSSystemInfo.m */; }; + 1C9450ADCE5F32C7CB0A25ECF2CDB414 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 85570C95F3FD301AA7E78D97C2FBE793 /* RCTImageBlurUtils.m */; }; + 1CA314ABFFE7C81A0E1F03B8097446CC /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CED1C82A9058D8FA12578B0C16339C0 /* BSG_KSSystemInfo.m */; }; 1CB2EC2353CF09350338D1C77F3A2703 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3286C47D0D2E7941D9F892B0606F90EF /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 1CBD943A26A60CC472C6AFEC0098FF91 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 923A35D985EF56E8D2F58FE10FE88DA0 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1CC36BFD3AD07841E0CA79CD22B712CC /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = D9E7535A608FB06AF8E9E8CA4D43391A /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CC36BFD3AD07841E0CA79CD22B712CC /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = ED8198D0F273C141F6BD83DE593B502F /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1CEC9722F8DE930445379902380BBD11 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD0E671EF80D002991AAF981E72BED49 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 1D05C8453EB2B936720262319C77095D /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C981CF5E526184C4A7DB7416789BB999 /* BugsnagSessionFileStore.m */; }; + 1D05C8453EB2B936720262319C77095D /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 1332348EBBB4BA24363969F8323722FA /* BugsnagSessionFileStore.m */; }; + 1D265DA0FBC8CA92BA1D84A78366ABB5 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 15709B7021248CAB27E66715397AA976 /* UIImage+ForceDecode.m */; }; 1D3A9292C404B93E41EA657319C5A616 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3601E287D42AF8BF9D590F830354C37B /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D3EF4131B6F3AAAE880AAC312403333 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1058B1882DE680F36CB9CADC629BE5B9 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D55EEEB940F7B2D8C01DBFAFF70495F /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C15AB22352ACB1710562384C58F2C31 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D5C101F5B5A65F0C0C2B1FA642B767E /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD11BE4B0DC960A0D764818A7B71B5A /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D8FA87D7CE7FF126C85634408D65387 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B490AC25D7269468DA651E072EB682C /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D3EF4131B6F3AAAE880AAC312403333 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E22282651D6D0177D40817A41080173 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D5C101F5B5A65F0C0C2B1FA642B767E /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 2551DC0D5E53978B8450B44961CD6151 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D8FA87D7CE7FF126C85634408D65387 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DED6959A771B78E9D584A0500D0BC8A /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D949C6601A62EC6CAD60C9E7B50C0CC /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 0911259B6924DEB8CE798ECCF9A287CE /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DA4BAD50755BD0F10DBDBD3AAF5DC1F /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D0DFCB9D70457B9B48F8858EA6D2F6 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DB8B2D7E908D0E0828B85945A383B76 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A18B5D9697C5FA14C5D1EE9C8CB0C0 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DC93118828603EA8B461EC2A9E34D7F /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A32302F4F43BE748E6C2ECD407D6C480 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1DB8B2D7E908D0E0828B85945A383B76 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 03DDD640D25B43CB250341BC78B5A54F /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DBB0D025F1CE40270EC1DC0B0311EA1 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3F49AC7222558F70BF96377BABF58C /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DC93118828603EA8B461EC2A9E34D7F /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C99284298F3AC9BDAC2BFCE0CA151F0 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1DD0ED35455ED0BD76AFF8FCB877673F /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D21568CA3D2B002C973A9BA34573B73 /* FIRDiagnosticsData.m */; }; 1DF89E7727E0526C9F6958A6297BE82F /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9EE2E07853F87422F1FE26C5625E59 /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E33F5DBE2A1EC00BB20D16ECF677E76 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A488B1D7FC3E575BFF154BA1426F770 /* UMViewManager.m */; }; - 1E39B0FE90E2D15BD1C7200862383035 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5B4DDE044870DB60696054BAC58F466 /* RCTImageStoreManager.m */; }; + 1E26F35DCBECAA0E8EE3D7C1251FD0B6 /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 6279F9B7DC062C3DBF782826438EACED /* RNFirebaseFirestoreCollectionReference.m */; }; + 1E33F5DBE2A1EC00BB20D16ECF677E76 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B771755AD058E5E1AAC7215FB1179E4F /* UMViewManager.m */; }; + 1E39B0FE90E2D15BD1C7200862383035 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25EC550698814DC7DF33F0ACACD03B8B /* RCTImageStoreManager.m */; }; 1E456BCB8628607BE1E2DCDBC170FAE4 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 11BABA994173D89D64A419EC2B1D8EB2 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1E841C79FAEC28B0A912BD071CE02D69 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9CBEC06DB43A4C8854CC0CEB060D657A /* RCTPackagerConnection.mm */; }; - 1E9AAFA6D0EA56C5612E127111241ABC /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F0844815AA610F1F3C9D810943921BE4 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EB83911712E7315531778A9D5B8A298 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3493479E8F6FE68508E0AE73EB96AD /* SDImageCachesManager.m */; }; + 1E841C79FAEC28B0A912BD071CE02D69 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = B240714C009A7083197074E629FCB611 /* RCTPackagerConnection.mm */; }; + 1E9AAFA6D0EA56C5612E127111241ABC /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B6EA39ABD61E9912083281842835B8 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EE29AF938E8A2AA9DB15EC2CF341FA8 /* FIRCoreDiagnosticsDateFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A943E73F3FD098F409C63811FCC88B1 /* FIRCoreDiagnosticsDateFileStorage.m */; }; - 1F433492BD742344BAB20B11CABADAC9 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FC70FF5C9FE0209DCA316B2C28D6E16 /* React-RCTAnimation-dummy.m */; }; - 1F7D45563AC337CF84791FE70DFCCFCA /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C00D69401E0480E872D8829DC7CB8D4 /* BugsnagConfiguration.m */; }; - 1F93B9D5FFF2B89EED6DC77A368547C8 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3835ACF70A6CE9C3B96F58B25FEB9603 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FE655B4AB938DA0AFD9FA7E584D75E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 96BC2F2CD4C9FF5B6078C384252D42CC /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F2411137B47E266A5DDF6060EB453F2 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 302669C528EB41EE070FE1C234C7D7D4 /* QBImagePickerController-dummy.m */; }; + 1F39513974D5E444FB8D1AB9BD8861CC /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECE681DF01112622A1E85860849C2D0 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F433492BD742344BAB20B11CABADAC9 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3CA35E11B829049A1453A7190CA318A /* React-RCTAnimation-dummy.m */; }; + 1F68AEBFA6411A3648DEE6669AE1A03D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF8EAF33D5D5CC838E23A2C3898E9890 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F7D45563AC337CF84791FE70DFCCFCA /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = BA1BCD15C886115848BAF1A732DCF3F4 /* BugsnagConfiguration.m */; }; + 1F93B9D5FFF2B89EED6DC77A368547C8 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E7347770CE02EA9D6290F06160A89555 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FDC692CFF1B03F7C1C880B489F9427B /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9872016D9ED5AE2B10EFB1FCD2016A24 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2C3BBF640A90238FDCE88B9F4BDA1 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FB2D86A108895FD798F3CB65A1BA97D7 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1FF8EDDE0E2AFF348021E61C8293D0D7 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E584394E9D48C593E4B7909B5016C90 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FFE812F135FF3C50666B45174BBC0E2 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = FFB5191F2A89F10A824157FCB2185413 /* GDTCCTNanopbHelpers.m */; }; 200022E023C1CB715FE8A63069F76D71 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB8E96300577ECE5B570C0DFE8BD5A2 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20151875DA84E676FF35DCED3A7A3195 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B5250520068FC5103D996162252BC81 /* BSG_KSLogger.m */; }; - 20336A04ED1B98DA45740F4813143264 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F3DE190C3FA138C587BACD123B09B9E /* React-Core-dummy.m */; }; - 203738D3CBBBF2E005A4FF6290E3F55B /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 547D4BD65F5EABB7DAE0E723E8192480 /* RNSScreen.m */; }; - 2048B5F70FE9755346D6EBCB701D32C6 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D37ED9655C0AC612D334C2CB60EC0FE /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 206265BE57065E67AB6152D5A0D3F769 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C5491EE4ACB398BCAE280CA7D30FDEC0 /* QBAlbumCell.m */; }; - 20733D14F57EC1D66F096E5907D5D246 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAC0DE1B2D16D2F3F98ED0C1EE70784 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20BB52A2F1EB699503EFA842EA5089B7 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 982B1952DA9B1F43AAFEF3D3910FFA2A /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20BFBC9823B897A4F91DDF756E204605 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = FE4AF122A0F1F74C6FCA07D2E1213969 /* RNSScreenStack.m */; }; + 20151875DA84E676FF35DCED3A7A3195 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B7FFC3846F19EB3FB254BFC9462554 /* BSG_KSLogger.m */; }; + 20336A04ED1B98DA45740F4813143264 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E84029E7046DCAB5249624A842FB1E7F /* React-Core-dummy.m */; }; + 203AABEE5FE23897771627ABE96A862A /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC6565E046B8FBA5413F782860FE946 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20BB52A2F1EB699503EFA842EA5089B7 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D2C12903A2D6625DA763475473FEFF /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20D2D943E25749537AFD4D44A90B515F /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C3EAEE65CDE17A9B4069549BC2EF2DD /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 20D803741AABCBEEED52F0ECA8D3AC17 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 42509991680C6FDDD10FFE22F9903C50 /* RCTNativeAnimatedModule.m */; }; - 20E36B4DA164ECFAC065F51A9BA0A1C2 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7868C00FA96930C3E277C957D70B9348 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2123B0C18F58FA1B7CFA0B4E01A86507 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = DE419A1AC219E6427737E519E7ECEEF7 /* DeviceUID.m */; }; - 2155A43BFFEB6A10A9AFDB8CDED37E7E /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D278C02A22313007EFE6AC57486A6B89 /* SDImageAssetManager.m */; }; - 218325DE22BD5A0E948B79702E769793 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8593DBD017822F6D970D1829CB6D34BA /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 219872C757F207F7B935358706E19215 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 756FC505BAD21C7CA268DEB80D48AE8E /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21A7B03038615161C7777396EA546882 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F170CEDB89733511DAE42B07464938E /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20D803741AABCBEEED52F0ECA8D3AC17 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A73FB727E98DC69639C199573680DEAC /* RCTNativeAnimatedModule.m */; }; + 20E36B4DA164ECFAC065F51A9BA0A1C2 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2EA136497E33A9AC0A1B21C107F89F /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 213B5C41BEB7BE515CB96BFDB174FB90 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A5C36E7B1FC34C9FB805F85698FE08A /* Orientation.m */; }; + 218D16481EA6EC6EA0AECBE303D5A7B7 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = EB77E5A413F54BB70EDDA67444BAE1C7 /* RNGestureHandlerEvents.m */; }; + 219872C757F207F7B935358706E19215 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E0DAF39DAB7C2ECA8C91B6B7FE9018EF /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21A4F88EA944FB62021863EC8BF333F8 /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 07618BCE42BAAF60ACA8D512673C99AE /* RNFirebaseLinks.m */; }; + 21A7B03038615161C7777396EA546882 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = EA9600C365D12902EADC970E290E609B /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21ABF1293012F0600F05DF3D7ABE5928 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E6596BE80EBC4F14B569C64397D7F41 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 21B1823B4F7EEFEFF94E2D5D2E4F88B1 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C78B6949BAD6F74209708D6BC3BB77B /* RCTMultiplicationAnimatedNode.m */; }; - 21C017762C52CF9F15AB40ECA3C96F1D /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2009DB4374CA5FA1CE6320D16B46D5DC /* UIView+WebCacheOperation.m */; }; - 21EC7D3AD60270794C1F393D994EEC4F /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 93597116FF65E74E5A812096C5E499DE /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 222BC3359BDB41AFD82AF7A94F7130A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = F9DB1D3DA2A6C16CA3AAF05321F790E0 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21B1823B4F7EEFEFF94E2D5D2E4F88B1 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F21E920ABF45D0B185C49B87B8E9DBE0 /* RCTMultiplicationAnimatedNode.m */; }; + 21DAD634A162855EC39EDDA9D205A5C7 /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C74627B91DA291B298A63A8C900A47 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21EC7D3AD60270794C1F393D994EEC4F /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = C36EB0463D8B3C8F17F5DEE34B7DC70D /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 220D47C54542BA8D670DF2103827EFFA /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 66364A744C28DAB70F06227882B968D8 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 222BC3359BDB41AFD82AF7A94F7130A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72C9BBF114539864724A8E898EC59A31 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 224D745280FCB0F98B5244E78ACF0C22 /* SDImageGIFCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7212AAC51502DF738D2A093B0A145F /* SDImageGIFCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 227805B148CA0C4BF8EFAC91EDFD6358 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F17F66195F90A22FEFDFA62750F5F7A9 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 227E798F6EB67F02AE3FB6227E466D98 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AB3E1CA524C470AC4217C4A2146926 /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22898BD6C6A490182C188A14C72195AA /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 10F68CA9DCBC690C63964DECCD314B22 /* BSG_KSCrashDoctor.m */; }; - 228FA2CC8D3E1CAA67EF260E8554406E /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4F829A504F4267C40CE4DA3ABBAFDF /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22FAA1B26678CE5F1136E9A5A176E08E /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 94EC4676D746CEBAC2B3D1B47E8FA399 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 235DEDC64BFFBBEC3DE12FDC75C14CD2 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B8A5BF371C0114C6937ED75D230CFF /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2378EB7E01D4412757F8F07418C29BBA /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 1727AF9D01B46FFC15218621D02E85CF /* UIColor+HexString.m */; }; - 23799E446B950AA351526E43606AAB8E /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E95A35F60D69F40CFFA03284CCA52BF /* SDWebImageCacheKeyFilter.m */; }; - 238CD3F07FB8607AAAB68D773D34A0FB /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E48C528D89C280BD3AB34ECF081E506 /* SDWeakProxy.m */; }; + 2280C2F122A895DCC670817C6586974C /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6C7BC478AA059CF44CCA9A7269C7F2 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22898BD6C6A490182C188A14C72195AA /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = DDAC0636DE0F5CDA1FFFE08CFD103FFC /* BSG_KSCrashDoctor.m */; }; + 228FA2CC8D3E1CAA67EF260E8554406E /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B09883C0F386F535493F7806BA1F20C4 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22DEDE84CD2BB002719CE704F02D6571 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7181FFCDB07FE21BE0EE00B5DF442033 /* NSButton+WebCache.m */; }; + 22FAA1B26678CE5F1136E9A5A176E08E /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA5D3CC034DFF3C1776F1B1D54273F1 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 230536FB531E42B75DE938216E0B4A48 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E589582FEE02117FC9758AC0DEBD00F /* RNSScreenContainer.m */; }; + 235DEDC64BFFBBEC3DE12FDC75C14CD2 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FE13FBF385238AD0E9516E1D2826CB0C /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23BD7EAF0F4EBEA12B17AE7D21D916DA /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 87BD2F49DE7E2ED41B26A69441613E75 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 23CD96C7D759A55731330F17514FB6C5 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 27E1A0E2ED1633F5BA5D969D00EC6437 /* RNNotificationsStore.m */; }; + 23DC3E29C9A047B1CACED2889A48851F /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 50EC88EFB8C300264C2A2020EECAECB5 /* RSKImageCropViewController.m */; }; 23E4A832066FED70A4A478B172974B17 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = B8198475A46AB05337E09F32DDA7B688 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24174D8D5CD72CA405B3E3AD0B8F3E21 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B6CCD6199BC227927A6F66F1C4B676 /* UIImageView+HighlightedWebCache.m */; }; - 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 52A41A09B5C123AC7E1D25A7572213D7 /* EXPermissions.m */; }; - 24744C5D4D80FF99FB6FA6798B38641C /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 33868CCAEA36C4164842993DE0A7B7E2 /* Color+Interpolation.m */; }; - 247A9E9CF0E893DE72FAE7DFB705E4A9 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = B1DB15BB39EC55E9BE9ABA32FBE3BC9F /* BSG_KSBacktrace.c */; }; - 24BEB560496E83ABB594F3692A139BCB /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B03B0F011C6418C760A3B1B2B5B7040 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 24CFE3F163F2285C7CE86B37C72E419C /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8F40ED4B8DB656E8E4D90E318F6EBCCC /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25174F9577BED818DEA7540C3B43BC0F /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 832F33BB9356CE8887733816F8D458BA /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 52F78D65F8F0C11A200896B1C379361D /* EXPermissions.m */; }; + 247A9E9CF0E893DE72FAE7DFB705E4A9 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C34C70B945C16DEEB4BF17134782780 /* BSG_KSBacktrace.c */; }; + 248C935C8CA657906423CC95872921A9 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E75BF06105F11906E395759D1B7F66 /* UIView+WebCache.m */; }; + 24BEB560496E83ABB594F3692A139BCB /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FE031C31C8DAA0D545D0A5C1A575386 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 24CFE3F163F2285C7CE86B37C72E419C /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E6339AF8D32C284615ABD60F19D6843 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25174F9577BED818DEA7540C3B43BC0F /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 179E0F504449D617B1E490EC257603D5 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2592A5FF8A7EAACC26FBC400F2A39805 /* GDTClock.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB8AD90DE687544934847BB70635A54 /* GDTClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 259805457533172392A5D7EAF6541D6B /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8846E321D64283AA8C5EEF8EE8946F4C /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25B6AA1A5C7DE1B7518DEBB5D07D49F5 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7D5E3122E62E78BC0D5EA543988BCC /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 263CC56ECD5948F66B7BA1AEFDB8F8DE /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 64ABA3879AB446D6747F4DC018C6103B /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26AA5B066B730D0F6F733A9E922F00F9 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABF1C45E3B917DA6FB90AECC87E5FB6 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26B4845BD2D231CE0B368EF69EACFB77 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8076D4DB53BCFF4AE4975947CDA9FD4E /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26E76124D8AE731E709944BDF41DE1C3 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 441C288FC0F7C3B684CD3D568C937A6D /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 270957F405168211B69298CB2048DF0D /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D1075DE43CDB5C7CB5E41A434FC56DA /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 274D9970103D0A9DDFD618AFA55A364C /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 386FAEFAAF857FCE9BCBE455D79BB0DB /* react-native-video-dummy.m */; }; - 27AB228480E6FEE3D4D05D7B9DA31780 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 75DE36372A79B62FC7ADD1CBD543774B /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27AD52F67B0DCE2212BF541A9603B232 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 589FF376BD101E878B028C2FE67D1328 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C6A9607C7B95306DDD95F8E59D6CB3 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F57A8D2F3D76B8DF5B306BB77E540A2 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 259805457533172392A5D7EAF6541D6B /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 534D7ACB0893DE48DB96946D0824C62B /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25B4597A80699674845DE10B8A363AA3 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EA2E75DC4A1F7259216E29FD996F251 /* react-native-orientation-locker-dummy.m */; }; + 25B6AA1A5C7DE1B7518DEBB5D07D49F5 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DEC88E501155A55D21E40A2250752EB /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25D6423D05628295070015630BEB99CB /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E711F12A7778155AA71445D0BB91459 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25F5B7E13A9D75A94558829D24246DA0 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 628E51A7BD16C5CFF917D293A4F2BECA /* UMReactNativeAdapter-dummy.m */; }; + 263CC56ECD5948F66B7BA1AEFDB8F8DE /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EED36E8F5441F344FED466E5AA34306 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26AA5B066B730D0F6F733A9E922F00F9 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 93B917336C8F7FC127EAD9E347AECBA7 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26B4845BD2D231CE0B368EF69EACFB77 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 23177127D8E403DAA312B40339D82EC9 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26BD67C36AC0B3FE0DCB1634A656CF76 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FC82B5B1A0236F69A69409D79C1E958 /* UMViewManagerAdapter.m */; }; + 270957F405168211B69298CB2048DF0D /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DE36BE3FEECB26B2EDCDBC30AD1652B4 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27A35734C77560A976F6FEDBCEC1F7A3 /* RTCRtpEncodingParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DCAD8EFF2850D407895A7833EEF71D1 /* RTCRtpEncodingParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27AD52F67B0DCE2212BF541A9603B232 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 96E095031802DC9A4A67D7BF1BB0D531 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27C6A9607C7B95306DDD95F8E59D6CB3 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B0BD4070FBB6E605992207B7050DD6 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27CF157255C447A5063775B5BE8A7CCF /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 610B0A128056CC6126A005BAFAA887F6 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2816AFE7D0CEA6D240F30639E6F330BC /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4890A430C0D350B24542A4C7BE7CF8D7 /* FIRCoreDiagnosticsConnector.m */; }; - 28460F084E3F76CAE4A73405858D93D2 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 144AF412BF03B8797DCA6B75F0087BD5 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28509E4C531B9CF32E2EA335AF0E01C7 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F711E618AFB99B1074C4BB7E7C2A6D1 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 287AF10671D2CB0A97D051B3DF0EA3BA /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DBA79567BFC8570CA5FCCF2CA4E0CBE /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28894DD65A1ACF39176DF0720AEAC829 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = B630FF2DC31E86AC40045C8704D097F6 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28CC9D12382FF2F86C71C861D4B967D3 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0149675F0F21F3EABF4D592ACFB96604 /* RCTDiffClampAnimatedNode.m */; }; - 28E800F897C3FC5D0D8BCB0A35CF5986 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = AC84951035D72C1A26D9A6E65F9543BC /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 292653AB33866D8BBF8978D3A44668EC /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B4C17265845D3D788017B88D99315E6C /* RNVectorIconsManager.m */; }; - 2A4FD22248D4B1C68D48C3CC742B7702 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = C60C5CDF1BDE9184719076C910CC69FE /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28460F084E3F76CAE4A73405858D93D2 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AFEA8EF3D28B8368A352D296AEA4834B /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 284A87802CBFFCD5A35B76BF9FDBF7A5 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF1EB58F6F34698245B14140006FCBA9 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2876A66E34F2898CB729FD9BDA6B3986 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11A9B3E8A0B9380C3C118DF982859E6B /* UMNativeModulesProxy.m */; }; + 287AF10671D2CB0A97D051B3DF0EA3BA /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA6929DD4698DED8181AD050A4A4E0E /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28894DD65A1ACF39176DF0720AEAC829 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E71B5B22CFDF5D7F07394422E1E362 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28CC9D12382FF2F86C71C861D4B967D3 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 89A9B5EA8A4FE3100AA1130113C19B7B /* RCTDiffClampAnimatedNode.m */; }; + 28E800F897C3FC5D0D8BCB0A35CF5986 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AACEE473EABB3E7BAE6A0DCA59D72BA /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 291F7A47F7A60853D3AD66DCDA4C52C6 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CE33BF817C0622B5A31829C31EAFE0C /* RCTConvert+REATransition.m */; }; + 295E36A5962D919988DCDA0CB48FF003 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 380CCB205AD58D38D896D39336307311 /* RNNotificationUtils.m */; }; + 297C3DE32FD905BFD7F109592E60872F /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 390974FE43F3FBD01FA46ACE3064E00A /* UIImage+Resize.m */; }; + 29DB1E0F5E4837F8F007CC7EC63928B5 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B23B72E3E9635ED6CAC46AD3E9F26B79 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29ECBD01B8E360E335C500ACE0BB5532 /* RTCIceCandidate.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B382897FF1C7E4442CD9DB771113D0 /* RTCIceCandidate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A28D41EBB4BD93F3E0EDEA853C588C6 /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = F2FD8C660F36827E09952C3F55FA7319 /* RNFirebaseUtil.m */; }; + 2A2E1B610CEBBB681AD49E219845947E /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F80B131E19A371E0D0B3CE5FED5DF94E /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A4FD22248D4B1C68D48C3CC742B7702 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B2AA7C7FE094946BF3612BF110A6CB16 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A6007CC43D8EEA9B2BC68DD9C588117 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 99A30B30F50E663C4F6D01DCBC7D90B6 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED17D141B6E83F16279E3667ADD94BFE /* EXPermissions-dummy.m */; }; + 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE944973011F45968E9D5109C976856F /* EXPermissions-dummy.m */; }; 2ADF07B96AFD642FDDA0273C3FC90A9A /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 20FB7B4A045FB6018B76109BB4402D2D /* FIRInstanceIDURLQueryItem.m */; }; - 2B29AB6096D2325C885CD80370523BDB /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA9730B7989374CA918AD32D3CD21C0 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B29AB6096D2325C885CD80370523BDB /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F609AAEA9F899181439682595E51378 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B41C516647CF9EBCA15C1CE6785B400 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = D74D79A21F2BA3836B6CB5FCEF6F89A3 /* RNFetchBlobProgress.m */; }; 2B7BBEE60DFC6B43E93D0A2BBDBD2FF8 /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 86F38348289EC83B5F2C73681AD30213 /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B9B78582BCAD033D984994F34274287 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 071768A3EFC150AC3C110ECED47803C1 /* QBAssetCell.m */; }; 2BDAE2BAA48D3C6E8C983C126D1FF6D3 /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A2669F9597361BA03540DB202E45107D /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BE321A08DCB8BBD46BADC0025EE22AA /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B738F4714318AD83C2F8E180A38C687 /* BSG_KSCrashSentry_Signal.c */; }; - 2C0B315F1D7A604892D85EF49CE6C88A /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E589B89DC6C6FCB4A178CD809A1586C0 /* SDDiskCache.m */; }; + 2BE321A08DCB8BBD46BADC0025EE22AA /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F8D0A17FC7CBE3B7CC5ECA0B8F25E27 /* BSG_KSCrashSentry_Signal.c */; }; + 2C276FF50A886B896E0DEA9515199F14 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C871A964EFAF5A7E82BF98AE2B5847C7 /* RNCWKProcessPoolManager.m */; }; 2C2AC1E8B0605625D9F2D5B5D3480055 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AC5E310FA30ADA42244538FD8256084 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A380BB44C05BD28C672F3AC9C260DEFD /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CA5493399B2CD2BAD56C41D041C2AF5D /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C586C70566886B4B013885C0CA1830C /* RTCVideoCodecFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 664EB23A215D72FC386F71B8B23C74F1 /* RTCVideoCodecFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2CBE448FB6CEF4C98AF0A90B1DAA3E22 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = AFFEC13D0BCA59D868F6841E4FFD6AF1 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2CE0C7567AF4A09430A5DDDF611EF558 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FD29D0CAC629DD94B999810B589DB4D /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2CF3B1CA636A10BC382B517D2E20EDCE /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 94779791BB17904347B9F2271AD0F69A /* RCTMultilineTextInputView.m */; }; + 2CE0C7567AF4A09430A5DDDF611EF558 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 66282CC25CE5CF9867F0DC426FC30091 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2CF3B1CA636A10BC382B517D2E20EDCE /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 59FF9F743F83CEF089453F45ED782049 /* RCTMultilineTextInputView.m */; }; 2CFEE3C68DF30B10733EB873C39AD7CC /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 592BB6B8234B8E4CC08CD548972BD2FE /* FIRCoreDiagnostics.m */; }; - 2D1D7C9433D6D2A3D6E2CE3409BFC2F8 /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2153130A1DCD2B3B7599744746016F /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2D335C77E861724C6239BEA0F3C1046D /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F417F46A3ED83BCAC4547B2810369C6B /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D7CCA60F3812FE710C404A3A1037B3 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C4A59C4F599178735D04CF0D73BF81 /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D1D7C9433D6D2A3D6E2CE3409BFC2F8 /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD5AA3AEB73FFB5731BBE3E5999020C9 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2D335C77E861724C6239BEA0F3C1046D /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F017BA08D7BEABC19D1603947447626C /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 191492EDD0A710746DDDF0581988A1C4 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A706FA12EC634053D401167E5F064EB /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D896DF53BF02900EEBE7B44B48E896E /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D02063967146D6A0A42CC7D323EC60 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2DB4F42CEBDC24A79C3C19B323720090 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BE4DD9A3A0342A8E44650599C2CCF76 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C820567FB5E7201671DF9C5A4611EE /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ECB11388242E6E0A18C3BA3601B6723 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = EE01FB5BBA7D8DE2402936C8A239449B /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ECC8421ACC3C27F7A9F42A1910933CF /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CB012032E08EC9F3AC7C1DE73671A9 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DE24ED37994ABCB4F25C3EA7AC43AA5 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 67E4A304656CD956CFF27C72818BEA17 /* UMReactLogHandler.m */; }; + 2E2E2D9224E54C8D2E503872A135F664 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE4EC581FC8ABD5F70E10BA7F595D5B /* SDAnimatedImageRep.m */; }; + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = E593FD68DA7C2F1CF0AB6B6A9EA4CFF1 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E4B53C220019DB80418B90BEA70F7A8 /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED70F9394E98E77BFD97373B58EDC92 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E815532623C25EB5AF9F155C381E2F2 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = D0402B22E068B37EBC11F3CBC625397D /* RNFirebaseMessaging.m */; }; + 2ECC8421ACC3C27F7A9F42A1910933CF /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BCF26E3672EDBA23882856B903F4EC7 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EEF2428BF4748087D8E774D39E0A4F4 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CB474847C01C8226B45873C974C8A65C /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2EF643CECE71681010BE8BBAF3FECC37 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA6361228A7002B6EF6CB1771EFB562 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F18BE81ED2899EDD12C6603BC4FEF60 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 16EB02BC73457919ECB8685001CAB565 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F9D2C82C8E2441CEEC88EA5653EEA7B /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 35BC20407CDBBEA1988558AE41841E7B /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FBFD71D1FB4D1A76ED5A5B0A6AD3A74 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = CD375913032DE7CAB1F6C2DB3A3E6795 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FC04BB7A3E1B56D6042758C6AC9B6BE /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4047439D1B1C355741E5E13B770189C3 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FDCBB5EBA5D00259C90D333E89A517B /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 81ED6A414B8E02B39CC67553BB9F452C /* SDInternalMacros.m */; }; - 2FDFEEEEF4F999881A86E549368366D5 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 823DD12AA0380A017C2B16FCEE027188 /* RNGestureHandlerRegistry.m */; }; - 3007A030A2D1AC074FCCF4FA35D6F0D7 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 57133A36731577FA629730FB88C32D9D /* RCTConvert+UIBackgroundFetchResult.m */; }; - 300C71ABFD378A1342C940BAD49E48BA /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F5380D71214BC40A7BB2F2B6A1378F25 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EF643CECE71681010BE8BBAF3FECC37 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF51A116DCA3FD9BD63C566B1D55800 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F18BE81ED2899EDD12C6603BC4FEF60 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C95C352DA802B3BB59B579F0C452227 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2F1EA2AD0F06316D09CABB00DB1C3719 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A5FCC6DF3B0426A53DBAF6CD2F0B5A38 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F44D6D4E4EE43A5F7664ECA00647EAF /* RTCDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA1905B5AB801F66698FA96C524A93E /* RTCDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F9D2C82C8E2441CEEC88EA5653EEA7B /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C68B468AABD01F1C885CA4D226FCF15 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FF02EEA09058F30D90EE1C2C6909878 /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3DFC03A6CE159EE38DED045C0F8380 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 300C71ABFD378A1342C940BAD49E48BA /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 84CF84C3996F5690CDA695C6D94C72D0 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3011738AF526949E6ECA7D289A8CAA61 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6FED9F0BE14108E4CC6E139F97D40D3 /* SDImageCodersManager.m */; }; + 302C69276013A03BEBD32AD7E81388CB /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AE020CE980797590A8FD394C36A65021 /* REATransitionManager.m */; }; 3059407935B2C8DB01CFDE29A61E1AE6 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 366A71480716A7F4AFACF4B7A4B0F575 /* GULNSData+zlib.m */; }; - 306ADC0052D058C7BF741EED5CE191F3 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AACC3906679263F744C164DFF7329977 /* de.lproj */; }; 30787BC4F5F2D1BF6C15CF616FD2EFF1 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 091519202305630ED4A1C9A45D550FE8 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3087957F46A42FE16055ACB06740A94B /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 427AA6F00532C4BCCA70E1AEE24B51BB /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3087957F46A42FE16055ACB06740A94B /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 13C94E57B0F77AD0C3CF71A0DFC6E6C5 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30A864000DFD77A7772D5F974E21CCB5 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B77D2A8D8C6766652C0F147D7489383 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30B7FADFDC6C72E866EDF0B76639D177 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = FBB541E9B9A01EA3762BE29C5BCC124F /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 30C44A3EC525F17B193F938EAB44F38B /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DADABCE30FD6618D4541E19096F0D4 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 61ACB4FC6EF337400DD4D56201E77582 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 314E2917B93706DDBC781C17CB98B64D /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA81026186E4433C8D58C2CA8868837 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30C44A3EC525F17B193F938EAB44F38B /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = C2D3CCA10AAB146BC367549B4DB206D2 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30DA5709545ED586C96710DC9A8BB36D /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 417F72D77D57E80979FC1FE895B37C28 /* UMModuleRegistryAdapter.m */; }; + 30EC8BC423F1D535FD065D54EE42895A /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DF9D42B9BB8EDD42E86C9D647D3A73 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3115E25FBBF43BB75ABE2B355A3D2520 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EF99D7F00053860409719088A4DDA847 /* es.lproj */; }; + 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E6F0E2607799B0AFA92D955FEF2C41 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31A575CE50A281D0F123B2947B4399BD /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 15668F5FD97ECBA0FB8A0FC54240039D /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 31AF7D875A09DA32C3DBE7FEB60B2BBE /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E9D9900348932901C544FB243605CB /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31D85A912A3BEF04A237BCACA0FB4B66 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E02A24E0E1DB031AD667AAF4F45AF40 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31E54BBF047C0CCC1785723BEE6BE355 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE6FE26D414F8BD5462D9CFF5BBFF0B9 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3202F0E7A54B8400827A3AE7B51C9AC0 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6A03876D41F9E85AD044DDB6F458A4 /* SDImageCoder.m */; }; - 320D67911EE88AD5B553C499F4303030 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A3591B2B8C31CDF6EB6024BA2479614 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 324E51AD3F25DAEFE12D666034BCD6A5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E14810F331D395659C0B8E79300C6FF2 /* REABezierNode.m */; }; - 32C4C455405B9CD9EF755DEBE89A2CA5 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = A76D90B8856DD4E548C6B252E7A725D6 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32E4D073480F0A1E36E4BBFC1B625974 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 068CE9D54301DAF6848DEB439320B4ED /* QBAssetsViewController.m */; }; - 32E684924D741517DCF60217D3427297 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = A2D5C5DF3E1D6324CEC904F0169FF0BF /* BSG_KSMach_x86_64.c */; }; - 3300530D1F100B23D3B8F21426841731 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8529DCF7E86805C170FE18B61426189C /* SDImageLoadersManager.m */; }; + 31AF7D875A09DA32C3DBE7FEB60B2BBE /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B81B5C1E9096D7C7C3655525CE908F99 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31D85A912A3BEF04A237BCACA0FB4B66 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53C97244F03E5FFF4AA21A33AB0783EB /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31E0FF38DDF15FD14E1BDC2C357BE242 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEF7ECAAD5F05450BAB832A516AC698 /* LNAnimator.m */; }; + 31E54BBF047C0CCC1785723BEE6BE355 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FAFB3D0B4EE3F0E233FDA708A703184E /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 320D67911EE88AD5B553C499F4303030 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A9C3703C2057B7C7649A7885B80EFDD9 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 327D35774D087787279902C566ABD75F /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E1AC173553BFDD838D58A54A2D1E42 /* SDImageAPNGCoder.m */; }; + 32C4C455405B9CD9EF755DEBE89A2CA5 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0015424B4C2B24ED10E15274B1AC32BE /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32E684924D741517DCF60217D3427297 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FE5515F93459BF4867381E736FD2BBB /* BSG_KSMach_x86_64.c */; }; 33062309584EE5CDBC69FC6DE862E033 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 571450E9D18ABFBBE1E0C3790D7FB52A /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 330A1B0D5843F9EF53903DD77EEFCB30 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D23BE6A82E82097A55B45FDC71F33F14 /* RCTActionSheetManager.m */; }; - 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B607395F3DA8AC5AACC8754B8DCC2054 /* EXFileSystemLocalFileHandler.m */; }; - 331A960C7F8E6E38A96D45485759A253 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = BBCF8786AAA5F34013AE1B494BB51696 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 331C1EA6BB9CAA60E822675C146FDCD0 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE26F74E4AF68B412098BFE43F871DD /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33397870CAB91081A53C471DAC6C0E92 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6126CB937F3D420A8BA73CFEB130797B /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 333D5D10B478BE4FD3F442974C84840C /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 95326CF9943793EEF3C483A2EF154EFA /* SDImageCacheConfig.m */; }; + 330A1B0D5843F9EF53903DD77EEFCB30 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 595FA8DAE4B0E00DE93A8D96F0C31442 /* RCTActionSheetManager.m */; }; + 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D947C3DE31525BAD97767A58A3C736EF /* EXFileSystemLocalFileHandler.m */; }; + 331A960C7F8E6E38A96D45485759A253 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5973698F85A9B2944AF7A3EBCA20CD7D /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33397870CAB91081A53C471DAC6C0E92 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB95C45B4D52F822E712B34073E57B1 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 333E72A60BAFC9EB250C17222C7023B5 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B371CB114CA324DEE1CE9661DF246F /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 335029A6D67395F3DF335ED8328DCDF9 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1418009FC5641E024FCAA026F4B09937 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3354D8B4BB60FB17E7772B63D789D6D8 /* GDTReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 6692124A109C0B6DE0A64CDF4BDCC3DF /* GDTReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337D56ABE8516E491805EDA094DDB786 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2092051B4577548919F24B8EDAD80932 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33B397A491573D7FFC9D852E1BCE6AD7 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 161026034B58803B83E2A3180D0267ED /* RCTPackagerClient.m */; }; + 3395C03FBEA5BB8E2C6FC9F2136493A1 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = E2291D8D25BAC35D0DE563E75BE219B0 /* UIImage+Metadata.m */; }; + 33A4C7EC36459FB61654FB7A5FF0637D /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 44B62C15CF4A2A52E3565E5BFC105E3F /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33B397A491573D7FFC9D852E1BCE6AD7 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = B565F3F58DB6CA7CF8D1B9CF42E0D60A /* RCTPackagerClient.m */; }; 33BFDF34CCF06F27AF5A95AF3D3A8CDE /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F496EB4CC86E6446BEC31D05CF5AA7A /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C91DE5F2A63897008170423C191BD4 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7E913B7DB653BD1F8EC1EE6EA833D2 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33CB5D3DD385D4617604E912AC04C551 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 30FEAD4E0D7A410C4D7FED571C4FCF6D /* RCTNetInfo.m */; }; - 33FB4C793549063B310D0086DFA7B2EE /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 496BE24B5C97257D682A8ACCDCCBF9DB /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 343AF22D91BE72D9902D9855CD2B8262 /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F6B49EF727948F96ED21F137F120DC7 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 344BE6F09C7CEAA2BCF5D319EAD98149 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BE6D5F11E8147A1D317860401A4EC7 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34952F8E3CA3C8FA963F42273C01A5CE /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 260E2F5BAD367E98EC136C7DB4BC2598 /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 349A61D90231B268304925F51675C39B /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4224B07DA506BC860001A680740B75A2 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C91DE5F2A63897008170423C191BD4 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E996C00E6315F0A32105C5D96D26ACE4 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33CB5D3DD385D4617604E912AC04C551 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9148899A1C48889C61F22524C7F50005 /* RCTNetInfo.m */; }; + 33FB4C793549063B310D0086DFA7B2EE /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECAECEF6E93CB8910FD7EF1C03CA0A8 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 344BE6F09C7CEAA2BCF5D319EAD98149 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8EE343D625B06EA1359870A66259D3 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 344D02C5B3EB084CA9A55D857AAE9049 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 71B1BC4520D3E182C3FB3746546C6D19 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 347C264998DC72857235F4AB90A3EDB3 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BF84187B927E6587B1AB9337C53C71A1 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 348E5541EB142FB68EA5CA415B0C2156 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B342CA448230FE40D533E094A5473B0A /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 349A61D90231B268304925F51675C39B /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 456518C68EA541639430AD19FD27AB1D /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 349B8E6465493658CF6AF3C28F8E69F1 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C57F3A256584CA86343D5E7BF998DCB1 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34E1BD0290A0D3B1AA052F0814268BCC /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = C75FB754E99D40DEA7EE8A05E0D825D5 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 34E1BD0290A0D3B1AA052F0814268BCC /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DF2337CA7EB4EE540AC9B179143C76 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 34EC45D7E05C7E544ADCE54C82C7F815 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 71DFA1CB287620B31E51EE5A44A4CE73 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 352DDE54B549113E3DB59E73F7B139E4 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = AE9CE3CB663482A892F27575A515878D /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3550EB71EB3F679494CD0E504854D13A /* React-RCTWebSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E39601DC32AED5FA5C910CF76CD429F /* React-RCTWebSocket-dummy.m */; }; - 3593FADB1DA835EE0ED412371AAB48AE /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 84405484AC1937B8E83364CE1E8C457E /* SDAsyncBlockOperation.m */; }; - 35996B2310F557AE8D8C6E209029ADC1 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F04D40C834DD098055F62CC27680124 /* RNFirebaseAdMobNativeExpressManager.m */; }; - 35D6FEF90877AC0ACEB42164AAE3F3A1 /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 30378C6DC967F17DAEF2B0AB16696398 /* REAModule.m */; }; - 367448A77A3D04F53F5D21C9D68FD6F5 /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 395B14AFCAB77323B9CF0B090F8000BB /* react-native-keyboard-tracking-view-dummy.m */; }; - 36B1133DA7D823138FE3B8E7EC7248D3 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F2801E4F38CE0E080B6A193CB4977B4D /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 36BFE1658AC12B4AECA3993E6F98922F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F3669661A845757A8517FA6D29D614C0 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34F5A26BD74B5EEB1589DA0EE60DBC9C /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 384457842B583372BAD8730A0FD0DB1D /* RCTCustomInputController.m */; }; + 35175A266E460000CAE96A030F17082D /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1023B75FD36E217E9F76D168FDBF8B78 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 352DDE54B549113E3DB59E73F7B139E4 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 19F4728744093AC4EB67D22D9F3C42ED /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3550EB71EB3F679494CD0E504854D13A /* React-RCTWebSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AA72ED8546908D4F8336C255B8CE4E /* React-RCTWebSocket-dummy.m */; }; + 356C06788DAC08F3313A547170AC526E /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8954E18537096997A8D4FEBA753C6E66 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 359A056193CA0AA76204A4F5B8AF037C /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE7F753D100418B4F0A16876E5708DE /* NSBezierPath+RoundedCorners.m */; }; + 35FBAA61ABAB98027A132D0558D73D3B /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = DFD54D567474AE55EB97F8845FAF3B7A /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 368154A4264628FDEE3C887992C6D289 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = E3BDD9A33943CC2984F2184D6A64B123 /* RNFirebaseDatabase.m */; }; + 36B1133DA7D823138FE3B8E7EC7248D3 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7F0C80F7C41B7C4170B088C06A029F /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36B4BA351E56BEDB4C09EF4F47FEA817 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BD096CE739D36FD26696BB655E78E515 /* SDWebImageTransition.m */; }; + 36BFE1658AC12B4AECA3993E6F98922F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DD47A722EF91DCF7B1735AB023587EDD /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36C08CBA266B36BF70CA1CE5CC9DF920 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = F1AAE41A2F077404E26CB34BDE7A709F /* FIROptions.m */; }; - 36D6C69C0E2415D65232D1F12B1D7A80 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 4107F3D17952B1844437EF41471226AC /* BSGConnectivity.m */; }; - 373979C153E712DAEBBE4BD9F6D4057F /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91EBEA5772BA6ABE9649A535656386EE /* RCTBaseTextInputViewManager.m */; }; - 376A81AEF8AEDB4D58D24E7271FED921 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 74F089722C65606B6E7305A8086286B4 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37C9138B1B28989776B38E58D75B34B4 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BFCE6CFFEB93E37C6C3A066D694052A /* SDAnimatedImageView.m */; }; - 37DA7B7BC1D010A67584BF3285BEA2E6 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 19AF958D2186A57F451EB55740B61714 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36D6C69C0E2415D65232D1F12B1D7A80 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 2527200E25960FC494E4A6EE4F49D34B /* BSGConnectivity.m */; }; + 373979C153E712DAEBBE4BD9F6D4057F /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2AE8294368CA46704CA61C84EA43DB /* RCTBaseTextInputViewManager.m */; }; + 373B57CC9E0FFEC31D4ED566EE652679 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 1663562AA81606F537154F2BE0E1492C /* RNSplashScreen.m */; }; + 376A81AEF8AEDB4D58D24E7271FED921 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6433CF6BBB295F0113AD3FD7F278EA57 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37DA7B7BC1D010A67584BF3285BEA2E6 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB434A3F5C78F02C5254EB8B22F3A9C /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 37DD54840768E12258A9E9EABCB6ABE2 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F80706831D9CA95145FCD5FECD21465E /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 381E62687AB55DF94F2073E8C5A85A50 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = BEB5A2F38AB5C7314A6737FE9E403A51 /* RCTEventAnimation.m */; }; - 38249DCB0B6ED78C5A06B8562A87AB6B /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E63A7FF44151A27C412CA09450D6810C /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3856FA6524A7E27D3DED0D3F3A599204 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CE2B0DF422576F9A6087AD40F075223 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38758797EF0FA9A464EEBB902C49D14B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 57494E30E50D5837D8DAA330CB6BBA32 /* RCTInputAccessoryView.m */; }; - 388FD9D24B82284DBC13AC8D7BAB229B /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 461609907A1877410506E30B95C29227 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3810A6B14EA953396496017943648887 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B07B2CA13B4B5B848AD88AA1B2888A /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 381E62687AB55DF94F2073E8C5A85A50 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 422BACE03FD8BEA099D67A3084258ECE /* RCTEventAnimation.m */; }; + 38249DCB0B6ED78C5A06B8562A87AB6B /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E4E2895C9C8CFD463F3C0D699EE9081 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 382885732B5A2EC415D77BA580FFC2A1 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 53BB7D6F0EEEAC3E41B04BA7FF236BFB /* RNVectorIcons-dummy.m */; }; + 3856FA6524A7E27D3DED0D3F3A599204 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A55ACE2092C7D371CEE79D9B99867A /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38663D2DB1D72D716ECBFF3CABAF52E2 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F90A7EC9B268A42FCEE3A81CBADD7C /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38758797EF0FA9A464EEBB902C49D14B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1F634FF05D78E09DEB789C29E648 /* RCTInputAccessoryView.m */; }; + 388FD9D24B82284DBC13AC8D7BAB229B /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 767DC0CF17388C57F01DF92F3E6D8868 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38AD4512BAEA16C8B031C7DCF55F2A8E /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 030B266A112E8CD26FED4A0262EA0B09 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38AFA02E5E290F31187DF2074FE08998 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFABD9F606FFF0AAB42C508ECD90344F /* RCTBaseTextInputView.m */; }; + 38AFA02E5E290F31187DF2074FE08998 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27AD8BF520C2CF14775414725B065CB5 /* RCTBaseTextInputView.m */; }; 38BBA21348DCF9947155442372A8E735 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B76B06E44B473727B6C76EA4FB258784 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 394C71A7827601E72BE2EA262D0CE3E0 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F114A780B3D3C069081D0BA8E7D03EB /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3963D28AE4FB8DBC48097812CB07DB77 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FDB4254FD3D8874D64792500CB63343 /* React-cxxreact-dummy.m */; }; - 399126FFCE6CAA8AC2C8B8CF1515C486 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = AACE8442704D4B505A0A4220A137B8E4 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 399CB4A86787AA2E44F736D6DFEA8F8B /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E916431247262D1835594A3479EC1E5 /* RNFirebaseFirestoreDocumentReference.m */; }; - 39A375FC54945049F47BCD80E1A2B8A8 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CA34214ADBCCAA8212B15FAFBDA59E8 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 39C0B776C48DAEEE98E27ECD52BADDD2 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A3AE96A6C5ED8CD28D8F9C82C8CAD319 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38E518B9C0F3D8491C4365BCC8327813 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 33896753230233229EE733A3279E2123 /* RNVectorIconsManager.m */; }; + 3923B1296A828A4C29061CE11ABEDA36 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 194C05C6652F7AC6E377ED0C7091335A /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 394C71A7827601E72BE2EA262D0CE3E0 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 333DF5C8901C0CA3FA13054B53911849 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3963D28AE4FB8DBC48097812CB07DB77 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8535D44C10E16DF311C84FA97A7D4E5 /* React-cxxreact-dummy.m */; }; + 399126FFCE6CAA8AC2C8B8CF1515C486 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 217485D701D285E3FE8398A213851E2A /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39A375FC54945049F47BCD80E1A2B8A8 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A7F18F09AF7A31610A85E63FD20DD5AD /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 39A9BC8001D270F4CA5BF5EA8CF64C75 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 65AF7CA0A44A052FABA3C47DD869742E /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39CBC50563C959FB5909CBA64A680666 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D0D54B89EC0AF7E09DD6B2B7090F1E09 /* GULLogger.m */; }; - 39CDD25711ED805841AF7DFABD0D6494 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 29536746E495BAED8B33D16495C0F774 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39EB016FBD05C2F3DC8059DE46EE5495 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 933757715DDBE63071CDCE7D6DBBF10B /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A11F612A4F331F02F085863C4BA1473 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 97BE7330857285D0663B48A8768584DA /* SDAnimatedImage.m */; }; + 39CDD25711ED805841AF7DFABD0D6494 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 703970B1B193B0EA03638143A9243173 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39EB016FBD05C2F3DC8059DE46EE5495 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF37F127140A7FCD3B455BBD7A25A995 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A2CF9C00157FECC985B4C09095319AD /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B0B62E00399B479D6D4DB026943919C /* FIRApp.m */; }; - 3A41FA077417FD269CE763B748DE3D7C /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A7BBCE8C4BD6F6AD850EC71FACF6DFC /* RCTAnimatedNode.m */; }; - 3A47C8ED5D91A66F656F1B5A8286EBD7 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = AFCC463E37675F892EA9B5D0EDD548A7 /* RCTProfileTrampoline-i386.S */; }; - 3B0A7E19FFF3D40824834302B186379E /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = F0578B824AB88A633E790769ED604AA8 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A41FA077417FD269CE763B748DE3D7C /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 90D0331B6ECD67074D5C6B5F153299A1 /* RCTAnimatedNode.m */; }; + 3A47C8ED5D91A66F656F1B5A8286EBD7 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = BEC4B45AF54E0F6C10960634D5E8010D /* RCTProfileTrampoline-i386.S */; }; + 3B0A7E19FFF3D40824834302B186379E /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 70CB2BD39B2EE815B011E6AE54CA7C30 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B3855F510D8BB2023ABFC6A5628A827 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D77B6B010AA1DB5A776730EC6CAC8C /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B61E9B3F96BF43EF89E06DA5468D925 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = EB40941859B6BF085262A4AA891C2C82 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BB7613A3A3B5DEB2C5EB61243ABAF8F /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = D551633C61DEDAE1E3344A9ECE6F793F /* BSG_KSMach_x86_32.c */; }; - 3BED28C0D18959250A500724F6009C91 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 50EC88EFB8C300264C2A2020EECAECB5 /* RSKImageCropViewController.m */; }; - 3C1FE3A886CC9765566680C6EA6BBCD2 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EDD5613930825E2439412B1AE9CF18FB /* RNForceTouchHandler.m */; }; - 3C2DEA0981CFADB14F26EF6F4119E87E /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F45C0F33507F57DFFAD844BE18EA83A5 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C4BBEAE55A37D985320BF5A8F7E3FDC /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 231D2C064C5F9EF7D93CE133E632ABB1 /* RCTDataRequestHandler.m */; }; + 3BB7613A3A3B5DEB2C5EB61243ABAF8F /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = E7A674BAE61E1BEAA7AC93F46D06671F /* BSG_KSMach_x86_32.c */; }; + 3BE184C050573B3533BA2BBD83E0F681 /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2058DBA2C8EF3BFC9BE65BA4184E8B24 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C4BBEAE55A37D985320BF5A8F7E3FDC /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A10BAB773E05B8D2043F607334C37BF /* RCTDataRequestHandler.m */; }; + 3C4F449FB7D6CFC03A56EF9AF99882C9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A1BEC438D22A7DF98D295831A856D62E /* REAStyleNode.m */; }; 3C59E4210B09E27F847CC83CD91DB322 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 302832E989F3265D092A1216B7CF3C24 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 3C9BA4AFBB7B62AF9E19394ECBFA5C63 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA4B7775EE344D3605443272F244FB9 /* SDImageCache.m */; }; 3CE0729079D17BAE2A3F5C0904B3FEC8 /* GDTTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 37232A41056D9A38B04FB3C9A5F784F6 /* GDTTransformer.m */; }; - 3D125653FFE46EB01C78B3A48D7EB8EA /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCBD5DFF45B920A096B9FF295678D1E /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D3370F621F6DFA0176AD602AD92F94A /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = B092A5C8DB0E1B75CD09D351AC7AF52A /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 226EC76186784160590B63A5DFF80A52 /* EXSystemBrightnessRequester.m */; }; - 3D6E61128957573C9E005911F6FDAAE2 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 2180E93BE23C4D41D3003768F5B74EDE /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D8B47D9C716CC0578248829EB6DC67C /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A13922827E0FB27A6DBBD0AED67F1BE /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D8CBA839D0BC20577099A50855FA997 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = BA47E1AB9713F7C4AE14F03CE2D408C9 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DA293ECE7B822B970D030B0AA65B617 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 98473CA72F08DFCE7A232FAC89E9E474 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E08292D62CE7EA5C38906B28EAF1E0B /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 14D4B5810339E99B72028CC6C198D142 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3E2A835EA9113B061B1CD00DB3635E16 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F00BB4995590A35B96498DF60CA47F12 /* REAStyleNode.m */; }; - 3E8A633387B20485385B8880870011A8 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = A31B7AF9D97883D1431BCF0BEBC6A5BF /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E9719AB081FB55507307E9807DC82FA /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = A010434FA9A6A97D0A7AB37C1E34F258 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D3370F621F6DFA0176AD602AD92F94A /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = C03100E86D528B30ECF9693439BA5477 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E8913AF98AB520A5438BB09A0B8C4ECB /* EXSystemBrightnessRequester.m */; }; + 3D6E61128957573C9E005911F6FDAAE2 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 24055B7862CDE08FD4C2B1C7B2FF1D6E /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E08292D62CE7EA5C38906B28EAF1E0B /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 418AAAE033F91FF1AAAA168A66CB5CDB /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3E1E8141D3AF15F12F55CBB61A2CD0F7 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3312D054F2CC88795612F8C6BE2C20D2 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E74460B66C3327E0BEC05AC3E748C7B /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = FE2860C10BB693BF87C92037E79DA848 /* RNFetchBlob.m */; }; + 3E9719AB081FB55507307E9807DC82FA /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 046B20A2B48F6279C48F2BB20DB1ADCF /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3E99FE7532F63DC3F6E81256F84CF3CB /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 84405484AC1937B8E83364CE1E8C457E /* SDAsyncBlockOperation.m */; }; 3EDDBF55FEC78332628B99B7FCCF05F0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9F9138773ED5AAF70DA2EB4951AC9A /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EE1DBA3B7134BCBC311B7175BADB153 /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 764F6BC98EFEF9A12BD84A50019ABE7E /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F45052C992BE4F15342074DFCBA8F47 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 050BB1C4DBF503133093EDCB8E588378 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F5E15218AF798D177E4FD2650FA4044 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7DC408E35B0EA1D63CF2CC4C0865E8B /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F76341AD68254BF13C3742B88E5D58D /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BD096CE739D36FD26696BB655E78E515 /* SDWebImageTransition.m */; }; - 3F8BC43549AC66769A4E9F56A3D0E3DB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0904818E5B39571E02CCF7BBBF14FCC8 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F45052C992BE4F15342074DFCBA8F47 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = DE13118767E25469F83CCEA5C667B83D /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F5E15218AF798D177E4FD2650FA4044 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32BECF54AA22568F6715375280CD41A9 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3F8BC43549AC66769A4E9F56A3D0E3DB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E037AAA848724396EAD18ED5B7C940 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FD619CD7E4DA2CB1F156E46E5096A79 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BB9E5A300AFE1052AB5756082D320F /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FFFC6E8E0EA3753ADCC980B209485CE /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED318455577ABB98B70809E5CB1015EE /* React-RCTLinking-dummy.m */; }; - 408BCE27E4BFF88DD82DA84346349957 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = CD2E395927B92ADF560A3ADB1E8A8E2C /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 40AE675CE30893125F5446DE5BBBFDB6 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4EB5276A860AE284E153FD2AAC347F /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40BEF34243302C5C7AA391CD5C04406F /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E4F5B5270DE0FC81332131F1DE0F85 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40C44021594D6CC64ADE6CE814E4EEFC /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A16B5C1895E6D4C8BB5FE324FB98DB /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C30D27A3C6093539EDD9027961C225 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4143D6E51C98469B56C0869D3C162ECD /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = F2DD3888391C01659627968DE1A6443D /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FFFC6E8E0EA3753ADCC980B209485CE /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C27057AF391381E4DE51869FA94A731 /* React-RCTLinking-dummy.m */; }; + 408BCE27E4BFF88DD82DA84346349957 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9D8B4A1F3F4EB26B330B988D740ADC /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 40AE675CE30893125F5446DE5BBBFDB6 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = F630BF54CBCCA83E82084BBE87635A57 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40B2423F6BC6ACD6279F75AC68CF048A /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A8E47C778C9007546B45026FB68A4BF8 /* RNLongPressHandler.m */; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C603D1FDA249ED275BC654D8025924C /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4143D6E51C98469B56C0869D3C162ECD /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 832F5D23BA28870CF39BD6B771ED421E /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 417DACDC0A7BC5F9A55B32734AF496F3 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 36FAE3621D77782DAFD73A01E76FB8BB /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 417E75BC5FE99415F33B4422E53E4127 /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DD02C6DFDBEDEC38DB9316122DC68038 /* FIRInstanceIDAPNSInfo.m */; }; 417F9C8A3AA8AAC9D60B25C6FB3EA614 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = A58F7914B909B36DF27DFAE5864E4F23 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 418666160A357F2A4D634C13342A17C5 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC5ACAA6C1406984C773E1B77568AE4 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 418D68943B344DFC1E1600D1F313C0AF /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A933ACB6FD67F0F0EE6E1B17D9D8104 /* RNPinchHandler.m */; }; - 419DEE7CB0ADCB4F29391B55C4B2DF0C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = D52E950083CE13D1370CCEB4CFD1A165 /* RCTTextAttributes.m */; }; + 419DEE7CB0ADCB4F29391B55C4B2DF0C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = D12EEF3FE003C43E722F9104827007F8 /* RCTTextAttributes.m */; }; 41B89098A007746270DD180D70EC71F5 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E8E1164F926BA4DC12102F1E2D1D212 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41D1E0B51D0E945795DEA849E1194D29 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F382F201BA7F0C2FFADF75F3D6E25A1A /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41BDD17EC27B3A845348E9103F54B207 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 182B26C838B463EF6E209A217FB54C24 /* FFFastImageSource.m */; }; + 41D1E0B51D0E945795DEA849E1194D29 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F3AE1E67D4C6DF6B00A3D1298E48A6 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41D741B65D9F7255C6C75C0D3D3B0286 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F32DA9E5A6E80D06922422B63DF7F91C /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 41D8858FE972092F3CD14BCA87010126 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C05ECB9067AD66981D934993D596045 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 420287538306B3A90966C04B9A3AB3CE /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDBDAF6207AA1DBE3B3466D2F6E0BC1 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 423390F2BDBAFE1F7C2C79241A0B2342 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3901A8A69B13951CDE4DFE263A071E26 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 426112F7D340323309E90FDCEDB6698E /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E2328ECED331CB4328D470C32D1FE0E /* BugsnagSessionTrackingApiClient.m */; }; - 4267AC843BB23ADF1FA4E72CB640DD11 /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EF52270D8A6FFAE1F8A09E543E9D36F /* AudioRecorderManager.m */; }; + 420372BB5CC7FC5939D6C4EB6FBC45DF /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E83D400CAFE9FB8E89E9898191BFC31 /* RNFirebaseFunctions.m */; }; + 4210636A708A5FCC6CC81CB20010C026 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CAE6DAD24C9CCB2372F25805CE5500A8 /* REAJSCallNode.m */; }; + 423390F2BDBAFE1F7C2C79241A0B2342 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = B09A88DCBF1EFF9247669014E3BFC939 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 426112F7D340323309E90FDCEDB6698E /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = B0CA6D93AD942CC49C6551B0D6CF8069 /* BugsnagSessionTrackingApiClient.m */; }; + 426BCC3BEB0E7BD4FD2C2506ADA0BEA7 /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E176062037BABD7604F0ED249EE0DE62 /* RNFirebase-dummy.m */; }; 428DA569F1EB3E48A5F26F0FF30A9061 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E1FDB18215738E0DFF8669E469DFAFDD /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 42B3CF6337D0168F41E215AF243FE82B /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = CC63BCF403D3C98F6670A4F7FAA83EDF /* RNFirebaseAnalytics.m */; }; - 42BAB1D435CA9D2AAA21480F1F541429 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 82EB86A394648666FE20A10B79C6485C /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42EFF96D875A2A3CA443A6CB8021A9A3 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D7E20A05A096F6E31B89FE40BB28C70 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 42F70B2C1B020FEC94FE27D2B7642E1C /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A24BB253288051A987EF3A18BCE2650 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433901478838FFC2D8D000028D857B2F /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 05979852EE2F81061DA8756F3A633656 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 434E00B0D12D4E19D607278CCE0D1D79 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D7CED947ED85FBC0D69B96B1BD617E /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43B3DE547565167526B675B482CFEACA /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A98F6CDDEF90758CF5F3F9C32D9D628 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 429864740131936D31B72A9F2DA5AD36 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = D82E6144F3F8BB0919C6487481C0E34E /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42A22491BAB5B6901D15EB2D1354B1E6 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B8EBB96CD18005445EDF8B640AC7D07 /* RCTConvert+FFFastImage.m */; }; + 42BAB1D435CA9D2AAA21480F1F541429 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 428A1D327B3327C99AFB3092BB4A1BE8 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42DC962FF8112E02268505B25E0BFBB8 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = CB7AF9F34117C8D3E25E9B39E8EE4E08 /* RNLocalize.m */; }; + 42EFF96D875A2A3CA443A6CB8021A9A3 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F89BE1EC7DD1BDD21694A3D0647ACFBF /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 42F630BE880492119282DC0FA755B639 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE94543A04B8947916F72F33F5AB59B1 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42F70B2C1B020FEC94FE27D2B7642E1C /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 643AE58DFF783D6F5486B3A6D1A70196 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4315839F10C240721141EC70B2E03145 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B27E618D827CB6BB235CDEAF4A3A1EB7 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 433901478838FFC2D8D000028D857B2F /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A81AAD9F4E3D6AC840E8EF02F51943E /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 434BF22F5ABFE26570D69A59B45A8B88 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 595BF48F06D1D9107E6563EE99FCFC18 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 435212C28A98C017597A539ECC5D75F9 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 213DF63C939D5004F0F549DFD51A9FBF /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 437BC907ADF553AE69440114C0B5615E /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 02266FF05B74056727211D8833DE9E31 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43B3DE547565167526B675B482CFEACA /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F70CE3B9D17581E8658EEADF09B4868D /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43B97BBEA60B13CA069319A3757A4EA9 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A04AE81FAFCF6A28988F4C7E777E05BE /* GoogleUtilities-dummy.m */; }; 43CBD73B6409385B3BA97C371970F1D2 /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 93DDCE675BCA4D6255E6C94525287F7F /* FIRInstanceID+Private.m */; }; - 43DE8C497516319FB8A65F50BB8C9B90 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 81FA5B0D5D83E7F786C081EE77DC8BF6 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43DE8C497516319FB8A65F50BB8C9B90 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A230210D123B60E0266F793E604D52 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43E11DA6D060BEADEAD736180B594C36 /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = EE44A3C4F294DCB4F009A3453413691C /* FIRInstanceIDKeychain.m */; }; - 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8851D3968D423E0E68D99147BAF75DC7 /* EXConstants-dummy.m */; }; - 4420180F9E9A5E77E00B88DE043C16BC /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = F998FD94FE72761C495E5BD961F0009F /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 442BBDB5AC6EBB6CEF616CF6D7749B2F /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A518693137C483ACB6FC57A33EE613B /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4482B75F771768A51E19D4AE2A7BFCD5 /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 263A89A7B3E463A823F9F4BF330CCFEC /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F33EEE4847A0B5C61BE4011BA4744F0 /* EXConstants-dummy.m */; }; + 4438D57137950A9796352A5AED48E61C /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D85FA90E11713E0009A994D146727EC /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 443D7B5C46E6DDF879045D68EC9FB6B2 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A3AE96A6C5ED8CD28D8F9C82C8CAD319 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 445779A88841C2103CD90C1E67E609CC /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D6DCAABF437A05889988D68463D3CC8 /* RNFirebaseAdMobBannerManager.m */; }; + 448A276C62C553C3B0FA34B7892F6DB5 /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1750132758DAA705EF1D97893747F807 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44A56E8FBEA913137B22E0F48F692DCD /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2169C0C00372352B960FAA622851EC94 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44FB6A1BFCDEF27B9B786C9A7181719C /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A1175049F88CB8B0F9A99BD424844A0 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 45396AFAD834088E1996AB31384FAE90 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB02082821F43C285C7E0688A89ED25 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4552454BF02E1FD834C531E0BF4EEA9F /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = D7780C0EFBFE669B1E26443CC344A69E /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4581C096EEE71878594E52949FF373A7 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D17E791A9C3CB12EA886E8CD8E3BAA4 /* BSG_KSJSONCodecObjC.m */; }; - 458F8EB1590AF3D2BC761E2A73302CC4 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 48CE6B4E0389DFC22523E98965AC6202 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45396AFAD834088E1996AB31384FAE90 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 48FC4EC24685FDF904FD9467693CF7CB /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 454B8C80CF6281636B45475AA17CDAC1 /* RTCVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D1B2877E06081006E5D690ECAA95949 /* RTCVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4552454BF02E1FD834C531E0BF4EEA9F /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = BE16E82029C2739CE2BAA085DDD41D14 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 455389D21AAE663C317C52E5D086B4FD /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 493DA36EF27F0AC1662EB0FC06A91074 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 456165C36B691163E715D41F0F561FFF /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = B82698878E55481EB830AE41F5792A4C /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4581C096EEE71878594E52949FF373A7 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 11881CDE3F4D45AD418EE4956F3BF4BA /* BSG_KSJSONCodecObjC.m */; }; + 458F8EB1590AF3D2BC761E2A73302CC4 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4EE8187A6E5B9CB1E573816D2969BE /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45A40F884619367E2D134F45E8496BEF /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B14321EE392ADB847052BD5E58762AD4 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AC083CFE513DE197F238FC97D5768181 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FC4B8EBF4CD97A8BA22DB3D40083AC /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1562EABF3CCC4705315B8043543E207E /* RNPushKitEventHandler.m */; }; + 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD9C348D4133723950810542392BECE /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FB507A3D843E9EDCE1BDF49F5391C9 /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A477AD9F5FE54652E31A7ECD230A6A /* AudioRecorderManager.m */; }; + 46049568FF0795838C9A35792AC2D00A /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFF26FBF25613C65417375496B5A684 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4669585F9867B2E2A06EF5BB183C4E68 /* RTCVideoTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = C52200328B125F9ACE61C37168E46C00 /* RTCVideoTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4672288653A12A8ED1BD40835C8CA941 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 580CB2C1FA2261CA43BED95F16C84F76 /* GULNetwork.m */; }; + 4680213B18911796C539866DC922026A /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D39D98A6A9F7F237C9EFD924D44B78E9 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4692A03F476391868C6362ED0C497F02 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E75B60E901ACD0428E5FC4F6F9FFD787 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 46D4DB4D7655C9D518527A43C8BCAB15 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C532307C6FA70A32BF09B2CAE2F65AEE /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 471CC4790667FC4359A56BAC0BE778E6 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83651EB464C89426FF14372647677753 /* rn-extensions-share-dummy.m */; }; - 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA4598C6E21A817589710691F319F0B /* EXCameraPermissionRequester.m */; }; - 47663F0A217827163C37D8BB639CB22F /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = E7282F298669CE9F5F6432FCFB604961 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46DB8BA6AFA62508FCAB543F162DD51E /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D34BF3EABC235B18C1DFC631914DB54A /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B52CD6C85B79F80172D9379272CCBA3 /* EXCameraPermissionRequester.m */; }; + 47663F0A217827163C37D8BB639CB22F /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC66B3AADFB8C8623C691E009396936 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 476E15D7574C917AE318723BF604E8EC /* GDTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FBCD73C563D599E2DE67CBE79D3C69A /* GDTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47AEE83DB849E3C2B4A8B16F935B2492 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C8304F6F6A42886BF8392CA4C225495 /* BugsnagReactNative.m */; }; + 47707D92898C541479CEBFA4D4B84EFC /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9773738343A838AB060E5A45C2550E7 /* rn-fetch-blob-dummy.m */; }; + 47AEE83DB849E3C2B4A8B16F935B2492 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = BB150F479DB4BA90109A2FE65154AF71 /* BugsnagReactNative.m */; }; 47D26569084E23199966F0D962D65D0B /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FBC9DFD2C3DAD553E47628E06BFD862 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4820B389AD6D39B855FB40B6D7E5113E /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 053ADBB70D4ED7FA2589576BA37E2980 /* RNFirebaseAuth.m */; }; - 482C3CEC1565CCE591DE7015600C1F07 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AC6E015E77D9CCA0F136E7CFFBADDF1 /* UMReactNativeAdapter.m */; }; - 487559677C7E26B29CCB56933C0827F9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C3AC517A63BFC4BEE3EC3070C1C20C /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 488123B6785D8E54DBF3FE3B87BE30EE /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B832F1861533347054057F4F575CF1B /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 48854AEE4AB92CB30FED6C801E3056CE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = E7C8F6FEE704A8BA53A3AAFA0CC3C896 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 485343993EE96DF6906AA9AAF1B9B4D5 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8DF8B24F606695A090B67DC289233D /* SDImageLoader.m */; }; + 487559677C7E26B29CCB56933C0827F9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = F15C6C1B4BC29438848DCEAA767C7678 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 487EC46685CABFB6BF3C2AB8177607C9 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 65FB620DC5C3D0E52325F0302200B457 /* QBImagePickerController.m */; }; + 488123B6785D8E54DBF3FE3B87BE30EE /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74F10490F42380830676DB14B93E0911 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 48854AEE4AB92CB30FED6C801E3056CE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 85CF7F9C43282732DAFA120ED02BF0E6 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4896DC3652F0EDE827D0E2B2B781E9E5 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4289A253D51A77E57E304ABD9B76AB59 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48AC3D5DC49DEEB5CAC44256BA5B5DEA /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEEE97BE88DF37E78B0236B8B518E8B /* GULReachabilityChecker.m */; }; - 48BE6199AAE229B7BF47A93029821B96 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 93B244A2ED94A246A69964F8755029A3 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48EE6191381757AFD19271D6D89B3C86 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC45F33A027841E07A79A2CF7C9621D /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48F09C8D76E40947BB76CE88930312F5 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 558AD8A2E3ED8C86D8302AB46DD0F3A2 /* RNCWKWebViewManager.m */; }; - 48F2F5BA68547FC258638C839BA8B494 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFE931B07A9A985A20E831637607803 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48FD91451DA44310A44523825F96B1C4 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 09E3A9A226EE181D5A085C0312C7E130 /* RCTPropsAnimatedNode.m */; }; + 48BE6199AAE229B7BF47A93029821B96 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 60E891188C809F6BE4A3DDDEBD9C582F /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48CD393F65B6A263B4FC86A9DD031D2E /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4935E19EBD256BF18F96A1DBEA8444E1 /* REAEventNode.m */; }; + 48EE6191381757AFD19271D6D89B3C86 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D5956913309B8AC74599643DDB5CFA /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48FD91451DA44310A44523825F96B1C4 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 37A2DE1145CB7CA20CA5B6D7186B83E0 /* RCTPropsAnimatedNode.m */; }; 49249CD83D6535E94344F438513381BD /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7140F68790174D21FE0A2EDA07FF3550 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49DDCB4C3E3998962C6F2DA29BDE329F /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 568AD2C7E24FB8E9F91AB5392B5732FD /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49FFF0BAD28D80741F6F4DFC75B4728D /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 163923AE90A5A8C1E8BFEDB38E4381E4 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4A03BCD6682670A22BA5AA536B090508 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C68332FB6B755785B62085DB326634DD /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A179F67B2211D5A0C4CEFF2808687AA /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37C6E695D617F57F11346E53F8ED8EA4 /* InspectorInterfaces.cpp */; }; - 4A32A296273D110C20DF6DC04E01BB46 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1520050960C45BEBAAC3A3CAB5033F /* UIView+FindUIViewController.m */; }; - 4A635A71C4C46F0F2C9028A9BCB3361D /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = D59E9B2F411A3FC336E3BE39A5A9769D /* RCTSpringAnimation.m */; }; - 4A81C4BF8151A7DAF53FE7125511D294 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B2DC252C8DD4AD33F8D3C78C631406 /* RCTInputAccessoryShadowView.m */; }; - 4AD9B21E810E822A35BBA7981054DAD1 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F4426C51A90A9B4E62507712FCBD0B94 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4ADEDCD89AE5B119F0A6AEA895B47729 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A22904A6B607BB3328CA81EA8BA06B04 /* UMReactLogHandler.m */; }; - 4AEFB91384203AE6A0DBAF5C2664A2D5 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B2C9DEB38426565199167BF76C236A /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AF04CD7C7A366230D118DE7AF1793AB /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA4B69A46529ECEC30F727789756B1C /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 497CF4E9D9A53F6424FCE154562C00BC /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = AD102486D88241996893F8843CA86F6B /* RSKTouchView.m */; }; + 49C00847565023257769698719AF3C8A /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA0BB909E728AE9D3243F615AF4FA77 /* RNCWKWebView.m */; }; + 49DDCB4C3E3998962C6F2DA29BDE329F /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD9EFD6509FD88690B3F115B31DCA7D /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49E446A4D5DD1AFBEFCD4A2753322A1E /* RTCRtcpParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 7708661F19EAC6B9B9809E6F2E79A5D9 /* RTCRtcpParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49FFF0BAD28D80741F6F4DFC75B4728D /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E326436BE27592F2DE15576F164B478F /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4A03BCD6682670A22BA5AA536B090508 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00830E3155C2A8ABAEE574A7A123A50C /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A16F2F59B9F117BEBD80707EF015C43 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = ACF039C83C437FD5D98726E40470D559 /* RNJitsiMeetView.m */; }; + 4A179F67B2211D5A0C4CEFF2808687AA /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 456416B87038CE170CAF2CF1F57AC055 /* InspectorInterfaces.cpp */; }; + 4A205524AE56BF0416DF55A79D568365 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C3048BA25D9C7F05C9E07E5B74D946A /* QBSlomoIconView.m */; }; + 4A635A71C4C46F0F2C9028A9BCB3361D /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9122224A67C7AF0701DBA9ADC88E3FDB /* RCTSpringAnimation.m */; }; + 4A63B4757921D68175917DE52A84CF22 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4535412137C67A162B7B8C204F21C292 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A81C4BF8151A7DAF53FE7125511D294 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BF176078A2EA89A3F2AAA1473CE18BC3 /* RCTInputAccessoryShadowView.m */; }; + 4A9C583CF8E28238D2E780F12177F8CB /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFE931B07A9A985A20E831637607803 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AD9B21E810E822A35BBA7981054DAD1 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B694AFCDCCEFE0DADE91C87E3E47311 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AEFB91384203AE6A0DBAF5C2664A2D5 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F344A662895CDF840CC12AAE2E16FB72 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AF04CD7C7A366230D118DE7AF1793AB /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = B26D74B193D7F36867248A875A5825B6 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4AF533E5A6AFF13467F5968EC8A6EEFE /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E688CAD13A81B50395BF1EF43A67DC37 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4AFD27C4EC65B4527F2AFF3C05621E70 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 21B262D1D12C460BDE15CDEC413324ED /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4AFD27C4EC65B4527F2AFF3C05621E70 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D78B603B040B149AF9158E6D6EAFC7DF /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4B163EB758F5F9C2FC21DC257B9F02E6 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 989E2230828062092C97F0FFA02E4076 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B35CB70798FDE7E4218999504975CBB /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C9799FE0ACF8696D712F656800623E2 /* React-RCTBlob-dummy.m */; }; - 4B460590C328B6B30A6B86BA914401A8 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DF1383FCD6449764B031EF82ADA7DA94 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B68BF84398D90536574DE65F1F36089 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D91EE1B993087FB0C80B9779CE0594 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B8C5600AEB4A4BA28448E784BAA0F82 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B41EBDD1DB022AF9820E6B5214C69976 /* UIApplication+RSKImageCropper.m */; }; - 4B9CEBB534AF8FCE46F101F523358815 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = A29721BB2C019164742577C5A3B5D834 /* BSG_KSObjC.c */; }; - 4BA9046C44DAF98A93FD0D4BE6199C06 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D89889724D01F027B90E56CF346FF4 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BB92A55CF3DEB86B5EFF576D1999D54 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = FD583F477D86AB6F44A447D6DFC2D786 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4BE416C7974E47FE57318E71DE613596 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = CB7E229418479A836A9B5B44E402E61F /* UIImage+Resize.m */; }; - 4C2D9B6E7C57A6937CEC0DC334D9320F /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9FED9006C2EC21D5AE97724FA3F7C34C /* RCTBlobManager.mm */; }; - 4C32DA7CFA80EEBD0B08AD90729BDA66 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 970A7E2E51EEF752F257CCFBD7300F1D /* QBVideoIconView.m */; }; - 4C451FA8DB397547DB04630479B4D605 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07D2888B0638A9DB46C03214D6473009 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 4C88312754491019E137EA0FA45E3A0F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 47ABEC27B4EDA29C63B4EBC64B5BA4B5 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CAEB9BCA2013D736E9B57F5AE42EC69 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5D57898BC951E346ED0DC7B86BA6FA /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CB426042446682BEA36B7E322DE3D59 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F10AB43C1B7496F6A2C2869C8F2D17 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CB7CA5340C7D1276FC38A086FDD377A /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B845870464F200FB55113E01901A34F1 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CBC7CE2B0EE91BB4212188158F97CC3 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 968A9D81DE13F4D10473B1AA30276F2D /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CC0ECB3188CBB5C158B86786EC7204F /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAD81636BDDE142E30562BD036867AC /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CC981164091C665C72F010729DA1657 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 055D9D04754BD0BC2ECD80872CE33440 /* RNEventEmitter.m */; }; - 4CCAE24CDE342FA38E01ED30BA7543DC /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 21618336E6854492D5570E4FF8692E3F /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B35CB70798FDE7E4218999504975CBB /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 53AD96F742031216D199795FDCA006E6 /* React-RCTBlob-dummy.m */; }; + 4B460590C328B6B30A6B86BA914401A8 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 29DB4845D7433C98545BDAAF37678E4D /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B9CEBB534AF8FCE46F101F523358815 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 96E3B33969B55503B0A19EC90C6A37B5 /* BSG_KSObjC.c */; }; + 4BA9046C44DAF98A93FD0D4BE6199C06 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FF34683E5CE2E206D55106B4680A02 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BB92A55CF3DEB86B5EFF576D1999D54 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 238014B21C439A1C3199050625D98013 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C2D9B6E7C57A6937CEC0DC334D9320F /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D2C1594F73125490465C61584369200E /* RCTBlobManager.mm */; }; + 4C451FA8DB397547DB04630479B4D605 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E13839B7DD3DF4506B1A2E0861DBEB5 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 4C5D5FA10F3D17692FB839DF31B2125B /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 32413BB7323EFB9783D21A67686E925E /* RNRootViewGestureRecognizer.m */; }; + 4C88312754491019E137EA0FA45E3A0F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E9D39208209A7BD5EB5CF40EE1BC062 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CAEB9BCA2013D736E9B57F5AE42EC69 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 83925503106211527CDD99FD710F58BC /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CB426042446682BEA36B7E322DE3D59 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CB69376230978E503E51978FB90EBBB /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CB7CA5340C7D1276FC38A086FDD377A /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E452EE71B0D65F04F03C121CE00B5402 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CC0ECB3188CBB5C158B86786EC7204F /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = D39CF967EEEAD5D89855FC52FFD75784 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CE4CA9C98A9A166CDB53B285910E4EC /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 669F51CD7487DC6338745AC748F00B57 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CF5F6D5AEC2DE1E0C6EB35AF3DA51AE /* RTCMetricsSampleInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F75E5C9AE60131C0166782C15D69BB98 /* RTCMetricsSampleInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CF92FEC7E0E43011AEB755E85944BB3 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = CE267DBC21168FCDE00E079886422BE7 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4CFB948C8F809416969AD83CC141DE58 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4389CE451A27C75AA838DB5D66747AAD /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D5EDEB0379E36E22184768FF6024CA2 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = BED8F77941E9853807B379F320762D81 /* GULAppEnvironmentUtil.m */; }; - 4E13EC5CD0F3010E777D440256FC5B8D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C0AA23146B019EB904A9D5D814E1C3AB /* React-RCTSettings-dummy.m */; }; - 4E27F37491CA6E6702A77D638406EEE2 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 01244B1DB2104334E0DDDCA95D73D45F /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E3F29FD3A623757F3451F7937C57F9C /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B4ED747092A1D20754551030B7A387CE /* UIImage+RSKImageCropper.m */; }; - 4E4F9FC2B603C0849A83534455041C46 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = D1EE20B6B030AE36ACF8263B79B368E9 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E550E125A4174B6A1902BE93E6853A2 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 16EC7FFCCD260E58EFD7D18F4F300F68 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E79F0FE6DBB619C0C186C9A8ADCD41D /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 15BE8E11BC039F481D83B22F89DD57E1 /* RCTConvert+Text.m */; }; - 4EB2647C1F0784677AFFAE3DDF9DB8DB /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0D26BCC50CA0C4555A20BF13D4D289 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DDEC5317295BE96A7218F738F89AF14 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 96F379997337EEF73B309A58D0DAE568 /* RNNotificationCenter.m */; }; + 4DF0C6F8B482A3849D2F2C907D732E75 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 624F1319227376756C5B6B817F0358B7 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E13EC5CD0F3010E777D440256FC5B8D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 514471170F50C4E5FD985EFFAB396A06 /* React-RCTSettings-dummy.m */; }; + 4E4F9FC2B603C0849A83534455041C46 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CFD5AB092ECC5B7ABFD6F4966CAA021 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E79F0FE6DBB619C0C186C9A8ADCD41D /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 527730EAA6F1800DF3DEC2D8DAD638F3 /* RCTConvert+Text.m */; }; + 4EB2647C1F0784677AFFAE3DDF9DB8DB /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E38F565AC36FCAB8F8B58A16782FC2 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4EBB91E35415FF423D59491F260E8684 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4865375D89B483266789A58AC5050D1B /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4ED4C9501B7CCB866DCC6FAA7A7C6764 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8B3C09B5FE45443FA32DE24D44519F /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F0079A0F663452E1FC2F08242E1269F /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 595BF48F06D1D9107E6563EE99FCFC18 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F02A913029FA9E33AE25E4FC583EF8D /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 95AB4C65269D3FFB0474273A9AA14D56 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4ED4C9501B7CCB866DCC6FAA7A7C6764 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E5DAEED7D21C3CD3C680F45049759D63 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EE8C041F8805B8CAEAD3E92BD1B073D /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E22F0EC3F0C26A81ECE4A34BA2C8DAC /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F089D7F458EB673D74481E532B062C6 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D7B42939364492227C7BFDFB9DB672 /* FIRBundleUtil.m */; }; - 4F1B780F530F1E4B713F89BFA0755DDC /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E04744137C4DC860143BC52B6FB9548 /* QBVideoIndicatorView.m */; }; 4F1B88A1C4970DF955ECD048D7CEA807 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EFE5A4062EA0BA0B4575FF684292CC7 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4F4416BC5541A3ADE89342D78C30D705 /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2B325A4C80364F2BD4BF28F6F5E273 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F4BC7F90AC0704955EE23E1E1C056B0 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1623CC1317A4C934D6B1D1FA6371BC5F /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F59A408A38A3E64DCCF9718D2E62832 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 28AE5609321AA47365DC1F5784DDC047 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F69D95D4B0383F3474DC0E42AC39DF9 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D9C6341FDAC19E5535D035C9903CE34 /* RCTSinglelineTextInputViewManager.m */; }; - 4F9642C10F03BA006A8426180192E2DB /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 12DDAAF374CD7A23E52FA2B93C43FE5C /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FDED82C197F799296A76563482672F0 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 471FA1EDF6DFEE79ACAA43351E30EE1F /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 500C7A40E8D2210325C598108B541CAA /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 140125BD9A3EB868CAC20EE327021E2F /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5016B5A3E54813E264E66106E7028405 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F886F2C3D77AACC13926EF61016B900 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 501E67C892A7DA2AC0650392E2D8B271 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 571DE2951B52C0AB1AB5D42DF89836BF /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 503E4ADED787B4CD726D7AE7D1CAC4E5 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A3466D4A8CCE80310EC86B2E39C80F6 /* RNNotificationUtils.m */; }; + 4F4BC7F90AC0704955EE23E1E1C056B0 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F625F56277BFE80C718D8DA375FA6B /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F59A408A38A3E64DCCF9718D2E62832 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A90C28B53EF65FFA16E8AAAA81E3162 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F69D95D4B0383F3474DC0E42AC39DF9 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ADBAEE769E4BA3C105CB21A876E15FC6 /* RCTSinglelineTextInputViewManager.m */; }; + 4F9642C10F03BA006A8426180192E2DB /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 233590D394D12ACF3356DF3BCF908DB8 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FA5E50ED56E7999A0C12CA52630F874 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 33801C7B0C94887B9DF660A737E3A1D7 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FDED82C197F799296A76563482672F0 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BA041DB50458A6AC45BE0C895514221 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 500C7A40E8D2210325C598108B541CAA /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 48721A6E7C8C85D6419278A858BCDE17 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5016B5A3E54813E264E66106E7028405 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 81499CE04A4EEA96E9240440FDFD1D45 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50509695351A25E3573F2FD7AC34F31A /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 629B780CB6C81BC6E3CDB2322C8D9EBD /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50699A23E2B7ABCDA090270A88CD285F /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E091D581070158B0DC9427D4CEE20C1 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50747AE223523E4B74103CEE02C246A6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = FB298C8D213DD000DB7B31B7F28E9B92 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 507DF53F6942987036DD1E70FF1D59DE /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0647D0871C78CED22B6423453FFE60B9 /* RNCWKProcessPoolManager.m */; }; + 50747AE223523E4B74103CEE02C246A6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9BCD8378FF46659F9EFFDCBECCE1B7 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A8500333976280906EE774EB7F7DC2 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = F115E65B6C65D8C32616BEFF59183C6C /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50D552ED4A967F6755D64C875BC3CBB9 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 846CC889DA967D1D6EEEE559C07A556E /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50E9FF65FB86DA0D2E58BDD4BA69B2AD /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0220BCC31921BCB8D930F8A91499BE53 /* FirebaseCore-dummy.m */; }; 50F65A7405BEE517EC658FE55ED70018 /* GDTConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = C982F354FBA3AA8957FF45226BD8292E /* GDTConsoleLogger.m */; }; - 510CB5D0B71787529A87ED899F96C825 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3469FCFD202AD0C2E94045784670EF65 /* UMModuleRegistryAdapter.m */; }; - 511755B4E8E877C4E1AE48FD408FC503 /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76B155448642B140C12D060D248DC3DA /* react-native-background-timer-dummy.m */; }; - 5131D44C655AFB7C52CCA932C7B8BCEE /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AB43F689F040181E115C156BD705810 /* SDWebImageDownloaderRequestModifier.m */; }; + 5128FADFBFB18C9FE7371A3B21E818ED /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F5C1C42D4387AA97E836AB5CEB0142C /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 513E985ABDDDF0D1E6521BE3FA2C248D /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B8C02DF38AEA9FC02589CC6FD1B37E2 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5173DEBA77CC026CE761ADB7052C0096 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC76B2B26BF4483305C2ED328BE89ED /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5173DEBA77CC026CE761ADB7052C0096 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 72058EB340F868E80E2210C02082777A /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5199BA4BAAB11B0D7222A09DE3D05E8E /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B791BDA93E2642E2AE20773005936E /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51ABBA7C37F210A1360B97D08541F2AE /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7099BD0A3465BBEA4CBF360565ED0B01 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A9B825D5894FC47609BB2CDADD60C21 /* EXCalendarRequester.m */; }; - 521A0FA28A5E133428CB29D800016663 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0C10A035BE8DE9C9F7A2F9E13F28CC /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5251E839853EA8851DEF6A51A9D3DEA9 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CAB77C66A90FFCF732F5BA30DA664EA /* BSG_KSString.c */; }; - 5253B09625ED13E7953D0313F7744BC6 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86CEA8506D2252EAF94502762FBE331F /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5287020DA6C0392459F32CCFEF19F8B8 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C8294332E762640A343292C9A88D4E /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52A223EA52A760F3B67620F5F32B5DA7 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E72F6D921E8C03017B8E299745BC2BC /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52DD1D1C18AD1306859A2E8B220EAF0A /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6614F90F95753C60B90AEADB62A7F1BE /* RCTValueAnimatedNode.m */; }; - 52E2FBE5FE8BD8C78FEC894A4CA8E10A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE6A66C3E15E35F11B46084320F1290 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 531117A6085D40A3787A51744E75D30E /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DA632E81504F6FAF6AF978C00DB2C5 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 533244F5D764CAC87E1EE11E70D75E27 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3476280344337B12715F107BA879563A /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5351E09175642E351430005A52D532D8 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FB8C6E58748FB238B435661F40A2F42 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51ABBA7C37F210A1360B97D08541F2AE /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CC66E982455364D614DF401B94602E8F /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51AF000DCAEAD37ECF182E3A74F3A68E /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDF8045CBA6085499624A8162268B0 /* react-native-keyboard-tracking-view-dummy.m */; }; + 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 09CE70106A4E65686140CE2B175081FA /* EXCalendarRequester.m */; }; + 521A0FA28A5E133428CB29D800016663 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F640EA131E097ADDCECC4F5DAB55547 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5251E839853EA8851DEF6A51A9D3DEA9 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = CEAD334EEDEFC63ECB5062B271B01CCC /* BSG_KSString.c */; }; + 5253B09625ED13E7953D0313F7744BC6 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D2EC694F312D47738BAB2199D15ED4E0 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5287020DA6C0392459F32CCFEF19F8B8 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 274E5834A4D232E7A92B9C0AE2133AF5 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52A223EA52A760F3B67620F5F32B5DA7 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A73BB738B25FE19BF1D28C42804984 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52DD1D1C18AD1306859A2E8B220EAF0A /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 37A4702F0BD62D18A312AE3E9EFBAEB7 /* RCTValueAnimatedNode.m */; }; + 52E2FBE5FE8BD8C78FEC894A4CA8E10A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = EBEDFE373E297B1C72D2D13E9E7A7792 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 533244F5D764CAC87E1EE11E70D75E27 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 651289D07B86D1F85820BDB4E3F79B9C /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5351E09175642E351430005A52D532D8 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E2F94448BD62A7D8BDCF0E561A5CADF /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 53581A99A4A6570482A63E527B128F59 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A146C93184CF066D0C6275B20D0EF6 /* GULNetworkConstants.m */; }; + 539A3F8A05CD0C3C07822D832AF42E5E /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC5C8A513E491D4D7D8F415EC66CFF6 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C001EA99BDF32E5D7A6DB8DAC66AD8 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBE6D4529581992E06E09DAEA44BC62 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 53D5D5B4167585786C05375D4F27D95D /* GDTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B891842FA76E72BEEA1C138AF1355C0 /* GDTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5405424AACA46A4BD2DEFA3249D84ADB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = F1DB238264B356DBCF97C556B17C2616 /* NSError+BSG_SimpleConstructor.m */; }; + 5405424AACA46A4BD2DEFA3249D84ADB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = D0AC147EB003EF9D71A7B2104F9B7683 /* NSError+BSG_SimpleConstructor.m */; }; 54FF2E101D4C264550CEA1BE540171E6 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C511F27ED5D50E864DCB9B0AFE64DA /* FIRComponent.m */; }; - 5548775BDC8E25DED36FD58DE8723AEC /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E3B80FEC459F74915B3D9B6DC2BE6A /* RSKImageCropper-dummy.m */; }; - 555EBA395DECE5259F5B98B67C37A9E3 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = FD0F73A1E828A4547B93C27CA2EB2304 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 557B4C39B543B7F7861F85882312781C /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 653D8C3BC42EEEA598A7FC54997D2EC7 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55D1C645446DEEEDC52B158C1AF223CF /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17EA647C95FCD3EFFF9B3F55155AD675 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 55EA754B0FC062C11493E397E70F217A /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = D98E740D6A2CA4C8275A415F9C2C6005 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55FA300A7F94C68E18F9E0378C88F260 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AAFEC1DA9172DA1E820CCB9A6025C1B6 /* RNVectorIcons-dummy.m */; }; - 562313F2AA6BF8618234F378704E52B7 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CCA2939DD0176D257CAA9014D238A1F /* RNPushKitEventListener.m */; }; + 555EBA395DECE5259F5B98B67C37A9E3 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D1FD034B94E4A71369F3DFCBEA95A2 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 557B4C39B543B7F7861F85882312781C /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CC085F88801A65C82817D397B81B0922 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55D1C645446DEEEDC52B158C1AF223CF /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DB600F0912A7A471532BB4EDECD8773 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 55EA754B0FC062C11493E397E70F217A /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = E638DC4BD07E3A60899BC0122C39AD84 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5609B1ACDEDC7FA012A4E09AF45426E6 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DA632E81504F6FAF6AF978C00DB2C5 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 566AFBB16D10757E0FE89F41B838BE25 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2CA2326F69284F493D911019DD6729 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5685F22BE36C28B1B4A6D339C9327281 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B67BA50C36A2F53B426CF2BD606C542C /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56B774EC22E8C5A5A1679509FC3BEB5A /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D170C08AFFCA380D1172C16EA6BA1EF4 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56BAED58D5F29251D6CCC0568BED7A44 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5151FEA6594F5FFA08E776734F13A89D /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56C991C93F7E3E1294328F67692371EB /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D1C76CE8D6F56411966FFE5CE1C6B3C3 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5744F077EE6E9275E2B9FBAB0D2952FB /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9258BC4069B152066F3DE151BA82F5 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 576B3466DF739EED79D59EBAAF287C30 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0517002F4A881FF10994D2EA35EBD9B6 /* BannerComponent.m */; }; - 5797F7D3A3E69B96AA10B6DB86F41505 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B07643B402ED0516D25F7EB0DE7F3A /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5685F22BE36C28B1B4A6D339C9327281 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F607B8AC88332569FA3AE05CD58EBF16 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56B774EC22E8C5A5A1679509FC3BEB5A /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4329C88B160FB25E747B65E341A2F1BF /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56BAED58D5F29251D6CCC0568BED7A44 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33726FC4E302F309408E8B098042A11C /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56C991C93F7E3E1294328F67692371EB /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3956C34D8C4BA22ED3459FE8D97D297A /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5744F077EE6E9275E2B9FBAB0D2952FB /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 89128E6085BE8D56C72155DEE4E25630 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 577E78BFDCD70C2D173B7B59F658B0B1 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9F9461DE2A7C9CC4FC3834A10B4017 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 579051C3AF77E333B0431342DEB99CF8 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E584394E9D48C593E4B7909B5016C90 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57C8A26C5E905E0B125AC142E720F5DB /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA5000E94AA313E650B6F2C01E8CCAB /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 580A43103D879C13C7002A1D0A6E3936 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FA14F40717D8B8385C1136FD2491099 /* RCTResizeMode.m */; }; - 58445CDF8FEE632713D2379E90D38B45 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B3E8897FE4D5B4AD06435D42A25DBA /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5862DC68F98A9EC8AEF474067D6C39B8 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EDCA680F15EA3ED9E16BED5412A64A9 /* RCTRawTextShadowView.m */; }; - 5866B0181ED42C514AAF3E30E406A52A /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = EFF110D0FCD6E0223A45F939D34D4123 /* RNFirebaseAdMobRewardedVideo.m */; }; - 58A8AC50A90715CCC2C8ECB1FC1DDAC3 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC551D7444887AB475ED9BD699009840 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 580A43103D879C13C7002A1D0A6E3936 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 15306F6FD4ED468D98B5C51F933C3C1A /* RCTResizeMode.m */; }; + 58445CDF8FEE632713D2379E90D38B45 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = E032FFFB6A36FC427FD7D3E976D13D6D /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5862DC68F98A9EC8AEF474067D6C39B8 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 06CA3C0C0DB3C3E5BFDC317B45DF1100 /* RCTRawTextShadowView.m */; }; + 58A8AC50A90715CCC2C8ECB1FC1DDAC3 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = CCD14ECEAD3C5FA298E8BE0D14BFFB94 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 590C1F6A32542A76E00BA16A057B7134 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CE48895561295B1873810AF292127B47 /* REACondNode.m */; }; 5911F2C36EE1970C228AE32A316816B6 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 086F20776E3CBD6C90E3FB4DFF3A3605 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 594AD0105643ED8B19B30C55585044D0 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 52BA1C7C25BABF825877C2B9035615A1 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59775D0037099876C7BEDAA541591344 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 8507E6531BEA7B7FE5CF9148EF8DF150 /* BSG_KSCrashState.m */; }; - 599BBC44E1F4B7E454CC3AB18F87213B /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = F63899B09DCE2845A92AE752D11B320E /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 599C20938DD6F5A8E2FBF37603156E7F /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 363A044359A7D9BE5F2DB4F5D8992CEF /* QBAlbumsViewController.m */; }; + 594AD0105643ED8B19B30C55585044D0 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FE75D7025F932EA0AEE68A5222294E9 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59775D0037099876C7BEDAA541591344 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = C68717C0B8103B307394F0CEB238A966 /* BSG_KSCrashState.m */; }; + 5994AF21CFE6AB3E036C94027B043F75 /* RTCAudioTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = A880A5517A83F35F30E97307591CD1A5 /* RTCAudioTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 599BBC44E1F4B7E454CC3AB18F87213B /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C6BA2C11389F5EE6489A7256CD67A4 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 599C57F283D3FB265BEAB67653276FA2 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = C10F32D01C7DDA0733BFF3A3F0ABD595 /* RNFirebaseNotifications.m */; }; 599C79E2AC486198363DF63026441579 /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 57B2CC75CA8E3F32098308781F12F843 /* FIRInstanceIDVersionUtilities.m */; }; - 59A9EDFC96B6C690929665134E494965 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB3DB2E4C6DD54C66F3E22A8023ECF3 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59B0CB7356169DA6D20BBD050C9BE8BD /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F85FE059DC4E791351183FECCBF8B220 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 59D86DF9B75C365BEE6B352CA65C2339 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 161DDC8E9818F478D03193D302EEFC1E /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E948A7E04CF9218EB761D194D20FA4 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA8A7CB6E09B8F35D8A922D772308CA /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A0925F77BA35B7AEB954F30362D38AB /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD0F68B646F72E6968C9F108BDED0624 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5A2A5DE71D7863F59846F8B41E1DE931 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8748A9FBADB55CD2D03E6092DB1CF150 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 599DFCD3D9881132995D418B158E1865 /* RTCVideoViewShading.h in Headers */ = {isa = PBXBuildFile; fileRef = DB13E1315E2DDB9966666EEBA42A599A /* RTCVideoViewShading.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59A9EDFC96B6C690929665134E494965 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 91216EBAACD768904799F983D40ABF43 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59B0CB7356169DA6D20BBD050C9BE8BD /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86EA310B6923A839B93B51A993A791D5 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 59D86DF9B75C365BEE6B352CA65C2339 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 395A0BFFF15889718930EA127ADA554B /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59E948A7E04CF9218EB761D194D20FA4 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F315BB023F013A055A42A46D895E975 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A0925F77BA35B7AEB954F30362D38AB /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCD637179F3F5DB67508A56763846AE9 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5A25345A31C07C3EC4AA6E02BD3A685A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 765B85406931C5082E98556AF4521218 /* RCTVideo.m */; }; + 5A2A5DE71D7863F59846F8B41E1DE931 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F7C7E65B04A50F40F571FA49DEB4F6FF /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A2FEA1B25DA5D3DB81EA2927DA1CB09 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 99C3ABAC6136ECE26842D81E2A0152EF /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5A560B45D5D7C2DD29343A9699C2978E /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA449C1FF61D3D80D76CB4852F13A02 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A5622F504AB5379F23733A2900E7D6B /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = F39F24527C0BF619EC3D5693EC126D28 /* REAAllTransitions.m */; }; - 5A75D23BCD436DE88F31A570A97F4CAB /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = AC10A1A51843487E7790F53C4B65D9F5 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A83023D1299434D1918237AAEDE947B /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = FE859787F69DB1158BBD2F2FEB00EAE6 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A9E10390AD669D0C65783A7D2F9260D /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B0FA0BE11882C38182774343719A06E2 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AAF223E5396DD2EC831E39E4767FB3C /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5A26D7ED219F14716FEADB04F0DC24 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B2EC19590C89A9549C900942D0F08F /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AD34B65231DF13E87DAEEE68DACFA26 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 13756F15BE86C16D7024CB630A3E8890 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A75D23BCD436DE88F31A570A97F4CAB /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0159067FB4524E5A8D025AF4700C652C /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A83023D1299434D1918237AAEDE947B /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A975BD70DEFB3E2F139B8492781733C /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A9E10390AD669D0C65783A7D2F9260D /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A508EE9E7198040C37BCABC23E5F4A7 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AAF223E5396DD2EC831E39E4767FB3C /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C02CCDD7E0A359F3DC6F4EFE39D145 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 68872F6D5FB850F451DBFCB97A2A7DF7 /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5ADF94FDDD43D2680355FB3DFEA89B9E /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D2D75FDABCD85D4174157FA49865E1D /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AEE52A5A72E036A8C066F41EF446DDB /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 39878CFBE7B41C682EE69941F7595C0F /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5AEF5383C1B91A338DB666B3416E55DD /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 79A661571C8BB75BF54632AE2599CC2E /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AF9BCE6D7AA3A8EF8D160FAB240B9E7 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C0C5087AA3C28CD7E547D23E317B1404 /* RCTWebSocketModule.m */; }; - 5B1C39D5437E61CA41494663642F5BAE /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 624F1319227376756C5B6B817F0358B7 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B7A4A0436E34DE81AC6798C87E7A318 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8EA2471306A983F6E52344BADF4267B /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B8703F07656894ABC543D7333E74532 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B1EABD9705F9ACC25AD24648B3B5DDB9 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B8A0EBAF1B94B7FE5E55162A2707325 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B9F9E9FF603E2E2C1D1A9475C59296A /* BugsnagSink.m */; }; + 5AEF5383C1B91A338DB666B3416E55DD /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = F483E250BB6DF8C47BF74C75EC3D17F4 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AF9BCE6D7AA3A8EF8D160FAB240B9E7 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E34809AC93341B5E64018153B2840EB /* RCTWebSocketModule.m */; }; + 5B7A4A0436E34DE81AC6798C87E7A318 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A5066524050E26BE1284211F4C57C984 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B8703F07656894ABC543D7333E74532 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B6CDF564CD045EDF359B4653F86D83 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B8A0EBAF1B94B7FE5E55162A2707325 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A950A006FBDCFE6AD93E0A0D0E55CE4 /* BugsnagSink.m */; }; 5B9BC4FE2C8655F5752E5909DF135E91 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E6155A2809622FBF0488834710F92202 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BF4060BFD0AF56EF39905FEF621F4DC /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D402537EE668AD4750481F17036C19E /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E36E7CC68C697BF67F49C6FA012D98C /* EXAppLoaderProvider-dummy.m */; }; - 5C136874DB76462E7E5F59D6C0098556 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = E41544450635104B71B52D6722B933D2 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5C34D55FFB997C59B88B37568AC53547 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AA5925531CE66C701D9F5BA354453F6 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5C725086A28B03EF79B319BCCB7F5B55 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CF34934D7B6EF5A185FBAF6BF9CCC504 /* UIButton+WebCache.m */; }; - 5CCD80B2284BD0B60ED0DDF4E163E995 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = B64278BFA907F143E534AE7A299EB104 /* UIImage+MultiFormat.m */; }; + 5BE46BDBF82468F86ED9771A64248431 /* RTCMediaConstraints.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D24A165C4123CC70909C0572AE7E980 /* RTCMediaConstraints.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 783790B1956322D4BD8815FDC2E2E385 /* EXAppLoaderProvider-dummy.m */; }; + 5C136874DB76462E7E5F59D6C0098556 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7630837DF9EF6FE84E755706209BD3A5 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5C34D55FFB997C59B88B37568AC53547 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1275D5D40721F833EB331DFE7A512 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5C8423FBCBEC85C34EB0E311B1473AF7 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 88F4995F768B92CB4CCD72E30CD874F0 /* RNPushKit.m */; }; 5CD2A015A7A05B92BF2F5E7D71D12B1D /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4857951B8BEE52580B8BDC2812DC32B2 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CF1F6F56CD851803E82D5E124B5FE46 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E37747181D09241DBB681FED86A15B5 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D39A40F6C8948C0955D63271D11EB9B /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = D867DC56B14D7F9127E526D29AA6E9C1 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D5AC98F858504014764C1F6F89B7C49 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5C668F1A4161C8DD532454FF4B45F8 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D5E8A2586504018F0521D13A5301F33 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D12F3DE529AB6013B3CF4D7ABFE0C78 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D7BA29018680739DE57105640A48D7A /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C6A96B0469A1CCBA8377B116CDBB2E4A /* EXVideoPlayerViewController.m */; }; + 5CF1F6F56CD851803E82D5E124B5FE46 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 39748147402AB8AFC6AF4CCDABFA7AB2 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D39A40F6C8948C0955D63271D11EB9B /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 0303AC8EC9DAAF86ACF000364BF78BC1 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D5AC98F858504014764C1F6F89B7C49 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = DD316097D74A6A79F091FA6C69794A23 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D5E8A2586504018F0521D13A5301F33 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 455345707B9594E55B61072B9BC26AB9 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D7BA29018680739DE57105640A48D7A /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 162009AFE68F8454A95737615759E87F /* EXVideoPlayerViewController.m */; }; 5D96F097503E7F4D8615528BB6C55CED /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F9C2F09B67806EDE58E40D9A648E897 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DED89238DBC1E4D00ADE51D7E2E3A23 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A2AABC796CD9FF5735F14BE9BF4B151C /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5DED89238DBC1E4D00ADE51D7E2E3A23 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A9536CFF1A5C4C2C6D673C9DB61891C8 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5E0C04DA2367DFAB13CE9337ECF3D4B1 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5D4D04DE011B2BCEC7CB50B6A2EB6C /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5E2C96CDCC4F7D22F998106A11BDC1BB /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E80245ED31EA62A75571A2EC705E0B /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E57847689DFC7C4BE05C3FB9B528018 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5919ECE26F1C5F31770D44C3D29895 /* UMViewManagerAdapterClassesRegistry.m */; }; 5ECD87A0265E9566AFDBA7027B201F5A /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C476A0C5E90A21225966AED9231432 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F038B39321D9AAF351877889B39A97B /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D8DBAB665D67A4A1DBFC02B0AB4ABD36 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F0D81024D7DF518877B47A9E254C61B /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4289A253D51A77E57E304ABD9B76AB59 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F326640A40E351B65C24B5E01F7CB2B /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = A1365AA21636B434C7B1D5D85D82B361 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F48106EBA8BBF138FE9827D13133CA2 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = F54D1612AD852E1D36FFF295131BC8B1 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F6542FBAFB21F4D275E628C2AEFC27D /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = A9525C9F89E728A090883B2317AACADD /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5FDE56E642A7C95346846297B5793D31 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3EDF9ADFC74EA285D9D71BF1AA221C /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FE9A37C2DBDE0676F80601918532083 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D7280D3CC32E610F3B018CFB177F08C /* RNGestureHandler-dummy.m */; }; - 6000180084907FBAF458FAB361866023 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E3815A68BABAC236A080E04345B268 /* RNFetchBlobProgress.m */; }; + 5F27B2262B17A8ED956E8CDB643C4C92 /* JitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D70D0331EB65009B790F8772D66A74 /* JitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F326640A40E351B65C24B5E01F7CB2B /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = C84539085B098599201722CFB82B8B20 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F48106EBA8BBF138FE9827D13133CA2 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BFA2DC282CA115637EE1255F5883583 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F637515CE139C2841E0C9B0DF868850 /* RTCVideoEncoderVP9.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB5C4AC114DF2B39C3C81394764AB71 /* RTCVideoEncoderVP9.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F6542FBAFB21F4D275E628C2AEFC27D /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = BB1DB74387B878569D617A5FF7896725 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F6F8A1589F4A51447E19B64C7A2CE19 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6D5E4F782F63058FE1BA25181C1F014 /* RNFastImage-dummy.m */; }; + 5F74CAC20368F3E0A59EBED2B75EA658 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A95EFA15BE9FD78A959B4B6DAA72113 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FDE56E642A7C95346846297B5793D31 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C659602438CE11DDEBEA800A566F34 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6017B2E333E17232E88A3D32BB8909D4 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F86DC96EB0178B7C7BF8E2C8D153E44 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6042078C233251DA66704C46A09E3CBF /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = D6C963FFB4653B60D8F6BB798F4479C2 /* RNFetchBlobReqBuilder.m */; }; + 6045FA98C75F5A4D1F757EACA47DD8A6 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 140827E76462176B19FAC244ECEE9BBD /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6067BC213ACE4C1CE241E87E5FD7FA42 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9CBA7B3D0EE3E20FDBB699DBBC46487 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 6072DE7827DA66F32D6352FAA1104A19 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE4EC581FC8ABD5F70E10BA7F595D5B /* SDAnimatedImageRep.m */; }; 608B30A9766B7C7AD75855008A72B76C /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B32C29637004DFA00C422469551F00C5 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60B1AFF2F83CEAA426DC944451F48C0D /* RTCFileLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5D895479D8756BE0CCBCCC0A6FC03F /* RTCFileLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60EC0040BB5062EC82CC1923C50CA2F4 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E1DF3C0A408A5355E6973EBD51DDB377 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61000B636EA54B95FE41F513135EC7D6 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9883EB80AA0AE0AEACCD3B4C99C35140 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 615DA240871804E7548C46745A131A87 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 53497E63A971D6E2F6A477B7CB25200B /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 61DB7E4B43D99AF83CCE4CB55F924040 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7031F528ADBDCF68BBCB2A104DB7E5 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 61F6249D486C2EF91F1650768EBD6B44 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E0735CD2CC65F625513892D928AE4C66 /* READebugNode.m */; }; - 621A038FEE12B2F35F8071DB02707C4D /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = B82698878E55481EB830AE41F5792A4C /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61291288AC7AC7CDD3B929ED3C919E9C /* RTCAudioSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3994176AE319D8D998091943A8588364 /* RTCAudioSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 612973A4BDDE03AC7C966B97DD8F2555 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C92798D2D1D5FB1EF9CAA74494509B8 /* BannerComponent.m */; }; + 61418F7E611528BB8E0B0CD1F33CF364 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FC38D36766ACBC7BFE50EFB7F6F3D149 /* KeyboardTrackingViewManager.m */; }; + 615DA240871804E7548C46745A131A87 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 78D1DB0EA93E1DB29C0ADF3FF0097706 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 619C147B6B7FED08DF7B6582277D75AC /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D999367F894FF26DA24E3C769F4A379 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61DB7E4B43D99AF83CCE4CB55F924040 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 41107D755DE9A8D7E7E9905FD89486FD /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6293B34D59BC5B39CBB09D323E9D3FDC /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FAEEB6A360EA4625E39886BB08902163 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 62CB8189A8DFDB52140C78C76EA04823 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = FF3B4A93336F5451E6D9396AB2776D0F /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 62EF05AD5396C78743EC5BDD2643D95C /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 787962550B3A64379933CCF755AAFA54 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62F7497503DD744BD09D398CABBFF63C /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = F121EF6426EFA6448F715A80FA0A0B34 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 632BDFEF644DCD03DB8E0E6A30C632F7 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 720906B469BC61831C3C51281F18C5FE /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6334D84979455ABA2F0912573222C555 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C737F3442C503F0B7EC38BC7B803D9 /* REASetNode.m */; }; - 634E3AC82223A2F2B35D913D66BFBCD1 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C34446947B99F093F682D587EA14882B /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63615E7D59D19B6D41451302374C490B /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F859B7957DD7546A15A1F25F252699 /* UMReactFontManager.m */; }; - 636AD3E42ABC1403BBB9385ACAFAE863 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DC773DB1F440F7828ADD2BC4466D0F3 /* RCTNativeAnimatedNodesManager.m */; }; + 62F7497503DD744BD09D398CABBFF63C /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 251DFC07BB02967486AF483D8E7039A9 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 632BDFEF644DCD03DB8E0E6A30C632F7 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 79E5A34F52A4DDB094DDF08A04A9BE57 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 636AD3E42ABC1403BBB9385ACAFAE863 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C9706AC004C9425464D86E16CDC32601 /* RCTNativeAnimatedNodesManager.m */; }; 63935F51290563AEB8FCAAD00C5595EC /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = E11189EAF698EAD899AB2AE3B2F02FE8 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = AF5D70AE0BBACE08B9D14D76F6CC638D /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A497D72857CB1DEECA6A83DF2F0356C0 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CF3331255C82F8397096D34A4CF8DF /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C0DCEC8BFB86E14D2C370E114885266 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 63DF1931079EE301A7422BEAA101EC70 /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 0373560C8F06F4D5DD7E28D42E8C3821 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 63F0C13ACE1F88D6877BEE4BEED92F55 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7948EDEE4271ACB553E2672BF5B9F95B /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6424CE1B21FB118EAC797A1EFB5CAB77 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D1D5A9FCFA9721EF49A2AA7162E742 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 643BA3DF68BCF83898880BAECFDC7F7B /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B44CDC656C60B22F0775C5CC9045CC1 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 643BA3DF68BCF83898880BAECFDC7F7B /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C005841C0FCA76E6455CB29A76BA798 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6446867E20E972E64B5659B208B143C7 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = D6470CF65092294FA7B4087C4377314C /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 645A29468104CC795D72016ECB6397D7 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E96A283FCDCA122F08478CBCD9B796B /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 646DEA8BA91FC5A1786749A5226A6FBF /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 024D174866DC879A465A83459D3BCF0D /* LNInterpolable.m */; }; - 6485C3D719855BD9EBCD296DB305841E /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 44BA8720DB56C1CD1817CA39452C55A3 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 649079C85D59CAC4251F61F7394C7445 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBE6D4529581992E06E09DAEA44BC62 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6485C3D719855BD9EBCD296DB305841E /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = DB4DDAC7A9323A31E17883165FBEFBF8 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6491074DBBF2A3EE1448796EC326CB0D /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B80AE04012735F39420C32321BC8CF64 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A68133486FD6417146155B801438E9 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = BECC174CE98D1E8D25855CBCA368F55F /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64A6A8A57572DD34C738AF5B476113D3 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BC0EBEE3AB86A5AF225D774F7AA7EA8 /* BSG_KSCrashReport.c */; }; - 64E880AAF704F39386C5E897D3413470 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F51612DC4C27ECE62A293723A8F1B8 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 650B73AF993372C3EF3FD84AC4886F5F /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FD56D95DE62855D410B3E09C1A647B /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64A6A8A57572DD34C738AF5B476113D3 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 09C7184CD0C32536609795EDDDF13582 /* BSG_KSCrashReport.c */; }; + 650B73AF993372C3EF3FD84AC4886F5F /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 66290E4FEB92BBA08B4364BED2D01DB1 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 650D89555B807E9AEC681EC6CD423A12 /* GDTUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD881D7E69E5AAC15235626814BA474 /* GDTUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6576865F9751A7DD26C24CC651859AC1 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07DC8E1AF4B914628D830EF9C951EEE8 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65CBD56A3245700F476C2AF111B21C4D /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = AC13C2E4ED73D7B988B996E0A0B98A48 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65D9F74674CD1CDF569A77E74C5F26E7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = DD91A1964B13C90FCBCCC3DF2D81CEE1 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 654D5B49FDCBC0EFACE112FFA7812A7A /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 831F0D42D039450010FF6956E3E56C03 /* SDWebImageDownloaderConfig.m */; }; + 65665DE35F68C7638CD9A77C8369FA85 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 183E9BB4BB85EC42E515F6C865135F00 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6576865F9751A7DD26C24CC651859AC1 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B9A2C2A8F69EA5DAB5D30F0C3EE6D1D /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6585E591ED6C8C08A3238F3F5D932901 /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FCD7F989065C8FDA217E07D65AA536A6 /* RCTVideoManager.m */; }; + 65CBD56A3245700F476C2AF111B21C4D /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2425C40ECB016E238C047F0ACB06BE7E /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65D9F74674CD1CDF569A77E74C5F26E7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = BB609D11B4B6606C1AF8C43D93758476 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65DA5CA0B43BE1A8253C7A67256FC3C5 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B23B0FCB0328F4CED9132A1B8A9882F /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 65F229D488336A7011978AC0403FF917 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E68310F4814224DCA12EC072527D655 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65FACF736CEB2C1BB3F8032FB195D1A9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 63DD64F26BCD0E6C32AD797E6DD5B53B /* BSG_KSCrashCallCompletion.m */; }; + 65F229D488336A7011978AC0403FF917 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ECF7A2C8172A21A5C79757DBF8F282A /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65FACF736CEB2C1BB3F8032FB195D1A9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = E0188648DC0FEEB7A99E606541F32965 /* BSG_KSCrashCallCompletion.m */; }; 6614083802E731AE356FA666BE7013FB /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BDCB6B57878BA7581E54CF2B80E10903 /* FIRInstanceIDCombinedHandler.m */; }; - 6616A3997C6A3D8D6BC38E933F87F07A /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D62B596E3D791EBE46A558B57739B450 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6622457A596754428A823EA7EADECDE9 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D8870C69C62D830AEC01CF4F4266AADF /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66173820F6E03B0634881CC6EDEBB65C /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8059F2AB6D8AD8683CDEA58D342E7080 /* RNGestureHandler.m */; }; + 6622457A596754428A823EA7EADECDE9 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FE60DB5A92B5D13E85FDB6095867D586 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 662F8B45E45AAC9AF5185F039264E7EA /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 13756F15BE86C16D7024CB630A3E8890 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66527E65A382A6BB2FCAA7EA4E058755 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B98F22D61095526FA4DAB138C1B2A193 /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66636231DA050692C3D96586EBB31B15 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D976D0CC5644602F4031677C5080B040 /* RCTFileReaderModule.m */; }; - 6744BAB5DB622E79067AF515F649F685 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A2269041F71E93DC3D5E4E62F1D9FC94 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 676B0CFC7C6EEF6BA6BFEBC4FE1C3341 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F3E7E34D7C3F5026C0C718A4EAF83F19 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 66636231DA050692C3D96586EBB31B15 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = ADBA91B70D66AD0C66B90F33754AB444 /* RCTFileReaderModule.m */; }; + 673237308A63941AFE4D9E8759F1F129 /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 375230B356E2C541FE24BC6A6841CC22 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 676B0CFC7C6EEF6BA6BFEBC4FE1C3341 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A087FCD759D456A8D0F0A36084D1BC27 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 67EC503D6E3E390A859DB9AC74C64686 /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1C3C16447C4D321FC9269D1EF1A902 /* FIRInstanceIDConstants.m */; }; - 67ED22D95C9FD71789906A1758236882 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B89B1D14136A7CA2628804BE9C56486 /* BSG_KSDynamicLinker.c */; }; - 67EEFE45270BA2AACB0BD7F36BDA59D6 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A8F98E96DFDF3357A115885DC44468 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 687799A37E45837BEF374E65D8B61FDE /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = A786DC1349F49EBB898FE347676FCDD8 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68783E67DD83AFB8310A3CE71AD5E313 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CBEF7B892BCBF7E9DD5159B1285B9B /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68AD8308D7D6E2C08A50C3BF1E0FD10F /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = B5EF2623E822A8E441B33CF9B19C0CF7 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C287FECA03B2DD27950AB838AB4FD8 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = A2AE548ACF39D12A7A53F40B6CC1D872 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C6678CBDF5D435B8A2EC7AAC70EAB4 /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C197ED2FB17A019AC7D1BE3DA3BCE6E6 /* BugsnagNotifier.m */; }; - 68D4E69246BCFEBF71C46463E4DB8292 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8454C6D668F7BD2E0332A9BDA56550F6 /* SDImageWebPCoder.m */; }; - 68E422E7472A6D4E25F87AC2C1EB540A /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D85FA90E11713E0009A994D146727EC /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6911418079370F89A57E161AEF1725EB /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C8672C3D373E305FF4E29895806D011 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69487564B0834006F03B06DF0C720214 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F23943A4867D3C2DB12516ADED14698B /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67ED22D95C9FD71789906A1758236882 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = F16E8D91B41DD28E7F1B03EF16D55A42 /* BSG_KSDynamicLinker.c */; }; + 67EEFE45270BA2AACB0BD7F36BDA59D6 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = C104113B235CF12A38F65BF3259A6E88 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 681CF8D028C101F5D274A38F4D7EBFCC /* RTCVideoCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = D00609DB8D2AED96E1CD27059D9C495E /* RTCVideoCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6870DB725671D618DE66D6053F6603B6 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EB25BCE31ADF1A90D96551E8A9B1C0B /* UIImage+GIF.m */; }; + 687799A37E45837BEF374E65D8B61FDE /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E63EA5FFBF1BB5DE38DD26C6CB2FB73 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68783E67DD83AFB8310A3CE71AD5E313 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 05083914A0E9C0AC4BD3C9095A825E96 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68AD8308D7D6E2C08A50C3BF1E0FD10F /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 024D3CD508484911E6F593F0017ABDB6 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C287FECA03B2DD27950AB838AB4FD8 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CBA0727ECCEADB1C9369F8BD6ABB189 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C58CCD00413FA251DE19E1036FB865 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6313C0E61D9004DCF8F6292C1F425FA5 /* RNGestureHandlerModule.m */; }; + 68C6678CBDF5D435B8A2EC7AAC70EAB4 /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 38E830C3866F78F3031D31ED26822112 /* BugsnagNotifier.m */; }; + 68CB1D81A3BD0FFF532FE890FD8EB9AA /* RTCVideoRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD041905A49C68BC590B8ED8ADDE347 /* RTCVideoRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68EE21D1031536B799A451CA67EDE814 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 970A7E2E51EEF752F257CCFBD7300F1D /* QBVideoIconView.m */; }; + 6911418079370F89A57E161AEF1725EB /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = D4159BA1E2CE3E5C3B3F61DB4941E910 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69374DBA3F7402BE93586F24CA966896 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = A31B7AF9D97883D1431BCF0BEBC6A5BF /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69487564B0834006F03B06DF0C720214 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B6D7A7052F4379E8962018996E0909B /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6948C8D514B377447A15A08AD73DA213 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 527125D5A4B8AC39BBE2295228318B0B /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 695584A1ADD597D495916BDD2FDC3650 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C0AE4B613F41033248DB894783269471 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 696DE9FAA9FD7EDE0790CA8B1C56A77B /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99DCD3614E282090E7250B5BD934C20E /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695584A1ADD597D495916BDD2FDC3650 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AB247014F910F940E2A48039F21F8C /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 696DE9FAA9FD7EDE0790CA8B1C56A77B /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE51D81149677127B01BCC43E25DB77 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 699A3647F99D6D97EAE31610A587772D /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 64095BD0B41E161836B45B19C83132AC /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 69BE20698C4903CB95731223388B9871 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB97F10149B7978AD361724416A1172 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69A2846673D708BFD9FC1F434694EDFB /* RTCFileVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD567A804B736A32DE85AA951B83FCE /* RTCFileVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69BE20698C4903CB95731223388B9871 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BC6CC339E61F24B33C25C89895114DD7 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69BEF51BAF9BF497C66822BB0808BBAF /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE9C00A0CD1A096CA768B9072AE457A /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69D0CEF50A2D9B50B92B2C4772683296 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 0797904A5FC7F9E780DBDC7E73B19ECA /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6A059FBF2D3FB87CF0EC41F1332D9F33 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3721E77C21FA3733E371C4BD0D42FDAB /* SDMemoryCache.m */; }; - 6A3C7FD4A0143BBA4B4BAC7B9E15288B /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 41DC749D2C9DF562AB454EDABD926FB6 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A75227A9638E3AD9CF6D469129D03A0 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 52CE60B0E64DB7253508509BB356157F /* BugsnagMetaData.m */; }; + 69F26CD91C18271E38BF3151110006AB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 0867AEFFCCD84ED4DC89D579DF8B0EA9 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A3C7FD4A0143BBA4B4BAC7B9E15288B /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAB86F2F778BE56ABFD7EDB028AF526 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A75227A9638E3AD9CF6D469129D03A0 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB7B598863766DD3772025FB9D2BC8C /* BugsnagMetaData.m */; }; 6AF54979B8410B311076E6D99ACE9227 /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8A3043A001A13BBC3A3945201C9504 /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0B6E9E295CEEE2F5553D3A44C9E5BC /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B461FE91158C1ACFF628B9CA3F2AF54 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC25B090F79C11554B08DEAC03D9FD84 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6B522302A9BF66638B95BB21EF10F035 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6ECA5D69D565355314E75E047A0A0D /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B5A373F0E7173425EBFD5A88754D098 /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 143641E635A9FD9398C57432E010D8F3 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B88118D132A3E0B6E70D76285C24A56 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FEFD0FDC377ED57ED928168199EF70D /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6B8DBD9C790AFB18E32C82BDC5D832B5 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1765E934F0CB1320E80D2D366A0A86 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = ADA349097F758AE829DEEDCC24123880 /* EXConstantsService.m */; }; + 6AFF75D0586C5F798628DB68D2A7227F /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9685A51D6DC22212677826398D5A97 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = DFBA9F9ED5017F9945DB97C43758654F /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B461FE91158C1ACFF628B9CA3F2AF54 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 74CB1D6C74256DCCCD5BDF15C7FDF186 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B522302A9BF66638B95BB21EF10F035 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 37EDC5DF511C5E1918227BE35DCC17A1 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B88118D132A3E0B6E70D76285C24A56 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = FD78F40A8B8660420B63703FC34E8CBC /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 28484CD16E3E3800D0174E9A6EAD9F4C /* EXConstantsService.m */; }; + 6C00A2BA863DD8B5A74731223729502E /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E3B80FEC459F74915B3D9B6DC2BE6A /* RSKImageCropper-dummy.m */; }; + 6C2123B06EE35601F576B70CFD2BA3EC /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EFE3F82058AFC6C88B2322CC4AF11F /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C22640B5700F54A8782D9863B890045 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 953D2A75134E13234152E4C9C3607B69 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 6C313331E905110E725915EB39D5616D /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C50F79225FBADCBE2EBB3B2E6528FFFC /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6C50E9571D234D7FB4B03B8FDDBCDAD2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 97BA38C5D133CD6A543A169356D2E463 /* RCTTrackingAnimatedNode.m */; }; - 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 35261FDBE3E56F6EA599B8A3C36E2A26 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CADC7B152C83248621D2C55312D66B9 /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E303DCCFF14E6650F61433548D0AD7 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CCC62649B7DC5822A5F0AA16495829A /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 19FC1EFF13BF8A45DAA1F52574EA0E71 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D1033D0C77181CCBB9003C271D66FAD /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF74E94CF9E25426B544B546E1EAF7C /* SDWebImageOptionsProcessor.m */; }; - 6D1A25E7545C3E8B12847277862E9CF6 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D48761960C687A4054FAFC604810775 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C50E9571D234D7FB4B03B8FDDBCDAD2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E6A2EEFCD2C08BC72D51C3419724982 /* RCTTrackingAnimatedNode.m */; }; + 6C652B2EC4CD71BEF92200D0435D9435 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C42E6AF56C67AA2218776FECF6FE9B /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C7452AAC08BE731F39DF95AA670E001 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = AD55E5B123DBC81389C6597157A1D61A /* RNFetchBlobRequest.m */; }; + 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = E0D0CF437DDB1763F7575EC8AE7DDBCB /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CCC62649B7DC5822A5F0AA16495829A /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB2811C4490F510BBE8BB3B10F6D5CA /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D4352FB1766B6371A692C8E36497B66 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF4185644CA2A4A29896923EFC76E6C /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D4E3D26ADE1105286E677C7B7C515EE /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 581F2D86DC66595A5704E34AD02E3F52 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D6306B6CBB2485CF0C8E9A187068EE6 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = AE7754584504BFADAC0D66E9977C6076 /* FIRErrors.m */; }; - 6D6407E213AFE2BBB6BFA04B13C7DFEB /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2528C40DABD8EC42F62BEED4A1C3B890 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D71A6D5CBB1BDEE1413910216E73651 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 015CFA6D6C4F31AE8B86357E51479940 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D7BB7D63042CA5113F83E2DE65F2427 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A6B67A7E1B245CD408B9447AFDE7E9E /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D83294B6BE6FAFE7229CFF3E7AF7382 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 837F5202C5BE4A271772D79E3CFB80F9 /* UIImageView+WebCache.m */; }; 6D88F77B9828718B58B8F3C1C5D7F8CB /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = A02C25A0F050BBA3C3192560B437738C /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D9E1707EA3CAA2BD0F91A06BBC8E479 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9872016D9ED5AE2B10EFB1FCD2016A24 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DA4A6EE6D924E01F192AE89E79431D5 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1771B49438A3AB1ED0D8934A785BA96C /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6DA97A2F4E154C0FA3F4725D2261EF98 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A700C5421150747BB65E8019F7C613B4 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DAE9FBBA0C1B0FC775265512A236D97 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE7F753D100418B4F0A16876E5708DE /* NSBezierPath+RoundedCorners.m */; }; - 6DB81EC3247D2E6CA868137863FCCCBE /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1ADD1D4BD44FE2B496767D09490360E1 /* ja.lproj */; }; - 6DCFEC4F6F54551BC3479EB42D637024 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 794F398AE48A71724FAED5208DF62376 /* Orientation.m */; }; - 6E2090BF2FB0A695378FE1DAFC6103C9 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE9C00A0CD1A096CA768B9072AE457A /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DA4A6EE6D924E01F192AE89E79431D5 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C8BEDC744DC981DEB274FA1B99263AC8 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6DE04AA1625F7417199287910F162354 /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = F22B84B0B2BE226BCD480BAF756DED0F /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E1DFB592DEBCF09AF4BC18F3A578A63 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D278C02A22313007EFE6AC57486A6B89 /* SDImageAssetManager.m */; }; 6E30F4324AE4B253140A26ECAEE5174F /* GDTDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 097529E01F948530BF995FED8E3C79CF /* GDTDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E3400348EC1A3F1C9A6F2D25AD41F5C /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A58CF9900C98E30470CA191878D8E52E /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6E355BA53F5FAFB7CB0F701DB1EC511E /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF424360B844F89AB206F515676941A /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E3400348EC1A3F1C9A6F2D25AD41F5C /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8482DA36A3A6FB92A6B995FA7B5706C /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6E355BA53F5FAFB7CB0F701DB1EC511E /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = D168B9567CBB186333C5B16B6CEC8CF2 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E6B527AA5310C4FFD9ACEF10823A8AC /* RTCRtpCodecParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 7846727DF52BC694F51DED5B879D7C5C /* RTCRtpCodecParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E75816472844DA362E68B86955CCDC4 /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FEBAA8C711D68435C6DFA7954D51F2D9 /* react-native-background-timer-dummy.m */; }; + 6E7B85DF49DF10C50AE51144BED29457 /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C72D0A8A1F3408AF7367132D13E90B1 /* RNNotifications.m */; }; 6E9BFAD5B692CACAAC407E94819C5C8E /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 77CD8049365D030C4FA73602E6D9D867 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6EC5D25DFA871AA936F9E35AD916B2F9 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6E296AE37FB7F2EBD15BCE44A70CD7 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EDF85D67C2FDC1166567B18B5A1C424 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8DF8B24F606695A090B67DC289233D /* SDImageLoader.m */; }; - 6EE1CA2114AC1ACA31077B7F7577CDF4 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 062D05D6626096952F0C7EEB8160CB8C /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F4132C3131A1F715E620EC2040156C0 /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F8A5846F3BC476CE395C5E3F9A6BB3 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EC5D25DFA871AA936F9E35AD916B2F9 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 536FDA7D29F9A2FDBD445C44C7D3BE01 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EE1CA2114AC1ACA31077B7F7577CDF4 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 370D2F88CB961DD574D872898753125F /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EFF1CE802D66EA69FC3E0ACAF6F6283 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E4C5951ECEC2E4547C486F21911516 /* react-native-notifications-dummy.m */; }; + 6F21CAF873921093C5AD55FAA2F8CF51 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C2678BBDCCBBF362C0480D5C65ACDDED /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F4258691BBFBCBACDBEB1CE07169A3E /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B74045C89CC6F81DF35F0CEF214DA46C /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F4E8B663EB256B775EA2F06FC361A76 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4525C0A2AA5C85FCFE53C72A95B015C4 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6F6E6AC06C123F646F01323135ABE5F9 /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 517F50C1FEB36263CFFE0B05FB717754 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FB19AACFA1EE79DFF0B308E0F08C184 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B70D1CB144A80FF7B2ABCE1175D6910 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6FB372AC7B05A3A0F88156E5CE788B4D /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B6F046023DB90309CEF63307ADD86F /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FD62F87269C29804AE2F32C9A66AF0F /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB80691416F0BDEF6850C9E16210715 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7016C1FFFE17260CC0FC357805D3C2D4 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D5E0C896CADCA68ECA816366ED25E0 /* RNLongPressHandler.m */; }; - 7080D2343A65045855A905370EDB8F5E /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0852B3F23BF2CCC5942464F363AA829D /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70C118C7502A16753C746515F819E801 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C10B7ABBA5DB7FE79752997191FD5580 /* React-jsinspector-dummy.m */; }; + 6F6E6AC06C123F646F01323135ABE5F9 /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E01EC52611567014EE6602384FAF98 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FB19AACFA1EE79DFF0B308E0F08C184 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E873DF86898B2DFAE083F10A3AF69E4B /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6FB372AC7B05A3A0F88156E5CE788B4D /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = CC53B09C7BBFDB1DA17A24E62AD6FA97 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7059253329114C7DCC50D932B97ED5BA /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1A7607FB0F59CB4D9CA4137D10A849 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70816C2CA91B1C2BFD72113BD24C38EF /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D57C5E0D20774414E41F9C226F8B089 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70C118C7502A16753C746515F819E801 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 74CE7A093C81DC6CF8311444B497F2CC /* React-jsinspector-dummy.m */; }; 70E4098896C59ACF3FAA501809F6C871 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E4EC6F922F53CA78F7C41B907CBB6AD /* cct.nanopb.c */; }; 70FAC5BC128DFF5CD80CBAB721D7365C /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E023552C9F195B60B63937F4756FAEBF /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7124F15D38B6020FE4DAFADA2CD90536 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D9004ADE4F483A5DDBABBA78328A24AF /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7135FF812734363F0095440165E23E34 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3F1E6F2DF676DC3C64AF73781B4D6FFD /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 71199627440A095D058CC2B0D616BA87 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B87FA68E472648622BCFBBBB49B59E73 /* SDImageIOCoder.m */; }; + 71246BF5D7703A387E1793BDAB54E930 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A8D32ED22D4F14977BDA352AE3CF31 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7135FF812734363F0095440165E23E34 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22269C7ADEEA055CD6EAB94C885D38BD /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 71563A590B4A408CD38D24B12C2EB8D5 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8240B7DB4D18AC85BB7F2FA4D6BC7A5F /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 717BB18A43554B45B82D4E9A4C671EA6 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 69E190643271A3BDFFB8250E0FDD6832 /* UMModuleRegistry.m */; }; - 7198426DDE942B2D10C396770FFCA301 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = A7210D185BB792BE776701E26E31D9F3 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71C5C748E36B8C8141DDC62E5F90D03D /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 187B3211C7DBEE6316BB3C7AC114FCD4 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 71DD45C6D90C4A2F753AF97A0A4F9027 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A88FD8114BC9BCAEA646DD2C5C88977 /* SDImageFrame.m */; }; + 717BB18A43554B45B82D4E9A4C671EA6 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = C7862FBB7BBD683B4C08C8F937779A58 /* UMModuleRegistry.m */; }; + 7198426DDE942B2D10C396770FFCA301 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46ADA497AAC08B11E14E1F4F58BE2A45 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71AD998A754A365A21FB52693431E6A9 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8C7CEFAB40BE85AF65E496A17F3F9C /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B23CEA0CA3BCCD4C220DDEA9128A40 /* RTCIntervalRange.h in Headers */ = {isa = PBXBuildFile; fileRef = 154FF1974291CB613F271FEDEA3E95F6 /* RTCIntervalRange.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71C5C748E36B8C8141DDC62E5F90D03D /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20320D54C90D9498781B00281EF43847 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 71E0B0239A67555DE2C0B9F18E515634 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6AA8BE3AB1DA509A0AF060FAAF600C /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71F787DD6EDF18A2F2404078E1099776 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = F077345CFE65C76A10C340C50E4F83BD /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71F2419438AAEF976482C303CA78B330 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 90756F1F010C3ADDE8656F519C9C5C2B /* SDWebImageCompat.m */; }; 7219BDA57912F639EDE3430A5F74DA01 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 26FCF70259DA5F51659A6934E776DF61 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 72238A727023831852BF9A8C9B83C49E /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2211B861FAD633539913BFC2A4B64C91 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7237CC9ED29F13123F7FB1DF10A754DD /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 679400ACE958F98409C874B5359A2445 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 723874281B7102822C9263F25B4E9AD1 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 8717BC3F9FF25783B4D59A22C606CB3F /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72502876A87B929311D1E46059F1E24C /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 70B5AB6131167160065F1997493417DF /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72938CE2CF79C1AB1EFD9CB2D676968B /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C54A272638C9D1C6AD8A996EFF4159 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 729691698828402E3BDB07E6A54DA2AB /* RCTImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = C81F4BC5C38691605234C6277B7564BF /* RCTImageLoader.m */; }; + 72502876A87B929311D1E46059F1E24C /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A68242998F8219B12BD092F9FEC502 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72938CE2CF79C1AB1EFD9CB2D676968B /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C216A397325D711052ACD7E6779F231A /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 729691698828402E3BDB07E6A54DA2AB /* RCTImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A1659414A724C865858B812CEA7E5D9 /* RCTImageLoader.m */; }; 72BDF84A85955FC2E2BE3DBE9395CEC2 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BBBEF5EF37F45DA5CDDB9D9B6223086 /* FIRInstanceIDCheckinService.m */; }; + 7307182719C93356314AFCD242C251CD /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F8FE0BDDD32900C2C20BEA4846A123 /* RNCUIWebView.m */; }; 7319A3F06113062284F479942B40FC7D /* GDTTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 081D39420EF7BAE6DC243828439B9AFB /* GDTTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73208D16F0790500B6F3D72FF43DE0A3 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA36649CF44FA59CD2B2320613591B6E /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7333F2E6FA200A9837FEFEBE24EB619D /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 69FFFB727F7FBE9732D19330D56CEF1E /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7334E61640B8A3A3059B0220EE6220B4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A85651BE2CA192EAD3B3E07C2CC717B /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73208D16F0790500B6F3D72FF43DE0A3 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F66E6A960080EAA49A7DC83DBEA1ED6 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7334E61640B8A3A3059B0220EE6220B4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F21F1BE96FB0E9706A1425B369EE6878 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7351B6E93BF34663CA0551A948647BC6 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE60334F434C035C97EEDC5C4FFB0B66 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73A95768CF71E0108D67BD7CECDC0FD0 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 292BFCE23E8348EA7808657FA43DA053 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73A95768CF71E0108D67BD7CECDC0FD0 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D32900CFE7B190CD21110C1C44F7545C /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73BC222F96DC7059E988EC0D2EB7779C /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4612629D5516E4E170C410A4783836B7 /* GoogleDataTransport-dummy.m */; }; - 73C40A83129D4A39779C47D6F3831BFC /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A827F42A30BA8D2731F1CC960D38119 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73DC40671790969404E4A58CFB7A1E16 /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 204B0C4E015C3E2CB00659FFCFF5C8E5 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73BDBAEB2BF9BC524E125B56918E498A /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = E118E041F94B5E8A5F56738B9E2296C9 /* RNPushKitEventListener.m */; }; + 73C40A83129D4A39779C47D6F3831BFC /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 038B52F5524A296C2C2D47058DBD628C /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73E56E4F2078B208F760010D1C081DD5 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D3C2F73173E59C8227EDD293E235921 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 74030D20785DEB1F46D01A1F25DD68E8 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EBA0F5B4D69D46F4AB358ADC9E76D3B /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 740789D8B8E284B603E60AE7CDB8167C /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A80A433C1DD5901C0B8651463363298 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74115130D7CC66AFB67C17856D685617 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AD40251501E1C7E14BF28223BEE7919 /* RNFirebaseAdMobInterstitial.m */; }; - 741A12B997EF965E34AEAFBA94A51CDE /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0762FF5E65B8B48396AE51968E7A41F1 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7444A40B1B537F90C7C63E07F94D1518 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 931C7727C13AA2007E3DE043B5818309 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 749AAA172B1B4C9E6B60C75F063755C8 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = DBF2B18E513F28D1A93ED2813F9BC5ED /* UMViewManagerAdapter.m */; }; - 74D5A67AF1B5CD8D5F70D4B21B377940 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A47ACD10FE754FB1E501EB6DB3B2AC /* BugsnagCollections.m */; }; - 74F035A3739FB611AC657C45A0705F5D /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 52D4902256421157B71FC68FC0D4A2DA /* RCTCustomKeyboardViewController.m */; }; - 7542E5B23FD2A94033E91741A29FC85C /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 83ED315E90D744642D619BEB6EB21AA4 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C2BE11440018581EBC4B0F3EC0831201 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 756E2EB3D368130B6759D0966456B740 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 75FBBA7B1735F957D6877E397159EA40 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74030D20785DEB1F46D01A1F25DD68E8 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8302198BC7E35B8F4579F3743BB37C /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 741A12B997EF965E34AEAFBA94A51CDE /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD25FB34758FB51DC7E27302E4E33607 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7444A40B1B537F90C7C63E07F94D1518 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B811FB2F2E622C6E7F75E53239362FCB /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74B23627E61DD52393A4AB0DBA1E9228 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA90C12864EB009CD6E675F76E9A070 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74D5A67AF1B5CD8D5F70D4B21B377940 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 11E03D57F66EB501256F836C2D395629 /* BugsnagCollections.m */; }; + 7542E5B23FD2A94033E91741A29FC85C /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 55AC0E8E71E1D76C815A2B44D9EC6795 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C953EE43D675E7E4F2A524D7E8569C43 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7570106BF161102128638495CAE72BD2 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A07617C23A5A8F43832309D7931CD65 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7634C8192A6DCC81528C2618227C6020 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 39BD66D976BF106158EE3E0DCCE9233E /* RNSScreenContainer.m */; }; - 7667D9D46AAD4399B58814F913A8686E /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6130F1B1405BAECDAFB5DE4E15A9C143 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75755377BF794B2FB9FCB94461441971 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A19C1A37B688D9DD773BDC435F1A03A3 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7667D9D46AAD4399B58814F913A8686E /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 42142C98D83FB3FA719077E99E300D9A /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7671DE80D363A885CCD01409AE9AB7E8 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC9197BEA9A6CD03FDE80F6B71E451D /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 769F66062C18EDD502120ED6DADF542E /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 30B14134CE1EEB8B9C85CD07B8687856 /* ImageCropPicker.m */; }; + 76B525C07B35D396C47F0C921FA22E3D /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 635583FD771B1F8A601CFC718C9E6D1D /* RNDocumentPicker.m */; }; 76D1C4D23092C8C69F0FB8B8A8C0F5B0 /* GDTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 260536C3F1F5B0F24E9A959B906D07A0 /* GDTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76D278CFDFD979F4F7D4D2A01EA81609 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F5A62A722065FFC58EE542D1BE7C7C /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 770F6A0BBA21C9FD5198F2B515D23673 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F3EB3CCAC800B73FCAABD2AB3CC8D66 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 772955A41B2F6116E8030A9AA06BC1B0 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 11CD407022ADFFFE83A433E38A3EF04A /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7712E32FF1FE9125A21F8F4B28E8F4E3 /* RTCMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = EF051C0F96F19A8D5A6EAA3C4283A1E7 /* RTCMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 771B606DFA203D48FB48B79D617618F7 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */; }; + 772955A41B2F6116E8030A9AA06BC1B0 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E8F009B087EA10C0AEFFDD2FDADE176 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 773DF3823FEB72512772C62E4829E473 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D1177991A497DFD1BC445CBC02CA0241 /* GULAppDelegateSwizzler.m */; }; - 773FEBE5BE25C0B804379C17F12165B7 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C30E17EA12ACB8B6F5C443D2316DD47 /* BSG_KSMach_Arm.c */; }; - 775940B5516DAD7DAFA6D2478D52B0BC /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61F704002BED4342EFA64854067A722D /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 775C000912D56C72E5465899BCB86685 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 501DA347A5F15080B7D877AA7572C3EA /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 773FEBE5BE25C0B804379C17F12165B7 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 2685BA09B2A6F53B3A58C8A868C0503C /* BSG_KSMach_Arm.c */; }; + 775940B5516DAD7DAFA6D2478D52B0BC /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57297CAB9BDE786F11339BDB0D2F5E82 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7767C0E3952BBC08D1308CF4E06820F4 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 54133D9F4117665869466A5C369D41FC /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C3093519357AD3D8DDD3AA91875CB3 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 18CC333CFF6B3F92573425FAD58D5BE8 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77CB756B987507A7330A422CEB1A1008 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 33BEDDE0314218C66E40B3D6D29732E0 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77D2A70CA31E67EFBBD4FA66FA337384 /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = F68FC3C95B1E5A044B6619F03AA0251C /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7813042E20013D4632ABEAA2DB4E7A02 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 96842932481E884A292EDE4AB2760567 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77B593BD8C2E96A36E7E3DAD7DB1374C /* RTCVideoSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A4339381AA10A87EC7DB89EE3D6340 /* RTCVideoSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77D3F7E5134C50EA23F7E27EDB19AC42 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = CA4D663A4ED65B8292786EACA86D117A /* UIResponder+FirstResponder.m */; }; + 7855E3096FA2DE96948913CDBCAAB192 /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = A0D9433DBCB75EB69C1FCBA82F630EF9 /* RNFetchBlobFS.m */; }; 785991A68E98C37DE3C394FCDC94C615 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F0FADC95915A678FB195C2730B7CBF4E /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 785AF1BB15C732D58DBB21A745EAB4D7 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AACC3906679263F744C164DFF7329977 /* de.lproj */; }; 7882A0C218AB456334FBE9D8B43C6D4C /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = D395A41DFE691263EFBD73A036326E1D /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 7890D46619079C3F266132CD03DBE391 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DF598D7B902935C20BC99B640D5DCDDD /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B1A1858D317B5B19BA45B5A24B8124 /* EXAudioRecordingPermissionRequester.m */; }; - 78C7BE01307B56D8E27C8D4B623C74F0 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F26386EFD752B77424A80EF7CC5BFB /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7890D46619079C3F266132CD03DBE391 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CA8AB657CF9F990F230F790DB4363685 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78965D0B6CBC706C270100EDF89C0FDB /* RTCLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA297E5F6841413D43E16C4B55249F7 /* RTCLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 15AF0B4DC7AF4AF11102D2015258C7EE /* EXAudioRecordingPermissionRequester.m */; }; + 78C7BE01307B56D8E27C8D4B623C74F0 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = E1D3F6AE70C836838DE24FB6FF0E5319 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78CEFE0EA22D795E0505D916879037DB /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = D3FF10070C419D99AD4D822D3AAEC58E /* FIRComponentType.m */; }; - 79167F099C2A1D71F2B0D3C17AD50AE8 /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A708B941708437F7363670F3F348DB76 /* yoga-dummy.m */; }; + 78FAD15BE85AAA7BD88E0098177B131B /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B299FFF600468CC5F031359F11529C30 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79167F099C2A1D71F2B0D3C17AD50AE8 /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D7C3A66C114C883258850DF55F4C5441 /* yoga-dummy.m */; }; + 7927300F99037E6BBE12220D2F120518 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = FCC2E608BC47E82A0F728FA5F0D83E2E /* RNBackgroundTimer.m */; }; 7956F82E4FF2E7C95F619C7D46C46EC6 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 11A45F09153174F9C31B423F50E5CCF6 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 797DD49F88C7649EE8E4BDB9DE7FC7CB /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 21050EF2BD74AC70BAF6B476AE19938C /* RCTModuloAnimatedNode.m */; }; - 798EF4CBF5D6292D6751F7F8B1FA159F /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 96DF7D0F2790F9FD27E8711D21521731 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 797DD49F88C7649EE8E4BDB9DE7FC7CB /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AB0E6202D1AB7C3808889080FC2FDC94 /* RCTModuloAnimatedNode.m */; }; 79D771190DC28CC5FA02B46AAA902880 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CF8EFCA224A8A78EE4E46873DD9DE78E /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 79FFF08137B345C891867B9ECCD22942 /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 248110FFB6D7D84FCA570A564E658222 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A5C069A0580C46EE9C1081148405848 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DDCEFC7882E2098FAE48DA8ABB0B78A /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A811D78E1C0BDF618A788391D1EDB9C /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 66F4FF98E9FFF492AACAE02CFFBB2DF0 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A8FFE84A1147FBBD40E3D46292889FF /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 785CF522439113A8560DB78775B9473E /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A3BABAFA30007CDC7C02FEA27CC556E /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C66AC9E6FA17B555C70A4A4F082BBF /* SDImageGIFCoder.m */; }; + 7A5C069A0580C46EE9C1081148405848 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB13650538B6D017FCD789F4778D483 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A811D78E1C0BDF618A788391D1EDB9C /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C28768FFCC38D5C0BCD109E6F85619 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A907775D8693790C443C198381D1025 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 27DAA7F9EA8682CF9704FE1CAFDDC2F9 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7A9CC2C608C6237F6EE0C4AB5AD0DEB2 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF6B7BDAE4BED0A9CD4FA64625B0751 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A9F8CAF1274CF3F6E606497AD877222 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = B84D2982DEAEA03D530758B19372E573 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AD9B8E99074C2A42E0C3078B62A5B12 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E748F391DE2D0222C842B58CE23ED8F /* RNFirebaseDatabase.m */; }; - 7B39A1F0B1DD3212F3AFD336EF5B33D7 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = A22F1995E1A4C9767FFEC42EBDC87120 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B55C57DA5E1D5ACA52260D3029AD5E7 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E715E22E69D4EE2459C743522B9C7D /* RCTFileRequestHandler.m */; }; - 7B78E4E0F992E63CC7807781C3FE6957 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92D18C848CFE795CF783D5A53ED04374 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7C087CF86045F5BEBFF948F58CD334F8 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = FA471AF8728317A5AA64BE4AFBCE4759 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7C0A72C50DDCD23F71299525758DC225 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E862A6FB290418396AD70B448B38AF /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A9243A8B0CA5C1BE54A18871377B136 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B812627CACF8DB5A9A6ECEF2B6BAFE /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB81C6A22EB6F90AEF1F81B33E04041 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD5AB1191866F85728382E4C44FBEA1 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE161304579335730486A53B7FE48A3 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F45C0F33507F57DFFAD844BE18EA83A5 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B39A1F0B1DD3212F3AFD336EF5B33D7 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D1A761F5B5B841EFCE9ADC6300685E /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B55C57DA5E1D5ACA52260D3029AD5E7 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EA2CDD8CFD0AF7275BE306600DF214 /* RCTFileRequestHandler.m */; }; + 7B78E4E0F992E63CC7807781C3FE6957 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D726F638517DE896CE8A5AC756AFFA42 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7C087CF86045F5BEBFF948F58CD334F8 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0063B16A44DEF4CC70469D83CAF /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7C0A72C50DDCD23F71299525758DC225 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = DF819287D44495036E766BE5E0BCECE5 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C6B5A988E42C22B1C1685137D2AEA34 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E2A8F94F10258B9CB15C9511A909B02 /* react-native-document-picker-dummy.m */; }; 7C87A0BA4406932C036C25C471937D6D /* GDTRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 50101F492CFE7EB14B22368701DA6D02 /* GDTRegistrar.m */; }; 7C9959418FC8DEFE5344262BE5E14C57 /* GDTEventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 12079D4841A499533F333EBD2126D6A5 /* GDTEventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CA2CECCDFC2D310FDE491C0CA02F95A /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 33DB261DD6E39B8C103A5CA33F90D5E7 /* RCTBaseTextShadowView.m */; }; - 7CC1471157F48EF002F3FF44910DC2B4 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 156E4D24CC7171A92173EBAF45D28EC6 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC70440A76A2C6E9F08A1C75BCE5503 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = F18B32911780BD620AC3DDA2688EDBD5 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC8556D44DC05010EB50BF43883B967 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A9B491BDEE4CB38A769E0DD6767976 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C9A2CB484067417A2C90E332DA9562C /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 258F9B9F16D67BA9A3F9CC592DEBF8DB /* NSData+ImageContentType.m */; }; + 7CA2CECCDFC2D310FDE491C0CA02F95A /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6F54A2F0A0E29211A21D353427C59DF /* RCTBaseTextShadowView.m */; }; + 7CC70440A76A2C6E9F08A1C75BCE5503 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 14491EE39D97F484A441EFF26F372928 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CC8556D44DC05010EB50BF43883B967 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7EF10CE970ACC1B584A8EE284ABCDC /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D0FEEC462C260D07B9020311037887A /* FIRInstanceIDKeyPairStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D79D9AA154EA96EEBA66E477BF5C078 /* FIRInstanceIDKeyPairStore.m */; }; - 7D126C0F95EFCB5F0E346EC107A3CDA8 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BE06D1FF5A95967E0D74510E562C170 /* RNGestureHandlerManager.m */; }; - 7D648F3CA8A6BF2B7D39EA407751E1EE /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E1AC173553BFDD838D58A54A2D1E42 /* SDImageAPNGCoder.m */; }; - 7D6612C74E6B6D84137CC99803C228C3 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A0EB8011D3CA4F519D993FE79606AD /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D800B7DF605EC4DA505C5FD11FF2F45 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BFF973C124E8B4565E4200E1D8C576C /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D819301BFE77D37A00BAAE737F55116 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C10C345193C4FAE67D12793A6E6AE6 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E6B86DFB9E3AEE5899B46E5CB93F433 /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F95DEDB8AFA6FC858386AA423429A89 /* RNRootViewGestureRecognizer.m */; }; - 7E7124056E5C06DD2D8BEC1926598CD8 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E65172060C29140E087D4C009FB17E /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E7F90CA6B5E5C12C553D87812625D54 /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 1770C4270FFE3249CE3D953576A40353 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EA2F2CE7509C3503B7717C762F5F398 /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC904A65F81717DC1CD333CCB25B240 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EACF7BC61F13C010958A2491EF76703 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF904F5756CA741FBA66E2E53C262B /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7D761DE80D83AD109FCC648C6B73ECB2 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A6DD973E46FAB266D85B6430C3F7769 /* RNDeviceInfo-dummy.m */; }; + 7D819301BFE77D37A00BAAE737F55116 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 633AF39CF5DC32F4D43A7608A2416A41 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D8BB001124DC8F41C5E16BD8BD0679F /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2E95ADEC93134427F1FEB31CC8EAA3 /* REATransitionAnimation.m */; }; + 7E22CA6660D765BCECAEB3DE6A014F85 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 964C2E3CA56634EA8AE6821E435242FB /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E7124056E5C06DD2D8BEC1926598CD8 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = A8ED432DB44B6699275DE4A68D609845 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EACF7BC61F13C010958A2491EF76703 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3033F24512A5200D8C8ABB1E14708B2 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7EC6D6512917B291275800F754CCC814 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ED0943C000CBCE5C0CFE814B96293C8F /* REAValueNode.m */; }; 7EF283AB71EC430A672EF05EDFAC61A9 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DD0B1E28CFEAEDE4D379309B30800D2B /* FIRInstanceIDTokenManager.m */; }; - 7F206DB26917E7E5E006EA1BD038ABCE /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 954237FD3402958590B19357C5ED017C /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F2D403722E8EB3877123FCA5C1328A7 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C929E0054DD6CFBA0D1A315C4E79A9 /* SDWebImageWebPCoder-dummy.m */; }; - 7F5FA717B791AD0C5BDC61FA017CD3CA /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = B7F1012C799C9791E4FECA188C90D12B /* RNSplashScreen.m */; }; + 7F206DB26917E7E5E006EA1BD038ABCE /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = D906BD929624467916DC240B348D1692 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F2203D1AEAF9B0444E077396A547230 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ADD2993692CDDD5DC70CEA68E893CA0 /* SDWebImagePrefetcher.m */; }; 7FDA2E290B7302CCD1F95EDA0B57AA51 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0822720AF0B66D3F1DCE5F03FAF7A2EE /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FEC20C9A7DCA7D9C724DEB223E6693B /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C6A3A1962CEE764D3B25BCA186B34E3 /* REAAlwaysNode.m */; }; + 7FEF728F11F0C83950E9A51607B420A2 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A7F770313525A6CCEA0860D039863F99 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FFE3E50F543939A64CFB94D5314A518 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 270D7865FAF7BACAF1945F47F7F36D69 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 803053E81096BDE4B074A94A935F84BA /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2D8D5F5EB97A290F064C371CD32EA8 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80A3A27B76CA72939E9489862C5C2EDD /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 758582F60EC711CCB0124EF5DD1DBECD /* FFFastImageView.m */; }; + 803053E81096BDE4B074A94A935F84BA /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 313BBBF4CD1F3CE1EA8EE05DB994557C /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80AC5B0498F2D2CCEE4DEA1CA335C6A2 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B98B838F454890B4210EEDEB4FB0FB0 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 80BAA833F96B96AEC71EE8EF80B1F5DF /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BE42ED26790753292BFA72C2CA78BDA0 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 80F8862C3574D3E214423A13DD88443E /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CE3867CA3D639A6CDF955E16ECC4E1A /* UIResponder+FirstResponder.m */; }; - 811C93F69324443B4FCF82D8396841CD /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5143AF7BB4FE28E5CFA20C2778547D /* RNFirebaseMessaging.m */; }; - 81202CBD37FF84A6CB464545F320FACD /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB6D8CBE957C8E1105C4C1E9E489D8E /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8122A09CD44C9DCDC8C89E77814D2C3E /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E99A247FF362A3036165E3EA86CA31C /* RCTImageEditingManager.m */; }; - 814EEB6EAB00BFEDD4DEE9D31B902541 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB72E8036204ABAACC2897F21840FE8 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8164357B06AC2FA78F15FFB206A11B30 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D1B2AE2B60CAF2061A95F64EEBA0E6E /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80BAA833F96B96AEC71EE8EF80B1F5DF /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CC2D8A41EFF8C5CE700D98B9E71F2F2 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 81202CBD37FF84A6CB464545F320FACD /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B9C4CFD173747A309E24626D368AA68 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8122A09CD44C9DCDC8C89E77814D2C3E /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F513EFACFEF5CA937FF0AC2427277924 /* RCTImageEditingManager.m */; }; + 812AA8CB19D82ED5B346D08507A9A83B /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FB760D99180F916F1F815ED956C082 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8164357B06AC2FA78F15FFB206A11B30 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A2DAE853B51FFAAE26D86DBF6162B5 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 816B4993A250FA68F095E20280618C2A /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C5491EE4ACB398BCAE280CA7D30FDEC0 /* QBAlbumCell.m */; }; 8182F2E263B427AA12C4AF390B885D17 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = A93F446AD7B620C126913D53D66C7C99 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819147C1905135463D2ED48C1BFD4C59 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 35884DAE6E417A457FA36C8BD33FDACA /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CCE4C52065036421BF08A1E4611A29 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = F779B73A57287E4D0934FB43928ABCFE /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81D4EAAAE01E962D3FE5650723B48052 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8AB01D3D17B7632E4081FA869D788FC /* RCTInputAccessoryViewManager.m */; }; - 81FB4E6FF7BD9963E94813C246824C44 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B64A04FE13450C5B8900B608418D8FB /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 826BAF1E3BCDEA784E74EDB50FD3D9DD /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AD020B08F433B2A45F6135BB3CD31AA8 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 82DDEC96FB5DF51A5FB0069D5DEA42C3 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA4B7775EE344D3605443272F244FB9 /* SDImageCache.m */; }; - 82E795B94F51EB1AE3EEEEFC44B166C7 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0B3D1FABF28666E78CD69FD13BE8F1 /* KeyboardTrackingViewManager.m */; }; + 819147C1905135463D2ED48C1BFD4C59 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D6A974826D08DE12A6C8DDF0C74DAD47 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81CCE4C52065036421BF08A1E4611A29 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 393528B515519041E4DD57AFAB7E116E /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81D4EAAAE01E962D3FE5650723B48052 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 69A55F4CA75C0DD8E0163ADE7B354A94 /* RCTInputAccessoryViewManager.m */; }; + 81DE35E84E913449291D64D54114DF95 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FB8572334F688D92312E1D462A7DBC36 /* REANodesManager.m */; }; + 81FB4E6FF7BD9963E94813C246824C44 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DB7296CDD0CD90CA0CDBDFD4AA0704 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82276674B95E92D2AA053A9F0E171939 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 436AE389A1F083361C83674F71CE60FC /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 823E7842FF3107877C3019C6E0E157E7 /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 545DB21567395C5939EDE45901D3A800 /* FFFastImageView.m */; }; + 826BAF1E3BCDEA784E74EDB50FD3D9DD /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E083547F9579F5ED433859DB6F6448A /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 827E48F597041FAB3D9F87826010DAE8 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C534987EA7AE4E220C03775356333912 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B35AF9C20D229F8DCCD16120D89FA5 /* RTCVideoFrameBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 40DAAD6C33D844CC2B374D9587D8841A /* RTCVideoFrameBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82F9B54A62E5D0DFDF2791B03C17993E /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = DD79AADB303B0977986710BC00250C8A /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 832015152BFDC131A2E4BCDBD83F79ED /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F46F521449474D9AAE65EC6D1BAD63 /* UMNativeModulesProxy.m */; }; - 83219CECD7AAA406A1C8B9E2E2D3B0F9 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 18575A59266F7A6CFE46B8E5FAC1ED85 /* SDWebImageCacheSerializer.m */; }; + 832E3F7A6E40EEB2702255D17BFCE949 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */; }; 83408F01EBA71440E6C97BDAC6DFD142 /* GDTUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA86202C2FEEE33586E1C460F5EA749 /* GDTUploadPackage.m */; }; - 835E28E6AC8654393480EBE31B99BBFB /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A48C31EBBEF0F5B9B1C2A5BA4C55CE40 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83761E62E577F2305290E3E62A0B92A5 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 8318223C8A35F75E96F9829DF56DED97 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 837E3BCABB1242E4EA4BD4AD76E38E75 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B48F68CE68AF6AA32D1E9DB01B87AC /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838DA2A98498D51317F4A32F00F6D42A /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F18E429D2BBC48452039321DD6F823F7 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 835E28E6AC8654393480EBE31B99BBFB /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7194D6DCC55275CE397D70EA634090 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83761E62E577F2305290E3E62A0B92A5 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E6E90D013EE6988A88B9AB64CFAD28 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837E3BCABB1242E4EA4BD4AD76E38E75 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 257232E964025624FC1750793BFD757D /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83872742B7EF62BD5F6EDA13C7F86FD0 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 797D106FB4A2A1743CC04DCBEBA74F92 /* SDWebImageIndicator.m */; }; 838FC3FEE030FC85C632A5D99A7F80C5 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 636B396301284754A0C275A5C8C6D19B /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8392D2B78CCAFDFF0BF01136BE4D4601 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = DBDFEA882CD8D83E46CA103863F67E19 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83B5AFCCA6960CC9F75C9E6C8D0C74DB /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 1933814A95A3BF25A22FAA0C3D6E0B51 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8392D2B78CCAFDFF0BF01136BE4D4601 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = A28DC1886F2C9C69BF8097754B5236F0 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83B5AFCCA6960CC9F75C9E6C8D0C74DB /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C6A84CE3700CC7751C0FD60097537BF /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83CBD6741F2817605776207A9D4EE8A6 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 9DB568250FFAF8EDCED8C4C5C3756ECD /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 83CBFB6FCB167C7F9C9B9B5E502EABF9 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A3665A1FBF0A6E0077C3867E53D095E6 /* RNCommandsHandler.m */; }; 84003E317DFEEE51A73780169483DACB /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C5CE98BC85CE82C28A22C9EB015CAE /* GDTCCTUploader.m */; }; - 84183F4A52E9E261C72A19497DD9DCA1 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = E94C014C9B9AF186154A1360BF5178BA /* LNAnimator.m */; }; 841BD4293BD63E749D78D404D4E2718B /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF4CA748C792A657820465D46282135C /* FIRInstanceIDTokenFetchOperation.m */; }; - 844CE9D54C2836BC2BD3E9631A83E590 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C66C4757D9B1F33B8A7972396D8DCD5 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 845A994AD06C3A97A7E1B733653C29E4 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 466AAC20CA13B094A23729F39FCE7B46 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 846FD3BBC8DEA27716E5F69C7A7AC84A /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = C343C860082F1FEE952201B8C2AF754A /* SDImageGraphics.m */; }; 848E360DEDAB6A5661F407BDF4257129 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = A8383AE4B85D593EDF8335F75E018DDC /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8493E48B9C43B862C26FD51B6C113A7E /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DEA33D505EAE6CC2FE9DCD399BE765 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84E1CD68F5C3E3FBD41466E70DE32401 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F13ED8270A95A84F57083C807BFD0A38 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84F5699277C0FA4C7F061B9EAF314391 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD13850CAD53003BB20DE1F2BF1826D /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 128BB4D76E8C2B3A3215B57805BF7899 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 853957680321D770A7167EA24130B476 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = E8F76157E29AEB6EAB0D38A989D21CEA /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 857C450571C28E2C63C29DF17692E758 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 28E1337B043E1B3D5A881C5D44E43501 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 859B985A52815D5B3710FCC5292CE486 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B71358F17AE9A1AB82FD03E1BED0957 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85AAA8DE4EAC1A88EFB67BA1614DAC12 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F4DA4810CDBA63DD3257BA2566B4B9F /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 848FDECF237DD781C604DD6B740A4342 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E04744137C4DC860143BC52B6FB9548 /* QBVideoIndicatorView.m */; }; + 84DEF8610831B106DBF4F1224BC74122 /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F184751FD366B731549E57C170DD3397 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84E1CD68F5C3E3FBD41466E70DE32401 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31FDD552F5F96C5238EECB2D3B521AA8 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7705F0B74DE9556F71CC98D92D99A254 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 853957680321D770A7167EA24130B476 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 795202CE3C06B97109C450876F8C4F81 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8558A648647DC243794DEA7AFD90D4B9 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACD1AD8B6BA4EBFBA76D60177201025 /* RNNotificationEventHandler.m */; }; + 857C450571C28E2C63C29DF17692E758 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 247C6C4D3C37FFC9F240FD5593F80342 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 859B985A52815D5B3710FCC5292CE486 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7830BDCC9FB0191639E0CD7BB25B59 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85A162812046959D5FA5369F6FC23D6B /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E4D3A8243738B05FCFDFD8E899E5256 /* UIImage+WebP.m */; }; + 85AAA8DE4EAC1A88EFB67BA1614DAC12 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A507BB59A2B27F21A3AD91CEF482B5E1 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85C2EC99B56CFD98C2CCC5F32FA58F0A /* FIRInstanceIDKeyPair.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE7C17AF0DABC49445CE80EBA378574 /* FIRInstanceIDKeyPair.m */; }; - 860625C0D332AD41A8DF700B8C12207D /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 133D81C69EE4A8C014E0D2D3D6ADBDC6 /* Pods-RocketChatRN-dummy.m */; }; + 85FEF5C31D6D6252B1ABEDE96B0A819F /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CAFA2752C18924C8CC5D9ADDC0963E7D /* READebugNode.m */; }; 8649A76A297D2E21447A67155DF34A79 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 13BBC2A6239557362F341AD5F1BF62A8 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 86574AE575BDB22018CD8900BD5A6D14 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = A029DEE8FCE2B8CD5EBD093B13332AC5 /* REAClockNodes.m */; }; - 86678CD2868DFB7BE613FA589EF45959 /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 441556D7A9CF8E81DE09D36CA7967F5B /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8681612093E1F23B3AC2EDA3FAB849E8 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 753CAC4F5312CF5C4CF9765EF017232F /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8685670E58A31C444B632247576E8339 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F42F431BB0E90988DFCE445EA0D7DC /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8687985D8E9D2B23DBBB25E7020406FD /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E6733F7D74F752DFF20DC887FA70A8 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8689BC88B341E6BEDF98B48BBF98704E /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1787D318C8069C5DE4410094624E6C45 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B2A7473598E2FBA07F8695F32FAFA1 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86AD40358DDB91830D0A460517F0C1CC /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6214EFC1D385FD8CC6147253FAE18861 /* RCTDivisionAnimatedNode.m */; }; + 866B388C0FB768E4E1117449E984F0E4 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EA09E15C4C86D4FF128B953F1193ED1 /* RNSScreen.m */; }; + 8681612093E1F23B3AC2EDA3FAB849E8 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3E5689B93737152646F792BA69FF344 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8687985D8E9D2B23DBBB25E7020406FD /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E2F68F013470EF6536DAD9C697D7C6 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8689BC88B341E6BEDF98B48BBF98704E /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AE16E0BF1D1DB866AE18CD43899CE756 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E55F239CBBE06779B56E91FC66477C4 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86AD40358DDB91830D0A460517F0C1CC /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 622DD7BE05BA9BC106F0720371AE8861 /* RCTDivisionAnimatedNode.m */; }; 86DAEF8820731D1C15928424330BA767 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 7289C8A37DAFE930F15415D6FF046AC5 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 86F8434EB8DE15DF6DEC783682DC831E /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A62630B597A616F406D5BC138E897E05 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87730102CEFA42EE60076433DDCF6F7E /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED8F47BB05C6724F22C460E6ADECB06 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 879AF62492BB818164FB39048C9533EB /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7BF8889AE3768AD15C05E0376FF5A58 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 86F8434EB8DE15DF6DEC783682DC831E /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 47D3261B2052D59359A491D485573B3D /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8703D2D0ED0C6539A3FE593524661427 /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE3C3286DE026A0E70EED1E2569D80AD /* react-native-jitsi-meet-dummy.m */; }; + 8741DEC28E954A457AABA2D6E4CE32F1 /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = B7CE3A08266E82E5793DB0FEC7DD7CCB /* RNFirebaseAuth.m */; }; + 87730102CEFA42EE60076433DDCF6F7E /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7A38165C820864E1383943E18904FB /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 878197BCF23DCFF2192C7EAD8BE57B52 /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = E847A89A58EBE844CEA300D1F3AD62B4 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 879AF62492BB818164FB39048C9533EB /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EE3632A2415579DB2FB4E89C89EAD1A /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 879EE0EB611D47E00EA0D2461B11C539 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B916F20C60F85F7360D2F3B2B64E27 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87A37B963F458EC671B112D8B216C59E /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 532A3924AE2B062FC4E6FAD7612CB25C /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 87C77CE28E3EF45AEFE750BB7575FFFC /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = BBF84FD0D965475766D25A1A9B273BEA /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87E4EC911E34BA6A25CB059D0A8ED606 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 621455A6189A6D813A2BF66B2FB2B919 /* SDWebImageDownloader.m */; }; - 87EF094DE2FDCCE7236C13CD9569F0E6 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EB25BCE31ADF1A90D96551E8A9B1C0B /* UIImage+GIF.m */; }; - 88214E5E2A114ADD3EE51DEAD80359E6 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = E55C69F29A2638E58545E47DB7888B7F /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88214E5E2A114ADD3EE51DEAD80359E6 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E4655DB8C2E772AB15B978AEF92691 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; 882B46F5C2965C2DD4C1F4916EE5E1CF /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F3B335E56A3601DABA0FC0776BC8F9 /* FIRConfiguration.m */; }; - 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD356547C14B8F29E0ED57C05BBBEB26 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88D960E7160D6EFEB65B29502B9E5FE5 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 15044948BD6369E56987DBA4C4AFDC95 /* RNFirebasePerformance.m */; }; + 885D5368CD8F211AE468C7DAE49C6A41 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 807E8500471F60CA515BC2A50F9BFC35 /* RNPushKitEventHandler.m */; }; + 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C19967C984D039E7A85431C2E801D0 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88A0263EFA2BED254412D1FB13BF68B0 /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8758183BC877AB68D7A46210E21282 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F20E46B225883D2B2A5457A006D8C9 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1D083FEE448CFEB52F774D6EC6F005 /* FIRAnalyticsConfiguration.m */; }; - 88FA13F1D8FA8BA39D35E071FC0A86AA /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C98BEC84CDDCE3D256E28A4572E00EF5 /* UMCore-dummy.m */; }; + 88FA13F1D8FA8BA39D35E071FC0A86AA /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D750066A0F718750887440D72C8D36BA /* UMCore-dummy.m */; }; 8930132E132D64934AF6AB53407AF4C0 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 517AAB99067CE5090E7DA2368B77BE6E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8943092C1189404F21A0843A51E19613 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B916F20C60F85F7360D2F3B2B64E27 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89744E55CDE3C8008029ADBEBFF465FE /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3DE3779262B81E17735B0A1B03A6AD /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89A40743C88B0047B3083C068DFF3C7F /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 47C91112BAFF2349CD154E89B5A14061 /* RNGestureHandler-dummy.m */; }; 89B1C58AFE4D079F1775D9AE2589B02E /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 834AE62042083B620B37F4038109DB0E /* GoogleDataTransportCCTSupport-dummy.m */; }; 89CDAEA204DA1341B986C199502BC4F0 /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DAC87828ACF9D8AE537F72FF4A4F57E /* FIRInstanceID.m */; }; - 89D3C452A34A703CA62770C2A9ACBD0C /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ED59E162A1DCFDB2E12C589CCC8468F /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A4888A0CB97AEE826B8958BCFB0B51D /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 98AC5D5D6A36A6C5F03ED9487E121BA0 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 89D3C452A34A703CA62770C2A9ACBD0C /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 443C6147350CAF89ABC861B9462F6B68 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A4888A0CB97AEE826B8958BCFB0B51D /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CF4C24CFFE7E566E48EFD73E27708EF /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A4F1A774003F36828AF6E06EE97C5FF /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A75F46F02E1A2C5721662F565E64167 /* CGGeometry+RSKImageCropper.m */; }; + 8A847D5A8E816689E8E20C403048D692 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11167AFE1757DD2A3735A87D15321186 /* react-native-splash-screen-dummy.m */; }; 8A885CA9B621D1B647CE2A6E5365DE12 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C65D88BB93F4A0E524F9B5475F0FF4 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AC0C228313F9C48BB92AFBA4818358A /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 995B81C327656708EE8D725DD6B446BB /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 8ACC67DAF8A7F796E25D42AE36EE0E1C /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AB645AEB5EA032D771372C901EE0EFDC /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B029912233BB9A18F149E49D99DC974 /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F41DAE0722B98B6226FFB79FAE1A934 /* RNFirebaseFirestore.m */; }; - 8B95A720890DCDF42E0B3FD992876F6E /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 92BE47053C59D6C72CA8358F8B660F1C /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BE376E339D41C5100A4182004DF4236 /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0261BCCDF2648D1A43E5D1F36B9B7604 /* RNCWKWebView.m */; }; - 8C26C66BE52E4E52ADE666FB7506D039 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 597A092C9AADE755D202F8DEDA4F09A9 /* BSG_KSMach.c */; }; + 8AAA0B0135F8EBC06CD4B77B70C61964 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 134E69F4E1EE7F097EFF2A9560C12F0B /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AC0C228313F9C48BB92AFBA4818358A /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDF5CB6940FDAC51C6171F10ECD1B36F /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8ACC67DAF8A7F796E25D42AE36EE0E1C /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AFF4BBE84511E470DA5AD69A14ECFDC6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B139C7ED3330D6CD7A630D2F197E970 /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 30357DF7ABF3B014C79F65908867EBC9 /* RNFirebaseFirestore.m */; }; + 8B3B7F55834A38F7925410DD822775FD /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = F077345CFE65C76A10C340C50E4F83BD /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B7E4EC52E2D1DBA98ADEBE76EA7477A /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 48866415580354FBF873DCF0211B4C84 /* SDImageTransformer.m */; }; + 8B95A720890DCDF42E0B3FD992876F6E /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BF52A7FDCA670C0663EEA64E78F333 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B9B818D05E95770B35C6AB50AFB5D52 /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B5258AEBECE823E2C2C75AD3A6FD70D /* RNFetchBlobNetwork.m */; }; + 8BA110C87F5E33516AE15023857DC610 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E0940ADE07D8CBA6B2FC95ADF0740055 /* SDWebImageDownloaderOperation.m */; }; + 8BB33AE50697466610AD86FCD2C29242 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B3993C4101B711681D6F9FDA64D67AC /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BF612D80239878EDE70437331809BAE /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAC0DE1B2D16D2F3F98ED0C1EE70784 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C17EE533E213FC3CF8F742302AE9E08 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 521EEF0EA5C39DE2420E67CEA6A856CA /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C244DCE640C264D5737457A6B25C623 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 632D89C1E5C1CB57B37DBC3D0B402B38 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C26C66BE52E4E52ADE666FB7506D039 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = B0D526E64BB8D35243A7AE962F308165 /* BSG_KSMach.c */; }; 8C3844F23E883CC4C3AFA8F54BAAAB69 /* GDTUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C13C29DE2089FADD1CD243A263A244D /* GDTUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C6DDADD5F716A9BC8ACB2C696EB54D3 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E38ADA686820922176D076F36DBD56B /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 24ABA99D582D5807D35D659070E02CF2 /* EXContactsRequester.m */; }; - 8CC1F2A6C209E99881D48797A1ADF0A7 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E89A478F50BA040045349B1DC0B001 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6659A6A7C9CE77D75C5C758E52482F53 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CED141149EFFBAD701E9AAF21C0D03C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = FC795F13A1F4E1560E61F876EA232F06 /* UMUtilities.m */; }; - 8CF6C49EBD51B40A38938EBE75077BA5 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1323265EED4CA08F2278F56F0E5587EF /* RNImageCropPicker-dummy.m */; }; - 8CF8665C31675F8FB078509262373C59 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 22B1FA7F3CFE61D7686E0135176FA950 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = BA2CC8FBDA5DE4B610ECDA7FB13AFF97 /* EXContactsRequester.m */; }; + 8CBC4CA0B45A6803E35BF11CF16F0579 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E48C528D89C280BD3AB34ECF081E506 /* SDWeakProxy.m */; }; + 8CC1F2A6C209E99881D48797A1ADF0A7 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E38FB06AE0AB149E33DD46E7515C24 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DB7811676DA11C00165A3B5482998F2 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CED141149EFFBAD701E9AAF21C0D03C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = BF5862C159E8FFA7B28C316BF00AD010 /* UMUtilities.m */; }; + 8D279CD71AA8C6A758A67272B12844AF /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E95A35F60D69F40CFFA03284CCA52BF /* SDWebImageCacheKeyFilter.m */; }; 8D8C90B91DB286AC93C129B102A9BFDA /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = BB5F2196F1F6A0EDEE597A6832009041 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E12F102AB2E9838DDE6962237785645 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FBF31FFE5B439D875AB3F113C0215E4C /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E412E8EFFF7AF9D9DE06F5741936067 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CCDFB44F38DA8AA0C63558163E79218 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5C60FF5762DFE075CBA3C16877E7FD /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B4E8E90A13B5E22E61FE9E1F954C032 /* REATransitionManager.m */; }; - 8E601D963A773ED166E65B5F262D6D18 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC9A2F78A2BFF013DBF0E729EE452491 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E604325771D96C5B0A6765F754C7033 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F0CDDFC37CF634DEAFF325946238AC /* SDWebImageError.m */; }; - 8E7FC25F2EB763A3D697F23B705067AE /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AD839FB7717A659FB15B1922965E29AC /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E9912E9184107B70F72484365E73B79 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DE03D9FE21418C384A041C003CF109E9 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DEB7672319336643561FA54578EAA35 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = DCE868B2DD2A2397AE9CDB09C640B3D7 /* RNSScreenStackHeaderConfig.m */; }; + 8E108B535793464D26A5C72B80CAEA42 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CF95B1C0F946AD48D73E33DA6D128B16 /* REAPropsNode.m */; }; + 8E12F102AB2E9838DDE6962237785645 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF9629FD6625D183A0EAF00AE1F14DA /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E412E8EFFF7AF9D9DE06F5741936067 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 50318ABCA6A5C8070198468ED503814E /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E5CC6AE814348EDE037B47322991544 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CF34934D7B6EF5A185FBAF6BF9CCC504 /* UIButton+WebCache.m */; }; + 8E601D963A773ED166E65B5F262D6D18 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 278D7B535C493D8E3FB6C0E407CBFD32 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E7FC25F2EB763A3D697F23B705067AE /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 941B23A83E08E05FC6E21D1812537ABF /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8EE80AB91ADA3A9A2C6253A49BE3664D /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 32CC9D017DB6C7A3550D95D367BE7155 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F0A073C081316C18497D57468A778AA /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 21E6053C49A19DC1C3C72FA302830870 /* REATransition.m */; }; - 8F224476D1EBF85E0ED56DEABDB859CA /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 82F37BD13BD7F4976D1153BD80C59939 /* UMModuleRegistryProvider.m */; }; + 8EECD58D7C1F5131856D23D0BC2CA3C2 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 1619F6A005B57B9AE7F4F37AFCF390DA /* RCTConvert+RNNotifications.m */; }; + 8F0A99981FEABE0EEEDA7B857FD53727 /* RTCRtpParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = A3FF8A2D1F37C073965EC979900E9E48 /* RTCRtpParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F224476D1EBF85E0ED56DEABDB859CA /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C4A8CEB69CF7F073BFF76879220236F /* UMModuleRegistryProvider.m */; }; + 8F2473952353DFA2C6C446284CD05F08 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = F697DE0B6919F1EFC1C138220D793285 /* RNFirebaseAdMobInterstitial.m */; }; 8F2FFF7829D53299777DCF5ADBD4E4F4 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = AE9C522BECF62823BF32C1C310AEA94B /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F3B79F769C77B1242AD6920F841972E /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A474ECFEB4E81748E6FFA85CFDEFE7CF /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F3E78E2DB7AEB8C9FB6BFCDDE9C7089 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 25EF2FBD2D73E734BE8605878ADC7B10 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F467DF6B02968F89BEF4985911982D2 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A3D32B07E6867105DD76AA8F940ED4 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F8BC3E509C75D7F5792EC6A9930BABD /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = F88B74926B008347BDBEB34C37912AF0 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8F450B21063A1E549FACE5934797325E /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8B25E20FA3258580F26D11319515F3 /* RNRotationHandler.m */; }; + 8F467DF6B02968F89BEF4985911982D2 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 697630C007DF85B31C9DFEB788311FB2 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F8BC3E509C75D7F5792EC6A9930BABD /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20C59FB31AD3429F83959DDA43D3B3CD /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8F954BFA8C27E1B462B557A6C591B8EB /* FIRInstanceIDKeyPair.h in Headers */ = {isa = PBXBuildFile; fileRef = D21280F8727253B2C9655BF79BCCAC51 /* FIRInstanceIDKeyPair.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F95C811580055653F64AA077EBECEB0 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB3E79D22D106F3C4450980C3272322 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FB58FA7FB611869FC526CAB02D469CC /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F4D4ED48B0ECB914113D1E20CCB8BC /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FB712D6707F35580CAE41CCC8D9968A /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5505582A16B6C1A593328E0D8B9AEB /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FCA72E3CDD974F1FA00B30E1A09A3D9 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4947D5C4E29AACBE0A9E8E2A8B476931 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FF5B8FEE9262F76B3A4AB3355C82879 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4AF7890C9B054C452D81767DB2C25CB /* RCTVirtualTextShadowView.m */; }; + 8FB712D6707F35580CAE41CCC8D9968A /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 941AF3DE8220D538FEFF4A0F824B2144 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FF5B8FEE9262F76B3A4AB3355C82879 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5451638C37FF180AE6320A16C731855 /* RCTVirtualTextShadowView.m */; }; 9058DE52F6CC41428189AEF7EF397B2C /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 19D604C2576BF318DD3980220AAAE424 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 907594BCF7444680F49A3C481A1B9BA0 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A2048FA7569E8B0EA346BCC21379747C /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90891F4884E27C8201EE582CB7949F16 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = C4F52BE8C4C32DDDD82F9A4E0F1C97D7 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 910EFDE49B3AD263164EE425DE9ADF6D /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 27759C8A5584B75F06B24243917E8C69 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 56748298AEFDEAC5A13A5E58FDE1B660 /* EXFileSystemAssetLibraryHandler.m */; }; - 91710BBF0AE58981E3F8AF6CBA45824C /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2E84E8150CB61484C93DC8EA304FA5 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91906146144E1B4CDE30800973606DF8 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE94543A04B8947916F72F33F5AB59B1 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 910EFDE49B3AD263164EE425DE9ADF6D /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F5DF676496EE5904C71145919DA9ABF /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9123798FD6EFBBCCB642E17661468672 /* RTCMediaStreamTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F66F5DD04189A99F8F216E0B896022 /* RTCMediaStreamTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A9461706030CB674B1750262BC8E9A50 /* EXFileSystemAssetLibraryHandler.m */; }; + 91710BBF0AE58981E3F8AF6CBA45824C /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F85465DCC92F826D781C30292A8793C /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91EBEE6C3677C928383C33066D84DAB7 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A88FD8114BC9BCAEA646DD2C5C88977 /* SDImageFrame.m */; }; 91F98C0368F0FCC6306D4CA7B4CE4131 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 44C76917613733B052AA6184773C735F /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 91FD01CCAEB23BD7D2E398810DA2457A /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4879320CF6BE6C0D063B667FE9A18098 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9203BCD0B116F6976200251A5B486DEC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 90C5F94C259D127985F5504AF6F1AC53 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 92240F46854CA8BBDC36758464E9CB46 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9541EC8EEFA485E6751EEADBF3A47171 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9257A4607943CA546FAD51EDA7B9F3A0 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = F9740480210214F5412743F3E731F9B0 /* RNGestureHandlerEvents.m */; }; + 92240F46854CA8BBDC36758464E9CB46 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116F1693D8BE11B18B431341D42AC86 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 924E6CCD088394537B162F753CABF946 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 31313F08922AA436F56F130588C34DF2 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 926DCB75CDCA4224082A5557643B8340 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A2FC07DBC2305E98EC8F83EA5D42FE4F /* FIRLogger.m */; }; - 9289E14D497B3CFD6A4924C9A68D9ACC /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1679E5BE8868596CF47C6A0FC2C4FE43 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92C47060A7FA2A54595556C87BBC5E08 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 08F290E8B914AD2F4A0718FA4653FC6A /* BugsnagFileStore.m */; }; - 92CEFA1324AD047F4894F170185EECD4 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B9739D66D2E280DEBA2944F9DF3BD2 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92DEBEA9A386D7889CB3E74FC7704DA3 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0F7056E659D32F16D88D84E7D41C2C /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92E8C8298E019DFFAF6B05A57F5E92F4 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8280CCE224295CF5C584683E92542089 /* RNNotificationEventHandler.m */; }; - 92E9DE603A0672C83FE1002E39239D25 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = EFAE338509D559B5CFC264BA55A04519 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 92F18C16FAC71B3C405E0E4F6B4C18A0 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 49EDFEC01407C66949E4CEDEB9038890 /* RSKImageScrollView.m */; }; - 92F3DB9D5A0513868F3EF6B2D8A51C60 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BD49563A0BA117D4E7F798DBE0AA567 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 930358F2C522A162E3A667DB2122A975 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90406E98007D839481A26DC833A3A655 /* RCTNetworking.mm */; }; - 931E7FA914F5F66943926B207161638A /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76B021FDB4469EF4DB9DD5DBFCAF5C57 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 92C47060A7FA2A54595556C87BBC5E08 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 35BF9A3B2D41865C2DCC677B1B7D4C11 /* BugsnagFileStore.m */; }; + 92D78A2DC618AC6F3D02D7F448385F39 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F00F820638BC4F291C06097E1409B2B /* Color+Interpolation.m */; }; + 92DEBEA9A386D7889CB3E74FC7704DA3 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 60934FE549C8F5591B988B0A80CA3BD1 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92E9DE603A0672C83FE1002E39239D25 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 63C8A1FC0E44E0A2337E9F0FEAFC2A3F /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 92F3DB9D5A0513868F3EF6B2D8A51C60 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF4EF760B7F589A58BA45E717F0389C1 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 930358F2C522A162E3A667DB2122A975 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = E70C4358D1AAF6D073CE5C82AA2DE2C9 /* RCTNetworking.mm */; }; + 9315C485216123B6C3D5B10E2055624D /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A2048FA7569E8B0EA346BCC21379747C /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 931E59801F28BD777BE780FD1B39096C /* RTCVideoDecoderVP8.h in Headers */ = {isa = PBXBuildFile; fileRef = 94827F74D8E1D40CD7E4413D73B5CB37 /* RTCVideoDecoderVP8.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 931E7FA914F5F66943926B207161638A /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = DCB3FB1F1C86A08540A6A052D7FB42BA /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 932C306F1F748B77A388E1D22BFB051A /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D7C5FD4A2B413F2340C28CE67D1E39FD /* glog-dummy.m */; }; - 932CB53DDAE628581A644116CCFD82C7 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFA0E290F72E671A7EEABA9C88C34A5 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93493A051B15C9B860A871B230BC2E15 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C3048BA25D9C7F05C9E07E5B74D946A /* QBSlomoIconView.m */; }; - 9352EFBDEB1ACF7ACEEC5D46FFBC0E12 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E463891540DFDF7794DBF0EF315A10A1 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 935C6E92C61F132FE501C8D0C14F6048 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1D43E32E369D6434B314A3E9231302 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93792AD4F350D97F54139754AA0007C4 /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C84519A110E8699404C4D6B59F05A8 /* REABlockNode.m */; }; - 93884EE2241BA8AE6FAB782730CE93B8 /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD6096ADF83502C482B4CB291EAAA44 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93B61BD439BD90750AF7BEB61B40B2DD /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E75BF06105F11906E395759D1B7F66 /* UIView+WebCache.m */; }; - 93CE32A20E5A7C1A793E1FB529882268 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B866A5731856216694EA6181891C9A7 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9352EFBDEB1ACF7ACEEC5D46FFBC0E12 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9030F149B08259FB5EDB32EA856DE568 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93554BCDCB3335B2637B539F4867DD0D /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7856438996BF1E5DF536EAAB0EA7BBD2 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 935C6E92C61F132FE501C8D0C14F6048 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F6D391ACBA89A9C14AB36C15309C46 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93CE32A20E5A7C1A793E1FB529882268 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D2D50FF32EEBB560B7AE64F6A5F7A7E /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93DFDA29F6A79477739EBA5A853C27B9 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B07643B402ED0516D25F7EB0DE7F3A /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93E3441ABB65B7C821BCDA662B2768FB /* FIRInstanceIDKeyPairUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B493F2A960542CBABCBA009D697382B /* FIRInstanceIDKeyPairUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93E830F8D45B354C4722F3D2341EB9B6 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B812627CACF8DB5A9A6ECEF2B6BAFE /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94013824F6693C27E33A308D811AA546 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4AD75E49E586BA3AC46DB981A0883F25 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 942C3802707351F5C2AFFF00E72DD602 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 0530099C716A8EB6503416538DB3B44E /* UMViewManagerAdapterClassesRegistry.m */; }; - 944891792DBCC4BE2E3D810C9195CFEA /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A856521349E6A76552B44F0D4A9861 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 944C86F14C0127649AE14497D7D8BA0A /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = CB09CF769EC49B1D96E7A5FDA8D49939 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94018068156640F178FE1D19A318537F /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DFEBA51911EB725E6B74D649C099D4BA /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9411382D4FE9923F3D6AD9CA839700DD /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5107C6780B01E836B2E16DCD00F2428 /* RNUserDefaults-dummy.m */; }; + 9412D41189CDC2EDB91EBA58F62FF0BE /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DFCC2AFA198C5122CF36CF241F59838 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 944891792DBCC4BE2E3D810C9195CFEA /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = E4417D435F96602949BEB1360D9DC349 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 944C86F14C0127649AE14497D7D8BA0A /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 9491AF948F3FA874F54067CE881ADA15 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 944FF9384860EA20586A25FE9FF6C62E /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 97DA18D9EE387290D486E736823D7603 /* FIRInstanceIDCheckinStore.m */; }; - 949B7A966A3C1573F92830D5132B3BAA /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC024D8FF2A106AFE66E3AE0C33EC29 /* RCTVideoManager.m */; }; - 94C4A72B4DAF9D8834A5EDC0A09C8475 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF18EEF141DF5F227AF06FE09036D47 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9509C889C6C52C7650153902074685ED /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CC23D047156D34C777C563EF240C8 /* REATransformNode.m */; }; - 9550654EDB769EAC5245B4EB4F245B6D /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 912415A927A22B47295DD3E49FFA3F4F /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94EA1FADC4793E95CF6A910FCA0D4F11 /* RTCVideoCodecH264.h in Headers */ = {isa = PBXBuildFile; fileRef = 251D21ADF6756B97FC6BE61E1630499C /* RTCVideoCodecH264.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95267289A8570FB255C8FE79D8186C7A /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E52E0E9DB232F8BE40F074B56A453EF8 /* SDWebImage-dummy.m */; }; + 954C71FBA3722AF42215ACF6DB07320D /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = A6684837231DD32E07D224681453C6C2 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 95559824769C8A828EE38FBB74F3F973 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 77D4F80E797422D53F0251EDAED100C0 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 95C9252833B97289DC30F0CDD4F06553 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E9C6023E4AD0B24DA5981A5041E3A /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95AD4D615EB93AFF49ABB484F07F677E /* RTCCameraPreviewView.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD5944720427A8A79A2A9EED8046DC1 /* RTCCameraPreviewView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95C9252833B97289DC30F0CDD4F06553 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6171D5067F5D89D772A3929E0CCD4E45 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95CFBF3D0E4C1AF895F5D53087267FFF /* RTCFieldTrials.h in Headers */ = {isa = PBXBuildFile; fileRef = B9FB3532848E9B7CE75741192C4A2FD2 /* RTCFieldTrials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95D3A157AAD45D758D291FA70317AD03 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 676C9BD02F9A83AE28758C0480D94D5C /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9609EC5684980D21785F1E0B1ADBF584 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9239F7934F0262AC40BC68B8AF087DDF /* RNFirebaseStorage.m */; }; 960BB6A747C122E41D0F93EEA6E0624C /* GDTTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 341248537B532E1C3BF8A28CEA019E6A /* GDTTransport.m */; }; 964ABA3C96E97D837CF19EF6ADAC7E3F /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F8A7EF910DC8670B6204E30CB6D451E /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96524DB391FA3D7058641F02E5B32F58 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F341FE17636745670AA079F49C5F2AB8 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96727379B413EE25E3D3964E39EC1A3A /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B88C41FE8A7C445F9EEF3672DFA1A03E /* react-native-keyboard-input-dummy.m */; }; - 969C4AEBC9895551DDD903380BC42E7E /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A6EEDA73A17B95FA26ACB3C428EF25A /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 96B4F4E21FCFAA146F6F5F35DC41CA71 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AAF2ACE3FE7E2DD86ED5D32E5150F27 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96D1F45BCCAE2836A1FFFECE8571FF27 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = A3437A444290BFD6EEE4762F77662EBE /* BugsnagHandledState.m */; }; + 96524DB391FA3D7058641F02E5B32F58 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1593030F22AE2BFCE51AF99F036580EF /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 969C4AEBC9895551DDD903380BC42E7E /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EC34F75309538B87594A874F3971B09 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 96B4F4E21FCFAA146F6F5F35DC41CA71 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ED939680B988B1822284F02D238B80 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96D1F45BCCAE2836A1FFFECE8571FF27 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5B5C42F8458B9CEF0F6E93BC0B9E22 /* BugsnagHandledState.m */; }; 96D3ACDC9FE404F697EF785FAD078FD3 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 09EF4E232018666287D6E19D9A6F49DE /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96DB392D51057262AA777A13D5BF98AC /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD5AB1191866F85728382E4C44FBEA1 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 970EADF73ACDC5F70DB9291E80C04C16 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 29AD1BBEB2C4D9860135FC766A35293F /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 971417771F6AC283F1638A71C40CD587 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3320D4B37DE3C86CE3C1F4AFCAF5A616 /* REAJSCallNode.m */; }; - 979DB6289738EFE1CC1FE9C19CF6CA95 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = C45960864EA6614E94C4C8C5BD3E9FEE /* FFFastImageSource.m */; }; - 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E5122C9D21ADEB6FB946F998FB812A /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96D467CAD650EF1C5480B56809C9A90D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF7F9BEFF85E6EC05C2C65A82D0E4E6 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970EADF73ACDC5F70DB9291E80C04C16 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C8B14D0CCACAF6FC03AF00F35B77D6FC /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 978D7967C58E9C39C0B102563A14EF6E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A0B99299CD4E6CAD2BE62176783DD9CB /* REAModule.m */; }; + 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B10515C97546B76D126CFD17416038 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97D064D865A60353B7C736205A370BBD /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 710A21C1D548E46534D46ED9326EBCB6 /* FIRInstanceIDBackupExcludedPlist.m */; }; - 97F94166AF8379F5614DE1FBA08B7FF7 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 416430EA4704EA4EA18C0A8E9A803ABD /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9844AA9F4622AD1B8272E11944DC971C /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D1BC3B8EA59881FE1DBEE594195E2B7B /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9881AD8E99F516C2926C290955EEDD8C /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A3BA1AA2184CB88047A24ABDE6B7EB /* RCTFrameAnimation.m */; }; - 98A5ECE82530161B4B42F08EE6ADE4FB /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = B30AA69C2809E9542846F8C923C0914F /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98F4A2C2A6E61E22704B6D9777C5B849 /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = BB830A5595A1DE6714426189002D6F3D /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97F94166AF8379F5614DE1FBA08B7FF7 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = AF775ED8BFC07F13828BF3ABB9B86A1A /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 981DC7AE6407643EC160FD08C461F4FD /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 217F81D49069C659AA0F4E74ED8E4D21 /* REANode.m */; }; + 9844AA9F4622AD1B8272E11944DC971C /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = FB8494725B775BF5C7CF2B8F59044F5C /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9881AD8E99F516C2926C290955EEDD8C /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E4B12A8F9B292B97026D15BD63673687 /* RCTFrameAnimation.m */; }; + 98F4A2C2A6E61E22704B6D9777C5B849 /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD671CE3FE34A0220E925FF2F5A8C38 /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 990BB1DEB3F600D896D5B6CDC343E258 /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8879B74BE4D8A9EE581BC7191B2D3513 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9920920B04C78F88FBEF8CF5C840B73F /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = DFF4F28EA39916169E14C9E88A56D357 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99276F9D342CF71F5C8F2B1FCACCEE9C /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E979B20C047176EDDA8B0899B05CC85E /* FFFastImageViewManager.m */; }; + 9920920B04C78F88FBEF8CF5C840B73F /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5EA95BFD895411F657F623558D2AC8 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 993B1B14E6A0E34BC5DAD43E7AE297F0 /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A785C0A08BEF4A7671FDE7C7153BF55 /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99533C81B0CAF1517C33715F79CB6E08 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 02FABC0EE02F564574C15A0CDCF20191 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9971860011EAD567257DFC3A9408BC2D /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0E9EDD098A4D02DF3CB6D72A0973CA /* REATransitionValues.m */; }; - 99EF34DCFD1F55615D1DB3AF574906FC /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC2428E07CAEA5773D4EDDCA723E8D9 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99F15750155CC354480E47A9E586BBAF /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEFF9C58110B2293B28CAABECC90179 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A0D199629E9C47DFD9AEE9DC508C6AA /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = E10138594962EF536E3E74A60AB6378B /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 99533C81B0CAF1517C33715F79CB6E08 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 1496791F7875988245696D34C6F6983A /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C5C1DC3C22DCD5462EC55C8BA7A1D /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 775D0B1E232EA49373E8F5B42E714770 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 997F75BA65D7EF39C1B56319527C6888 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4947D5C4E29AACBE0A9E8E2A8B476931 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99BA605EE7532B2F9FEBB675A1F27015 /* RTCMTLVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 75120C73BACFA17BECE17FBC02294736 /* RTCMTLVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99EF34DCFD1F55615D1DB3AF574906FC /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6723AF942CA689A3C3BD7FBF7226E97C /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99F15750155CC354480E47A9E586BBAF /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2941941374CFBB82FAC3F79784B689 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99FC0226A14CE8AEC27D411BCFDC079A /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F1B67B7D633BA2255822A9A9019DDA /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A0D199629E9C47DFD9AEE9DC508C6AA /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FDA5EAD04DABB16FA40C9A37736DF95 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9A3099BF1A3303D97FF4B77EE8FA453A /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B245045CF92F0E6C10BF9A8D1AF8395 /* firebasecore.nanopb.c */; }; - 9A7F20B4446EA60892D669CEBCDBB30F /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A5F8D1A7D44B13565A9FFB33E0395B0 /* RNGestureHandlerModule.m */; }; - 9A9E08F834CAC6399D8B90FC89842AED /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F9E9C29B4DE14CFD4D20440F9D47A8 /* RNCUIWebView.m */; }; - 9AA70BAAE83EA7DF799D41A2F35F4C0E /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EDB6EF2CF018630B5EA31363CD5C6AC /* RNFirebaseDatabaseReference.m */; }; - 9AEE513112AEFAE2C7FD2F45BE605735 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B87E594363914C08F60E7F87BC3C62F2 /* SDAnimatedImageView+WebCache.m */; }; - 9B53DEA50407C3470D09615A52CDD41B /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 436F250586F71C1E0ACD295CF676BC8C /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5C9E735B5BD3595E840E270492A06C /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = BA23BC21765015EC45A51BDA2B601FD5 /* Compression.m */; }; - 9B6A2D5C1DAA4671600F0F3EDB17A3D4 /* React-fishhook-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BCF7884C8A9C4D99E5E2BF1DFB9E05E /* React-fishhook-dummy.m */; }; - 9BBB35BCF881AE736B0F0627BDE78D17 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = F7BCCCE4A93E3EB848BD5F8CDBD8E1F3 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A5B54640BB07774B4F55339954F9B53 /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E4D0A95D645D6EEE043EF41795908E /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B53DEA50407C3470D09615A52CDD41B /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8D9875012EF94FB3B366AEF1E6FB24 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B6A2D5C1DAA4671600F0F3EDB17A3D4 /* React-fishhook-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94A36DFB5F1A47939DD65A932816CB18 /* React-fishhook-dummy.m */; }; + 9BBB35BCF881AE736B0F0627BDE78D17 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A61D35C37C8AD0E66BDCB06DA7D2800 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BDCFC848F4DFD1BF8A53CF29164196D /* GDTEvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 43438266D6833B9B80862D52E641C88C /* GDTEvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B21822126020627E92AD8B308A8B95D1 /* EXHapticsModule.m */; }; + 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 82CA8723A487FAD385ED9DFDDBAAC373 /* EXHapticsModule.m */; }; + 9C5D4B2A41B7F9D74F9CB8B0EC3050F2 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6893302EFE047A8E68B0ECEB7CAFFEAD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C81DC160E9D9E03F09900898DFF264F /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = F84E044A01FDFBC089870B38D42D57BE /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CAD874D4A664C7A0AD8A4E3D6F614F7 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FCB87EB44E1F15BE76EC4FDED9BC12 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CC8AF94995AE4B94A792BD1BEA1358D /* GDTUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 48E310BCE6CEE84413B0F6F4C8E4D4F1 /* GDTUploadCoordinator.m */; }; 9CD9716DD336B98D69841069C775A17B /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FE0430BB8897862A9EBDB1A2FECD649 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CDB518B110EB3992DD086CA69DAA8DC /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD94EC0403864159C39B2BED509EEE1 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CDB518B110EB3992DD086CA69DAA8DC /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E198166A2ACA8C97332A716302DA299 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CDFA0146999D7C28645CB9F90B05188 /* GDTStorage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E863253CD22A2DF5CB3D7E9F6FAB3584 /* GDTStorage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CEB9D3F95CCAEA773F0ADE937FC4D7D /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3012AA5494957D83BA41715E529F1900 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CEB9D3F95CCAEA773F0ADE937FC4D7D /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 450171782DC0F3BA8C24E47604F4B3B0 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CF9ADFE94A2AD9BC64ECD84493A9A89 /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D7E9E1C2555F42F76C7E9D1C371F2E /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D37DEF72A22FD1A72198F1C269F29E9 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = C05C6C734B7E36A49D79E4340E2E1A98 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D4DB9326E4987C517CFB2EE99565925 /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 35E9912AA4787FB7820E69B86B7A5180 /* RCTVideoPlayerViewController.m */; }; + 9D3FA3A23A0AB9DBD5D306BA51EFDEB6 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB6BB9BEE282BE24B2F7A062A3F9FA9 /* RNUserDefaults.m */; }; 9D4DFE39AF6C01860D2AAE22FA3813B9 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 72E543745F2C87F5282760789265CBA9 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 9D588324AE6C2EEC0E98F4FD2DD09394 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41EEF29D6FFF8724DAE263CD99B93C03 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D979453B51E7CB3B7FFC44016A4C1B1 /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D8CAC32796D9E8ADBB0F0CC1D738D6 /* RNFirebaseLinks.m */; }; + 9D588324AE6C2EEC0E98F4FD2DD09394 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FAEC00366DEBFBF11082A1246409C065 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9DA03626CB8941609E390C7618C2A9E7 /* GDTRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6793E23D4CB0376854683D7A0AD0F7 /* GDTRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DA7EE268BCE3FF43F201EF8D4B6955F /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DDC72260A2A6E242E46DF2169DB416B /* BugsnagReactNative-dummy.m */; }; - 9E189B2E988396B5E21E538D99599040 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA7752C20EE98703A82E410FC129630F /* RNUserDefaults-dummy.m */; }; + 9DA7EE268BCE3FF43F201EF8D4B6955F /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D88B45F809EB474C8EDE7E56663F1210 /* BugsnagReactNative-dummy.m */; }; 9E1B95C86133B7162A822F044D8A3C76 /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 4892E2CEE10C1961753364F628FDF10F /* FIRInstanceIDKeyPairUtilities.m */; }; - 9E9908CC434C2FC687BF4F22B3CF700C /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0364AAF38ECE349E21C35BDE1B1EC6EB /* RNFlingHandler.m */; }; - 9EBFCFAFFF2F9C17104263C27FBC905B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D437E2DA4637B926A7C2E5564DCF06F7 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ECD6C711D59556E4651CD72D0E7F958 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 56FD53C48C09DBCCF50541498A0D5A6C /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED4934F935AC1C93138074A9EA86230 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E52E0E9DB232F8BE40F074B56A453EF8 /* SDWebImage-dummy.m */; }; - 9EE32F8CF80264206194ABB118D4C0F9 /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 520FF0A055EC8BF310DCBE6C50255CAC /* RNFetchBlobFS.m */; }; + 9E2684CF31CAE52F305ACE88302AF1D6 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 88836057AC917E1A9EDBD574E385C230 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E4A16C0F3E0EFF3AEEE9C658E6AED8A /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 372AB064334408A4505FF1EB3D6740F5 /* RNCommandsHandler.m */; }; + 9E6A738AF39E0A0D87CF311DE816CF92 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 87AF817B6584DB271B9714A678DC1CEE /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EB08A24A025FEDB9B61CCA64CD01CBD /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 80D78F8DBD733314515E895F54C97E87 /* RNFirebaseRemoteConfig.m */; }; + 9EBFCFAFFF2F9C17104263C27FBC905B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F46C27C7CEED7D2F40C44453BB3454C /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ECD6C711D59556E4651CD72D0E7F958 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 935E1393E28C453F19A0713846AB9F77 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EEFFE4F5B6FA066318BDF0BCD0B12BC /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D7A68AD46162DA04278DAC058BCF3F /* FIRInstanceIDTokenDeleteOperation.m */; }; - 9F2A8C00CF0C74E3CCA048C7D8555CCA /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E71DEE276ED052E4EA48DF3D8B82B9 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F59B5E787DCCE4694FA7FDD16599DA8 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 324EC9A48993622C5693242CCE7E870C /* BSG_KSCrashType.c */; }; - 9F822E5B617B7D4D5E63CFC1F8D161EA /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BAAB2D1DDE8E1E21EFFF618ADC60808 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F18395720E8F51A90F6154AE7D7F36F /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 25E8ED55FF13DA927D69901025E03F16 /* RNFirebaseAdMob.m */; }; + 9F59B5E787DCCE4694FA7FDD16599DA8 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = E1C4FCE5BD55198441D53F1DD5E76C5C /* BSG_KSCrashType.c */; }; + 9F822E5B617B7D4D5E63CFC1F8D161EA /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D5878FBCE5856B10322F4AB5E94A3C /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9FB5323418E1EAEB28FCF70C427CD296 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2147BA514227BEB53E26EDBE8254DE /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FF3302DF3E3B17187EEFDE74CCA5B2B /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 22BF24E49354F10B2BFAA176AA89AA5A /* RCTVirtualTextViewManager.m */; }; - 9FFD8F1095860972C91388E79894DB12 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 43566688A2F6B2F8084C9A8DA9F22181 /* UMLogManager.m */; }; - A0941791AB1A4A782A28C0312B3E61C2 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C03D7AE0766E7780C4CE3248E79900 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FF3302DF3E3B17187EEFDE74CCA5B2B /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A97616B7F0C1E36EEACBECE0ADBD16DB /* RCTVirtualTextViewManager.m */; }; + 9FFD8F1095860972C91388E79894DB12 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A52F81A3EA60D1B996E23D393D914A38 /* UMLogManager.m */; }; + A0325BCFA08F4D8606F76E6D9B87C95C /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = BCAA872A4D14CBCDBA296FA056611526 /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0593F76CF92EF665A5CC8E59579C694 /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 0740B19BB926E89476FFA1CE221106C1 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; A0ADECAF3438ED32F69B08DDF30BF4D3 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E31CEB7D87267B02F5519491B8045ECD /* DoubleConversion-dummy.m */; }; - A0B88D46A78F2FF5E0096456B6408FFF /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = FBB2198ED87D3EE2472FA4FFB6180289 /* UMAppDelegateWrapper.m */; }; - A12221A786EC52B92E305AD83DF99C38 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 31FE0BFE4CC5514B9B900D78FB12FCA4 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0B3683C2AE9FF9D55E478FF22556E16 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = AF00D0D625436F5B3775308395AFAE47 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0B88D46A78F2FF5E0096456B6408FFF /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 96A2AF9116E730040A2CCCF06BB65CC3 /* UMAppDelegateWrapper.m */; }; + A0F8D5DF964D54911C5028476172F0F1 /* JitsiMeetViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEFDAAC8A49E5ED54A5D89285CA462F /* JitsiMeetViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A12221A786EC52B92E305AD83DF99C38 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = BE12ADD9ACF7EA325D21BC1C2E570606 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13C09FA5F5AC97366774E5CD3360CB8 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA23EDBB8449E1237AFF6A536AC09EBE /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A157CA36BC537CC9E89D6DA27974AD72 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21D2519EBB681F820C4C705B754DEEB1 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - A1696635EF3DA07F34A54C555D7C41D0 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEC5484C56D63DEEB4E5DFD72871BC7 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A16CAC2A9726468FF58265ECC9DE7C95 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 6645C65EFDB2A4DBDDC73110D983039E /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A185F427205EEB93F5D8371CBA782012 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D57C5E0D20774414E41F9C226F8B089 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1605CCCE6565BA53A643EBC91429F6E /* RTCEAGLVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9ECC66D488DE7886D4825BBA1140BDB /* RTCEAGLVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1696635EF3DA07F34A54C555D7C41D0 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F3F2A91FE025FA73D7C552E1DF6AD1 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A16CAC2A9726468FF58265ECC9DE7C95 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB9F3245B3E912EE3213D66428560DC /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A196C02C3B3FA339D33D46ED6BA072E8 /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 4023E271B4A414D1A43D2BA7B0EAA00E /* FIRInstanceIDUtilities.m */; }; - A1B06EA50F276D2CD90D664F7088C959 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 12387607A3639F4E843F8A8DA87A1C5F /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1BE5E3327B89575FBE78D78DEF482AE /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B23BC7615287E2953E917F78A12504B6 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A1DD6248165A14E9BE84518A3DBDF6E9 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = FAD10C1EA83D76D659D1F3D1303D1142 /* BSGSerialization.m */; }; - A208643ED7190358AF0C52AB27073B7F /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C1FA18B6B6F1BB855E3F2F74FC02D1C3 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2088E3FBD072BBB8DD8691C52EB8E14 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CCDBA249BE21C51D4C8C9BD22813CBCC /* RNDeviceInfo.m */; }; - A23888DB188D8287D7E8085CCBD426C2 /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A484E930F713F09A3EB1F58B7F2302 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1B06EA50F276D2CD90D664F7088C959 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 28054218ABA4FC67F1D8B34062B38B33 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1BE5E3327B89575FBE78D78DEF482AE /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D8F8F8CB86AF57DFF49DF281905B2E74 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A1CFBB4CF606D421BCA96B182C540DA6 /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 77581CAD88B4DC303F4AC21BB7AB2E46 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1DD6248165A14E9BE84518A3DBDF6E9 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 3981FE3492BC1794A682382B972427BD /* BSGSerialization.m */; }; + A22540BDD7FAF3A38173DE23364D2739 /* RTCLegacyStatsReport.h in Headers */ = {isa = PBXBuildFile; fileRef = AA382979BE64E8344B083E4219CC44EE /* RTCLegacyStatsReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A261D1444B1E8A76FF80961913092EAC /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B5914966BE28AB5DBB32C58DB776E87D /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2738EE7B6115FC5A6632A4C182CECF5 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 302669C528EB41EE070FE1C234C7D7D4 /* QBImagePickerController-dummy.m */; }; - A2817A5185F92A816F7C595C9F5CFB65 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = CA5242E1C6FAC645A1ED6B8A320B7F80 /* RNUserDefaults.m */; }; - A2A2DA4637617BE8EADE251EA3581E02 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 40679C865AE0F12EDADDED081DA55A5C /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 33544A0943E76F42E35EA60471DA58AE /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A11F271D6493BEC282D3C5A2CE03FA /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2B1FFACE7567768C3FC2CEB3CD9499D /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 86F02BBF388BBC67B309A02A2AFC7A1F /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 8790CAD9655A22DC201E783B49C2B829 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FD1319634506666ACAD648469BA25E /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2BCACD8EA23E21607E2B81D655C81FE /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D418A9B1C95E6D0B846EF2FA2D37FB61 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A315DA55D23D943930CFFD107A28CFC2 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = B3AAC7E59E011EE7F86741FA653983BF /* REANode.m */; }; - A338CC251632E5913CD3EEECF70D4804 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FBECF22F52ABDC91B2DFAA93A71252 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2E2EDCF8C06FA2C165219DFD7FB465C /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = EBA569295521F9F51A1D1A40A71182C7 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A338CC251632E5913CD3EEECF70D4804 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = E948A283AF7354176E80AB7BC1487B91 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3899A422351CF681012352754EFDED9 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = DD7A713DBADAAC11AEAC9CBF5714CA91 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A39E755B2D859C965D11B4745BA5D98D /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = C2D1EA1A3771BF9AF1D5DBCA15A0B1EB /* RCTInspectorDevServerHelper.mm */; }; - A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 79211B30E895C1C103D5D6CC54885837 /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3B4A8ED1A3F45FFF838017D9BC1DBE9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4E3CEE675180CB55CB871F9C7D82811 /* react-native-notifications-dummy.m */; }; - A4276C593AB619723020F2F603ED99AD /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA60E8177A038BA389D3D5308F2268C /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A39E755B2D859C965D11B4745BA5D98D /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = AAEE24316DC8FAEFE3396F1CC9AFB935 /* RCTInspectorDevServerHelper.mm */; }; + A3AAFBE46AD43EC85F6C1395DF938DF7 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8B75786DCB410AE975F0A9F1004DED /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E1E94E3500DD7A642F1C9C215239EA /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4276C593AB619723020F2F603ED99AD /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 60625989737D772D3B5D6C52D8F19925 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A478B88053C971FA3749431C59577E83 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = BB55D0A7ACC4018444D830964E5ABB33 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A497FB482F032365646003FF4688764B /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2587AABF22732CC81C58D78D9EA845A3 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A4DCE185030300E41A470AE199ABCB22 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7CEB7B2105C3E35CBC1BE7223ADD903 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A51346ACD721382F343D3525A72A02E2 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = D721167690A62B806919C4060524F1A4 /* RNBackgroundTimer.m */; }; + A4DCE185030300E41A470AE199ABCB22 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EADB2E0DCDD328B5CE981B5DABA26302 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A55A2AA9ED8DEA86F1FAB5D7D8903F2C /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1F595BAE2B9941E1DF118CCF7EED4D /* nanopb-dummy.m */; }; - A55C24FA208312D46CF87FD5853FB9AA /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = D4B6E11CFADDB69572387C7786561E3A /* BSG_KSCrashSentry_User.c */; }; - A570AB0A95AB953096A7EACA411AA081 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F7E304891552DD191194CEC340AC8C /* REAValueNode.m */; }; - A58851E66911C7E28993F7BA3FB12780 /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA2771FFDBF750AB8B87C609FD61536 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58C33080CC099E1D8521002236B13E3 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2323C910C66D1116495C1BD2E8D396 /* RCTCustomInputController.m */; }; - A58F08F163593B4D07A2AE698F990BC9 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = BDFC76302DB768F2BE79BB5C30362043 /* BSG_KSCrashC.c */; }; - A5EFAAA9BA8FF84AAF0968884A542266 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 499F079B5DA2D74497540222B92B7657 /* RNAudio-dummy.m */; }; - A6284294E40579F2DA118DF27AFD97F3 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 54E9EEB32B05D38D26FFC86255E22111 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A63002202167319878EE8A8DF68E0A18 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F4A63248ED7A2E95B7AC4BD8DDB5C27 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A6485E16CD304950F41C08C84960F353 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = FD180D0F446B0BE76D3052844D24B8C4 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A65855EA807397D32A01A46D6DB57130 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 667BD2DD8232F3B014648070F87D419C /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A676EDF08F108702130DC80826B19A8F /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFC701295F017145F588855CD0DF5AFA /* RNDeviceInfo-dummy.m */; }; + A55C24FA208312D46CF87FD5853FB9AA /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = EC22EBB12E0B6E021B23196B4859D2A3 /* BSG_KSCrashSentry_User.c */; }; + A56AEF3FACF407058BD2915387F02178 /* RTCAudioSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 247C346B7E4E644BD3DB737F46BE9698 /* RTCAudioSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A587C73C6D374DCC88925139B329C90D /* RTCRtpHeaderExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 7798173C3D80863355C48B8CD077BD75 /* RTCRtpHeaderExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58F08F163593B4D07A2AE698F990BC9 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E0AB29145C2582910584995D55923DF /* BSG_KSCrashC.c */; }; + A5BB2E968CCC57D88C2652BEE0767F27 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 300A79D4DBF7F9DC0D4197A864A02ABA /* RNFirebaseInstanceId.m */; }; + A5C00051ADD04B36165B1C369E2792B7 /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C79F374395DF0DBF873D9BDF60BEA0 /* react-native-video-dummy.m */; }; + A6284294E40579F2DA118DF27AFD97F3 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B42BA4F40AC8207444CA0D6C61F7131 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A63002202167319878EE8A8DF68E0A18 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B8C90022B498754AC293996FC03C9D2F /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A646413BF2274252108B1F964825B96B /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D8EF7B97B2525B9BD9B1D3B530FF70F7 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6485E16CD304950F41C08C84960F353 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF9692FF93A53AE83A9026E5B68C754 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6645F6DE0319B14C7D8D2BDAB7086AB /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3608D088678AD75DB5AC70084361F2 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A68A07EAAAC0205BC3CE6313B6FA44AA /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2C8B7803631E9D7E122F15A966F8C9 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6F29F923CD8B7663A3B1446BB8F4192 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0807CED9EE4C3EAA07C6FA00B87CDDD1 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A799D2769C65005F19BEA2BB6DB53B70 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D04253913042A09F52B8B2B73E422408 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7A5A3AD2B9F33B91FB0D922FF880A3A /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2583468779239F77E58A8A9D59FBFAAA /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A7C9CAE9A4271E0C6AA99969B09C73C8 /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F33FE569D773A8C3C0FD6903E01CA41B /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6F29F923CD8B7663A3B1446BB8F4192 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A3CCA896AD5C431BEF13C0A0A8F5E1 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6FD14CC15D8C43256A29796272D7DCF /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F663AC9DF4A7F5C59D11A3631D03905 /* RNNativeViewHandler.m */; }; + A799D2769C65005F19BEA2BB6DB53B70 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = C23C2A95564A98A69E8D83F674F178C9 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7A5A3AD2B9F33B91FB0D922FF880A3A /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F2FF01826C3011E28538B47A9B3A89F /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A7D325ABA622F9D7D56799439D272EA2 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = F46F19ADD7D5E644B1C2C9288E4917C1 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - A7D604AAE50B12ED58F7C57FBF832819 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 987532EC498D90D10ECCEEBFD9EF456B /* RNFirebaseFunctions.m */; }; - A7DA644D6EC7028FCAC9A324980A8DA5 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = CB95CCCD171AEF95EEDAB112D11698C8 /* RNBridgeModule.m */; }; - A7F2529C99D72FA5FF302BD36EDCD793 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = FC808C66396154A13E2229F419D2FA78 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A81736D1CFA58EC5284C407AEB0D306B /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB2B3C562A4DD0E0A06A2587567AA1A /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A82AE5ED94FB37CA4D605CAD9BE65141 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7181FFCDB07FE21BE0EE00B5DF442033 /* NSButton+WebCache.m */; }; - A8561ACC0F8EE4AD506C0806EDD28E5E /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4820FB40463901FD7E7A334DE02FDCA4 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8691FEA225F4A0047F7707A68B84E1C /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 15709B7021248CAB27E66715397AA976 /* UIImage+ForceDecode.m */; }; - A86C62CF087AD2867AF6B9E404A8CA2B /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D238C9ED535F24952D58157229FCCE /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8A4C58599FC553160B594E4A6BBD860 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8404356A2BED987402248352652AEC0F /* RCTDecayAnimation.m */; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E30928FD168DDA9B3A6A22B9E5BCB99B /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F813367283E61EF989A9161DC3F79B /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = F732F2E885B57D371A925CE6F042B7F3 /* BSG_KSCrash.m */; }; + A7F2529C99D72FA5FF302BD36EDCD793 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F5ACB0D2A69038D4236075BD23C802F /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7FB99F942E323E1F4B4D286C0D4BE27 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = C95661ACED4E496A223D7B9A3B85501B /* RNFirebaseAdMobRewardedVideo.m */; }; + A81736D1CFA58EC5284C407AEB0D306B /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EF763750AF778D7EE9F54536C64BB462 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8561ACC0F8EE4AD506C0806EDD28E5E /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79D2D699B515D1A6161300A4102B73F2 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A86B172FC887A70700136440E5D82C58 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 52CB7F9FEF65585EA2043D80B281806A /* UMReactFontManager.m */; }; + A8883057E2764529939929374F06863B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A1B88FD9D6C771307C9F1804DE04F464 /* zh-Hans.lproj */; }; + A8A4C58599FC553160B594E4A6BBD860 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = BB3EFEE1ADC779954C4623DE47E26783 /* RCTDecayAnimation.m */; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4D29FB5361710DD1DB881AF1BE0353 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8F813367283E61EF989A9161DC3F79B /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 98A39C024A609A721CBEC84F6B1AD409 /* BSG_KSCrash.m */; }; A924B55918143BD56D787E62B2FD3129 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 737B25AEF6C3F7B8C25EF3D58017DE68 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9259A030B103BC6C003F7809B560F9D /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AA22BBCFCF2B724A33960D8EF6F64C /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; A92C327E57D9A9746F7176FAE308E23D /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BB3DEAA86586C11D4ED2FEB26A0794 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A991A5518ED4E871A704A70FF819D2C6 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1250FC47436918E3E64D8694F4C2C694 /* react-native-document-picker-dummy.m */; }; - AA0C7390010136B9FEB8AD0112D8C60E /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A77999B1B54617733A5E6BAEF4FE6D9 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA4C5A3011B0BB1752076C77D6E01F9E /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 032948A2025B58EA7A5F94BB62D1FAFA /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A949CCF6855E917ACB7ADC6CF8D6AC7E /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C929E0054DD6CFBA0D1A315C4E79A9 /* SDWebImageWebPCoder-dummy.m */; }; + A9E05AF6D5B21AE1ADEC021CAD0B4769 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 328BBE5126BD51C38C72885E74CECC6C /* RNEventEmitter.m */; }; + AA0C7390010136B9FEB8AD0112D8C60E /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = B682050CB644B8EC3AB810BE6299787E /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA4C5A3011B0BB1752076C77D6E01F9E /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = B7862ECC9EC85533D6E2FA04C81F2F6D /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA5294CDD47316A2192F6320E6B152D8 /* RTCVideoEncoderVP8.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D99A57B91F9409EB057F21D5DC5A6B /* RTCVideoEncoderVP8.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA6FD30C2E41C5828D10AC115BF0D278 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = FE7F64D90DC09D7E711A4F454299CDC2 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAB993E6AEA83B562CC225ECA181A36C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = E73C0F43160E8CA395415C6B98A4315E /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAC609A4FCCB9D78038EB851CDCFAEDC /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC455D7D51BD95A969F1ABFF55228E96 /* RNCUIWebViewManager.m */; }; - AAECAB63BF205AD61678B7DE02C1F4E5 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3F49AC7222558F70BF96377BABF58C /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAB993E6AEA83B562CC225ECA181A36C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3273091D512E421432CDB65E061BC47C /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAE9F156CE0D3643643DB23A0C6E2A6A /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 311BE0342173A0C9FEFE803A861A3072 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB1226A0DCFE6A926C88AC6DCB647095 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD9D744C521C1246AA89B34FB235398 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB135DF9642F966197BCCC01EDAB267E /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0BB504FA420B24C4B402FDBE4F1CEC /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB8A597ADC6D071AA792DAB12EA0AE04 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 02C8AA20583BA21452FEA287AF738202 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AB135DF9642F966197BCCC01EDAB267E /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA2E6893FE4EA8CA4FDC62E3876D337 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB41CEF43E6CC65A7F72F8F347B7E66C /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BAC264C0D1E4AC72A9FA35D078D6312 /* SDWebImageManager.m */; }; + AB8A597ADC6D071AA792DAB12EA0AE04 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 32BA8626C355E3F583E2B5DA2914EDBC /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ABD5CE7D3CED819A1F0A08FFACA97498 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A851005AF38D640F29903269B8A7FE4 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE603A0CD507D06532535671E545333 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC6AC70E3EC8B0747B28E02CB723332F /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 024D869151AC258B0D9D954728A85828 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ACCFA8651243A8B66223A58FB5C4D7B1 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B282C04BB478AA75490E878C95DED62B /* EXVideoManager.m */; }; + ACCFA8651243A8B66223A58FB5C4D7B1 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B99C2B3085E765A7DFC79EDB5788608 /* EXVideoManager.m */; }; ACEF93717CED6920932D1505DE58206C /* GDTTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE138DE274E387CB5BD5A4785EED9E0 /* GDTTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD1E6535165A206A97029A465F50878B /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA0D00F9D3532DE1FA7A50427C1686C /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AD4999CD8127CB9D0287C2336DF8E303 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 49958BCC063FE3B129EDDB0730E71D3E /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD76ECB8513316F803A704931511AE4D /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 76782ADCBB93FC6C7ADF39F17B506A86 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADEE826EA4D572CEFA9780F59E4EC793 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EFE2AD04B9582D3714BFD298B16A78D /* RCTTextSelection.m */; }; - AE04CC3E39F5BEC589C59F601589F495 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 70E67C3B013B2E5212021BACE75DBA0C /* RCTInspectorPackagerConnection.m */; }; - AE37DC16CD561884D973C22FCC1A61C6 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F3D635F27EE7B95227B373C184006BFC /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BC415E5931A27F687D96D46F6D0EF635 /* EXHaptics-dummy.m */; }; - AE9A97602390B8187428DEAF8A626FEC /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5156C8465DFCBF352F718A1DEA0AA6 /* RSKInternalUtility.m */; }; - AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 54619319C6280924DF9C1E088E23CF84 /* EXRemindersRequester.m */; }; - AEB32A495ED637563A5136F3CF675326 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 88C982B467057441DE3297A02E89BBDE /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACFAFC99B8934193A1432F5608FDF5DC /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2701A02BC7CD579B409FA59C0EA13D6E /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD1E6535165A206A97029A465F50878B /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 14FD9EE8DEA94E51D6A6AE92728BD720 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD4999CD8127CB9D0287C2336DF8E303 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DDF8185B2EEA7DF9C4B3F079D608A3 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD76ECB8513316F803A704931511AE4D /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 687463618A2B560BAD5BB220756865F6 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADEE826EA4D572CEFA9780F59E4EC793 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B3CC978D37C0A9A2E085098BA45839 /* RCTTextSelection.m */; }; + AE04CC3E39F5BEC589C59F601589F495 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = FDB3FAF7EA7F668E1F21740EE7CAA6DA /* RCTInspectorPackagerConnection.m */; }; + AE352AD35FBFA91C98CBEF807A845E58 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 912415A927A22B47295DD3E49FFA3F4F /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE37DC16CD561884D973C22FCC1A61C6 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C91D02140B8942812D252A5AFA0A34ED /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5BCF059C100E0E5524933922D16B0A /* EXHaptics-dummy.m */; }; + AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5148F5CD61F3D713D87AEDDCD967B4AC /* EXRemindersRequester.m */; }; + AEB32A495ED637563A5136F3CF675326 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E43742D427125A54270E8CA1B82F9D0B /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEFDDCD92E687A0A93BAAA2AB9DAEFFF /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 63AFEED08855FAF445DD96C3C4FFCD3F /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AF4A8945B643727EA8D5F09E99BE1602 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2144C4CC6B346F0FBBA634BA82F92173 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF608402B14A4BF3871296F26C3B3840 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C6C1591A3499751B8C8746A5647529 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF7BE1CE4E39D0D09F69DE904C19A8A9 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4B148D97AACF0F13E77EDD6FD6AB019A /* QBImagePicker.storyboard */; }; - AF96FE6E2269E634A4B7BB6E39F92DDF /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 90756F1F010C3ADDE8656F519C9C5C2B /* SDWebImageCompat.m */; }; - AFD62E3984D85087062AB8EB381D7F90 /* SDImageAPNGCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A3DBD6D4B64099330ACBBF9E0560ECDA /* SDImageAPNGCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B06F591075795038924D7583175AB4E5 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D546E1507A3A3E12B31616E63CCE9A3 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B09C45B80F81A2051E12E624384791A9 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 53342E2A1EF652A24451E5D8A22D4202 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AF4A8945B643727EA8D5F09E99BE1602 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA0F964FBD0C81D9787B9F6371E7595 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF608402B14A4BF3871296F26C3B3840 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9805DE1690B14DB41F359C5E7D935C9C /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF7B712CDFD78CCD40E3D7EB932A6A82 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E589B89DC6C6FCB4A178CD809A1586C0 /* SDDiskCache.m */; }; + AF81C06F3729A60E586247D98642E500 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = FCC841EDE195B07A39A754A1417386AE /* RNGestureHandlerButton.m */; }; + AFD3A7FC59FEC800AA07CEA9D33A5042 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F08060C005CC41632EBBEFD89FB9DE7 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B09C45B80F81A2051E12E624384791A9 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD08450DDF7BF3FEBEDA25027230571 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B0B0B766093210EB3266CFB15B7F110A /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AF59AAF9C1E17F9B17CD706F50F80B69 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0D83B7635A0B351B8B2D0040D19F256 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = B64278BFA907F143E534AE7A299EB104 /* UIImage+MultiFormat.m */; }; B0E28F82AC12DAADBCC201F6E686F0D8 /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 606428EC8C93FD3C60C0FD77CFCE5C62 /* FIRInstanceIDAuthService.m */; }; - B11A89E20EC341CA886D0B8886605CE3 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 206DCD3D18193E958F8F995631E7BAB0 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B139381861B93CE5F3833D14305158AB /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = F602AC10FF5085CD8E01D3BE9A16819E /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B193322F6FEA0F3B97F688498E129218 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = C815A9457D1483145412D6E9A8A87165 /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B11A89E20EC341CA886D0B8886605CE3 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 415106B84BE8B3B374D54B9A254C6B55 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B193322F6FEA0F3B97F688498E129218 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9817A80EE67CF7C3E1225D109EF7D8C4 /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B19F2B637F6B23E5352C351E7F9D5AEC /* GDTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = CF2DE2FBC85F5A7C4B91A1843E653A85 /* GDTAssert.m */; }; - B1AE4C90842987C303D9483711A39B61 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 9195975470445C6530343CC3C15FF4B4 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1B3589562BF502B1EAA519FBE5BEFFF /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A4CAD0EFE35D1A9FA2CD6373FDEA1FB /* RCTImageView.m */; }; + B1AC1AE8F3AE6524151C25665EC95953 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD13850CAD53003BB20DE1F2BF1826D /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1AE4C90842987C303D9483711A39B61 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 9265163EE10B58CAE865D36CE6BC8652 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1B3589562BF502B1EAA519FBE5BEFFF /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = A640EA4E85693D5A0E22CFB0046E061D /* RCTImageView.m */; }; B1D79119AB2B168F02963667EC88474C /* GDTTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3360793B80DF3E76FB7C19901A69DE /* GDTTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; B1F0D8BF7A1CE374F9985295E86695C3 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A465BE307F659E6500E34CBF82517D7 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B224294B74504C684A1E3F27DE4E9B72 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF4CFB59F6279E2DA79ACAE79937C16 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2482E24D6DFC0DE9AEF0BE3189EDB67 /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 132D66808B8719CCF13044D3C81AE38C /* RCTGIFImageDecoder.m */; }; + B224294B74504C684A1E3F27DE4E9B72 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B62EDF318EFE428FE9040EC14DD4D3 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B22DDE2DD4E215C408BE6E5E195D910B /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 5148E7D8AACD8EF66295E6D371040526 /* RNFirebaseCrashlytics.m */; }; + B2482E24D6DFC0DE9AEF0BE3189EDB67 /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D8064289D118AF34F2F7BDA82A65CE0 /* RCTGIFImageDecoder.m */; }; B263A4FE744BB18A7C7B543C66725FA1 /* GDTReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D2ECCE0FD4135BCA35DDF813D86DBFC /* GDTReachability.m */; }; - B27EABF4E869EDFB763BD981C5B2FBE9 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 231CF4FA64AC13747332BE023103D11A /* ReactNativeShareExtension.m */; }; B2CA11C70BAE56E96D0654BA8607AC75 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BA2ECFCD04DB9708EA2504DFF8341B0 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B2D6499450888707D3DFC50BD9E94F80 /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 79390E2773EFA92858139BA9E4C71C32 /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2E03206695085DC3C168497F94704F0 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4DB41E421719A4A01958C93D7A94464 /* libwebp-dummy.m */; }; B2EA82D8CDB5F846D0716ED5A1804CC6 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 773D989862F7804EC138068C0648671C /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2F6EA394AEAC4B46E3229B052D1FC11 /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = DCC6DFE4B3EF8E8479E00C24847F70BC /* RNFirebaseFirestoreCollectionReference.m */; }; + B2F3E5035E1D0D26AA131468A99D3009 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B87E594363914C08F60E7F87BC3C62F2 /* SDAnimatedImageView+WebCache.m */; }; + B30B5AE91553D802CE63D5F5B5A33DCC /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 50015392CED4F429DFA7A43DB188668C /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3115B87C80669BE7BCEE8EA9E0B631C /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 58FE1C5101D64A38EEB0E2533961D856 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B36F0C10FCF0FF9A3B8DCBED999BC250 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E43B0DF9CA11B47CACF6EDC361606D /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B371298011A009520B0C65A82A9B9D12 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DFD8CCF44096F822716524A528636CA /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B36F0C10FCF0FF9A3B8DCBED999BC250 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC3292BB7F4F09DFCA8F2E1EED92A76 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B371298011A009520B0C65A82A9B9D12 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8E5EB8162219682F0123568FD00B6E /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B38A6F0A02BF1929884827243D4A23E6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC88FFB0422846AFE4E6A298FADE780 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3B786D5F9CE5C749844D518FBE45D20 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 76160870EE1B67F96AC6DAB8F364BDE6 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B401D9618DC45FC769E1E806066FEF36 /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D3029877A397EEA448612A552EEB10 /* RCTImageViewManager.m */; }; - B4300BF68D8E5E64E24CF0A04E77F888 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = D75AE166008B2D4F92780F7FC8170C2C /* BugsnagCrashReport.m */; }; - B46E2314758DE45E70330A24AE130A7F /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D1E62B7D254BEEA42DE0A8C46EB77F /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B47E5FE0E9A742F9A8ADC2365D971604 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 920F81FF3145EDF910F5032F97DE0180 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - B480BFFEC12A900116E4600D0AF1F5E3 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = B4064ACA3090224F2A8011D547D831D4 /* BugsnagUser.m */; }; + B401D9618DC45FC769E1E806066FEF36 /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 283500765B564383F6DE2F0B4402046D /* RCTImageViewManager.m */; }; + B4300BF68D8E5E64E24CF0A04E77F888 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E6921CE1E7727803E278E95BF050496 /* BugsnagCrashReport.m */; }; + B46E2314758DE45E70330A24AE130A7F /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B6A2E29D46AC0211DEE039F98A5180B8 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B47E5FE0E9A742F9A8ADC2365D971604 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D80C016928E74B72A4E015DB46C8714A /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B480BFFEC12A900116E4600D0AF1F5E3 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B002C83B3DDF45D51AD0B8F31279909 /* BugsnagUser.m */; }; B4915265CA25AFBEF72EEDAC5372E840 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7ACD3C43D9E249F86725376237B43D64 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B4CB74E561AC6D58BF7F5AE56B71DBFD /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = FF283621AE4C8DB2E3F7FBBB1BEE4F25 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4E1C0B1B8744AD14377FD760C01DA9A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 610F587792BBD58CB1FC5F32F1550EE5 /* RNFirebaseRemoteConfig.m */; }; - B51DA1471B39D89288DD536DDE89E02B /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D43F7FE38952B8387A308DA61A406AD /* RNDocumentPicker.m */; }; + B5233AF0624362DB0B8C5E6F2BE0CF2B /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B4ED747092A1D20754551030B7A387CE /* UIImage+RSKImageCropper.m */; }; B52794F72404F5BA7A79A2DBBF596CB3 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B49603EB3034DABAB10F60382C1DD4C0 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B542243C6D641A7F17F389530CCA9DBE /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 650AB6A4960DB8AB8EC84DAA3B673C71 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B566CAC327330D11373E46E765A674BC /* React-DevSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 74A1643AB61EBFE5CAC925CCC999FE69 /* React-DevSupport-dummy.m */; }; - B58807C392160EE39BC7AA15605D3A44 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 505CEB10AF28771ECE84CD21A2478A56 /* BugsnagSession.m */; }; - B6408102D8A9A97C6AB7682F0DC9C8EE /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 361ED24B795D598831F92950AAE3106F /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B54ADFD00DD7C598888D83DB8E986F4E /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BEA1A42F6A035EF2AFB42C094DAD538 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5642FD766B0E6313B8AEF94A2FAF89C /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E1043B5E740E504FC0F41084EE67E7 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B566CAC327330D11373E46E765A674BC /* React-DevSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26ACF13A7FFA34BEC22DB41679162E1A /* React-DevSupport-dummy.m */; }; + B57F77E0AFE3464A435B480D6325B2FD /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F8CD56F6EA37F627887AFC8DD4B6C42F /* REASetNode.m */; }; + B58807C392160EE39BC7AA15605D3A44 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 2184E6611EC1772F7C0A3ACDEDE225E6 /* BugsnagSession.m */; }; + B63A533C0A9755990CC9DA09029DA0C4 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = C47DDEED9B1A3F93884682943889FC1B /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; B64FA42E184A0EE28D65B959449C49FA /* GDTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = E5F9BC99B025FF83A85BD63F3682C6D2 /* GDTPlatform.m */; }; - B655AE464FE0CB410A6893211E58E74C /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A10BB0C93993448C44B113561E7B5D21 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B69320F26DAE38180F06F52C73A88257 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 93AB37B889693A63104E31B2C9DAA2D8 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B67F9EADE8A7887C540E50300471F205 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 40679C865AE0F12EDADDED081DA55A5C /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B69320F26DAE38180F06F52C73A88257 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7AD15BBD0FE79ADCDED2A7042B8D76 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6C38F9A12BDEBC13FFE7ABD47F7B7DC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F0CDDFC37CF634DEAFF325946238AC /* SDWebImageError.m */; }; B724AB793386F487E48DAC082B773D56 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = D38F9EBA512377F8AD6195CAD24AA076 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7253BE61EBDD783BEDD27B260F45F72 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32BD5AFB9D2CF33C5166AAB7695AD8B2 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B73716F3EB0DD3D870BC2031C3A83C33 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E24D38ADB9E29404E790E090BDA445 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7595C0D1C1361F1F1D2F24A11B10B66 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B87FA68E472648622BCFBBBB49B59E73 /* SDImageIOCoder.m */; }; + B75E23837E26B8C8B10D7C3A77108941 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = ACFE10F216169F111B1509D4BC64F1C0 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7A4D50989E610028B3EE3816B474C3F /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7B1ECB0A999AE1D6894D31557E6E88 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7BE7365C12CE18D05FCF973032A5288 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 17B080C1BBE18D573840429AB5DD98A5 /* UMExportedModule.m */; }; - B7E191713420F3EB03D1836E0997B08A /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7940731E3A76F795D49A137EE12DBCAC /* UMSingletonModule.m */; }; - B7FFF35E24ED134F0DC4E5578F7BB959 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 137047C22AD58DB8437668E4B125ECCD /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B877D8EAFAA81B89E513FB5A0E30B97E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 95197C805AF86DE2FF28ED56C706859C /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BE7365C12CE18D05FCF973032A5288 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 916F52DD2324550C670F776E6565C90E /* UMExportedModule.m */; }; + B7E191713420F3EB03D1836E0997B08A /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7325391FE1E0B780FBC44614BEBCFED7 /* UMSingletonModule.m */; }; + B877D8EAFAA81B89E513FB5A0E30B97E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = D1746A3E6192D0D04873F0C1EEC5909F /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; B88A0A26402BC9E1A8E97FE2E26AC658 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A19CB4381EC8DE430707CC50BC15A1E /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B918A84237A48ECC29872ACDE4AA289E /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = ACE79E0BC5851B91682E138AB19FE7BE /* RCTUITextView.m */; }; + B8ACB9C1B790EC73F2E7059C3925AFD4 /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF6BF28011503F3CB733E8CEA8A02B8 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B918A84237A48ECC29872ACDE4AA289E /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 508E12F1266054D661107D8E9C5B880D /* RCTUITextView.m */; }; B91C99470A466DCB57F620ADB4FE86EB /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9A3B6BFE9643DD7B8ACFFEAC71AF79 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B9251F065F9494240633F90587A7A3D8 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 698C7C6CA8A623FB3A465C8FA0B65DB8 /* RNFirebasePerformance.m */; }; + B9275F551A92B62A723D9AAC8A5CF65E /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 667BD2DD8232F3B014648070F87D419C /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B942CF42CF58C48B50033AC53C97AEEE /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B59CC1BAA4BFC5DB2D00452E5713ADB /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; B950C322F3047EBBF4113A72B21A774F /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 889D0D42674C5E6CC9DC2A462C90D239 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B97AF74B8C78A7B156347B3161BFAA59 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 534B020E4ED8D612FD4EE4FE6597FF40 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9B5AB81E39FC0F2F687981B6DD3F070 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 9997662495C6C179E7B5EC9F3416B3A0 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9FBEC2D6ED890DD0A3BB754966059F4 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FD621D580B39574416E769A4378EFCC /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2431FCC8C857C1BA1A2CFA4D958A2208 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B5AB81E39FC0F2F687981B6DD3F070 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4F317DB724BD81A70C8240E6FC7210 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B5F0065F33C2D75F2ECDEB2144C8CF /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ADECAE14B0864E549BAAE281998957E /* REAClockNodes.m */; }; + BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 336C078A7B98B53A4C922812FE46E0CE /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA5CBF565F01877DF423BE6617EAC782 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA449C1FF61D3D80D76CB4852F13A02 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA7AD9790FA4ED1057B53CE843D2D667 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 90B665C26F8748E5148893D113953F93 /* RNFirebaseAdMobNativeExpressManager.m */; }; BA95A5A4B386EF1F87E97D4723CE4816 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED8C8A00B509170203FB4A02642BFD6 /* GDTCCTPrioritizer.m */; }; - BAAEB56CF1A1C6D7A438B3FF975AB675 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = A85E2CC8F87F8CEE18EFBFE6D4A70C60 /* BSG_KSCrashSentry.c */; }; - BB0190D224A3CD6F9B996981B6BEEAE7 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 967A52FBAAC504F1770420B02BFA3949 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB062966A127C9DD75DF635C052591A8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5297A2E8743907EDDD47CB94AE4378B5 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BAAEB56CF1A1C6D7A438B3FF975AB675 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 499D27264EF29DC10DA9F2C47227627A /* BSG_KSCrashSentry.c */; }; + BB062966A127C9DD75DF635C052591A8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 673A6DF628A51A741726FA57E0DACA5A /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BB28C8FC324F6E7DC7CBC08C55561AB2 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 6ECD9699C19C8C6F431640ED88152EFA /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BB5891B04B5B631C79C66A88F0B55ED6 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A09B1089939BEDA67A9A2897A6F521 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB5891B04B5B631C79C66A88F0B55ED6 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = AE305BBA4B4D5D9726E7CC223C084137 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB7D75B8EF99A177AEF43F4ABDB6BF6F /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 156B3CC133ABAC42F77BFF7E0DBCA9B2 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BB85D8BC19BD7BB07CD824693B033C0F /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AD8F59977EC8DDDFA47B22811A38C60 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB9F2A09744791B85D2B072DF52B8081 /* RTCRtpTransceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0602D10BE882C53F5A0DADADC98430C9 /* RTCRtpTransceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBE39282FC1B75D6C1F0D8D0EDFA356E /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 2213FE253CE86E4A6B417F320CE5C9C5 /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC3AEC8DE083424803C1D951FF0E8DBC /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B80DC6A89DF0B9BE110A30A79C936850 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BC3AEC8DE083424803C1D951FF0E8DBC /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 037A5FADC5696DEC177A2C5DBD6A31E7 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC3D81134170ED1976402FA1EE7BA66E /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 14F2AF67D939C407B4E0C830C719EA35 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9E239E8900F889252E2C855CB84CC65 /* EXWebBrowser-dummy.m */; }; - BC9AD2B7C3909D3138C0FB1BB2C5C3A2 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5FCF25E407FDBD1F637DA7E6D39779 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCDB879B9839A8B94F91ADAD57F71F31 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B1896AF0E247D8F22AF41F5D3301DEA /* RNFetchBlobReqBuilder.m */; }; - BD0A89605C61C665E82DD6E1F7C0018C /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 74A72B0F6F907EF4664ADEB181511616 /* RNGestureHandlerButton.m */; }; - BD2EFFB08A2AB18797E0E91EA02CEC76 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C5AD1883555BBBED3AA7A2E0266BAFB8 /* RNPanHandler.m */; }; - BD3F3B1C20BF3A8ACB61B26B553879EF /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EEE78D2A71F6AD48134D8B7A4FBB45E /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC6D2227674AAED5E48B4819A33A2EB4 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 10697B8F5B8B726F90FAFFF16383A14D /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD182B7D3029972B154EA2CF58646810 /* EXWebBrowser-dummy.m */; }; + BCC6C08B8F6156BE73D6620F7E431BE5 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D016D868BD58467CA1033C502573D6 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCF7FEC2068401B0213460CC0CF336D2 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = BC5C8B6E43D82909012606B2C27B6425 /* REATransitionValues.m */; }; + BD0BA947D6DA634A2242938F5CC1C6AF /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DB121501564B5FDFFB1425CD2246F91 /* RNFirebaseFirestoreDocumentReference.m */; }; + BD31A5AF24AC9B5402FEA3CB1B83DAC9 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BD040FDE573C21F19D9967DCFC11E36A /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD3F3B1C20BF3A8ACB61B26B553879EF /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEDD8177905AEA37E63317B46731C67 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDA73F2EE1C869F55AA9D921203DC75B /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99D24984BBF170B57735B5826C92C907 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + BDE1AE66D98B0D393FB6DF16CB035888 /* RTCPeerConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ADE0BE6D3B650C64B1DA7E8ABDB6B49 /* RTCPeerConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDF6D72BABBBD8B0C3C90BD616038D57 /* GDTReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 83AABFEE9F4C757101D5F846CC4BC144 /* GDTReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE0913DC51C23EAB2DC7964C76029B63 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D89BF18E71E72263E8A5D1A12E272A5 /* EXAV-dummy.m */; }; - BE2FCCC2D453C80CB0DC122D4C0E7195 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A405E78316A37BA2B6FEFC263A2C429 /* RCTRawTextViewManager.m */; }; - BE8625C250D21898082AA57A2C6E5F22 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE4124440BD9CCEBD07774F0B2B6A77 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAAD2FF8C5C76F65BC62A458856F9DD /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 791A6B231A6E238C7F7ABBE6533B332D /* BSG_KSJSONCodec.c */; }; - BECF40CA7C9F6790B2EE861314E40228 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B809079383D97B2C4BDE53446F051E3 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BEE9ED1D48EBC0E255302B6EFF42FFF0 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E4038569A3C373D47FA10F76EC869E8C /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEF199E20839C279618C13DEE4304BE1 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5097D6979E30EE25A2698929E9306AC5 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE0913DC51C23EAB2DC7964C76029B63 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 91B2087F0E78F9895A64C325B5151BE3 /* EXAV-dummy.m */; }; + BE23C08ED9C5AFE3CBCC1C5AD1E68154 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E6B863B3AC076AE6776A7745989DD2 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE2FCCC2D453C80CB0DC122D4C0E7195 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AF5FAD5DEF8F8FA2EB49C9BF18DDCDB /* RCTRawTextViewManager.m */; }; + BE590B01523FA9A4C746B472FFA200AB /* JitsiMeetConferenceOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8563FB24C3BE544C6A8D77CC2707962B /* JitsiMeetConferenceOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE7C8FECCD5AB036BFB964C0BC4234A7 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF90D72D6E71920208B8AE8BDD6F721 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE8625C250D21898082AA57A2C6E5F22 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AFA1A74525A190F680FCB7143F7DBA2 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEAAD2FF8C5C76F65BC62A458856F9DD /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D0214EE22CECD5905E3885165E137A0 /* BSG_KSJSONCodec.c */; }; + BECF40CA7C9F6790B2EE861314E40228 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60D86E3836ABFD4FA2C3C4D26123D40D /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BED086AE74F909CF1C7240CF24B4EF98 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4B148D97AACF0F13E77EDD6FD6AB019A /* QBImagePicker.storyboard */; }; + BEE9ED1D48EBC0E255302B6EFF42FFF0 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CBA8964059EB1D1854795BDA2C4588B /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEF199E20839C279618C13DEE4304BE1 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4223DA1E1F3D92448EC0BE8ED002D4 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF060117F44E3B32BB7CB8DD7544B179 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D8F0749B4F9072239C6BF1C4527BFF0 /* REAAlwaysNode.m */; }; BFA4A4BB1C3EAD3C592403CE215F3BD7 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A4DE8C9C9112596CBEA853A84555850 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BFB4FD53DF54012395161053B4B1FC5A /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = A71908ED27A84394A93747AC3C6BE223 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BFC39EB7DCFC10E6D7F1D4A9E1F769AD /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5186014C1CA77744BDA142E44E744535 /* NativeExpressComponent.m */; }; - BFD7107C604ED676ECA568FCB904C3F4 /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 698EADE76C455030194FC3A8AE4C4F04 /* RNFirebaseUtil.m */; }; - BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B62CD3D697760E85B72408EBF6E835 /* EXConstants.m */; }; - BFF53F2632391A7ABCFA053837B6D6A9 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = C4E5197AA72D3F0C5C99A8AB9572F10E /* RNFirebaseNotifications.m */; }; - C033DDB3C296E5F4389FF43D01DB9512 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E68FD0E5F7E3828C99F9C8C7499AA66 /* RNNotificationCenter.m */; }; - C0AA9A5B0CE05F2FE3E7E4517CBA5E77 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A52828CB51B71F5076031A02DD04D628 /* React-RCTImage-dummy.m */; }; + BFB4FD53DF54012395161053B4B1FC5A /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 498D4A62328D5A0D2EB1953FCA9D35B7 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 7983417FE781FCF91F8AD926EE5A0C97 /* EXConstants.m */; }; + C0AA9A5B0CE05F2FE3E7E4517CBA5E77 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA93954BF32AB7978AF08366B26FA3A8 /* React-RCTImage-dummy.m */; }; + C0CB4611F13182CA044C6F0D0740DF12 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 426B3042968279100CBFFABA3250F474 /* RNForceTouchHandler.m */; }; C0E2071C1ECA238C47C90E7041CEB933 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = EA1CA2995BD4B69E64862FBC8B4A4419 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C1104E424A629E3F0F0C1FB13F04A480 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4D7A27DE05376B88813A660E7C90241 /* React-jsi-dummy.m */; }; - C12E69DB32C0F9DB402F0C8D8334B71D /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 29502A0004E740F80FDFA9E5CFE421A8 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C16235A0EEB806964287D284F7F2A003 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD91A307BDFF4FD45F84AA09F6EA9BD /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1974FD95ED3ABB2C5A40A0580B1BCFE /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D584630DFB8EE9BB52F716EA22343A8A /* UMReactNativeAdapter-dummy.m */; }; - C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FDF5577FC7B1C4F3035ABF1AF4E59B9 /* EXFilePermissionModule.m */; }; - C1C4EF4969E868948906AAA8ACD37D06 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8854EE94C4B9639731F8AD32105EC728 /* RNGestureHandler.m */; }; - C25483D1C3A940B0E9C1CDB093202569 /* fishhook.h in Headers */ = {isa = PBXBuildFile; fileRef = BA4F7994E5270B6C156D70227978DBFE /* fishhook.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1104E424A629E3F0F0C1FB13F04A480 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 927AD92A359690F9CDF6058497278F69 /* React-jsi-dummy.m */; }; + C16235A0EEB806964287D284F7F2A003 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AAF020FD7B552F5CCA26EE710CA3A63 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = DB97C0E542AC5BE5C05B0E8848099851 /* EXFilePermissionModule.m */; }; + C1DD55B2FEE817424A677CCFF68CAF4F /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 451AF79F46F083B22E4B8C47FC32D436 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C20C23A304950BC721C4100E23D0FC88 /* RTCVideoDecoderVP9.h in Headers */ = {isa = PBXBuildFile; fileRef = B6831DBF363EE17255553F98E138F8E2 /* RTCVideoDecoderVP9.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C25483D1C3A940B0E9C1CDB093202569 /* fishhook.h in Headers */ = {isa = PBXBuildFile; fileRef = F47035379E9C2FC97FB5B7B2D777AAE7 /* fishhook.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C264DF65754E453968BC98E1519DF6B5 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D7232FCDC7E3427C4E3B77BB433D3D5C /* RCTCustomKeyboardViewController.m */; }; C2DE26D47E707CAA4589E78A87278B68 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 570EC5C510253E37038C8008EE1F4FF9 /* FIRInstanceIDTokenInfo.m */; }; - C2EE5480A02EEE78963D34FA5EA81941 /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BB43C6952EF68D5E3156432840DFEE8 /* RNFirebaseAdMob.m */; }; - C2F54D87A5A3A9A7CEE981B9CC5474AD /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 20A5C2EA56B98E369D96973CAA29F1FE /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C3679467815B59DEB21239B69EA84212 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FED9412E36C7E2E335BDA2C0C694534 /* RNFetchBlobRequest.m */; }; - C387AF6A6FCD4C3D2605DA9FB258ABA1 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = C85E49B3AD193189638DDD1A4C81661F /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2EE25B5C0A7E76C066B4CFDCEE67D12 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC5E071A78F24A2A29B9B0D6BFEEAEF /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2F54D87A5A3A9A7CEE981B9CC5474AD /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BC14F81C35A7DEC275C3C657C90F0F08 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C36A075993C5E113C84759F9C6277BBE /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE1C0F3F1458A06888B9B780F0C12F6 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C387AF6A6FCD4C3D2605DA9FB258ABA1 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 45EF310376CE49CB4AA45FCBFA430D37 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3AEEA83F261D9DFCD9F17A8D7B37534 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E445482A429BA90997690A15AD48D454 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3F920DCF873EDB8F8F85A381DD48D38 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 47E354A7F3CF3DCF8544DC60EFFD2B53 /* RNTapHandler.m */; }; + C4530D9424D38DC1DBAF706666A0A415 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = FC3ED84A72FE9DE5D6129A8D6A335505 /* NativeExpressComponent.m */; }; C45B9CE58C772716966E57A69062A1DF /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E012CF1DB5BB794D9C5E009E1DDFACE /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C49EDC286FDF8D55B5A4387356698054 /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E0D044868E3CE3EA2B650D94AA0C42A /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C4B8591049FA21E7FF731DF7A1B0EE1B /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C913B6FE9B8FEE9A151E8CFF9CD6FD7 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; C4BFF5390AA1FF9DB4B0D8707540AA47 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 18441F24ACEAB19293F92E316C31025B /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C28EF8A33B5D66709A94473097642C /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D98947153E3073506DB17E03C33BE7C4 /* RCTAdditionAnimatedNode.m */; }; - C4FD4E118C41D4DE58F290151426C5D1 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB10955623773BCA472F70756DFB853 /* ImageCropPicker.m */; }; + C4C28EF8A33B5D66709A94473097642C /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CEC55A3763010026891A04C8CE2BE4A /* RCTAdditionAnimatedNode.m */; }; C500FB8AA7AB3E5D115E9589A148D829 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BE10FB6DED9B6EF06C70718C74B4140 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C502434B76C92D9EFC9D2F49135066CF /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AFFF9394AF47A9F43EB06DF49919E2 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C531D45E39818272A2D49F679325175D /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8569579C559AD253F170AEE7A85F788 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5761F1CAC95C5F279FAE684352BF629 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A9CF7E513EFB12816CCD45BC8DD4AA1 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5BD59862012D0F7EA3C83842C04D2D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = A86BC95DDA09EC345F79F711EA380285 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5DBD01B0CF5355F7439033B2B330A28 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BD6EB8559B246A0B3FECE41DEBA914F /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C5F93920EB787C5970B127F0B3641D6E /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0602FEEF04A711D3F8A2AE3BB3493E81 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C531D45E39818272A2D49F679325175D /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5C7E0422973C6A337EB16FBFBDBEF6 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5761F1CAC95C5F279FAE684352BF629 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BB74A61918BD691F395662CBF21D1C0D /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5BD59862012D0F7EA3C83842C04D2D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = A9224D2AECB42676905A56B9A541410C /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5D4B4E830A877BA6B618895F0D6BB98 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8454C6D668F7BD2E0332A9BDA56550F6 /* SDImageWebPCoder.m */; }; + C5DBD01B0CF5355F7439033B2B330A28 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DC26EAD4C76E544A68DF1B35B0F8B74B /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5EDE0BF3269DE6AFAC14ABD6438022B /* RTCCameraVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7881A35121120CEB01805E5ED37765 /* RTCCameraVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5F93920EB787C5970B127F0B3641D6E /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D746FDDD11CAF672EB2AA51FC25354C3 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; C66F02A9A969980F69AFC5623853E78C /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = D03C45B97B087F2A82A89A5EA3B77877 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C69C522A3F37B62386EB07C8BF8BBF86 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 07466C5F9572AAA6BF61E6000AFC5B11 /* RNFirebaseInstanceId.m */; }; - C6B124D6E833502C834EC738EF1364DC /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B2D2370970EF5AF373A5DDC91D5C4A8 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6B820384E4D780B742E4436010840A6 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = BF7E7F291CC663AB89B2147B0A97CD5C /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C6C8F1AE93A24FCB0D5BDF66854A9BDF /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 3622A654DCA94A9C868CF3777A3C171B /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E09EFDDA09357E7061921AD9B2603B /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E8F8D194A4EC0F55D2BB439A63A9D89 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C6E09EFDDA09357E7061921AD9B2603B /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 92DB2CFFA16F6021485BE098EFE927E7 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C6F32154918997BC7F56754265E1C434 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A66D67F0321370D7E120BF270FD2768 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C74C9D861A6CD067815C3EB190669A6B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = C1A8047590B65DA51F1E4F29EEAF6299 /* EXAV.m */; }; - C794D0851E8B0D983AE793DF56C6AF67 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 7CA99DC15BB04F7EA888482B8E4932C8 /* BSG_KSCrashSentry_MachException.c */; }; - C7A37DF658A8C7A3B3F5F30FAAB53484 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DD5931CE4B3A6347501D2A2BC95B0F0 /* BSG_KSSysCtl.c */; }; - C7DED0C1AB049770C22A3352C2B0B4A3 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C36AEA8BA26ADBF17975523F9F8F63 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7F22AC94EBA4B3CC96FF9B0801C1A19 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 094C54A4188D81D41667C78BA6135F78 /* RCTInterpolationAnimatedNode.m */; }; - C80A0A7C0FF35C40BCE9643031542F41 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = C343C860082F1FEE952201B8C2AF754A /* SDImageGraphics.m */; }; - C845D45DF7C9C18E9F8AFD70CB2A3B2F /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50DEF2587B4EF77A9EB0C92043D9805C /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8B72A667488FC07758FEA21516B7442 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C564DD58B5A3A8DAB1D267FDC5038D /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8BC76DDC8042224F82FC3ECDD676BDF /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EC8FDF7BA2604E5BFDAD7BCCA15BDB2 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C90A377EC18E1BC70F7712FC5D4DD948 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D02063967146D6A0A42CC7D323EC60 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C92AC2AF7DFD077CED40A20F40EFA3E1 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = E3BB2039CC665D62E0DE9B2D6EAC0F63 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C92B29CA1CD74ADE57EC5A8E790CE76A /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 748C6B26247F46986812F9A2D7E58E7D /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74806A94039187E2329B2DDBCB2507B /* WebRTC.h in Headers */ = {isa = PBXBuildFile; fileRef = F225A38F8353F4990DFADE593C41C9BC /* WebRTC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74C9D861A6CD067815C3EB190669A6B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = C68D33698B1A57DABB40F4BADBA907EA /* EXAV.m */; }; + C794D0851E8B0D983AE793DF56C6AF67 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 7506AD2E9B83A6BF1F161BCF2DB51B97 /* BSG_KSCrashSentry_MachException.c */; }; + C7A37DF658A8C7A3B3F5F30FAAB53484 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = C0435DD43CDEE93F9B0B79AECFC63E4D /* BSG_KSSysCtl.c */; }; + C7B123FE60B5F434422279BA9691B96F /* RTCMediaStream.h in Headers */ = {isa = PBXBuildFile; fileRef = B772EAE60EF6D37DEF61CBFA5458E247 /* RTCMediaStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7F22AC94EBA4B3CC96FF9B0801C1A19 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 63FA144522A696672C75B1DD92440CA3 /* RCTInterpolationAnimatedNode.m */; }; + C7F68CF35FE027335136061E7DFA6188 /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = C7885AE2BF198BB4A5292028FB47DC7B /* LNInterpolable.m */; }; + C845D45DF7C9C18E9F8AFD70CB2A3B2F /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92874ED1747272F71B4F1A29C359EB45 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C879C0B7072338FB3563AFB0DD296761 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E8F18903705103C212EDDA7E1F2E355C /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8BC76DDC8042224F82FC3ECDD676BDF /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2F2FB3028C140B85969CD78214FCF8 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C929E860D3951049F5FE985255C77020 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E71DEE276ED052E4EA48DF3D8B82B9 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C92AC2AF7DFD077CED40A20F40EFA3E1 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA00B19D397828D581BED30DA3765EE /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C92B29CA1CD74ADE57EC5A8E790CE76A /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BF8CC7DBA564115FD733324D74A7CB9 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C937E16AFFD30404877F2DF47DEFAB5C /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = AE96EAD463BCAD2A502D43556C729D79 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; C93D7B23ECA16F049F11E5D081E75E14 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4733AAE8C450C92BF1A189451161D256 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C945F0F6A6B531EE2235309FFFB3377C /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 17CB7012BC40063FF7C3A6F42053877F /* RCTUITextField.m */; }; - C967FD26FE20D22557BF95585DF28333 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 332993F348D811E714AE62A7A56CA335 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C945F0F6A6B531EE2235309FFFB3377C /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 02DA69C36C144CDD0C55986ED9157604 /* RCTUITextField.m */; }; + C94C840D1E14DB9BC9E886C889EB8B22 /* RTCRtpSender.h in Headers */ = {isa = PBXBuildFile; fileRef = BC370954C40FE4F91E54FA2D4F451EDA /* RTCRtpSender.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C967FD26FE20D22557BF95585DF28333 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = F9F8D37AA2880F274679623642E65C2E /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; C9CCFC48ADF5F9E61EA0535ACFC2E4FC /* GDTEventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C255F4840327CC871033F4BB43C1A89 /* GDTEventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9F16EF9523E29433EF700E067528AF4 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EF1859DAE2E4E630F3D32A7A6E77B9 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; C9F6FA78C31CA00B5CB0BBB00645A435 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FF638D9ADE0824AE128CACB3A645A86 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CA39BA4B39AF5FC8C73BD01BC4BCB160 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE6285C1B5B8A3BC8533BC9402EE19A /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA6ECB5300BDB84EC0C055E24305E627 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 734D82D1AE54474DFF845C409CE25850 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA21D7B93C54CD73611D677B43A76AEC /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9864C1F11521835633A4D768D92801CE /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA2646FC52F32F7FF59DFFA7E3825207 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC77724E0896F2E237527C17209918C /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA6ECB5300BDB84EC0C055E24305E627 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CEB6F8E1B93CE6EEA4C1852A0A9073 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA9DC0C6D72683C0FD062701625D882B /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F769D6260F9E292438D0FFD1264C69D /* QBCheckmarkView.m */; }; CA9EF0BEB6DED07C10AC4FCB9AB9A6E4 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF4EB9BC1AA0355FDFD7835B38C5896C /* Folly-dummy.m */; }; - CAF60A98E065190EB41484BB2C832E34 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 074A87793A428761FB7589564CD11D95 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAF60A98E065190EB41484BB2C832E34 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF214941C7C1BBF2E7A415B015998579 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB0521315667C3AB0F298D47073C4EE9 /* RTCSSLAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 748055E8B7891875D576515B3559CD71 /* RTCSSLAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB451FBD339977E44FF2FC313068B5EC /* GDTStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 770C7186739996D7082568CCEFFA53BF /* GDTStorage.m */; }; - CB4FFDA238CD43B889309B0DAFE7FB86 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 06922E1EC9866CD490540644333BBE86 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB71D1B16B9F2B9A667AF1E25B9FF685 /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D7219B1A9804E26254A0B3B1005A6E /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB96C6E21E6E8E442F36E982EC973F81 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 010AA7681963D37D6A8105E5CC3F6465 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + CB4FFDA238CD43B889309B0DAFE7FB86 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 9242D0A20A446340F0873A4A80421BFE /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB78D4D89DCF07066A862795246D7909 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3A46F9CCE8CEFF84C4C455EA782C9B /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB96C6E21E6E8E442F36E982EC973F81 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D288E2A1097B53A8164134F5F857B4E1 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; CB9B4086D0929208AA2BEC070F8FB687 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 8479ECEBA351866C6C0847745B1475CD /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBB2DE25841E36F0C9FA55881DE5D2C5 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8834C7BEF27342CAC8A41BFFC2F92D5A /* RCTAnimationUtils.m */; }; - CBC0F3A4FEDA924715C5AC64456282A7 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F9BE910DBBF9C31507CE0AFFEB2CAC0 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CC0890E3426E70C3BCDC0204E7B13DE6 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AEF18248488CCDC798B2516DA90D5BC /* RCTBaseTextInputShadowView.m */; }; + CBB2DE25841E36F0C9FA55881DE5D2C5 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 249785BBD90C5395F00C97066B1762F0 /* RCTAnimationUtils.m */; }; + CBC0F3A4FEDA924715C5AC64456282A7 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 974254BEAF43EFBF0ACA66D36931D556 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC0890E3426E70C3BCDC0204E7B13DE6 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FA9B3CEF67577AC1D40A5CF12800B038 /* RCTBaseTextInputShadowView.m */; }; CC136DC5A3C7ED75BD7DFEB71259EFB4 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2BD888CFD64EC8DD95A19530AADD12 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2951479ECB3E208779F6F65C3044B4 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = F5FE3D17B05BF505807A5F1BBA31E0C9 /* EXAVPlayerData.m */; }; - CC2B63B905CF7146045EC38A15639D04 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 7559D3BB06AD2A7D1DA9585FD6CC9A53 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC4D12A8C2DAFB0EA7F05A1EDC65723A /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A6E57B284963F6AE796C7031D492AFA2 /* react-native-webview-dummy.m */; }; + CC2951479ECB3E208779F6F65C3044B4 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = A6E10D9F4B6683407DA4456218459A3D /* EXAVPlayerData.m */; }; CC77D119CAD95C17FC96F9A40FDBB52E /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = B72212531A17E04632758E53C8B378B8 /* FIRVersion.m */; }; - CC8184958DF62DEDB82A18CCCFE32557 /* RCTTextRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8535F83857F2BD3F77C18AE6E3B5DC6F /* RCTTextRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD159EB09E4AC98E73793B55B8EA95C7 /* SDImageGIFCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7212AAC51502DF738D2A093B0A145F /* SDImageGIFCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD21D2EBE2E434B77017135039BD3AD9 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = A6F99FAF769F0ACD2A2B182711F4F76E /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD36A5AAB550D3BC1D6A3D332173F9D3 /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57FC1D76B397708249A7B71A087FA21B /* RCTLinkingManager.m */; }; - CD6152400D958AD525D4A40BE6762532 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B951E264F3F24C78F72700FB1687604 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD782E45A58121221D732355CE625258 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = A130F40E25443B64CCA4DACF74DFCFAD /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC8184958DF62DEDB82A18CCCFE32557 /* RCTTextRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = C31E3619902EE2EAD7818A1AFDA05264 /* RCTTextRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC9006F7A29CCEE302855302B5FC5A31 /* RTCPeerConnectionFactoryOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D925ED280E4497A978083010496B92 /* RTCPeerConnectionFactoryOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC908ABA1350366B51DD8022A40310C5 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 29502A0004E740F80FDFA9E5CFE421A8 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD1C30297478198133EFD440F69441F0 /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 1727AF9D01B46FFC15218621D02E85CF /* UIColor+HexString.m */; }; + CD21D2EBE2E434B77017135039BD3AD9 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADEFFF57857F236212EB280D89E3628 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD258667A4D673B6AD1F46F6AF5D8034 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46DAC266A6FD08A19FDC690C3A14F352 /* RNPinchHandler.m */; }; + CD36A5AAB550D3BC1D6A3D332173F9D3 /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A38377FA27874F52E99A244496B7A7E /* RCTLinkingManager.m */; }; + CD5A82A30AE37A3B781D7933D25C8174 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F6EE4FD07A09E1E591925394F3F37AC /* REATransformNode.m */; }; + CD6152400D958AD525D4A40BE6762532 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = EF12E9CA42CD267546880F103EB916FB /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD782E45A58121221D732355CE625258 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = D485F8551EF24A8C30597F66D9C6EE45 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD79008D1F8A28F701291D1C15A00AAD /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E89ADE6086B260D6061AC9AA0677350 /* FIRInstanceIDStore.m */; }; - CDB2B855213AB0F6C52C8F01082A253B /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0E53FE669B93BA215EC345B3D5C67C /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE130FC1601F841A40C605C30EF25783 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = CB71DDE5E028E8703A03029F71565637 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDB2B855213AB0F6C52C8F01082A253B /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1AC14BB7878834437339910A0667121 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDD6DCCC0E477E2E4AD1E5A19FBA030F /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFA056E391AA7A19B7E6B74C5130B47 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE1AC1D3FB716EE5B282B086AA1EDE20 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E09B42B565466629F7C364D9DA2D8CC /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CE1C82AB25BB6110D74846E2699A63FB /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 334AF8F9613F4B6C8ABE9A99ABD880F8 /* REANodesManager.m */; }; - CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F329FE8DE3D968083CEE1718D3764457 /* EXReactNativeUserNotificationCenterProxy.m */; }; - CE50E88470B6B1058EC2693F3B084CAC /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B8EA8A3F3D68D86D8D2ED6BB7F4FCCA8 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF90510A2BD790D8C91E45285DC6F919 /* EXReactNativeUserNotificationCenterProxy.m */; }; + CE50E88470B6B1058EC2693F3B084CAC /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B42C447FF7C028E6520D83F7C6C21C41 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE72EF385B8B27FF89B34D0E2D52513D /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B30F1B5D2D3007CC2F16BBAF746599 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CE73FF87B3497B9C2E47CA1E1DFFD327 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F49B740C9BE6DA0A3BB1B68BFAD54A1 /* RCTTransformAnimatedNode.m */; }; - CE913D748362900B35DE607B98050512 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 15AC6CB4B7E1F40F37318783CE47D1F5 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B99020A66A49A6C5B6075FF6A1FA6185 /* EXAppLoaderProvider.m */; }; - CEBDEBC4B912927C4A9DA06EC8B512A3 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C224BEC3C7217E3A6408F1442AEE311 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEFCC3E9E164894DEA63AC18B27E00A5 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F3227CA8D6EE005A0EEF320A6AB57C /* rn-fetch-blob-dummy.m */; }; - CF0286A6E0CC7679CF99B308E04E4ADE /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D03CCA298C92778A5A0C89539567D5F3 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF0E67DAC4A754BBF45976C68070CCDA /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 399915D00503C6D0B4EF7C4432A3DFB3 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF1AB10E419D45F4EF401BC0323BFDE6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC00ACD3997FA1977D58A34104CAE78 /* React-RCTNetwork-dummy.m */; }; - CF49E5720865EBBC34CF07C55C831CDA /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F08060C005CC41632EBBEFD89FB9DE7 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE73FF87B3497B9C2E47CA1E1DFFD327 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ED26C5F91999DD00D3AD9FCE68FD4D97 /* RCTTransformAnimatedNode.m */; }; + CE913D748362900B35DE607B98050512 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E28FAD0B2A61E0D1BB89C636FD8D6E2A /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B5E5E98A9BC00D13BC425491B3FAECB2 /* EXAppLoaderProvider.m */; }; + CEB1CB42C7EF326E11DDB07BDA3138E9 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1ADD1D4BD44FE2B496767D09490360E1 /* ja.lproj */; }; + CEBDEBC4B912927C4A9DA06EC8B512A3 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EAE7AB114B993A1513B00CE7376E71D /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0286A6E0CC7679CF99B308E04E4ADE /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = B14288A1A50D20954A300339DC72378B /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0E67DAC4A754BBF45976C68070CCDA /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = E762ACAA057D617752F97B4278ACDD14 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF1AB10E419D45F4EF401BC0323BFDE6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0A534DC600C706E236F3E790306C61 /* React-RCTNetwork-dummy.m */; }; + CF586BB58996177B8A5882D6DD2B5A63 /* RTCConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 3257D61539C445D5D465A2675E33DC7F /* RTCConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF6E784BB1AF3600819A550599235F8C /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF18EEF141DF5F227AF06FE09036D47 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF87AB953CDE4EE55C8901F12A14A823 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = B18BFB5604EB58F3ACB30DAC9D272B5F /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF93E498CC6BAC3062EC7B41276187CA /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = EF884F76A144C84E03A92EECE93EED99 /* BSG_KSSignalInfo.c */; }; + CF93E498CC6BAC3062EC7B41276187CA /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = D98E36729B93ACD25428350A9BACE568 /* BSG_KSSignalInfo.c */; }; + CF941C1C98E600A81E4CCF1C04CE399F /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F51612DC4C27ECE62A293723A8F1B8 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; CFAB74EAFB7B0A0A423B9306F3ACFFA4 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 75B59D8ADC023FA9E188930F999F3929 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CFB9311E84CC6A096CC29003EAE22AD1 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E24046689842F7A82BBF175B7B4B89 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D091314C895803A20A011435E81E47E0 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = D695A2E409B9EAF290A6B51AFDBF6B93 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFB9311E84CC6A096CC29003EAE22AD1 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = D340534F23FD3A765547F2C6110B07D9 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D02308CD767F7CF9ED8793DE28266CAC /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 51048B88163DB56478612CB2E0D18977 /* RNFirebaseAnalytics.m */; }; + D091314C895803A20A011435E81E47E0 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = B94897D23C06C54D06D16DF4CA4F8842 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; D12F6FDBE47E1E7BFC5B3DACC4027A58 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 896953B31142010857BD9071C6C3CD1F /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D142019EED067C76999F908BCD6AF75D /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FD519AB44E45C2BCF67D7913FFCDC88F /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1669BDF66375C044C01BB2479A31DA7 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B57BB0986E2BA3AE66FF48D8895C8D /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1C7B5D055AB1D84F181B269B58F5EB1 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8832B25858720CFECA7F8087D5A4E800 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D142019EED067C76999F908BCD6AF75D /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8AD71987E8EABDDA5CBE1979EEAB41 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1669BDF66375C044C01BB2479A31DA7 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2394872D80ABE2A3E447D3D37A2D5B8B /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1F4F693CF545CCC290595DF6EE686D6 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 434D227E739DDA39417063C143A8A051 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D213E26583E236A858E085926F5BADF0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 53AF0403E5F73506EF6E553FB417335F /* BSG_KSCrashReportStore.m */; }; + D213E26583E236A858E085926F5BADF0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 67FD5BB8070EA7B5B950531791C3C78F /* BSG_KSCrashReportStore.m */; }; D254799F912BAF289D21E7D8B98F46F2 /* GDTLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB16BA3DC25064CD60A2F569316C1B1 /* GDTLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2662D3994A1DB7901CC5D50764CFE56 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = C0FBC604721548C84878705E36BCCA07 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D2C583A0912E811ED541410D5386FB90 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = D74B7B08D104146F9CBC9076F20BF49D /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2662D3994A1DB7901CC5D50764CFE56 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 0468905266580A523CABF441C1BB2A9F /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D2AFE06045E1EC824A098927A155BE4D /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59DECA80C4EE932F2FC1BEC18996D01D /* RNCWKWebViewManager.m */; }; + D2C583A0912E811ED541410D5386FB90 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8B3DCF747704685F53248058BA7780 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5899897AF05F4099CEFED7C39DF498 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D333036EDB42342D3012D0E4CD9E954E /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA2FE4B436059D99702DF34C9DC7631A /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3579929A1DC19324E0B37A54A563502 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BB5F9180B71069B72F9C17E8F4BF405 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D36FF9316EED84F5AA2EDA4562EC32B0 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 436AE389A1F083361C83674F71CE60FC /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D37058EFE2613BF155B1E4737E49E875 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC6C24293B5AF90747506CCA2A364A27 /* RCTTextViewManager.m */; }; - D377893FCD50E87963F93882136A76BF /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF59EDC13D03C66AD48DF06A86E0C86 /* RCTImageUtils.m */; }; - D4399BA02911345ADC0A48D3892C42A1 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 632D89C1E5C1CB57B37DBC3D0B402B38 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D333036EDB42342D3012D0E4CD9E954E /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81C2C018C22B72F14CB5E4440B4E0717 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579929A1DC19324E0B37A54A563502 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 97916199ED6955C13B01EACBCA0D27FE /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37058EFE2613BF155B1E4737E49E875 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EC5A63CB0AE18EC0DF42B9220865D856 /* RCTTextViewManager.m */; }; + D377893FCD50E87963F93882136A76BF /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D2FEF51ABFB258F9CA4B9F7530CBDD /* RCTImageUtils.m */; }; + D3D88754AC2587717036298083CF8AEA /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = F7CF0E506209618796C9750579F5680D /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3EC9D599B04496EEADA810A2D08A9BC /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25C73E3EA5483EF8F6BAF43585D19AB5 /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4459E62F87603773F4B27E19B2D780C /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = F3FB3E9F32323F9E92F2DBB8427B34FD /* FIRDependency.m */; }; - D47BEAB1C97C1C25F7181BCD25762A45 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7470AF65136D172D99EA7E8F474A54 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D48077AD3B49A588423560183A9FEBAF /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E0D257A452231D9919F802CBB1191B3 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D48C3179D8BBD40832DB4528FE1166B3 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A97BA26BB02BA9B6283731F3214547D7 /* RNNativeViewHandler.m */; }; + D4CFF8A576D4AA2F9C42CA65A6732831 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 77C5D531014D942E361F9325AD560C62 /* UMReactNativeEventEmitter.m */; }; D4D31AC4B663B98BC3BDA691706B54F7 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 371BCCE6DE6C1C5F6E933AC8F0CE13F7 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 44600E6B2185270621A456725F7F8206 /* EXUserNotificationRequester.m */; }; + D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = D87CF7D69622540A84C42BF33E227D40 /* EXUserNotificationRequester.m */; }; + D511E604162DCB06EA12789F6C6F882C /* RTCDtmfSender.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B7FE131152D449361609A10104F2F9 /* RTCDtmfSender.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5192A92C1F10CD502EC44962C95F29E /* RTCPeerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 20B87E6A7526EEF7FA07B06DA611D350 /* RTCPeerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5339473E957ACC825A3BEC85D0602CE /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B75C5F07F0B5EAE4031F252CEB5B7AF0 /* RNJitsiMeetViewManager.m */; }; D53F382A3D3DA2FD3C31DE200394F712 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = D0D90B0B3AF47CEA448F326F55EED569 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D5564204A7F5D87194DB1669E7DB1AFA /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = AA194C39136FCAEE12F52FB3766B2BBD /* BugsnagBreadcrumb.m */; }; - D5670A330AF71551379D03377DAAC054 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BBBF34499E018DC92B25F1D593B47B /* React-RCTText-dummy.m */; }; - D5738A71F184742779E1DCA4C168C0D0 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A0936B932B49940D8FB589DA50BC71 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D544E467FBBC3B5F6934188C63388FCD /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0AC3862DED458ADBD5B9B2E5C39526 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5564204A7F5D87194DB1669E7DB1AFA /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D970391548295373C5BE1BB1A61816F /* BugsnagBreadcrumb.m */; }; + D5670A330AF71551379D03377DAAC054 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 511C13AB1368E84392E76E2C090D0B44 /* React-RCTText-dummy.m */; }; + D5738A71F184742779E1DCA4C168C0D0 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = E6DA1B87AA3918D701AEC19AE6C457AC /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5904C11D3F52C440DF5DCCCE833DE71 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = A236B2D72366F344B655017EB8EA9D98 /* FIRComponentContainer.m */; }; - D5A4FA1FE58ECAB012620E7CC65F703F /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 44EF683DBE153D64045DABF91DF618E1 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5A4FA1FE58ECAB012620E7CC65F703F /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 04F5BD961E0034B524E7D83684CAD68A /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D602CA83D7A250B11256793383883037 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 33653E86EB98AA1A2E65EA48E08B3257 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D610A16427473AA02BE3395A95E9502F /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 25AD6DFEAC6474763E002C8BE5695ACF /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; D63E0FDC977B7D37E5E7B0FCCCDAA112 /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C7525067550F4AE7BD3A6DBF95FFF0EE /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D64AE3A3D2BEE37C045196284822E79C /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 476EA94692D543A7EB2CF88846EEF69B /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D6932A9841270C9656235F236EFF4D9C /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F16056412A25F3177090298E05FE0264 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6932BCA6F10CE1AB60371090551D3D7 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B143EC844DAD9173E200E0AA98C6122 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D704098EBF6271060A41D8E27F3EC02C /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECE681DF01112622A1E85860849C2D0 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D64AE3A3D2BEE37C045196284822E79C /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E4EABEB4CF7B1D94E7DCFF93017D87 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D6932A9841270C9656235F236EFF4D9C /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB4AE68FF70F8661D38D4D6E479330D /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6A60C03B3BB2A6AF33B8C58037EDBA1 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5156F0C4F87723F264F525A835C8FD7C /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7182C0FDCAE8B97CE1BCDC7866C69FE /* GDTEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8436B95314D136C946BDF183E8FC4FCF /* GDTEvent.m */; }; - D71B1565BA5D8F4829F30D0077517342 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = FD497630792652514B55ED0688019276 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D73E967F32F0299E5D770D221F0B469B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 13F548B11707C09BDFB004B71638F141 /* RNNotifications.m */; }; + D71B1565BA5D8F4829F30D0077517342 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = E27AF257080FE85FD432B052D55A8A15 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D73BB50187CC82BBEC782D0185FE7151 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AB43F689F040181E115C156BD705810 /* SDWebImageDownloaderRequestModifier.m */; }; D79FFAE4EAC3A02B6B035E2C6F0E6004 /* GDTStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 843409D13E830EA31C283FA0AA1903E7 /* GDTStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7A3D6DECC6A88ACCF265FBFAAAE55B2 /* FIRInstanceID_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF33AF7A1FB6D5858DB650F2BF7E98E /* FIRInstanceID_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7EF26089E42379A4FE7F06A3CCEA826 /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F41595A5D529546CEB7EE05466E4B2F5 /* RNReanimated-dummy.m */; }; - D80FF08EC7D0A48803E8FA298091A6CF /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC38E9781516D6D0FD3331E92132357 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7C8F11B29D8E98DD956CC9D8C19D446 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C003927BED9B0875864595A388D43FF /* SDImageCachesManagerOperation.m */; }; + D7E91647272F7D9FC06756965A6AA0F6 /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBF631D95CE9659649674B49EA5E8ABF /* RNCUIWebViewManager.m */; }; + D80FF08EC7D0A48803E8FA298091A6CF /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC3ED586E28B8D7DADBD7352904E6682 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D811575073035A171994579F17AA07FF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EADE67B6FB6A838B524DF151C409B18E /* RNReanimated-dummy.m */; }; D823909993E47E39D171FB7EBE48A08D /* GDTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 87039A8D37FA24291867269E886C2A9C /* GDTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; D931F1A1D54357CD2450DC7D8A6DBDEC /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A20D76317E3690879C32F7ABC95C661 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9545888F6A5D4F0DED2F3EA4DCF71F6 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = AD102486D88241996893F8843CA86F6B /* RSKTouchView.m */; }; - D99D6D7E33F6B08AE7A23DF63489B95B /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 837F5202C5BE4A271772D79E3CFB80F9 /* UIImageView+WebCache.m */; }; + D9A2A08F708091DB73234C2AB277ECE4 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 69681350441B2A06CC6804C52BA2873F /* RNSScreenStack.m */; }; D9B8D3BEAB811A518074FF96EB5E2E8D /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B690630170EE510DD6CF469596160CF0 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9D22F6479348C729D55A0564D2484C3 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 902D0F0E4E7501D88B438963A7041152 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DA0ADD53D889941A817CAF718EFF0EE8 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F94A3222B6DF99BB99D99A3AAFCC6075 /* RNFastImage-dummy.m */; }; - DA2D8228D464018326798244485E4C89 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B98F4761DD1F7E774BD5A13681F5FA /* RCTDevLoadingView.m */; }; + D9D22F6479348C729D55A0564D2484C3 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E32183BDA63E2FFDCF3C69D0F4A9A9 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA05348DA397AA2CAC0CC82CD004C8DC /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = DED1F39E97C9C5F368561A9264C0BB6E /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA262F77BAF0338D7B5AF14AC74C7788 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2164313A0C0905C5B30EACB4066FAF /* UIImage+Transform.m */; }; + DA2D8228D464018326798244485E4C89 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = A79693CAD457A7347DA72F62C698437F /* RCTDevLoadingView.m */; }; + DA57A66236744B4D2318FF3C9A18275B /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 2192791BAD79F9D3A64499F158FA66FB /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA8BD7BBF4FF9D874DB053946E31F301 /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1BED2E17E1566D858042C305437ADC /* FFFastImageViewManager.m */; }; DAB02821C84F2BA4426C6DD3AB7D22EF /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE8CD910E2FD570B0E627B1FFD50D30 /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAB9CFEB6D5A25D239801565F53AA55E /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E7937432A474CCEC42405E6975C1D81 /* RCTSubtractionAnimatedNode.m */; }; - DAD0D2F31CD8C7D3E6507EC64BFE265A /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EAE5C9A7D4A27556BE6EF109062AAF49 /* RNLocalize-dummy.m */; }; - DAF509D5B20564B82D0E84E690F90CFD /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 8F73CD584410E55A4738D0C0967113CC /* RCTProfileTrampoline-x86_64.S */; }; - DBA674449470ED2F334F61914E16C3EF /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = ACBD25509A050805531FB9DC2C807B7A /* BugsnagCrashSentry.m */; }; + DAB9CFEB6D5A25D239801565F53AA55E /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 13C596C30890080A7DB9124E9B935A31 /* RCTSubtractionAnimatedNode.m */; }; + DAF509D5B20564B82D0E84E690F90CFD /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = DA29A8EB31EB1EEB5F9205381F8ED317 /* RCTProfileTrampoline-x86_64.S */; }; + DB3A788CE057EF252EBCB0A721FDCAE6 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB0336293AC8AC7CFEE8A3696AAE425 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBA674449470ED2F334F61914E16C3EF /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 53A154975B4D4ACC4517EF50F7D90D78 /* BugsnagCrashSentry.m */; }; + DBC4626A371FD50FE07A858EBAC6953C /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = BE08227E965D9B47E01FCDEE53FC6C55 /* RNFirebaseDatabaseReference.m */; }; DC1370F458358C5BE438A6A0ED227DA6 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C93CB7E25886C1123FAC67FFB1F8AB2 /* FIRInstanceIDTokenStore.m */; }; DC158CB98CECA6B43EC601E2B84B64FE /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6224014A074C7DF2407E5021DAF4B58 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DC6029B859BB2E77C73DF8E237BD6A6F /* RCTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = F4EC1C5E6C7158781A07F2F3EC8A3E4E /* RCTPlatform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC6029B859BB2E77C73DF8E237BD6A6F /* RCTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = F9460B9B54E64BDCE867AECA3386A814 /* RCTPlatform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DC68D05D6350E5C93111DED36C4508F9 /* GDTStoredEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E363803F2ADB3E9C7745366D24CCE71 /* GDTStoredEvent.m */; }; - DC8DA9704B3E15993595F2C104025154 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 258E46EFE4F5B0D1C95E7989DCA6E9C5 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC8DA9704B3E15993595F2C104025154 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D42ED4D9515AA8A9DD1656BB0335045 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DCAC9CE673B917B1F1772C266A09DC72 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D389C626379109FDA3F85D7A027AB2E /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DCBBA7A21FD68545BAB40E6CAFA24542 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4FABA72FA14891A6A3025D7376A965E /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DD20562E1C4A432165705190E2527744 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 78FB885385284D83BAAA1A867EFB0AE0 /* RNNotificationParser.m */; }; - DD32A16A69E393E6F384E47AB142A39B /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 98BCFF3928889420799F7E6B6679CF75 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - DD959306B677A94A871AFCE043A308AE /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5B1030AA9714F68B4E5842F8250538 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDC64069B8EFB8ED3FC946F0AB5D8F2F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A3288D3CDB1CDF50FA4B8AF91569A68 /* RCTSinglelineTextInputView.m */; }; - DDD51174CA7788DF1B4001E3612C967A /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6A0B1EAD067DFE68899B0E6794AD9B4 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DCBBA7A21FD68545BAB40E6CAFA24542 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 417513EE6AE0E51AF543D074A8D86358 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DD32A16A69E393E6F384E47AB142A39B /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C592674961DC56ECA89C887EF3828D0 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + DD66F7D95949EE34795ABAA6A59D2CC6 /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 7836DABD581422073EEF11E485D1E52B /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD959306B677A94A871AFCE043A308AE /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = D92B00F4DF1037F5CF8C741C74F79CEB /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD95EBA6FDA9AF0AEAF9323050A007A3 /* JitsiMeet.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D28BF6FF0EABE68CA3A8AB6343B5624 /* JitsiMeet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDC64069B8EFB8ED3FC946F0AB5D8F2F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 437DF619A56EA18D24CADBA5CEFF64F4 /* RCTSinglelineTextInputView.m */; }; + DDD51174CA7788DF1B4001E3612C967A /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4CCB9E25179654A10FA8079DADC7E51 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DDEFD576BF8D5977530AFF787117B3E4 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = FABE7D30D6268CDF239DBB659220F4E1 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DE18DC12317A634A52985DEFDA7576D5 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = C526D4C020A0B5F63BEF6CA55982F818 /* RCTNetworkTask.m */; }; - DE4F5FF4AE9D67D6ABD6EF67FA40DE57 /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 22BA98A5B60F82ED1A0BEF877B5FA8E8 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE6406EA03AC88187348881599BA0059 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = F665A5DD37996A950BC4A82CCA6E9596 /* BugsnagSessionTrackingPayload.m */; }; - DE920797F7030FCFF8BD9FEC49A06C71 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB63FE3E96BF6FE03A2879DD0ECB1B1 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DE92671046C0D89FF4E3479D8A4EB241 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D839DDD908D5A35E945C2D2C1C01642 /* RNFirebaseStorage.m */; }; - DECCEFB78B107F03C9A9B095BB01A9A8 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 98EFC789EFD8CD126815B4E0CCDBA285 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DEF9338D15ECD22B0A95DCD2FA679FD3 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 06A48044E785201D34AC8A2F447F4EFF /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DF08B040CD29499D510F8A633DA4299A /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = F4569D972BB442379C3338AEAB89165B /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF0CB7649CFCA80EAFFB371176315841 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F6ABD140F1AAFF23D08A1CFFECCE608C /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF4360C56486590A45311A1BAFE50EFD /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 619BDE74FD22826933F5C8695DD5F452 /* RNFirebase.m */; }; - DFC9626E44A3BB97940B5EB1ADD22F9E /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F40523B25A3023E6FFAF01D4CE7A210 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE18DC12317A634A52985DEFDA7576D5 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = C498FB493BEE96977D34DFE02F30FFB3 /* RCTNetworkTask.m */; }; + DE6406EA03AC88187348881599BA0059 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A9053F178D814237EFD404ACBAFEE85 /* BugsnagSessionTrackingPayload.m */; }; + DE8E9239FD7C399E481AC7B6F48D42FF /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = ECED1B49038BCC0EC089ABCC4E12CC91 /* RNNotificationParser.m */; }; + DE920797F7030FCFF8BD9FEC49A06C71 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D9B5517DD456E91CE66FB7D42617486 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DE950F6702969FAAE4491E12A04568DB /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 170C0B92D8030F072BDA907F631BDB0D /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DECCEFB78B107F03C9A9B095BB01A9A8 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 582507E561AD360A80FA735EF50BB2BD /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DEF290AC647EA671C82354D6D3ECA504 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C4D7FD9F2DCB559C2D75CE9217CA668 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEF402D715FF6768009CCE0E4EE6C92E /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B675EAACA6B6C00527A3EA87B53BAD4 /* SDImageCoderHelper.m */; }; + DEF9338D15ECD22B0A95DCD2FA679FD3 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 47BF8824F14E5D7F7AD17F3AFD032E6F /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DF08B040CD29499D510F8A633DA4299A /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 993A80D8A91815C14275729481D92DF3 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF3616FCB5789C6C6EF3198F103F4E0C /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5375A66F588B12C7FFC3D4096C9121B5 /* UMReactNativeAdapter.m */; }; + DFC9626E44A3BB97940B5EB1ADD22F9E /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C1F8AFC604B3356FCE25B2C9E320C0D /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFCA44C8697E6963D73CC08DFD0D19B5 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = F9DE193A532D823A2C5F2C9CFE092DAE /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFDB9C30D67ABBEE3C6D103E6B4B373F /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 13CB2608882F52C24EBF7D79BAA64A6D /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFF94299EBFD53A2C967D837D2E906E1 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 15D7FA48D8C42EDC3E26C474BCC0DEFD /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E013C99C68F6C512DA43F88FED52DDFD /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = FDBA5810537D87F2CA2984D6E884E860 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E026FE94C7DAA41B6F15FDCE3EE00EC8 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 88BAA384D93DF8D20AC53F0A579D1961 /* RNFetchBlob.m */; }; - E02753DECBC2AA6101B629C610E71881 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED91456FAD7A371AC870ED4E9E6ABDD /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E02A84DFE301C23D8C24C8E3CB035A75 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C9F5A11594D3F0FB6CC6FEC6C931C9 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E03423394E4FAF0D893D52D5ED99A7A4 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = A6AF7065F6F423FD8BE3725E49887293 /* RNPushKit.m */; }; - E059E52F86FBF05AAAD2C2D14E0D8F60 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 703D8C482D12522BACB42147D5E7D12C /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E02753DECBC2AA6101B629C610E71881 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D517984FADABD99BFC731A006426A1 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E02A84DFE301C23D8C24C8E3CB035A75 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E349AE1756060B134D880AC959F6BA /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; E08D5ED498CB4DA17CBB17B92FE36331 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FECC40A877CF4171127CA354B4D4F06 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C8FDD5F991FAE4512A623DBBF0F9E2 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBDE845D1259E146B4DC835F57286A9 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13F3DFE4B4AEE84F28B26F241979B75E /* EXDownloadDelegate.m */; }; - E130E550CA53FBF9F7DA282A95382180 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 48866415580354FBF873DCF0211B4C84 /* SDImageTransformer.m */; }; - E13C2AA6742617B16347B3E362B73865 /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A723CEBD6A5B3FA35733DBA5955321 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E14135FC1B928B179065F46E98AB35AE /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AA0E0CC92D7B19BED1C60376C15F5B9 /* EXAudioSessionManager.m */; }; - E16BABB538F6DC441B51A2F52763402A /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F740C461439EE44356AACADB21CE2CB /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E1E14E490FC5F435A177DAC9F3B8E867 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F1E1CE6559521240BE00912D63F20604 /* RNRotationHandler.m */; }; - E22999E48F79BBD0AEB6E67A35B0A6F9 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A75F46F02E1A2C5721662F565E64167 /* CGGeometry+RSKImageCropper.m */; }; - E2350E979678E34F41717CFBCAC1BD16 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F0BD44BACA52F1E117C9965CC9A12D78 /* BugsnagKSCrashSysInfoParser.m */; }; - E244DAFE19D8FE536F8E2ED031BA5280 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 96D9A5D68AC14F577F6F879F70D11309 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E29BA8AF4166CA490E74B3B057B056EC /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6893302EFE047A8E68B0ECEB7CAFFEAD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C8FDD5F991FAE4512A623DBBF0F9E2 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DAD2BD88C1C69E2981FE8CC2D499E6 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0F436BD1C53D3865E1F2E01ACDE6988 /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9E56BDE5C5FF39A2FE1F0AAE0D7D2B /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C5C0410CD4152BBD8519A3656C0FCD7 /* EXDownloadDelegate.m */; }; + E14135FC1B928B179065F46E98AB35AE /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F8F16088905DE9473D846FBE74F9157 /* EXAudioSessionManager.m */; }; + E14545D1AB4BA84F7B190E16D9D697D3 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 363A044359A7D9BE5F2DB4F5D8992CEF /* QBAlbumsViewController.m */; }; + E16BABB538F6DC441B51A2F52763402A /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D024EDD7A19B58B083A5F08467CE0E56 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E19F9E659C582EF24D86570581844605 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D18CE0DAEFEAA6D474A23DB518DA05FB /* RNScreens-dummy.m */; }; + E2350E979678E34F41717CFBCAC1BD16 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = EF561979E4907ABC9E4F2881A7B6BE6B /* BugsnagKSCrashSysInfoParser.m */; }; + E279A7F1C76E83CA3218E493CA1FB924 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA3E71057426F69B44429BE6174D6CE /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E284B0CE183A1A3D34F60A9452BA0A60 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = B3EBC87084BF08F730D22A6808C1F91D /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2B7A1B54C0403C79E71E3DE34AD8B7A /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 30CD69E1B9C38E757319BE850F56DBE1 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E2F2DD597216F2F8D31CB41F3621887A /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9B7FB6823E93D02B9CFFF6C43BF4925A /* RCTProfileTrampoline-arm.S */; }; - E30665E574F2E9D1081E636C81F287C3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DDDFA1F336C70571A461FD0A21188AB /* Bugsnag.m */; }; - E30FD2AF9922D0B0144F0AC373003FA8 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DCFEAAD08A70E9F3C3EF14F9F66F0F9 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E323E3FE055BB21FC869EA83004C8A83 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F2111A958F82B943AB20AD17FE937B5A /* RNScreens-dummy.m */; }; - E33AEC5D46F4EF48E7DDD208E3694C08 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 23925EC963EFD0F90E5802D86A55362D /* REAOperatorNode.m */; }; - E37BB1840556B7AB26C9466E935EB947 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EF26D7A613BF8BC7544507B47C7FA18B /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E37E63419F31FCD6BAA6F91DA3308E06 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB9C634C45FD9FDD3683F612AB13919 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2F2DD597216F2F8D31CB41F3621887A /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 77C4C2D64A9AC391CB3E4E60E9CDB565 /* RCTProfileTrampoline-arm.S */; }; + E30665E574F2E9D1081E636C81F287C3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 3184C463BD172316D1AD748B487819F4 /* Bugsnag.m */; }; + E30FD2AF9922D0B0144F0AC373003FA8 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A0B893362FEC54C2078D1AF61E7308E /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E35E1CDAFE611A5DE5ED37C8636C0FDB /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB6D372A5F52156679B3E5965338FAA /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E37BB1840556B7AB26C9466E935EB947 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EE5393F83E466902A9DB3804BFFB62CC /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E3E7193D979125C005FF9F15A1A135EB /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 023DC4F9327544C470CFE83CBA42B9AE /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EF44D2C509C18A3268605E51DD01A5 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AE6495FF9F3C087CCD3050E88EBE8D /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E410D7E9C646B7115F851735D9DB9058 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F81775F6BC346F50DD5769332E5C42E /* RCTWebSocketExecutor.m */; }; - E442F7C59CA23744501C2CAA0DF5546C /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A4842132B0D8B8B1C2520D1DD113369 /* RCTDevMenu.m */; }; - E461EFB4D5C63B31F8700C5137F650CC /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C736A04F6CBCC04F3609731EA734D11 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46411FEE5DFC4B164A1A35FF2A8ECFD /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7032B93FC0F173F751E7B144C25F67C /* EXVideoView.m */; }; - E46B89B6E407E05E6B6E4A2D5329D92B /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B7055D00B6746B8F34281BC16BD73E /* react-native-splash-screen-dummy.m */; }; + E410D7E9C646B7115F851735D9DB9058 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6F6EE07F65041ECE330E7A1A8C23FF /* RCTWebSocketExecutor.m */; }; + E442F7C59CA23744501C2CAA0DF5546C /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 404244D3A8D555D5D4E96BB69B4B9DB7 /* RCTDevMenu.m */; }; + E461EFB4D5C63B31F8700C5137F650CC /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EC32CA0F2936DEFAB47A5047289621 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E46411FEE5DFC4B164A1A35FF2A8ECFD /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD3408A59D6FC71E782C3DC62EEBEB51 /* EXVideoView.m */; }; E4988068F00F7F1B67427233470219DC /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F54F99957739819D9ABAAF28511A73B2 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E4AB22518922D98B2FEFB1CEA32411CA /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B610AFF0CBAEB5FB1BF3368AD3D0119 /* BSGOutOfMemoryWatchdog.m */; }; + E4AB22518922D98B2FEFB1CEA32411CA /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 20D397DBF640D2713BAEAADB9FB664BB /* BSGOutOfMemoryWatchdog.m */; }; + E4B2A41EE5F5158EAB8747D38E577460 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B6CCD6199BC227927A6F66F1C4B676 /* UIImageView+HighlightedWebCache.m */; }; E56A382EFCB1212FE0C79493D0A3A9E2 /* GDTClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 9556B10138E402F637746986E6DF2758 /* GDTClock.m */; }; - E5C2C7E0D0CCFD369A90589F99436707 /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ABBAB4779459D6EA7C2F31F57AD587B /* RNFetchBlobNetwork.m */; }; E5D8C91086E97408A4280CE36D002303 /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E92474C334E840C7FADC52192C0043E /* FirebaseInstanceID-dummy.m */; }; - E5DE082ED9097514719C964AF3C83E6B /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BD23916AFAA058F0A9696D3A26E1C8DA /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E62D9E826B028ABEE704961AE87496CC /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA293DADEDCEDC13D22CE28A2C91ABB /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E68B43E6FD698297F30F114210754081 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2692AC287AD187B5479A0E10AC4A9264 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = DF8C016F487ED18B1723493C7F9FF057 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6F7E570DC27C7D5F1A6D94B5BDD7FE1 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F4C860FD823C1FF4E8D7FC0D66A507 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E71F59E0DA3F7D14E56DCE0EDA82EC8B /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A40CFBCB4C54B5CE74D2BDAD70A3DB4 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72B24461ED7F1F91783237F8BBB78C6 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3312D054F2CC88795612F8C6BE2C20D2 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E750048AAA181BA7A47A86704DD79197 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 43AB39358F24B51E7FAED99A4FE105C3 /* RCTTextShadowView.m */; }; - E754433A855300E3471A960649F23ED3 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C2699511ECB924FE3116A301B06E6F /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7616B10A3FBB26B07DCF5B5184D5FC2 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8954E18537096997A8D4FEBA753C6E66 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E77EC7B11E71FA5A1F9BF470FA858B55 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE6DF4613CB057920348EDBFDCEF4EF /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7AA00AF719F676F6616114D1984DBE7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FF03A70E1A66B48FCEF58B949DB94C /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E64BC2C8E533CF7CDC354C314C874ABD /* RTCIceServer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE5BF2B0A81227D2E095E11601D90D64 /* RTCIceServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E682364F8DBEFFD7E51D16209762CE75 /* RTCAudioSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C193AB505E7D73550B8309D80B6436 /* RTCAudioSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E68B43E6FD698297F30F114210754081 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FABA93D99179070E8400B4DB0C17D637 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6F8AFAE619981D366B26D261C9AB90 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6F7E570DC27C7D5F1A6D94B5BDD7FE1 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CFC4DB191E446CD097041E840E96E48 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E71F59E0DA3F7D14E56DCE0EDA82EC8B /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CFB638C231C8B7D41B28548186BE05 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E750048AAA181BA7A47A86704DD79197 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D52E152030D3F2CC8E52AD8717EF091 /* RCTTextShadowView.m */; }; + E754433A855300E3471A960649F23ED3 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = F13F72D539112CA82BED601EEECFFA5A /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7AA00AF719F676F6616114D1984DBE7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4471C949DC5E2E9C16EB41A2D4BFF2 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7C34B87DC7FCB383BC57216BEAD94B4 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 945A9B6C6763CCF3EFBAD3658AAAA42A /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7D5EBF8E97C6FD542E1B950F1F8BCF1 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADC7F0E3D366BF82C463A156BC27FE7 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7FD358C35948E9532940E3E928897F5 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 20D33CD7E9BF14C9CCC07D97E0DD63D1 /* REAPropsNode.m */; }; - E840FA27CBF8216BD28C324F03A53BE0 /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E9737B186AF79F41EBB06228EEE1CBB /* RCTLocalAssetImageLoader.m */; }; + E7D5EBF8E97C6FD542E1B950F1F8BCF1 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2241DD02FE8DE56CF995B78DCE250A /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7E2746FDCF8D382C2C6ACA9B98910D9 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = FC020BDD1C997625A37C1F387E12474A /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E840FA27CBF8216BD28C324F03A53BE0 /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = CCE146BB2005C90D36EB0566356F965F /* RCTLocalAssetImageLoader.m */; }; E86169365D2CF36E06692F2CA8B48644 /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C48AFDFD4458D2849FA11DDB2AEBC3DB /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E879251E0F02E70727FBBABED9C4FE01 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 7274CF47C3282B42D216D8239BF6B9B3 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E89850E58EF9AC1E0B8B793A66B4E83D /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72B99EC665EF34C1A2E7018E47792340 /* React-RCTActionSheet-dummy.m */; }; + E86331328CD11B17F76943751C86CB26 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 94BA45F1F7EA57DB1EB0BE882DF0E3A6 /* RNGestureHandlerRegistry.m */; }; + E8693AD53728913433AA8727F73D760A /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6A03876D41F9E85AD044DDB6F458A4 /* SDImageCoder.m */; }; + E879251E0F02E70727FBBABED9C4FE01 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = F4B58832064071ACBD7251BB2A6F5892 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E89850E58EF9AC1E0B8B793A66B4E83D /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C96DC7C141C998BBCD388D03E5B5DD26 /* React-RCTActionSheet-dummy.m */; }; + E8A7D89286898AEC226EDE03E991B68E /* SDImageAPNGCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A3DBD6D4B64099330ACBBF9E0560ECDA /* SDImageAPNGCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8ADD9FF1D22894886D0DBD93EAB58F6 /* FIRCoreDiagnosticsDateFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A7EE205F60BF435DB15650AA5B16EB /* FIRCoreDiagnosticsDateFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8D743770042CD9C6CF68FE5BD483250 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84F9F714D8FA69FD1D5D9C6795333F31 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E90E6DA0B4EB9AD12225D349060DB959 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E0940ADE07D8CBA6B2FC95ADF0740055 /* SDWebImageDownloaderOperation.m */; }; - E96695BC50234E83F29C6AFBE4C15FC8 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA658F64A92CFB739F79AC95D27E2371 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E96BEBBADD459AB404A2D6A5EEF23905 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B7A4721094DC22A2134C2B034FAA1CF /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E98125122ADE7650BA5A8CFCC476F70A /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C98D12E9C86B87D74FC3BFB0A1A3E2C5 /* react-native-orientation-locker-dummy.m */; }; - E98320063FA310980862298B0AD508ED /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE94CA2B694C389FBA13758A135E71B /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E99556A2EE985E045BD301E4B12C506F /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 416DB4138D5F2BE3EC1BAF1FE6BFF9B0 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BBB1BDC8031F9FB5E40B884663909B6 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9B2751085E5285A7484E657234ECE5B /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1F9B7A6504D551D8E43049A7F011E5 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9E1124F01D54146BCDBA6186131A250 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E9ADAAC88F6604E808795B9579A727CD /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA1FCCB4CFACDB1FFA0E8C8F4DAB202C /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = D1112F03EA48DB9D976CBBC2A3F41D63 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EA2EBACA7EED4A0E9C827B5E68C8B6DC /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 04B843A89A8D365F2A5E6FCD789AA573 /* RCTInputAccessoryViewContent.m */; }; - EA3DD67E50D2AB66AFD3577F70148438 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D33CC85AE118CE451FA72D54C1B852C /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E8D743770042CD9C6CF68FE5BD483250 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19ACAF5A33A1AE265395DF8C9337A1BD /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E951D8EEE84A03EF7357413001D3B9F4 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F711E618AFB99B1074C4BB7E7C2A6D1 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E96695BC50234E83F29C6AFBE4C15FC8 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9CA946CFADCD1833BC17CD8018C0EB55 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E96BEBBADD459AB404A2D6A5EEF23905 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DAE5FFAACE6FB0F3CA4FB0AA6A768F /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E98320063FA310980862298B0AD508ED /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C59428AA55B9222664D79843A9E1121 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E99556A2EE985E045BD301E4B12C506F /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7C71B857759EE7566EC6B15359071CF /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D6848E08FDA7AF8EF86D06D2DEFE1A11 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9B2751085E5285A7484E657234ECE5B /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 225B23BC7E09A57BB81DC7223CC033A7 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9E1124F01D54146BCDBA6186131A250 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BFEB264D81580315AA2560D896B4787D /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA1FCCB4CFACDB1FFA0E8C8F4DAB202C /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = E225BF1A9FD04A4C2C0BB57A11862C9C /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EA2EBACA7EED4A0E9C827B5E68C8B6DC /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DB6414A0790EFA0A84903F39DDCABEB /* RCTInputAccessoryViewContent.m */; }; + EA2EFFE0BC2C37C1DCA319A01257D85B /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A6077DDE95CCE5BAAA92982BB97AEAB /* REABezierNode.m */; }; + EA3DD67E50D2AB66AFD3577F70148438 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E5114A5293B72E5A9BCB1310F1B84C1 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EA4EA907999C368EFFB0D9B659A32B7D /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = FCDA51C6E6843CD4D0A0A47396F0DC84 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA7AE374EEA24D06EBB84EBDC187CEF8 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D79AFD7B38F36B17A576E16D20BB7B4 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA8A2DDEDD3CC7462E779225F04B76AA /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 786A54A94A3E7EAE58E0A909970D8D8C /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAC364E6F927A627D09495E369A27234 /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D670BB72F7C79A823C61CED851100CBA /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAFDA6060BFF2BDF08E67C76FAE363F7 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = C4CC4FCA89F1F6953E6D39BA6E5D6FB1 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB145EC272E2ABC74685BA280E59ABEC /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = D63F824472DAA137E92CC76B727981D0 /* RCTInspector.mm */; }; - EB4613223C90856FEA6A4CF3D83B3BDB /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = E2291D8D25BAC35D0DE563E75BE219B0 /* UIImage+Metadata.m */; }; + EA8A2DDEDD3CC7462E779225F04B76AA /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD28F442E05624658203DAF3448EB2B /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAE8440031DA8BFB123166FAF77FEA03 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C011322D1E9F0F83594E269A1249A9D3 /* rn-extensions-share-dummy.m */; }; + EAFDA6060BFF2BDF08E67C76FAE363F7 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = F92DAC8DC9779886C671F52A564D5D03 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB145EC272E2ABC74685BA280E59ABEC /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91D3B26269141BEE3316B00A2EBE514E /* RCTInspector.mm */; }; EB5EBE499F86CBEC104916F420C11BD4 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC0223AF3A58CDB188A3F953E17AF069 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5ED683DD3F2747D4AEA6BEC69F69897 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = A04D324EC31FB81E40C495BF4D1A95A7 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB84C96FCA76318795D1CCA9A7E47337 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = AFA8781E13A2EE5FEDC037BCF3DE1F99 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EBB7D00E275E9B10ED1F60E8E267AC76 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3FFDA552B1986DC6555609F57592BB8A /* BSG_KSCrashSentry_CPPException.mm */; }; + EBB7D00E275E9B10ED1F60E8E267AC76 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32D22A609AD24CD438DE5B86E343B199 /* BSG_KSCrashSentry_CPPException.mm */; }; + EBBA8C7746351A32AA579964827D4959 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3721E77C21FA3733E371C4BD0D42FDAB /* SDMemoryCache.m */; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D80125EE7AF49F27704FC89CF1BB64 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBF746926FEB9F3FD25A7FC3F01409D4 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 071BEAF212AD9EEB04241948A15638C9 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBF746926FEB9F3FD25A7FC3F01409D4 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8525A03F760DE87350A4A005CB7E6057 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; EBFDCBB17699B2B9EF9142B4B582D8BE /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 54BD948E35981DC92747E6BE93881C75 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC9662C8760527E9890E698DC7424155 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = B363D1981C56815FD302BDBADF3538EF /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECCC2168324796A41E68B77CA42E0071 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 82753617E233EAE24E2C6803B824ECCF /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECE1477B34D643F7B2DD2AE0B6E66100 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22810B0DC47B5CD0A2369B1E59C533FB /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ECE61127A0A5E844623CFB8E93CF7325 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F15869426D11B272A7275D1AB8717116 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED2342C3CD927D9C799F982C494C43DE /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D37DD2013C63370E9457997045B36D /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED762BA733B29B35B834E2FB576B390D /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3A46F9CCE8CEFF84C4C455EA782C9B /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED8457448E87C986B7B5F51C3DE39EE1 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49DBD2947B82EAF484EF348C380C212A /* RCTHTTPRequestHandler.mm */; }; - EDAECEA0F7805D6FBA19164507F34D04 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DFCC2AFA198C5122CF36CF241F59838 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDC2C1C4F84C1B4A2B3B449F0BA966FE /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = E2332CD7E54542E64BD8F81B0A828FC0 /* UMReactNativeEventEmitter.m */; }; - EDF46B245B435882484D77489A7CAE91 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 00833E7EB0D944705E71BB149296AC38 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC18F8764A38D4B939DE749DF4FE618B /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF74E94CF9E25426B544B546E1EAF7C /* SDWebImageOptionsProcessor.m */; }; + ECE1477B34D643F7B2DD2AE0B6E66100 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B498F27CC09F6C300D96B6D78B1C90D /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ED07D390421CCE321ACEC4D87EC270B1 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 18575A59266F7A6CFE46B8E5FAC1ED85 /* SDWebImageCacheSerializer.m */; }; + ED4166FBA827825B85C17775EFC239F6 /* RTCSessionDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = BBFA2A3F03E3E00D5EDD4D06C6A56955 /* RTCSessionDescription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED8457448E87C986B7B5F51C3DE39EE1 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 53452575AB7F2DC8DA4C08DF45827CD7 /* RCTHTTPRequestHandler.mm */; }; + EDAB76FFCDD23233F0F55883A3A72C33 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = BEE47C639BA506ECCE98AAEBCA942A81 /* NSImage+Compatibility.m */; }; + EDB7867ED838DB340E9654A781552720 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D0DFCB9D70457B9B48F8858EA6D2F6 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDF46B245B435882484D77489A7CAE91 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = B8792CD56706412C9A40FFB8B8569DA2 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE104EF6EF79C1AF1275B962BD8E1913 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E7AE6C7CA7720B8220E8123BA534811 /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE3BF311F2D12A6005AFAC0C84DD366B /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A364D2E650BCAB24869D1CB46AA63BE6 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE67B234BF3596003CFEB29B85DEA5C6 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 47B49192AF0295CD4E82703CC4F96C2C /* RCTReconnectingWebSocket.m */; }; - EE7471C6210BEC65A442909F081AC330 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 88836057AC917E1A9EDBD574E385C230 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE7A305C4A6291D172BE980B5FD8C889 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4176C6CF3ACEAF2DB8B96F889E048483 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EE8CCDFC9BE25C59E5C29E45E4D60FC7 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0326054DCEED7481889C793E117EF794 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE3BF311F2D12A6005AFAC0C84DD366B /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A79287D480B04EEA5D4AB507756F42 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE56812E46FCDB35F4B0E7D36B98726E /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5705572E9CE4F39CF188596636AE7BA6 /* react-native-webview-dummy.m */; }; + EE67B234BF3596003CFEB29B85DEA5C6 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 196DE05284809570408F85DFD2750E59 /* RCTReconnectingWebSocket.m */; }; + EE7A305C4A6291D172BE980B5FD8C889 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C88F8FD28B8A36C342F510140396AC4B /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EE8CCDFC9BE25C59E5C29E45E4D60FC7 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F8BA357796A18BEA09244DCEC7ADF1B2 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; EED6B6003D213CAE58C690B80D6A447B /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96F47211CE06FFA8209B2321135049D3 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; EEE61B47ECF7B948D4ED9B19FED7245A /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 89D21F51498AA6261BF58D256A261E60 /* GULNetworkURLSession.m */; }; - EF0320F5725BB7E2140358C884EA98CC /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8F1E84A233971B23681C11CC3D96F1 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA90419E7771CBC09D034C6A4E7A6844 /* EXFileSystem-dummy.m */; }; + EF00867FE8006E64CB3CA0B2E1D47599 /* RTCVideoFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE3F4A7156D4AFBA38FB70FE8A9D7BD /* RTCVideoFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FF0E349C9F11E17F62B6C7C11391ADB /* EXFileSystem-dummy.m */; }; + EF18D76CC4FC1617AE16359FC0BF6F1E /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C2EDB401C1AB4FD4B66BE4ED480C3A /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF8033FBE008CD4B0826A361DF15F3A2 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E73667EAB76F89D466346DF2412413F /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EFB5DFFFCB92DA25AC4EF55E9765A854 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E5985FE783F85BAEA2EBE769BE16011 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFFC3BDD07E133EC6A7F2BD4EBA0D449 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5B193632E1CABAD99FC92DC885A56EF /* RCTMultilineTextInputViewManager.m */; }; - F05F6C45463073166AF933F841EE5D6B /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = DFD54D567474AE55EB97F8845FAF3B7A /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFB5DFFFCB92DA25AC4EF55E9765A854 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4499EA7D87C44ABF1458DCDAB7D3AA70 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFB83154B4DB9E2988C315CE5A7B8662 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F06F77C11E1A305DC7E9A6EBDB4F4F80 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFC76826523707F6F0DC69F3CA6488C1 /* RTCMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 460B74A5C0A48EDD1D0BC2AB02A16BFC /* RTCMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFFC3BDD07E133EC6A7F2BD4EBA0D449 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C2896209A87724CEBFCBB3F31231DED5 /* RCTMultilineTextInputViewManager.m */; }; F06CE2C5BB5EF02B82AAC45839664EF4 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 24782A672E657AE222951FC5890B29BC /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 040F9C574AAF1898B2DB9F81411F4183 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0BCB7129309F88F2E2A35B74AF58CB0 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 980BA187310E4AA093939AA3E53D5584 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F0E83999128CC0390AF97F8F252953FF /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E182239D2346FAEEABD8411EECD84CC /* RCTImageShadowView.m */; }; - F0E93E89669793E0F22227E25E1A53EA /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = A9406FAA2A308A063232101F846A0755 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F10438BAD167E2F53E5C40DDD7E5ED2C /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 963E891BF725D7AF4DCE75FEFE9BCB3B /* REAConcatNode.m */; }; + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E873A37952E3161EF4AD69498DA6AD4E /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0BCB7129309F88F2E2A35B74AF58CB0 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B10C034DB724A15D796703BBC605A2F6 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F0E83999128CC0390AF97F8F252953FF /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C47C8084A0742D3EC19084618D5A944 /* RCTImageShadowView.m */; }; F11F15E67165DE77897C120245B43443 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D9460157F7FDCA4BF2D95C08EF96DE5 /* FIRInstanceIDLogger.m */; }; - F14406C79BE2DD3B10F16F32546490BF /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA3DC5671D5C877DAF7CA87B4425C02 /* BugsnagErrorReportApiClient.m */; }; - F1481E2A0DF4B4983FF05CAD64B6E608 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C4D7FD9F2DCB559C2D75CE9217CA668 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1859858820384E79CC09B13D104C77B /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A35075C5AA64CF7A4B370A4C0588AE8 /* RNNotificationsStore.m */; }; - F1A8836C8112FB3D67C84C6AFFDD28C8 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1A7607FB0F59CB4D9CA4137D10A849 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1DCF77B25A94699E8371EF2EF9222EE /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA23EDBB8449E1237AFF6A536AC09EBE /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1EA883FB1EB4A3E878D4CF627C09FA1 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 622447CE5B364B130ABF79AFE5A2542F /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1F84C6881EBBA373FFCA637B357830B /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF976F355D5E0823B514A3BE0608A1F /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F14406C79BE2DD3B10F16F32546490BF /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF7DF68007747195DD27948CAB699D9 /* BugsnagErrorReportApiClient.m */; }; + F1D1CBFFAB3AA1370F22DB0A5DD64866 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 621455A6189A6D813A2BF66B2FB2B919 /* SDWebImageDownloader.m */; }; + F1EA883FB1EB4A3E878D4CF627C09FA1 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD6E8EFA6ED3633E440D95B011839CE /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1F84C6881EBBA373FFCA637B357830B /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3768B1EF49AF63ECC0ACDE8E85C78DC2 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1FD68E15FE818E00E17128C880C5E09 /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E7C3ABE9D7035639151BAC1CAA023A /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; F214324939EEA0343308B64D185B9042 /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 996ADEC2706AEE60B10C1B10F23B17FF /* FIRInstanceIDCheckinPreferences+Internal.m */; }; - F231049CF4CD4BAFC3CBC7D76FF1DCC0 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DD4915475ED94EC1DC813403E89620D2 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F2A0C4AB9ED74FA8127B8691350BB895 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DD38C706C10C12E336FB35A6B38724 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F231049CF4CD4BAFC3CBC7D76FF1DCC0 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3834945D9DC81E20AE13AFF8520282FF /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F2A2F337AD5C535E5217347958F5EB16 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B84DE2B24887A92B132B30A86B03A52 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2C98165A8FA083A0DDF7733AC494C84 /* FIRInstanceIDAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EB66EC115E433A821451732BEAA034D0 /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F48BC54D8BB155D59C43BA72E8DF82 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 60ECCCC43690D9CB6A582FE619243E25 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E068C1DD38E2937CEF9E1E51D857C2 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F30EE318350EE043AD328AD53479E418 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFF26FBF25613C65417375496B5A684 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F31B16A45487015257FA7EB08132CCE9 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 963B266607287EAA109E6F29F36F1296 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F33023FE89389AB35B5B1B96BE67421E /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 267700F59E586BC2481C9D46D493B6AA /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F33EB548230902D3F4FE3F94C3BB1A0C /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C794A227DAEABAE98A4D07D22F2EBD2 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F33F6534A6C6684506F8041FD965F6D3 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9913D2E27955C1C94DB8FBB02D809154 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D1879CB5DE2D038FD3F2D5D194C572 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F33023FE89389AB35B5B1B96BE67421E /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C460519E921BAAC282A0454F3854E475 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F3379743F67AAFFD553058B72FDD84E5 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BCE5B8A3DEDC45656C07663920AC26 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F33EB548230902D3F4FE3F94C3BB1A0C /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEE787CF33D79EC8078B8A152606812 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F33F6534A6C6684506F8041FD965F6D3 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F907803C9855FCDE94218C03B7BD235 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; F35835EF76DF0D2C2E044A8C0EFC6E6F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = C107FA2159EA63861A4318B4F213627E /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; F35AE33B0AF486D966DAAE3DF3D3AF16 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 776D767CF2D3E09744EE4E72B37334E3 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F3686FEE5D124CF27B2FF1ACA5473EFC /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 01540262B7BE60B5BDA737C324E7A811 /* BSG_RFC3339DateTool.m */; }; - F37259F2DCCBF7CACA0E0D72EF7F6E91 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C019BE8CA64FD24A59F5D23D1FBC8ED /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3EA7A223EC505DC41F61F6F32FA3FC2 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 3823108F714B4BE450785361710C8853 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3686FEE5D124CF27B2FF1ACA5473EFC /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = DBADF308753226D1136A139DDBFF022B /* BSG_RFC3339DateTool.m */; }; + F37259F2DCCBF7CACA0E0D72EF7F6E91 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5192E192FA2FDB1BCB8F6B7C773C1F81 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3EA7A223EC505DC41F61F6F32FA3FC2 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 18E073ABD2467D5EF4850F2B24D7B8DB /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40206DB1B71EDAB31FE7A4A03B7CAEB /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F79C626B8D5DCB8C1CE936834A7407 /* NSError+FIRInstanceID.m */; }; - F414C6C435E3F08637F0B465F176A861 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B59CC1BAA4BFC5DB2D00452E5713ADB /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F41F849B9C5303B3302537DAC5358881 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 258F9B9F16D67BA9A3F9CC592DEBF8DB /* NSData+ImageContentType.m */; }; F43528B974BC5C6FFEB30AE822522370 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 023644D5A0ADDE57DFBBA905D7E73BC2 /* GULMutableDictionary.m */; }; - F47F71697E14AE03E869FA160343419B /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F31AD7BF52A146E29E6BB9BDC4025CF6 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4CA0ABB380DEBCD3978443784CF6FD8 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AB5EDC8A0B36A8FE4163BD10439066 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F47F71697E14AE03E869FA160343419B /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5235669CD1912692A6B1F780504AFD /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F490A280DA9C46B6438F5385954E0F79 /* JitsiMeet-Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = E91D25925455BE8F62051DE4A82FEB60 /* JitsiMeet-Swift.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4CA0ABB380DEBCD3978443784CF6FD8 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FB3E08C3FEF813548C1EA43F017B43 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4E45E4DAB3846FDFBF05FCB418A9964 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B7BEA5F009D938BF5F5F71F697E182 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4E72B5A2CB83F73E28D1E08126AE703 /* GDTConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD6AA6698FECCEF250F192BEA0D93CD /* GDTConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4EC3468054142BE02A65CEE11DABF25 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E4D3A8243738B05FCFDFD8E899E5256 /* UIImage+WebP.m */; }; - F53999014726238100EE441D3A9EA02A /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 049B965D1C5FB067AB021E008F84B5E8 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F54C91CD94438ED74E33C013A2B53F08 /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F955CFBD57187BE53C9B28D12BCB5F /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F554A37E188E8D13370DE7E1529C2AE9 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 12F136F7FC0B8310A93DD64396C0789F /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F555A055464F51B97AE6AB79C06405CD /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CFCA2B826181926957ACF088B29EFF8 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F55B5E138822DED354785D271AA77234 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E01DDCB374A2337590199437BFC9A08 /* REACondNode.m */; }; - F624D7C3DCC810FE9D1D2ABB31AE59C1 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C66AC9E6FA17B555C70A4A4F082BBF /* SDImageGIFCoder.m */; }; - F65C98E710AF4B777EEC3AB6D2318024 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B8199841CEAAA11C8A691472B30E3875 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F667ACBB76F4EA2E93808FE74D9CC0AE /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 964C2E3CA56634EA8AE6821E435242FB /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F3003169D44AA80DCB27C13D30BD24 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3376AF168EC6C13692DB1F130CC363EE /* RNFlingHandler.m */; }; + F554A37E188E8D13370DE7E1529C2AE9 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6CCDD182FE0740DAADECB9AC2F3B85D3 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F555A055464F51B97AE6AB79C06405CD /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CE963A9E8C500CE91A57773153CAB7E0 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5CF0E89D02725E620F0AB36FF3D91C6 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB28381573490FDCA535EC23E01F503 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5D85CFC5CD0FE0A6CB20FBBF8C8F40D /* RTCMediaSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F8EB5B8A279F66BD3F7BCEBE25D0BBF /* RTCMediaSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F628EB4B5D81895C50C92538DA48503C /* RTCCallbackLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AAFDDFA74D6B997BF73363C5D3CD0C5 /* RTCCallbackLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F62E949CECD29434D8173C2DC9476A07 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A8A1691CA218413AAF4FDF833E01BAD /* RNPanHandler.m */; }; + F65C98E710AF4B777EEC3AB6D2318024 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2C4A2098DE5C85A5A3D1EBFA967B98 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F67031391B381BDC69CB305BED6E7A8F /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 222FBFFE46A483F13B810824A5C4C302 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; F754EE115D83928D0C65BC06781D363D /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F086DA74BF133AD68E714453CF3E96 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F75A233D7D1082E856303D5F2A1ABB4B /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFBB81B304B4AF910353864745EB168 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7BD25D1006AFC39D7056A2FDEDB7393 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D36A7DBB1CAA328D188048E619B5A1EE /* Pods-ShareRocketChatRN-dummy.m */; }; - F8066AF226BA224980B40CD151CA028E /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED77732AEB2AD592ED3044DFC4DBF81 /* RNLocalize.m */; }; - F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F075E77D83FF1ED6152CDA525357F4E3 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F75A233D7D1082E856303D5F2A1ABB4B /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB6BF87AB22A53FEDB3B70E1E91A50E /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F776A24745768EBA83955DF03DA7BA91 /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F320C8CD9E349059A5D937FE095B659 /* RNFetchBlobConst.m */; }; + F7809AB1DF1F193B9C6261C641C18648 /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FD4C8D93C477EF3746E33D4F3A030F6A /* RCTVideoPlayerViewController.m */; }; + F7B23316A8915DB938029CB1524D1B6F /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FA10B03F7D2BE9D0451168E2A32B87 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7E98ADA183D0E217AF0D3F255B3D728 /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E7E6B40FEB6D36A4338FE6502EB1FC90 /* REABlockNode.m */; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 76C172939A060CCB9E8ECB5CE58BF22E /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; F820FC5D04E496FF37B057F3DFCF5012 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C3DC6D5B9BDAE5D38A9C3FBABB1496A /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F8430DF732D57F49D0B53B1AC14B9DD0 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 92593ABEB9F9E1656871BD318804B339 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F8430DF732D57F49D0B53B1AC14B9DD0 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 54705F3ACBB1A6D61D7A07DE0010EF10 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F858220DD2C3E5D588A8642C2BB1EB01 /* RTCDataChannelConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = DC284C1FAB96AB619F94D93F431DA459 /* RTCDataChannelConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; F85DD47AB63EE9B0EEF0D8DC0905C5F7 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B367DCE92865D3CC37D33E46A79C9F5 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F864CE3C245F1BDF3E4A177FD9F45C2C /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 9870476FA94D255E61C842DC14FAC7EB /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F867328E4B213787EF0D5F89377141E6 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = DC112C53F96F285D1668593F36345BF1 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F86A780677757EB4117D8A2746894D4D /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BDADE8683DCFDCC0487018AE56C2336 /* RCTSRWebSocket.m */; }; - F86E75E1CD747F7804F390F2EE53A11B /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7F313564C6C62F9D8C4B2C50B7BBF08 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F87458D0DCB5F2CB576E30F689072AC6 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 031F4624FACA06DEC3862B303A0FA5B1 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F89AA5B7675E084BE1C4AC1154A173ED /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DDBCB93DE0FB3BAB971C7139DCEBE9B /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F86A780677757EB4117D8A2746894D4D /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 810E2876824AD7075F0486802BAD67DA /* RCTSRWebSocket.m */; }; + F86E75E1CD747F7804F390F2EE53A11B /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8E81D276B0287A8A94F23EC14D6BF7D /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F87458D0DCB5F2CB576E30F689072AC6 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC27DB9DC5CBAFEAC0E96C80C266AEF /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8A1DF57A1D237AC3E1B088DDB5FB7FA /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BFCE6CFFEB93E37C6C3A066D694052A /* SDAnimatedImageView.m */; }; F8AE6C3A4F28C464C3E322BC0978D266 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 684D0A362437383FE39B4A110A68E2D8 /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F8BAA00AFF2CD8E8CD95276EA45B4BB2 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F54ABAF5EC48A86E45E71E8BDB6CA43F /* en.lproj */; }; - F8C50FF09F8F4D5D3827FE5F1D0A063D /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D64055DE1F0E50879AD816AEE3EA54FC /* RNSScreenStackHeaderConfig.m */; }; - F9111E1DF1A5E49558DDEC397952A9EF /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 831F0D42D039450010FF6956E3E56C03 /* SDWebImageDownloaderConfig.m */; }; - F9813FD36A64B652404CC89A3B5BE41B /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 3804A8ACDD0179C51A480AABAA57BB15 /* RNFetchBlobConst.m */; }; - FA40C1C1C6AA49B21B67E6803311C45B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A1B88FD9D6C771307C9F1804DE04F464 /* zh-Hans.lproj */; }; + F95815DB8942E7805214E438914D7276 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 089A0ED2E4DD0E3B5D877862C2C6F4B7 /* REAOperatorNode.m */; }; + F9892D06AACEE78F62E7C98FBBB094C0 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 28411B9EA5D945421681F294A1BD05C7 /* REAAllTransitions.m */; }; + FA21A520D1CCF795C7DEBC73BE2CDEF9 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 068CE9D54301DAF6848DEB439320B4ED /* QBAssetsViewController.m */; }; FA904D41DDF9FE427C44CD13F361A82E /* GDTRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = C666B2725A5A11504FE424459DF51AB1 /* GDTRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAAA4A4381321DF8667536FFAD08EB9F /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = EB12E12128E6AC5273F7E81237F25905 /* BugsnagApiClient.m */; }; - FAF7BC4185FFB2D89F5D239540B94FDB /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA90C12864EB009CD6E675F76E9A070 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3FB42A2CA35056D9FF624144315CAB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FED27F378AF79713779DA43921EA2F /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBD33F6997B00474AC76B779C27DB709 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6173877910D5D01A04CE6640ED9ED472 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBD6BEC2A103546647AA9823214F58CF /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 75D70BF36B34FD199F67FC23C4B6994D /* BSG_KSFileUtils.c */; }; - FBF74D22CC67EFF951E0A993776486BC /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BAC264C0D1E4AC72A9FA35D078D6312 /* SDWebImageManager.m */; }; - FC1CCDCE86CAA748AAAA2AA50980B92E /* fishhook.c in Sources */ = {isa = PBXBuildFile; fileRef = F59046A2A0F6AA546CFE2C080736E5DD /* fishhook.c */; }; - FC21BD7486444743C90C7FF5B61FE53C /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66DF2465DCC11C7377F2264B2F92598D /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FC22CDA808D2C69BD267A177F9F0464F /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 451AF79F46F083B22E4B8C47FC32D436 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAAA4A4381321DF8667536FFAD08EB9F /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = C6180EF9B46ED864B7F128BE4DD7A7D0 /* BugsnagApiClient.m */; }; + FAC3B22C2143F4C415F5838B5F22D50B /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4FB3ED0253F5F787ACA8738434A05F /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB3FB42A2CA35056D9FF624144315CAB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C6B3257A1B3939D9E977D9F6FFA4736 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBAFC72626B67FC93823B2774F050B40 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A0EB8011D3CA4F519D993FE79606AD /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBD33F6997B00474AC76B779C27DB709 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA891633FEDEC311D9EACCF97876BA6 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBD6BEC2A103546647AA9823214F58CF /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 0906D6AB8471CD5111DD78C8B9A7EABC /* BSG_KSFileUtils.c */; }; + FC1CCDCE86CAA748AAAA2AA50980B92E /* fishhook.c in Sources */ = {isa = PBXBuildFile; fileRef = B8A178BFE07B65C2EC9BC75FDE204649 /* fishhook.c */; }; + FC21BD7486444743C90C7FF5B61FE53C /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1656A74DA866762D5C0D465B7EEBF82B /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FCA47B40E63DE30AF3C21639CB9CB5B1 /* GDTTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FED780AB8B230BC37FD0DA6B2D79D9D /* GDTTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 530A3EE94F702B43BF529A5FE498B670 /* EXFileSystem.m */; }; + FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 26A84A765E3BB0B344722D902B510081 /* EXFileSystem.m */; }; FCF21519D6B7BE358AF1AAACC5267EA6 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C149F45F71487328ADD24ECC317E5D8 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FD5C2B08E8DB989FC030F3E4190E14D5 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E737630548B58883E4967319C26C05 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD6E8017D52CB54BA1578D1CC0612004 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 567FBAE3B48C58EFD5F894C3340CD38E /* RCTStyleAnimatedNode.m */; }; - FD9AA47DB216C372525255D4E02E0778 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F59970BF0D5933336F54D3DEA38CC3 /* RCTVibration.m */; }; + FD5C2B08E8DB989FC030F3E4190E14D5 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE1069933A7D6C78A7768D91C83AB70 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD6E8017D52CB54BA1578D1CC0612004 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA63AC798C8D16B8E5AFF307AC7FBE2 /* RCTStyleAnimatedNode.m */; }; + FD9AA47DB216C372525255D4E02E0778 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = C12B504A2411E97FBF31A198FEE2624F /* RCTVibration.m */; }; + FDBE3D9126F9C65696F648658DBB2427 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 60ECCCC43690D9CB6A582FE619243E25 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDEB2D8C64FF5A2579A04A4DB88BF327 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2CAF795431503D42B35C3E4DF175E9 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE460D353DA267534647F89E0ABB0C78 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F418E0FFC892AB2EB5898201E89CB31 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE5DEFC1E602E46484762618A5261981 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADF6B204DBF9253431D5AAB0291C1B1 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE813EF7D4772E9B339E148E059EF9C5 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 915316678B38224E163F5599D891943E /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FE89D1DFB3E15D735B50C7FA147905BF /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3193063BB2B500F05483DDCB2F6C092B /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEA667F98E82AE4CE35B3DAC6E1FAEE0 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D2D689A649E31074B500124819F6B82 /* ObservingInputAccessoryView.m */; }; - FEF107D33A06D5A3044E2E00FCC280D9 /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45227E27EE6C20BA67A270BB42CFBFB0 /* RNFirebase-dummy.m */; }; + FDF55E850E986E0B521354C0490829BF /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D238C9ED535F24952D58157229FCCE /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE32AF35356979B3899825EC7A1F05F1 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FFBE26273B7A7653978B65B93C9362 /* Compression.m */; }; + FE460D353DA267534647F89E0ABB0C78 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A36FE38AB6D366B4E2D7EBE8164660 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE5DEFC1E602E46484762618A5261981 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 4742D70E80DA5AFC9C2AEB589B88215B /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE813EF7D4772E9B339E148E059EF9C5 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ADD28D135984B46CFF58DC13719C0F7 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FE89D1DFB3E15D735B50C7FA147905BF /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BA294E012625F93CB277E8AB773F40 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEC56E017C58B5E989F2E3ACF67D0BE6 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 49EDFEC01407C66949E4CEDEB9038890 /* RSKImageScrollView.m */; }; FEF302FD5C2E107B2D45A7A753291A49 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C44017B75276DE9B206A4D82A9690242 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF317F39F62DC42CF68D9F743EB5A84D /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B7415D8E7A28C61DA723E7FCCCFA3D /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF516D841FE25F9DB911BDB742B70F3D /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CB10C495B3633E7E56898F5B48FB03C8 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF6D3FC3A31B5EC01BFDA4970050A6B9 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D016D868BD58467CA1033C502573D6 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFE6AE2C6A428219B9ECA8037DF7862E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 838EC88CCC23151E4EEAB9A3DF0CF9F0 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF035F46F9915892BBFC0D35BB094A5F /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D1B0B8DAC1756964B592DB957E3B9C /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF317F39F62DC42CF68D9F743EB5A84D /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C41C5AFAF0D69FDC21FA299665F6F16 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF42C5D70F1A17DAB4D94E45BC33683F /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F736E61E5A2ED76BE2DB1A8AAEA4609E /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF516D841FE25F9DB911BDB742B70F3D /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A8777ABEE4E5BB0DF6AE3190A447A9 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFE6AE2C6A428219B9ECA8037DF7862E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3425B1A3477A128CFCFA404A0D5EC6D4 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 012502C007A8E88979524C26BE6CE54B /* PBXContainerItemProxy */ = { + 00974F148815F9CA3F2601822B3854E4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 70C22F7EE05643BEC8549072142E9E00; - remoteInfo = RNLocalize; + remoteGlobalIDString = BCAD56353CC03FBEA94A951A14E3F333; + remoteInfo = RSKImageCropper; }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1850,33 +1919,19 @@ remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; remoteInfo = UMFileSystemInterface; }; - 02538B3BBD98B2F24984B915210920FC /* PBXContainerItemProxy */ = { + 014EECAEDD7FB12916CBFCD5B95899AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2; + remoteInfo = "React-RCTWebSocket"; }; - 0281F322DD76B2D953A1667DDB615F57 /* PBXContainerItemProxy */ = { + 01B499E329F94B8EA7900C0A99210F57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 63CD6794DC7550F854838D23B403A831; - remoteInfo = SDWebImageWebPCoder; - }; - 0294292FB53A64FF62F63F568CBAFC8B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 031A89A35229466ED0BC26486E9BEB83 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C5D62E7954593855294FBE5848A78863; - remoteInfo = "React-fishhook"; + remoteGlobalIDString = 193A52DCCDA30BC73369F9D25131BB61; + remoteInfo = "react-native-document-picker"; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1885,33 +1940,19 @@ remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; remoteInfo = FirebaseCoreDiagnostics; }; - 040E7D8D8AB30744CCEE0BF802370E90 /* PBXContainerItemProxy */ = { + 055848CD3EABFC9364332BC719CB36ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6AD0E65D44A38151509F46E868517C37; - remoteInfo = "React-DevSupport"; + remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; + remoteInfo = UMCore; }; - 045D983DDAE6C758829C36A60AEC195F /* PBXContainerItemProxy */ = { + 069FC4E5D320283D1F45C7A307862A1A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A954214FEA55463925B6F6E3A27B6016; - remoteInfo = EXAV; - }; - 0488A5CB74143FAD959CBF413B28B321 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 062F5DBABAF21FFB6A377EC1FE48A730; - remoteInfo = RNScreens; - }; - 049421F9C136908C48C9AEA40EA04479 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 27238E8DC18048F88CB6FC7AE06D4301; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; + remoteInfo = Firebase; }; 0736F43E628DF211771775F69A163785 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1927,13 +1968,6 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - 07E0D4D3CEB9BA9527BCAB1F17E30B78 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0EBAD9A3F5D231CA9F04A66138256744; - remoteInfo = QBImagePickerController; - }; 09C15A614E3100AD5CAA64B248FEA2B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1941,6 +1975,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + 0A7C3378329C1228D6403275C64665C0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F5177E808E0BE07C26F95734D971D5C4; + remoteInfo = RNScreens; + }; 0AA48B35BA7148412EA836482D3727DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1948,12 +1989,19 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - 0AD45F5333E36A057218679E304C708A /* PBXContainerItemProxy */ = { + 0AEAEE87E13ECB11A65C40065A0640F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7DEB0BF0088BFF022586D2A9A76C24B; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; + }; + 0C2572E1D40CCE256AEDB7F613D97304 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; + remoteInfo = "React-jsinspector"; }; 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1962,12 +2010,12 @@ remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; remoteInfo = FirebaseCore; }; - 0F0CB40D3361FD7AE911B16A494C0A39 /* PBXContainerItemProxy */ = { + 0EEA3A5C15469EC2D35AE5A778BDBA5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5FDF615A7E8CC4C3EDE33FB5C6925D5E; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; }; 0F51677083285B10036CC0BA1E9BBB53 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1976,13 +2024,6 @@ remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; remoteInfo = "React-RCTLinking"; }; - 10CF31C2FDD901E3CB94C1B6ECBBC31D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 062F5DBABAF21FFB6A377EC1FE48A730; - remoteInfo = RNScreens; - }; 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1990,26 +2031,61 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 1237719A2F5E190C3C99B58E73D99623 /* PBXContainerItemProxy */ = { + 11E0E7A54ADE60B324A2B178D90A53E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; + remoteGlobalIDString = 5B1BA8B3E53682DD179F7BFF8F2C8B75; + remoteInfo = EXHaptics; }; - 1379294B7F226E4C2B8F5A402E9B1B11 /* PBXContainerItemProxy */ = { + 1212C1E0302F343F45BB480F9029144F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; + remoteInfo = "React-RCTLinking"; }; - 1613E8652594E1B89878DA0D81522E1E /* PBXContainerItemProxy */ = { + 12665C4B8DE072321A8BCC2E5FDC73D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = 6E898D47D3B30C6577C45BB2AA9E2284; + remoteInfo = "react-native-background-timer"; + }; + 13D0A9DE8B1FB981155007FF5897207C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; + }; + 13E9233D49D05B228CBA290899C214D0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EF82C048F8347DAEF62682C92F3E4762; + remoteInfo = RNDeviceInfo; + }; + 143FB4C1D3713F4A9B01AF229B6825D3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7BFE9C8AF890F2E4593C07660F79FA96; + remoteInfo = RNImageCropPicker; + }; + 14FA394CFD060DDE96244B921054D632 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 1518C404C2309B8D87E3F39D53982585 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E71B80EB88669C08D6FAC0C4306F57D6; + remoteInfo = RNUserDefaults; }; 163CBAEB4B1179F7E94CBFA9D9821391 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2018,13 +2094,6 @@ remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; remoteInfo = "React-RCTImage"; }; - 17080243F5DDFA71BF4C48E0A19813C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; - remoteInfo = "React-RCTNetwork"; - }; 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2032,12 +2101,26 @@ remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; remoteInfo = UMPermissionsInterface; }; - 1A1F5B2129F85EB5E39D28BC78D0CDB0 /* PBXContainerItemProxy */ = { + 18B0BC394BB6FD3D906810B515FB3066 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 317B9B7E899CBAA3C433E49C9A4F9233; + remoteInfo = SDWebImageWebPCoder; + }; + 1A77B3E3857390C10FF3594571BCFD94 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; + remoteInfo = BugsnagReactNative; + }; + 1B166D3F6ED1B2FB9FA7DCA033B1352F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BCAD56353CC03FBEA94A951A14E3F333; + remoteInfo = RSKImageCropper; }; 1BA9FE8D4FA41AD95626F63DB8C9FBEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2046,61 +2129,33 @@ remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; remoteInfo = "React-cxxreact"; }; - 1BAD54DFB0E1E0CF95FDB0D8993C568B /* PBXContainerItemProxy */ = { + 1D01B1D7B227996B8F9792C57E2D02DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = D9D4825FF3196580FBFC163F94F09DE6; + remoteInfo = "React-jsi"; }; - 1C24B0DCD2C4C7C86D464E753CFDB1CF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 1F1CA982C8F122466285258D50FA880C /* PBXContainerItemProxy */ = { + 2085DE04D151595549D290741633339F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 201A6A9C42C1EB12F48274C29BDD2DE9 /* PBXContainerItemProxy */ = { + 23BB6EC2A79E9C23C419D5A3B1AAE01B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = 6AD0E65D44A38151509F46E868517C37; + remoteInfo = "React-DevSupport"; }; - 2088CFA0989A2CDA503536C44F4B729F /* PBXContainerItemProxy */ = { + 23CDC220BB9B731E34DDFC1CABD85578 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 35BC3AE509299DE247A4FF5AFF8BEE16; - remoteInfo = RNFirebase; - }; - 20BD8341DB0F8F73C6845B0F2CD8EECA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; - remoteInfo = "React-RCTText"; - }; - 21F9B00AF1F15DF6CBA22B3E431CB2AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; - }; - 232B01B67B20D11B42F40DC87143060D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; - remoteInfo = nanopb; + remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; + remoteInfo = EXFileSystem; }; 244748360793885B28A0FB80940BDD29 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2109,13 +2164,6 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 2454A3223F00E2405B17D56AAB4A6376 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; - remoteInfo = UMPermissionsInterface; - }; 248015A2F1D88F57B6E26BA56A382F2C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2123,26 +2171,26 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 258951A176CAEF377723B919DF4E94BB /* PBXContainerItemProxy */ = { + 25874CE26F600988E7CD3FB381ECA54C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 9DE6FE0A7B145D5D64B4645C0A167B45; + remoteInfo = "react-native-splash-screen"; }; - 265C2F65A3B38E7A67B2ED46AA0FB512 /* PBXContainerItemProxy */ = { + 266B5F048500FE77BE1BEBDF86709A56 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 45F3F9A656392183065EBA502E899AEF; + remoteInfo = "react-native-webview"; }; - 2765C70E1980D823EDD0D092D2165C45 /* PBXContainerItemProxy */ = { + 26F17F99E88ECD65C1B357A75A585E27 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; - remoteInfo = Firebase; + remoteGlobalIDString = 6469A603AD1FC761672BD6D7FACC0CBE; + remoteInfo = UMReactNativeAdapter; }; 276C777EA898F585200AD00C0292034C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2151,33 +2199,12 @@ remoteGlobalIDString = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2; remoteInfo = "React-RCTWebSocket"; }; - 2776FBE9151F88000BA4718909929582 /* PBXContainerItemProxy */ = { + 28767CC6C82DADC7CAFF2E908A33FEBB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2D23E970E1AD78BBDD3815E389684439; - remoteInfo = UMReactNativeAdapter; - }; - 27F6E0721BF430ED318CD348F3380EC9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; - remoteInfo = BugsnagReactNative; - }; - 2827798E410BBB320FDD15DB55F31755 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 63CD6794DC7550F854838D23B403A831; - remoteInfo = SDWebImageWebPCoder; - }; - 28333D2C1234E65D3C8AC1C257450E11 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; + remoteInfo = glog; }; 2881DC1DD25AF0C459E6A3AFFD167CCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2193,19 +2220,12 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 296C254CE0F2F688D563E6990552F9AA /* PBXContainerItemProxy */ = { + 2A14487D72FCA96D25060F6F3917D840 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2186841C84524D0ECB425ADB17EBEB9; - remoteInfo = RNReanimated; - }; - 2B80064B744F06F90C73136C7EEC4443 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DF2B1B5442699478B7CD902B70810A9C; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; + remoteInfo = "React-RCTVibration"; }; 2BFE957CE5414199E3FB5D1FBC9C7998 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2214,82 +2234,117 @@ remoteGlobalIDString = 6AD0E65D44A38151509F46E868517C37; remoteInfo = "React-DevSupport"; }; - 2D0DD680A8EC9E87E6C351D8729D1FDB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; - remoteInfo = FirebaseCoreDiagnostics; - }; - 2D1DB7693C5514C2091212A20E3018F5 /* PBXContainerItemProxy */ = { + 2C1C65F47CC77DCC7F24B5DB2E47C46F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 2F310F35E5701202BF26C6D6034DDEF3 /* PBXContainerItemProxy */ = { + 2CEABE1D42EEBDAF283C1E7FAC12C9A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; + remoteInfo = UMCore; }; - 2FC518B7C5E547671F83B03279ABEBEB /* PBXContainerItemProxy */ = { + 2FEEABC1927965C71E34EE3E9FF521BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 193A52DCCDA30BC73369F9D25131BB61; + remoteInfo = "react-native-document-picker"; }; - 308FE26CF7B174F39CDE42ECC3ED17DB /* PBXContainerItemProxy */ = { + 2FF62D0D25D6007BF62C108F8F54BAE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; + remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; + remoteInfo = "React-RCTText"; }; - 3410A1A1D0664CACF9CF2E835FCA2FFF /* PBXContainerItemProxy */ = { + 301554BB625023BE1F0BA0A8DF5B90BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F9C80EE88B6DF02CF887F4534C0C8D1; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = FCD870CE518718B09F202148537ACBEA; + remoteInfo = "react-native-notifications"; }; - 34A87509051155737F5D789734A60CA9 /* PBXContainerItemProxy */ = { + 32A92470BB021A73EB7C0BE07FF39F77 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = EAFAF2A9CFE5807D87ACC914F678EAA8; + remoteInfo = yoga; }; - 35124029F4F1CE552EF8D2B306E620F6 /* PBXContainerItemProxy */ = { + 34309D07255D159A56D1FB5591B2F0D2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A954214FEA55463925B6F6E3A27B6016; + remoteInfo = EXAV; + }; + 344C0ABD8BFFD882AA90110396700DBD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8DBB59DA07871D38FA326EEFB3109004; + remoteInfo = SDWebImage; + }; + 34BA9018905B03E8937730F3339CD4FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; + remoteInfo = glog; + }; + 3509A231BBBBC727CA852FB03068F13A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - 359DBFA85F4339A88CF1B15E60FF8A11 /* PBXContainerItemProxy */ = { + 35773892E82BEA390F5A045836D561CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = 4ECE1108F140208A729A83BC94FAA150; + remoteInfo = EXAppLoaderProvider; }; - 36046EA1A047719817C46DC54D069470 /* PBXContainerItemProxy */ = { + 37A7481CE6FAEAE3AE67427B4823BF2F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E819E49218F01D4B1C850622B4690A5D; - remoteInfo = "react-native-video"; + remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; + remoteInfo = GoogleDataTransport; }; - 38CB02701DEB8DE60E1ADDA19E0FE5A5 /* PBXContainerItemProxy */ = { + 37BB049DB3375E98D08B1C8A4966734C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A6292EF6BD5726FAEE2DA523C3D0416; - remoteInfo = "react-native-splash-screen"; + remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; + remoteInfo = "React-jsiexecutor"; + }; + 38025D65993EFE8F3FC1C6102F9FE2AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 38FAC2CF931D2939F334B5F498434A68 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; + remoteInfo = FirebaseCore; + }; + 3A57DC33A0C5D69E7C449268946BAD1A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7179A92F4CD91298C0766F92C40529B; + remoteInfo = "react-native-keyboard-input"; }; 3AFCC674053FAF5DC8E87833CC15D1F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2298,13 +2353,6 @@ remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; remoteInfo = "React-RCTText"; }; - 3B7701D0E95A58E755B1F0268BB78E36 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8923451EE41ABB80D8FCB82A5916D131; - remoteInfo = UMFontInterface; - }; 3C63709D9A9E8BFEDDDB0EC6915A77BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2319,6 +2367,13 @@ remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; remoteInfo = UMConstantsInterface; }; + 3D634B199F4F89D1BCAC7BF3C668E721 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; + }; 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2326,27 +2381,6 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 3F03E24EFDBE7790466DB2E0019ACC96 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; - remoteInfo = "React-RCTAnimation"; - }; - 40E73FF71A9C409043169E8C6E15DBB0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 41993E092A2463B244B443B10E3C3598 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; - remoteInfo = FirebaseAnalytics; - }; 41C76CAFA02708C48FAD7EEDAF99436C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2354,33 +2388,12 @@ remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; remoteInfo = "React-RCTVibration"; }; - 4206AAFA2759E1E01CBC6356D990F2ED /* PBXContainerItemProxy */ = { + 43FF0DADF6D32ACB52DAF014AD411D5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0EBAD9A3F5D231CA9F04A66138256744; - remoteInfo = QBImagePickerController; - }; - 4296A687B8E5948AA6FEE0ED9C4F90EC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 35577D44474D5D17721C61EB916F7021; - remoteInfo = SDWebImage; - }; - 42BC9BF3F8DB7543BC5E04C10E95EABA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; - remoteInfo = "React-RCTBlob"; - }; - 432A9EB479B1ADC6AC9404D0DE1BF7CB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; + remoteGlobalIDString = C9F33CD9D3CC8172471A5DF1D8EBAFE0; + remoteInfo = RNLocalize; }; 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2389,6 +2402,13 @@ remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; remoteInfo = FirebaseCore; }; + 45F8CE88D3E1775BB8D28778F7E9A7C0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; + remoteInfo = "React-jsinspector"; + }; 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2396,12 +2416,19 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 463AC9CCBEF371B4742EF2C758B7BA18 /* PBXContainerItemProxy */ = { + 46608E53D53E8719370E928AB1A2C3D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 35BC3AE509299DE247A4FF5AFF8BEE16; - remoteInfo = RNFirebase; + remoteGlobalIDString = 637805D5DEFA194CF328DA2A13EA9AA9; + remoteInfo = "rn-fetch-blob"; + }; + 468F241ADE21093B11714E2590889F9B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; + remoteInfo = "React-RCTBlob"; }; 46CF43607B2B2030CD8D4E07178F38B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2410,33 +2437,26 @@ remoteGlobalIDString = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2; remoteInfo = "React-RCTWebSocket"; }; - 492997958624167B059AA5D145556186 /* PBXContainerItemProxy */ = { + 47174621BCF677299B599B4ECDBFC3FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 317B9B7E899CBAA3C433E49C9A4F9233; + remoteInfo = SDWebImageWebPCoder; }; - 4A9F8C5E165273D4C30FC0938959CAB8 /* PBXContainerItemProxy */ = { + 49CC3C2577F77B84AC3FAAC96E3CBBB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 4FBB5D004566C9C8B2B9183ED6C6CDD7; + remoteInfo = UMBarCodeScannerInterface; }; - 4AD5D939CEA8F0E020B2F242E6305031 /* PBXContainerItemProxy */ = { + 4AD9B1C3A1F7133A6AB6582FA6E34A68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 75413E753E5D3F1BE4BBFF5A9633F19E; - remoteInfo = "react-native-notifications"; - }; - 4AE32A99DD52D5087C79CEFE93877CFC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = E71B80EB88669C08D6FAC0C4306F57D6; + remoteInfo = RNUserDefaults; }; 4BBDCF74AAA6DEC7420E0CB6C398D3AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2445,6 +2465,13 @@ remoteGlobalIDString = D9D4825FF3196580FBFC163F94F09DE6; remoteInfo = "React-jsi"; }; + 4BC4BEE2B8B6E0779169277A37837376 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 57D441FD74CABBA22161F1564CB270A3; + remoteInfo = UMFontInterface; + }; 4BFA9DDB028CA84B14CCA5C11D9F6207 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2452,12 +2479,54 @@ remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; remoteInfo = "React-RCTNetwork"; }; - 4DFAE8A65AF9327A7B00ACE16D10523C /* PBXContainerItemProxy */ = { + 4C28B725ABF69AA34C6BD956CAAD7D9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; + remoteGlobalIDString = 74EEA248F982197D559582A658DAA382; + remoteInfo = RNGestureHandler; + }; + 4D24326AA898CD4B0571A41A780FC862 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; + remoteInfo = "React-RCTLinking"; + }; + 4EE8B76242CA89F4EB45F4505C8F094F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 4F7BB69658D508CCC2D78CB031C2F083 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; + }; + 4FAE4A1800F010048129FB6D757783BA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; + remoteInfo = UMFileSystemInterface; + }; + 50B2A27F2B946A2B28CD772DA367F394 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; + remoteInfo = "React-RCTNetwork"; + }; + 50F0DEEA2B086C71D561F91DA04AF201 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; 51584F4D577865939C7235FA395A5A8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2466,19 +2535,12 @@ remoteGlobalIDString = C5D62E7954593855294FBE5848A78863; remoteInfo = "React-fishhook"; }; - 52DC3379C0F59ABC42DA38B0D188FCC5 /* PBXContainerItemProxy */ = { + 5249E094813E57101BA9099A0D26BCD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 53A08285B3E83A1216D5D65E22E9F511 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; + remoteInfo = "React-RCTSettings"; }; 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2487,12 +2549,12 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 548FBEB8A8608D4076964D174EA7C275 /* PBXContainerItemProxy */ = { + 53FAEE8A1A732BDA949895354DACA2D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 45F3F9A656392183065EBA502E899AEF; + remoteInfo = "react-native-webview"; }; 54A7BA384E80D5DB0269C827877FE175 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2501,12 +2563,12 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 57980098C358EF1ED584A8D6B816CDCD /* PBXContainerItemProxy */ = { + 5741DFBF8C93F666839A6BC4ED7D6F5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; + remoteInfo = Folly; }; 586C9042939572C3633A6BECFDC2FFDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2515,6 +2577,34 @@ remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; remoteInfo = "React-RCTActionSheet"; }; + 58B937FE6724E588DEA5C63173F8B626 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; + remoteInfo = FirebaseInstanceID; + }; + 58C8D2F0080F99369EAC9CE32F578785 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3396F21218EB36C2568D05648BE2827C; + remoteInfo = RNFirebase; + }; + 591DD10D8F7865EB6FA39AA1247B709B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + 59EE9F0756DE075CD2C9150E20F90422 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; 5A01D7A983FEAB270273E554A7DA4480 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2522,6 +2612,13 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; + 5A1E53FB8D235B50DDA4B2C7749C286A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 56D3B9DEFD00B2D12D27DE7280EE9046; + remoteInfo = UMCameraInterface; + }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2529,6 +2626,20 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; + 5BEEB9FFE68EDAF0F0A0C1ECA7D16085 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; + }; + 5C120012A59F8D4A19D53A2C2B060DFA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; + remoteInfo = "React-RCTSettings"; + }; 5C8A3E6AB1161E9CF7D5A8AC0368B080 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2536,12 +2647,26 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 5DFC597B1C71A8521BCA2F2ED004DCCB /* PBXContainerItemProxy */ = { + 5EA00E7BBBF30B0F8B60B49AFCBC6627 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; + }; + 5EA5A8135892DF3ABD1822A5B28E564B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 5FAF4022BE41E0E387B2FF671FD7B2B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1F10289E58028110D5E1095D41608A3D; + remoteInfo = RNAudio; }; 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2550,54 +2675,54 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 62E358C80FE3052F04D476F7A1C6F5C1 /* PBXContainerItemProxy */ = { + 5FF8C02BB31F3D841678F53EC234F3CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; - remoteInfo = glog; + remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; + remoteInfo = "React-RCTBlob"; }; - 64074A753B628A20E920C51E914F26A3 /* PBXContainerItemProxy */ = { + 606DAB8AD66BDB5A05213D3941213ED2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7CDE227A96A3D9BAB6F477300B55346D; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; + remoteInfo = GoogleAppMeasurement; }; - 654657965F1CB04636FA67043B18DA9E /* PBXContainerItemProxy */ = { + 64970D88D643843360961415F275A782 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9D4825FF3196580FBFC163F94F09DE6; - remoteInfo = "React-jsi"; + remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 6635F22192E6EDEFA9F48ABBB18263E0 /* PBXContainerItemProxy */ = { + 6536CC37977254BEE21C96E240D1DEFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2186841C84524D0ECB425ADB17EBEB9; - remoteInfo = RNReanimated; + remoteGlobalIDString = 54312B90205B51C80179FDB941BD5A75; + remoteInfo = "QBImagePickerController-QBImagePicker"; }; - 69DFCC73E82C12C17E156BD6F1CB4FBD /* PBXContainerItemProxy */ = { + 676B0A93D66E5289EDB48C02D438A327 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A6292EF6BD5726FAEE2DA523C3D0416; - remoteInfo = "react-native-splash-screen"; + remoteGlobalIDString = 9EFD966453BEA5A0A61E17F9D9271A60; + remoteInfo = "react-native-video"; }; - 6AC9BE0B7A7E6AD64AE680C2A6DE0CE4 /* PBXContainerItemProxy */ = { + 688B4179E852BD202856B21C87F33B45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4732B625A39AA6E14387EB671FCF7CB7; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; + remoteInfo = GoogleDataTransportCCTSupport; }; - 6AE67B73617F34741BB5D8EC3E8C5A1D /* PBXContainerItemProxy */ = { + 6A21683E4F106AB320FF90780606F61E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6AD0E65D44A38151509F46E868517C37; - remoteInfo = "React-DevSupport"; + remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; + remoteInfo = Folly; }; 6BD0984377EB6F1CDAF209D0EEAE7356 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2606,42 +2731,14 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; - 6C258145E08DEE4EFD2C867A8B5B7C43 /* PBXContainerItemProxy */ = { + 6F5D132F04B719593FB4D6870591CA5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 752FCBCD2E0EA0ADCF498C7CB6315B64; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 8DBB59DA07871D38FA326EEFB3109004; + remoteInfo = SDWebImage; }; - 70092F359490F6B47F4DC76E2B906C83 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D06140A738C278926836084E0C73057; - remoteInfo = RSKImageCropper; - }; - 700AFEFEB30733B1DEEDCB7D84FE08F0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D06140A738C278926836084E0C73057; - remoteInfo = RSKImageCropper; - }; - 703365316DB0E131C666EAFA94F2012C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 718D8045058E3F833EFD354208ADAF38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AAC627FD97B49E278B99ADB9DB7DA5DA; - remoteInfo = "react-native-webview"; - }; - 71BE13536C5A857BC9B6A3A78E65ED9D /* PBXContainerItemProxy */ = { + 728A56EECD91B2D85ECD9D8B95CD50BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -2655,12 +2752,40 @@ remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 72B18A0C04D7BAFF98F54215CA7D6604 /* PBXContainerItemProxy */ = { + 72B291B6F433E8F519C35B86A8334BB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 73D9D92B3F18F0E04C6311A6E55152F1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9DE6FE0A7B145D5D64B4645C0A167B45; + remoteInfo = "react-native-splash-screen"; + }; + 74D7BC301B5DADD2CDB3348AB2111245 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EF82C048F8347DAEF62682C92F3E4762; + remoteInfo = RNDeviceInfo; + }; + 74DDB343A8FA48D707B4E50C68497026 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 855548CC8E8274EAF5D336918E25ED2E; + remoteInfo = UMSensorsInterface; + }; + 74EB2F20D944EE2991E7E6E59542B310 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6AD0E65D44A38151509F46E868517C37; + remoteInfo = "React-DevSupport"; }; 75A8D1D5089B0ACAF241DACEA0305423 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2676,26 +2801,33 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - 79439786197F451AF4C3131380326BA4 /* PBXContainerItemProxy */ = { + 79F9DFC35F6B0E189CF401380F4240EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9693FDE10118A2D3719CCD8793940995; - remoteInfo = "react-native-keyboard-tracking-view"; + remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; + remoteInfo = nanopb; }; - 795B13CC193BA54E378929FFF45D84A5 /* PBXContainerItemProxy */ = { + 7A63301C2F0C3A502863F4D5FB5FD8FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 7A1C79B48F0C388BEB337A937C342F9C /* PBXContainerItemProxy */ = { + 7A6417381783F4E97FFBCAFF1316EF40 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; - remoteInfo = Firebase; + remoteGlobalIDString = 4A0F8EB58C18AB13EC4AC87932790923; + remoteInfo = UMTaskManagerInterface; + }; + 7A7A8041EC916BE91E1BF84E5A5419FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; + remoteInfo = BugsnagReactNative; }; 7AEA5761B26CAEF1A0C0E82599059DA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2704,47 +2836,54 @@ remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; remoteInfo = FirebaseAnalytics; }; - 7B59AFE0CF1920DBFBF1E5E5D5DEEFC1 /* PBXContainerItemProxy */ = { + 7DBE30F1B6471329DDB6E20F46940A13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F6AC1F817A6020A1AD035B558A7A825; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 4E295582CC9C3BFE0469D3B5E0030673; + remoteInfo = RNVectorIcons; }; - 7B77FC0CD1D574F81299868B78C92206 /* PBXContainerItemProxy */ = { + 7E4C70F8239EC335FA2841B49C79492A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EFEB49E9D650421377D2A9122164ACA4; - remoteInfo = RNFastImage; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 7BE5F45561FEE07C9BAE72F6ACE20D9B /* PBXContainerItemProxy */ = { + 7E55117E4DB5E73A74AE931F2EBE1F18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2; + remoteInfo = "React-RCTWebSocket"; }; - 7DF68C596F36C615440D5C526B9635CD /* PBXContainerItemProxy */ = { + 7F041D7CAFED081BE584BB4D80FB3E97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; - remoteInfo = UMCore; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 7E84B45C2C4617AEF88048C17867D78C /* PBXContainerItemProxy */ = { + 7F8B893E6CB2856C43D3CC4AF6168B24 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B11E238094137347E8790BFEB1BEF01F; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; + remoteInfo = FirebaseInstanceID; }; - 7F1C6658C20B08C549CB7FABA2850914 /* PBXContainerItemProxy */ = { + 800C700948892D96E6D5E775EC0FA55E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5A5635BEE017E125F52F95B5E1FBC6B6; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 1A05BC2EB27453B863BCC5EC8B2B2B3B; + remoteInfo = "react-native-jitsi-meet"; + }; + 8049BB26DB3F7AAFA1CE4F40BF3580DB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D32304F3B8D6C954D490063B8CD6C697; + remoteInfo = "react-native-orientation-locker"; }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2753,13 +2892,6 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 807609B9670911438F54D9DE7A8E3393 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 35577D44474D5D17721C61EB916F7021; - remoteInfo = SDWebImage; - }; 8085485CA711F116C10EA63C64D45226 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2767,111 +2899,83 @@ remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; remoteInfo = "React-cxxreact"; }; - 81430FB0ED87F22AD68D7BA9C930B57F /* PBXContainerItemProxy */ = { + 80F39FD6CFF2E1FACF204BED14AAE525 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 75413E753E5D3F1BE4BBFF5A9633F19E; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; + remoteInfo = Firebase; }; - 81DDD5A029705E9E59A0C05ED4769DA6 /* PBXContainerItemProxy */ = { + 80FEFC4B002BF065A9DA860B29293CE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E819E49218F01D4B1C850622B4690A5D; - remoteInfo = "react-native-video"; + remoteGlobalIDString = C5D62E7954593855294FBE5848A78863; + remoteInfo = "React-fishhook"; }; - 8527EDE7287071AE3AB616EDF3209030 /* PBXContainerItemProxy */ = { + 8121F62F863DC82F1E7ADAF355231806 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D06140A738C278926836084E0C73057; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; + remoteInfo = FirebaseAnalytics; }; - 856C7297029DE7446A499710A503DFF6 /* PBXContainerItemProxy */ = { + 827867261A934D2CAA4AA1AB797E5CE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; - remoteInfo = EXFileSystem; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; }; - 85D8FEF5742B7217E61AB28EEB0CA8C5 /* PBXContainerItemProxy */ = { + 837C8F523084FE1DC8E31D645CB80C61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; - remoteInfo = UMCore; + remoteGlobalIDString = 7BFE9C8AF890F2E4593C07660F79FA96; + remoteInfo = RNImageCropPicker; }; - 86F91B6ADF8B3F61EB409CB52E68554C /* PBXContainerItemProxy */ = { + 85352ABAA952110734FFA2D3EDA68766 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EAFAF2A9CFE5807D87ACC914F678EAA8; - remoteInfo = yoga; + remoteGlobalIDString = C9F33CD9D3CC8172471A5DF1D8EBAFE0; + remoteInfo = RNLocalize; }; - 872424F1ED2F1B444D6135014A580525 /* PBXContainerItemProxy */ = { + 858224A93B00AC044D4067A2B3B640C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = 14C4E57D028B3604711DA6503AD5B4F0; + remoteInfo = RNReanimated; }; - 873B846AC6BE3AE3A5C69A43FE741937 /* PBXContainerItemProxy */ = { + 875C68B1B096E9BCA6419E1140C071EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; + }; + 87718D5A3A2BAFD489AFF4D65B0D404C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 889F010F397A4FA30A1031BF3FE4884E /* PBXContainerItemProxy */ = { + 8B08AAFCBC1DAEA89F9395FF05B97279 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = DCE0E755BF3830D8FAB341194504E9B8; + remoteInfo = "rn-extensions-share"; }; - 891511EA7594DFE87CF4314898F29BCA /* PBXContainerItemProxy */ = { + 8C878C8A2089D19DC2430E32E7BA01F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; - remoteInfo = "React-RCTActionSheet"; - }; - 89737B805B33F27C4F233A793C3FD822 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3CF1984FC477CA2F1B7B2053998B8676; + remoteGlobalIDString = D32304F3B8D6C954D490063B8CD6C697; remoteInfo = "react-native-orientation-locker"; }; - 89EC4AD363589A842E6072F422EEC451 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; - remoteInfo = UMConstantsInterface; - }; - 8A60FED4B4F5879CA215E4695CC2997C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; - remoteInfo = FirebaseCoreDiagnosticsInterop; - }; - 8AB554CE686D010CFDE28C2A107CC509 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5F63A1E41B86B1D8B6D7FB6EE06DEDFB; - remoteInfo = RNVectorIcons; - }; - 8BE2B82FFD6443DE77FBA502F84BFAE4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; - remoteInfo = "React-RCTText"; - }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2879,48 +2983,55 @@ remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; remoteInfo = GoogleDataTransport; }; - 92328ED780EB580F6FEE314E8D39F79B /* PBXContainerItemProxy */ = { + 8D7594A0359838BB3D8C962560D24382 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 529158F649793C04021B9832DF3E0FFD; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; + remoteInfo = "React-RCTAnimation"; }; - 92738E8653FFC50B0F366540A5986763 /* PBXContainerItemProxy */ = { + 8DFDAB211FB62D761F139FC977237CE4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; + remoteInfo = FirebaseCoreDiagnostics; + }; + 8EF72B180CD4CB65C3140EFBE1FCED24 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74EEA248F982197D559582A658DAA382; + remoteInfo = RNGestureHandler; + }; + 925391FAA3B30FA3AF61B3D518B8FB21 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 93BA8EB1BD9D782381C768344C85C2D9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; - remoteInfo = "React-cxxreact"; - }; - 94A172B2196782E8646B52B6A16587E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; - }; - 94D523F161E36E41BF575462169906BA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; - remoteInfo = GoogleUtilities; - }; - 95DA5D3CB2417406ABC163F23963C6E5 /* PBXContainerItemProxy */ = { + 940CCF26419FBC9B4A51319904FC8396 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; + 9434FAE58CB21893241A99BF2A504361 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; + remoteInfo = GoogleDataTransport; + }; + 9509657F04BF21F95E4F3B3580CD4EAF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3396F21218EB36C2568D05648BE2827C; + remoteInfo = RNFirebase; + }; 96823A763E56B0CD36C81E000393C274 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2935,21 +3046,7 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 97A22195D391710488ECBC051C5C99D9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; - remoteInfo = GoogleDataTransport; - }; - 97B64FAFAB050110DD1E2D544AC1F5E0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E0D783B49979A14D2025F4BC2F977DDC; - remoteInfo = UMSensorsInterface; - }; - 98ECDEC63B73F5C5654F290CB9F6ED4D /* PBXContainerItemProxy */ = { + 97D28D24C661A290FB78462F31A00B0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -2963,20 +3060,6 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 9CAC9376702D36C622AF517EA46A3C19 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7DEB0BF0088BFF022586D2A9A76C24B; - remoteInfo = RNImageCropPicker; - }; - 9CBA4F562995CD848D7C160E982FDC70 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; - remoteInfo = "React-jsinspector"; - }; 9D531360B48D75C5E5066088B1C111F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2984,12 +3067,19 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; - 9F891B715C9D36CFE43EE9A5BACD9BB7 /* PBXContainerItemProxy */ = { + 9D5EA2D9B2AEFA43C71E2644BB4EF129 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E9998BC7841609076FF7FE066965358C; - remoteInfo = "QBImagePickerController-QBImagePicker"; + remoteGlobalIDString = 4E295582CC9C3BFE0469D3B5E0030673; + remoteInfo = RNVectorIcons; + }; + A02C5049FE628AD2094E3D956B8E2E08 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 57D441FD74CABBA22161F1564CB270A3; + remoteInfo = UMFontInterface; }; A10B927F49CDB8E49094BFD1CA897343 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2998,12 +3088,26 @@ remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; remoteInfo = "React-jsinspector"; }; - A12D725A25CCC598BD56190CB4B7DB76 /* PBXContainerItemProxy */ = { + A1324239B1DC76AE75CC95AC0994C147 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; - remoteInfo = EXPermissions; + remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; + remoteInfo = UMConstantsInterface; + }; + A19006D477DD488744D628A3F5C2D8F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAFAF2A9CFE5807D87ACC914F678EAA8; + remoteInfo = yoga; + }; + A329D963231C043999DA68B0D2CDDF39 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; + remoteInfo = "React-cxxreact"; }; A3F86DBAC5E1C8F0724C396F51BBECE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3012,12 +3116,26 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - A76B6ACA0DB9EDB7CE0354232B04FD5B /* PBXContainerItemProxy */ = { + A42AD5ED5D4C767FA6C35FB36E3675AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; - remoteInfo = glog; + remoteGlobalIDString = 256C04ADE480DBD4834FD3CAB29E18C7; + remoteInfo = QBImagePickerController; + }; + A4E726C1AA99F7437BA8D230431C0EC1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; + remoteInfo = DoubleConversion; + }; + A7EF4D2D3F255E0EB67109CFE84C7FC6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; + remoteInfo = "React-RCTAnimation"; }; A7F75E1A626E50C12AD9C92133348106 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3026,13 +3144,6 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - A82033409496EA45189880515B406D9A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; - }; A94EF2BE3BB5C93DEBBBD89AA7A50736 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3054,28 +3165,63 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - ABB09C29D90328888AD833F35F8B23C6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 35577D44474D5D17721C61EB916F7021; - remoteInfo = SDWebImage; - }; - ABE3BE1B5140DF1F5922469147AEBEBC /* PBXContainerItemProxy */ = { + AB923063B95A0FC63A1EDD5F83876BA1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - AC1BB1556074559B1CB0F4CD7DAB3599 /* PBXContainerItemProxy */ = { + AC7E81201B48C66FD3DDD92B0C3AC053 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8923451EE41ABB80D8FCB82A5916D131; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 6E898D47D3B30C6577C45BB2AA9E2284; + remoteInfo = "react-native-background-timer"; }; - AE7C768E4A684E6CF4400837F8D0957F /* PBXContainerItemProxy */ = { + AD22635C6EE22B1F476B067B884F451A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 14C4E57D028B3604711DA6503AD5B4F0; + remoteInfo = RNReanimated; + }; + AD5BBFD4D22353648C96437F903EC4EA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + AFB14676FD69E4DD55E67DDB65067768 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 859CC2305C7CF951A89D25B76146E86C; + remoteInfo = UMFaceDetectorInterface; + }; + B1BB94669FF69414185ABEDAEA074935 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3EC18C45063BBBF2DC591C01F09E3069; + remoteInfo = RNFastImage; + }; + B2278F267AED1BBFF1F5E868C301B9F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; + }; + B3E89074512A1F6C6108F0E023716BFD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FB272C94AE4296D3A1132E63BD3DC7A6; + remoteInfo = "react-native-keyboard-tracking-view"; + }; + B436BE7B3A6AECBAC73E14BDA1C6AFAF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -3089,33 +3235,12 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - B4D2D9E332D8CBAE5DBE12E244AF5458 /* PBXContainerItemProxy */ = { + B50BE6EBBF89C3D60F95F4D8B78A3B5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 40094264A7543CBF6B0AC3BF172E471F; - remoteInfo = RNAudio; - }; - B57E9DD1D8E0026A5466E99B7C4F1D38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 63CD6794DC7550F854838D23B403A831; - remoteInfo = SDWebImageWebPCoder; - }; - B6555301E968C6FC1537B98EBB75F8BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; - remoteInfo = Firebase; - }; - B6AB6733F1BA5718BE953F3D7B72BFD6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 25949AF3296378D8BFCA4B563F4B4F45; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = E7179A92F4CD91298C0766F92C40529B; + remoteInfo = "react-native-keyboard-input"; }; B7382E19C02620616F4EFB89AA978346 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3124,12 +3249,19 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - B7A1D75CBAFE5C686DE679D858A01865 /* PBXContainerItemProxy */ = { + B7C41FF2195D022BA6042489AEA14BDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 529158F649793C04021B9832DF3E0FFD; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; + remoteInfo = GoogleDataTransportCCTSupport; + }; + B843781F4141322DAE720C4E4B73FAB5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; + remoteInfo = nanopb; }; B89102853C0AA8B4E4660B0A341C408A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3138,13 +3270,6 @@ remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; remoteInfo = "React-RCTSettings"; }; - BA3369F754629D51CBE71C055EF27144 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; - remoteInfo = "React-RCTBlob"; - }; BA460C34E38D173750A1C69BCE0F2866 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3152,19 +3277,12 @@ remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; remoteInfo = "React-RCTNetwork"; }; - BA75DF845429F5C13AEC3301BE58EEED /* PBXContainerItemProxy */ = { + BBBF33609EC15E33D74DECFF190C09F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - BAB6F62735EB4A3B6467A6AD159CE8E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; + remoteInfo = "React-RCTNetwork"; }; BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3173,12 +3291,19 @@ remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; remoteInfo = GoogleAppMeasurement; }; - BD1AD8A1F7D9161A350EC25FCD9EF473 /* PBXContainerItemProxy */ = { + BD58D81C5F1B40386A86DC2A3B62416B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3CF1984FC477CA2F1B7B2053998B8676; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 9EFD966453BEA5A0A61E17F9D9271A60; + remoteInfo = "react-native-video"; + }; + BE4DD0A0CB58E2D961E0230D3D378DFC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D9D4825FF3196580FBFC163F94F09DE6; + remoteInfo = "React-jsi"; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3187,13 +3312,6 @@ remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; remoteInfo = GoogleDataTransportCCTSupport; }; - BFBF3C5573CC8A3CFC9C63764E5F6232 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DF2B1B5442699478B7CD902B70810A9C; - remoteInfo = RNDeviceInfo; - }; BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3208,33 +3326,61 @@ remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; remoteInfo = "React-jsiexecutor"; }; - C2082AECC8B56D8318ECF7C98F496EC4 /* PBXContainerItemProxy */ = { + C02530196566F3132504BF51EEE0433E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4ECE1108F140208A729A83BC94FAA150; - remoteInfo = EXAppLoaderProvider; + remoteGlobalIDString = A486E5AB43C3327005F1C0B986A448C0; + remoteInfo = EXConstants; }; - C267BCA22362641FAD6D21225805B024 /* PBXContainerItemProxy */ = { + C11C3475E23A5343736AF7FE7384BA25 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9D4825FF3196580FBFC163F94F09DE6; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; + remoteInfo = "React-cxxreact"; }; - C2F7C418BC41DEFA845B1E69BEEDD8CC /* PBXContainerItemProxy */ = { + C133085EB19AB6DCB5983E83121EEA98 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5F63A1E41B86B1D8B6D7FB6EE06DEDFB; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; }; - C4ECEFA723227B76902D8BCD239CF8E7 /* PBXContainerItemProxy */ = { + C1837DD52F33EEE5EB9CD666BC3C26AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7CDE227A96A3D9BAB6F477300B55346D; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = C5D62E7954593855294FBE5848A78863; + remoteInfo = "React-fishhook"; + }; + C1A4FB52CA623ED766709C5754B662B2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; + remoteInfo = GoogleAppMeasurement; + }; + C35037964C1B60DB158767D5A025EAD4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; + remoteInfo = FirebaseCoreDiagnostics; + }; + C4367761F15B94F875C53C7DB2B7F742 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; + remoteInfo = EXPermissions; + }; + C48B2CDD2DD08A314B00C8E60BA69124 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F5177E808E0BE07C26F95734D971D5C4; + remoteInfo = RNScreens; }; C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3250,47 +3396,47 @@ remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; remoteInfo = FirebaseInstanceID; }; - C7F31209A193FA9DA504F4A21BD28693 /* PBXContainerItemProxy */ = { + C71D60BFE2E7C5164EBDBBF21A7E5E0E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2EA13F7186803B14E07C507D5AC0A3F; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; + remoteInfo = "React-RCTActionSheet"; }; - C999C5E05878B2615ECE453EEE64891C /* PBXContainerItemProxy */ = { + C7BBAF940B290F01E535BD4B6A070704 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = FCD870CE518718B09F202148537ACBEA; + remoteInfo = "react-native-notifications"; }; - C9BE1218C768917AE3A1E65B5AECA998 /* PBXContainerItemProxy */ = { + C869FF116AD62FE302E12E859758858E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25949AF3296378D8BFCA4B563F4B4F45; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; + remoteInfo = FirebaseCore; }; - CA135A1C45698F743E530232D45EB2C6 /* PBXContainerItemProxy */ = { + C8E8B46E523290FCF0BBEDC5A10B0D05 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2; - remoteInfo = "React-RCTWebSocket"; + remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; + remoteInfo = "React-RCTActionSheet"; }; - CA675C7D6DB75E785382DA16B2A93682 /* PBXContainerItemProxy */ = { + CAAD702B815C43AE37B128C99BE280EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; + remoteInfo = UMPermissionsInterface; }; - CADCA609D7C510A87209C9DF4AE8B28A /* PBXContainerItemProxy */ = { + CADF9488B6AF0E9BEE3AB77C8AF0426D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = FB272C94AE4296D3A1132E63BD3DC7A6; + remoteInfo = "react-native-keyboard-tracking-view"; }; CC20A804D1649625892DB6375F56B2FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3299,12 +3445,12 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - CD31BF7EAE0AE0832A8C5DAAF8579395 /* PBXContainerItemProxy */ = { + CC42EFC2982AE7D21F434F31BD33FBA1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 35577D44474D5D17721C61EB916F7021; - remoteInfo = SDWebImage; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; CDB6513D531E47875F2D8DC49A5C00C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3313,61 +3459,33 @@ remoteGlobalIDString = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2; remoteInfo = "React-RCTWebSocket"; }; - CED0A559661D465ADBBB03B53F74999F /* PBXContainerItemProxy */ = { + D1FD83BD7A3828E8189A8B453DAA28BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; - remoteInfo = nanopb; + remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; + remoteInfo = "React-RCTText"; }; - CF872EE13ED425419CC528E55AE310F3 /* PBXContainerItemProxy */ = { + D20D4BECD712A6D0A2661E694141BE14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C5D62E7954593855294FBE5848A78863; - remoteInfo = "React-fishhook"; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; }; - D00DBB0F11E574C193BC03786563EF8B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; - remoteInfo = Folly; - }; - D07043FEE1B8B1FC5F5F20014B96BA5C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8F6AC1F817A6020A1AD035B558A7A825; - remoteInfo = RNUserDefaults; - }; - D13B501521D09205695CC4109E024B4C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; - remoteInfo = FirebaseCore; - }; - D17E024F9A9B8BA77566E704594F2D83 /* PBXContainerItemProxy */ = { + D217213723248B232F32A6A30DDD3463 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - D2B3263198F13A00833FA03A8D8ABF62 /* PBXContainerItemProxy */ = { + D3B5C392C47C3F7E3A36452DCA326F57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; - remoteInfo = Folly; - }; - D2B88B51A2F6039C149C3ECB39F853DB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; + remoteInfo = "React-RCTVibration"; }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3376,12 +3494,26 @@ remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; - D5BB2F02D1E01179B09B43AF8C91F544 /* PBXContainerItemProxy */ = { + D50670E0DF3542E89DB021B2957255BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 3EC18C45063BBBF2DC591C01F09E3069; + remoteInfo = RNFastImage; + }; + D6D6936EF3F0C6DB2DAA68ECD6EE641E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; + remoteInfo = "React-jsiexecutor"; + }; + D7B9796F9B52A6FD0BFD7838E67DCFE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; }; D8A489DA96811A733E40A4B4C97CDC9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3390,6 +3522,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + D8B4988524D72B2EB099AF4EF2CC40D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B11E238094137347E8790BFEB1BEF01F; + remoteInfo = EXWebBrowser; + }; D9B0BDCA002FEBFE383DFE024728D2F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3397,26 +3536,12 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - DA372748056CB9290EC9CA0527137EEC /* PBXContainerItemProxy */ = { + D9D9EB21144C390FA968F50D48F9E1B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - DAD9A6542D8956DD748DD4A32ED0E3D8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0EBAD9A3F5D231CA9F04A66138256744; - remoteInfo = QBImagePickerController; - }; - DB033D152AD25F72319E2E1758178DED /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 1F10289E58028110D5E1095D41608A3D; + remoteInfo = RNAudio; }; DC1A792C62DBF10721FFE4308A29BA06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3425,20 +3550,6 @@ remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; remoteInfo = "React-RCTAnimation"; }; - DCAB4A9233AC9C54A8B4EBFBD3A0E2FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A486E5AB43C3327005F1C0B986A448C0; - remoteInfo = EXConstants; - }; - DCBE8C160C8D815F7EB50F07C782FE1E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9693FDE10118A2D3719CCD8793940995; - remoteInfo = "react-native-keyboard-tracking-view"; - }; DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3446,96 +3557,110 @@ remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; remoteInfo = nanopb; }; - DF7AFB4DDC30EAC631994D9DBDF1E7E4 /* PBXContainerItemProxy */ = { + DFCDF1DD02E1707696FD1EBB2E7BCD53 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = DCE0E755BF3830D8FAB341194504E9B8; + remoteInfo = "rn-extensions-share"; }; - E0407227AAFEB84258F2DA6EC6AD20EC /* PBXContainerItemProxy */ = { + E10BA5C801FE5839B089AEB61F2ADDAD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; + remoteInfo = GoogleUtilities; }; - E0558AA5DE6B717152A9B9FAE1D9C2DB /* PBXContainerItemProxy */ = { + E3BCAC054870DDA7C889BE5EEC77406C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2D216ABBF7DB5CB52B72847709A0E887; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; + remoteInfo = Firebase; }; - E09A35189C1DAAAFE58EB3211E66A7DA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAFAF2A9CFE5807D87ACC914F678EAA8; - remoteInfo = yoga; - }; - E0D31FDF557A6AA352398530CB7F66C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; - remoteInfo = "React-jsiexecutor"; - }; - E1A14D3F3A934ABDC86F6E29A6D3328F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - E1D78BEF0FFC713E48292382096F07B9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2; - remoteInfo = "React-RCTWebSocket"; - }; - E1DDEEA3F1E247D268A5E41ECE9D201D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5FDF615A7E8CC4C3EDE33FB5C6925D5E; - remoteInfo = RNGestureHandler; - }; - E2048289DC2803DBB592C502C0D633BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; - remoteInfo = "React-RCTLinking"; - }; - E90A52A2894EFD059B321AA4758E512F /* PBXContainerItemProxy */ = { + E4DF8EF8283FD850A3399F2C075302E4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; remoteInfo = Crashlytics; }; - EAB078FA2717BF96B9A33C553AF5052B /* PBXContainerItemProxy */ = { + E55E74158BBCC1EE3476AB0353E42F12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; + remoteInfo = FirebaseAnalytics; }; - EBF6391068CFFD36AF0981BDF1FB292C /* PBXContainerItemProxy */ = { + E56E40001CAC5FF5261C8BEDF6D1C7C3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; + }; + E584ED3C588E581F81CADABB68B7F7A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BCAD56353CC03FBEA94A951A14E3F333; + remoteInfo = RSKImageCropper; + }; + E644DE1888A4B6193DC5165EA7EDE356 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 637805D5DEFA194CF328DA2A13EA9AA9; + remoteInfo = "rn-fetch-blob"; + }; + E6A35DE6A993C75B19AB2ABBF157B778 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0457CE0B3AFDC70E0EFCBC67373B8890; + remoteInfo = UMImageLoaderInterface; + }; + E7D7CDD62B07B6B060420837D53429D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 256C04ADE480DBD4834FD3CAB29E18C7; + remoteInfo = QBImagePickerController; + }; + E8AED4AD35A905DE67C85BEE22BA9900 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 256C04ADE480DBD4834FD3CAB29E18C7; + remoteInfo = QBImagePickerController; + }; + E99F854A8E886118A2D305817A53D7CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - EC2F40E54B3C845728A724C527A5EDEE /* PBXContainerItemProxy */ = { + EB4A17125F7C9D4E5F4447FAB16366F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 1A05BC2EB27453B863BCC5EC8B2B2B3B; + remoteInfo = "react-native-jitsi-meet"; + }; + EB83EFA776770A24E754CD96717FC47F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; + }; + EBE8DFB3194EBB3B355BB243023B3188 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; + remoteInfo = GoogleUtilities; }; EEC2A18D5D098BDAB781F34428BB77D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3544,6 +3669,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + F063566A227ACAD5FFB900EDD3680266 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8DBB59DA07871D38FA326EEFB3109004; + remoteInfo = SDWebImage; + }; F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3551,6 +3683,13 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; + F20BFE1FC2EDE05812F9D7C2A61829E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3565,33 +3704,12 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - F38829FA7FA8C0520E2FF080CB2ED208 /* PBXContainerItemProxy */ = { + F5AF77E132514FAC328CCA2DE0E66C98 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 70C22F7EE05643BEC8549072142E9E00; - remoteInfo = RNLocalize; - }; - F3EAF8A6C050364EBC1E61E095813E74 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; - remoteInfo = FirebaseCore; - }; - F51CD0E91833323E7236AEA813DBF5F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40094264A7543CBF6B0AC3BF172E471F; - remoteInfo = RNAudio; - }; - F5C2498BCE9463386A9F599BD1492612 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 752FCBCD2E0EA0ADCF498C7CB6315B64; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3600,26 +3718,19 @@ remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; remoteInfo = FirebaseCore; }; - F6D8BC8144046BD28D62BB4F10A02F27 /* PBXContainerItemProxy */ = { + F6E3128727FB68EEAA51B8FF3EA538C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EFEB49E9D650421377D2A9122164ACA4; - remoteInfo = RNFastImage; + remoteGlobalIDString = 317B9B7E899CBAA3C433E49C9A4F9233; + remoteInfo = SDWebImageWebPCoder; }; - F75CC63C0C7E213C18112326CF54EE3A /* PBXContainerItemProxy */ = { + F7932EDC5E20EE1051375B1D22525668 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; - remoteInfo = BugsnagReactNative; - }; - F77AD1AE0A3DA58694D0EE55D43B99B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; }; F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3628,13 +3739,6 @@ remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; remoteInfo = UMPermissionsInterface; }; - F89720559CB4E249E0E7ACBAF5F79A32 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B1BA8B3E53682DD179F7BFF8F2C8B75; - remoteInfo = EXHaptics; - }; F8B50BE8BD280104AEF2C287D478BB8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3642,12 +3746,12 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; - FB35276DE5D4B5253D27026A4D9F53D9 /* PBXContainerItemProxy */ = { + FB4E2D7E85A16CA98B22D49DB47124A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2D216ABBF7DB5CB52B72847709A0E887; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = 8DBB59DA07871D38FA326EEFB3109004; + remoteInfo = SDWebImage; }; FC81A17B5C5AD48E1DC428B4EE37ABEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3656,13 +3760,6 @@ remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; remoteInfo = "React-RCTBlob"; }; - FE8775831A223C99704E61DB60C1A27B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AAC627FD97B49E278B99ADB9DB7DA5DA; - remoteInfo = "react-native-webview"; - }; FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3670,2061 +3767,2125 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - FECF8F6BF633B0981AB2A2A2B6F0493A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; - }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0028E51BE3BC43B7D057AE8CFCC845AD /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; - 007E9817B83131F91D09AEA2DB858501 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 00833E7EB0D944705E71BB149296AC38 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - 009429EC337E03ECB8005FF0396A3A28 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 00C391D74F9AE575E3986797A36743D9 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 0015424B4C2B24ED10E15274B1AC32BE /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + 00830E3155C2A8ABAEE574A7A123A50C /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageShadowView.h; sourceTree = ""; }; + 0094D08DC648CCF30D4F8C66575F20B7 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; + 00A73BB738B25FE19BF1D28C42804984 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 00C476A0C5E90A21225966AED9231432 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; - 00D7219B1A9804E26254A0B3B1005A6E /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; - 010AA7681963D37D6A8105E5CC3F6465 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 01244B1DB2104334E0DDDCA95D73D45F /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 0149675F0F21F3EABF4D592ACFB96604 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 01540262B7BE60B5BDA737C324E7A811 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + 010052220B5BF3C99C8E67886EA7669C /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0159067FB4524E5A8D025AF4700C652C /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 015BBB460B3EFCEE96D5CDB876322B8D /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; 015CFA6D6C4F31AE8B86357E51479940 /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; - 0187A980721F3284C1FC1D348AC535AB /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - 01C4A59C4F599178735D04CF0D73BF81 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; - 01C505C931DFDF47F84C2A3244F5E04F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 01AD170FFF93BB8E54CA5C0DE97A64F0 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 01C6F3D6E8755135A8E21A5D284EE410 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; 0220BCC31921BCB8D930F8A91499BE53 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - 022CFCD0C8B28302982523E1354EF66E /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDataRequestHandler.h; sourceTree = ""; }; + 02266FF05B74056727211D8833DE9E31 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; 023644D5A0ADDE57DFBBA905D7E73BC2 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; 023DC4F9327544C470CFE83CBA42B9AE /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; - 024D174866DC879A465A83459D3BCF0D /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + 024D3CD508484911E6F593F0017ABDB6 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; 024D869151AC258B0D9D954728A85828 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 0261BCCDF2648D1A43E5D1F36B9B7604 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; - 02A484E930F713F09A3EB1F58B7F2302 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - 02C8AA20583BA21452FEA287AF738202 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 02FABC0EE02F564574C15A0CDCF20191 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 03088DFE62EB625D5B8B896975494B2F /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 02DA69C36C144CDD0C55986ED9157604 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 0303AC8EC9DAAF86ACF000364BF78BC1 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 030B266A112E8CD26FED4A0262EA0B09 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - 031F4624FACA06DEC3862B303A0FA5B1 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageViewManager.h; sourceTree = ""; }; - 0326054DCEED7481889C793E117EF794 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - 032948A2025B58EA7A5F94BB62D1FAFA /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - 0364AAF38ECE349E21C35BDE1B1EC6EB /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 03571C01D855A36BEFBB395C1942979E /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; 0373560C8F06F4D5DD7E28D42E8C3821 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; + 037A5FADC5696DEC177A2C5DBD6A31E7 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 037B04B278E559109FE0D515CAB939D4 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + 038B52F5524A296C2C2D47058DBD628C /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; 039877B222B77B21A4033F031C1D06E5 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; - 03A856521349E6A76552B44F0D4A9861 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - 04065AC8E9C6D7B1F00AB46C91DF67C6 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 040F9C574AAF1898B2DB9F81411F4183 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; - 04226604BA95193D6AE50F943239F514 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 049B965D1C5FB067AB021E008F84B5E8 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 04B843A89A8D365F2A5E6FCD789AA573 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 050BB1C4DBF503133093EDCB8E588378 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 0517002F4A881FF10994D2EA35EBD9B6 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; - 05295698655499A8BE5D1A5AE87C28FE /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 0530099C716A8EB6503416538DB3B44E /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - 053ADBB70D4ED7FA2589576BA37E2980 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; - 053E7A37FE6132038EE3F612568E575D /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - 055D9D04754BD0BC2ECD80872CE33440 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; - 0567D6A591998852278E3C18F7A35931 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 05979852EE2F81061DA8756F3A633656 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 05C564DD58B5A3A8DAB1D267FDC5038D /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - 0602FEEF04A711D3F8A2AE3BB3493E81 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 03AAAF92BC5EFA132EDEC15F48D44C6C /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 03DDD640D25B43CB250341BC78B5A54F /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 03E32183BDA63E2FFDCF3C69D0F4A9A9 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 04150410C97351ED83FFA36169E6394C /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + 0440E8CE3CCEED5D6617090A23EE5EA4 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + 0468905266580A523CABF441C1BB2A9F /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 046B20A2B48F6279C48F2BB20DB1ADCF /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 0496BBEF347D5DD270460A759E3D2A0A /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; + 04BA294E012625F93CB277E8AB773F40 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 04F5BD961E0034B524E7D83684CAD68A /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 05083914A0E9C0AC4BD3C9095A825E96 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 05F4B4868CB7B7DF12D2442ABC2F6522 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + 05FA10B03F7D2BE9D0451168E2A32B87 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 0602D10BE882C53F5A0DADADC98430C9 /* RTCRtpTransceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpTransceiver.h; sourceTree = ""; }; 0616AECA7B82787D45E9F30B06FC31A0 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; - 062D05D6626096952F0C7EEB8160CB8C /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - 0647D0871C78CED22B6423453FFE60B9 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; - 06559694AABD8E83371082788A8DB3E7 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; 068CE9D54301DAF6848DEB439320B4ED /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 06922E1EC9866CD490540644333BBE86 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 06A48044E785201D34AC8A2F447F4EFF /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - 06C9F5A11594D3F0FB6CC6FEC6C931C9 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 06CA3C0C0DB3C3E5BFDC317B45DF1100 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 06D5956913309B8AC74599643DDB5CFA /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 06EFE3F82058AFC6C88B2322CC4AF11F /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; 0708E098AAAD79EE913D0D6F7F73EBCE /* GDTLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTLifecycle.m; path = GoogleDataTransport/GDTLibrary/GDTLifecycle.m; sourceTree = ""; }; 071768A3EFC150AC3C110ECED47803C1 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - 071BEAF212AD9EEB04241948A15638C9 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; - 07466C5F9572AAA6BF61E6000AFC5B11 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; - 074A87793A428761FB7589564CD11D95 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - 0762FF5E65B8B48396AE51968E7A41F1 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 07712C9FD703B832FCFA4645436E57D3 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0740B19BB926E89476FFA1CE221106C1 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + 07618BCE42BAAF60ACA8D512673C99AE /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; 078AFB41581C17B936E5798452E9EA54 /* ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; sourceTree = ""; }; + 078FBB85B06D772CF2B5D3086B4EB7C9 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0797904A5FC7F9E780DBDC7E73B19ECA /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; - 07D2888B0638A9DB46C03214D6473009 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 07DC8E1AF4B914628D830EF9C951EEE8 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 0807CED9EE4C3EAA07C6FA00B87CDDD1 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 08135591258921F822A06ABF4C4465C0 /* RCTTextRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextRenderer.m; sourceTree = ""; }; 081D39420EF7BAE6DC243828439B9AFB /* GDTTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer_Private.h; sourceTree = ""; }; 0822720AF0B66D3F1DCE5F03FAF7A2EE /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; 0852B3F23BF2CCC5942464F363AA829D /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; 0852D893B1138AC91E703120BE9BF1D5 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - 0855744B2E95CB5AA0BAFC261839BD57 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0867AEFFCCD84ED4DC89D579DF8B0EA9 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; 086F20776E3CBD6C90E3FB4DFF3A3605 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - 08F290E8B914AD2F4A0718FA4653FC6A /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - 0904818E5B39571E02CCF7BBBF14FCC8 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobManager.h; sourceTree = ""; }; + 08995AD1F15F113CECC233E30D35ED18 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 089A0ED2E4DD0E3B5D877862C2C6F4B7 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 0906D6AB8471CD5111DD78C8B9A7EABC /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; 0911259B6924DEB8CE798ECCF9A287CE /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; 091519202305630ED4A1C9A45D550FE8 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - 094C54A4188D81D41667C78BA6135F78 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 09576396480220108126C8C0F6D392F4 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; 097529E01F948530BF995FED8E3C79CF /* GDTDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTDataFuture.h; path = GoogleDataTransport/GDTLibrary/Public/GDTDataFuture.h; sourceTree = ""; }; - 09B98F4761DD1F7E774BD5A13681F5FA /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + 097E8741FE64C3A1001FCFD793FD02C3 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 09A68242998F8219B12BD092F9FEC502 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 09B69E0BBD9026297BB11D97A8136F80 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 09C65D88BB93F4A0E524F9B5475F0FF4 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; - 09E27F90EDB7E9031A6BA3FA48043D29 /* libReact-fishhook.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-fishhook.a"; path = "libReact-fishhook.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 09E3A9A226EE181D5A085C0312C7E130 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 09E737630548B58883E4967319C26C05 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 09C7184CD0C32536609795EDDDF13582 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 09CE70106A4E65686140CE2B175081FA /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + 09E1043B5E740E504FC0F41084EE67E7 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; 09EF4E232018666287D6E19D9A6F49DE /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 0A24BB253288051A987EF3A18BCE2650 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 0A3466D4A8CCE80310EC86B2E39C80F6 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; - 0A518693137C483ACB6FC57A33EE613B /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; - 0A83D24F1DFB06D832B5EA64D663D792 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 0A98F6CDDEF90758CF5F3F9C32D9D628 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - 0AA0E0CC92D7B19BED1C60376C15F5B9 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - 0AA9730B7989374CA918AD32D3CD21C0 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNetInfo.h; sourceTree = ""; }; + 0A0B893362FEC54C2078D1AF61E7308E /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 0A118B84F150B3FE0CE4BDC37758A355 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0A3EFCE446D9C81F034A7BA9F816BB38 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0A43456D7886D8B44C8FE665CDD1CE84 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + 0A5C36E7B1FC34C9FB805F85698FE08A /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 0A7EF10CE970ACC1B584A8EE284ABCDC /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + 0AACEE473EABB3E7BAE6A0DCA59D72BA /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; 0AB43F689F040181E115C156BD705810 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + 0AB9615934FFBF28F8E2C834775F6BBF /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0AD1548E5B05A538B593C040FC644C7F /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0AD6AA6698FECCEF250F192BEA0D93CD /* GDTConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTConsoleLogger.h; path = GoogleDataTransport/GDTLibrary/Public/GDTConsoleLogger.h; sourceTree = ""; }; - 0ADB19858AE99EB0EF2227FBA5655486 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0ADD2993692CDDD5DC70CEA68E893CA0 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - 0B143EC844DAD9173E200E0AA98C6122 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + 0AEA92BE8A1C050899CCC34B6AF15A06 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 0AF0C95B81B52983B9E0867BC4562372 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; 0B23B0FCB0328F4CED9132A1B8A9882F /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; + 0B24CC8C3D210BC523B3DD0BE23BC13D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0B344C0FEA82A3294EE08D774696B89F /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 0B493F2A960542CBABCBA009D697382B /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; + 0B4EE8187A6E5B9CB1E573816D2969BE /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 0B4FB3ED0253F5F787ACA8738434A05F /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; 0B675EAACA6B6C00527A3EA87B53BAD4 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - 0B8EBE128B0CFDCF3C9C01B400CDC636 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 0B951E264F3F24C78F72700FB1687604 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 0B7B4031CEECDA2B09D2440810281E68 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; 0B98B838F454890B4210EEDEB4FB0FB0 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; + 0B99C2B3085E765A7DFC79EDB5788608 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + 0BA0BB909E728AE9D3243F615AF4FA77 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; 0BAC264C0D1E4AC72A9FA35D078D6312 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + 0BB9701F7406AD427D72F6A9F0C05087 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; 0BC634AA8832337A5495F34821D27BF7 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; 0BD13850CAD53003BB20DE1F2BF1826D /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 0BD25A97840A330D0437C703F4639F26 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; 0BE10FB6DED9B6EF06C70718C74B4140 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 0BE5449AE70E2DEE65E6F13ABC1B5065 /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 0BE9C00A0CD1A096CA768B9072AE457A /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; 0C255F4840327CC871033F4BB43C1A89 /* GDTEventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventDataObject.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventDataObject.h; sourceTree = ""; }; - 0C5A26D7ED219F14716FEADB04F0DC24 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 0CA3DC2486F7CA82B6A886AC4BDCF388 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 0C47C8084A0742D3EC19084618D5A944 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 0C5235669CD1912692A6B1F780504AFD /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageStoreManager.h; sourceTree = ""; }; + 0CADAA7CD985923F91BD423B6CA05EAE /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0CBA8964059EB1D1854795BDA2C4588B /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 0CC4C68423A984FC30D0960D9D0CBA89 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; 0D389C626379109FDA3F85D7A027AB2E /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 0D57C5E0D20774414E41F9C226F8B089 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 0D839DDD908D5A35E945C2D2C1C01642 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + 0D5919ECE26F1C5F31770D44C3D29895 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 0D85FA90E11713E0009A994D146727EC /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 0DBE935D2FFB86EEF4268BE44E73B029 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0DC4FD540A4301BBCE3C865E13BEC44C /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 0DCFEAAD08A70E9F3C3EF14F9F66F0F9 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - 0E2379D03749A7445FB1DF63FF284FB6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 0E38ADA686820922176D076F36DBD56B /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + 0D8F0749B4F9072239C6BF1C4527BFF0 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 0DE3F4A7156D4AFBA38FB70FE8A9D7BD /* RTCVideoFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoFrame.h; sourceTree = ""; }; + 0DECEF2CC304A8507E6BB1F52A42A4A5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0E0AB29145C2582910584995D55923DF /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 0E2FB51F1BEAFA38FD37CAD014450E45 /* React-fishhook-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-fishhook-prefix.pch"; sourceTree = ""; }; + 0E4E2895C9C8CFD463F3C0D699EE9081 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; 0E4EC6F922F53CA78F7C41B907CBB6AD /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - 0E68FD0E5F7E3828C99F9C8C7499AA66 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - 0E7937432A474CCEC42405E6975C1D81 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 0E53343736419C5A995C15A45C838245 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + 0E589582FEE02117FC9758AC0DEBD00F /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; 0E7AE6C7CA7720B8220E8123BA534811 /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; 0E95A35F60D69F40CFFA03284CCA52BF /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; 0EB25BCE31ADF1A90D96551E8A9B1C0B /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 0ED0D26B134E0466E9291E7BCACBD7AB /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0EDCA680F15EA3ED9E16BED5412A64A9 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 0EC34F75309538B87594A874F3971B09 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; 0EE991E059971B89B12BEB6AA1267925 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; 0EEEE97BE88DF37E78B0236B8B518E8B /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 0EFDF72FBAD7B0DFA015F577AD983BC5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0EF9629FD6625D183A0EAF00AE1F14DA /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; 0EFE5A4062EA0BA0B4575FF684292CC7 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; 0F496EB4CC86E6446BEC31D05CF5AA7A /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - 0F49B740C9BE6DA0A3BB1B68BFAD54A1 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 0F6B49EF727948F96ED21F137F120DC7 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 0F5C1C42D4387AA97E836AB5CEB0142C /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 0F8A7EF910DC8670B6204E30CB6D451E /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; - 0F9BE910DBBF9C31507CE0AFFEB2CAC0 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 0F8F16088905DE9473D846FBE74F9157 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + 0FA00B19D397828D581BED30DA3765EE /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; + 0FFE991C2193C651FAD761F4CE356136 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 100F8376E974302854235DE2BFF0A267 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - 102F57C4D6E06B0C4A3D77CE2E0E06A9 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 1035C2BE795A043B0B7A2E1BF812356C /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - 1043D39E20E4315F941ACE628EB43593 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1058B1882DE680F36CB9CADC629BE5B9 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 10AFFF9394AF47A9F43EB06DF49919E2 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; - 10D7CED947ED85FBC0D69B96B1BD617E /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; - 10EB5C3180661E16E403A4F436FEA309 /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 10F68CA9DCBC690C63964DECCD314B22 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - 11004CF4CA493D3192C5F359E121F7DC /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 1023B75FD36E217E9F76D168FDBF8B78 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + 106038EF35451F3B9B855C5BB0CFBFFC /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 10697B8F5B8B726F90FAFFF16383A14D /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 11167AFE1757DD2A3735A87D15321186 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; + 11881CDE3F4D45AD418EE4956F3BF4BA /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; 11A45F09153174F9C31B423F50E5CCF6 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; + 11A9B3E8A0B9380C3C118DF982859E6B /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 11BABA994173D89D64A419EC2B1D8EB2 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 11CD407022ADFFFE83A433E38A3EF04A /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 11DAD1DDCD74FD6BCD88131D745507CC /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + 11E03D57F66EB501256F836C2D395629 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; 11F51612DC4C27ECE62A293723A8F1B8 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; 12079D4841A499533F333EBD2126D6A5 /* GDTEventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventTransformer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventTransformer.h; sourceTree = ""; }; - 12230AE2D331D89188F39C3207835F7C /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 12387607A3639F4E843F8A8DA87A1C5F /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; - 1250FC47436918E3E64D8694F4C2C694 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - 128BB4D76E8C2B3A3215B57805BF7899 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; 129704FB2D8376802754D4ADDCC2C3D5 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 12DDAAF374CD7A23E52FA2B93C43FE5C /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 12F136F7FC0B8310A93DD64396C0789F /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - 1323265EED4CA08F2278F56F0E5587EF /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 132D66808B8719CCF13044D3C81AE38C /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; - 133D81C69EE4A8C014E0D2D3D6ADBDC6 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 136A03F8D90B42FA3AEF1B7879402E4F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 137047C22AD58DB8437668E4B125ECCD /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 12B10515C97546B76D126CFD17416038 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + 1332348EBBB4BA24363969F8323722FA /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 134E69F4E1EE7F097EFF2A9560C12F0B /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 135F810F48ED93CD559F9F7E1470BE5C /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; 13756F15BE86C16D7024CB630A3E8890 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; + 1383E8156F38969277013E939EB71108 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; 13BBC2A6239557362F341AD5F1BF62A8 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; + 13C596C30890080A7DB9124E9B935A31 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 13C94E57B0F77AD0C3CF71A0DFC6E6C5 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; 13CB2608882F52C24EBF7D79BAA64A6D /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = Firebase/Core/Private/FIRBundleUtil.h; sourceTree = ""; }; + 13CEB6760094E383FAD9F57C3F043AA6 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 13D238C9ED535F24952D58157229FCCE /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 13F3DFE4B4AEE84F28B26F241979B75E /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; - 13F548B11707C09BDFB004B71638F141 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; - 140125BD9A3EB868CAC20EE327021E2F /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 140827E76462176B19FAC244ECEE9BBD /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; 1418009FC5641E024FCAA026F4B09937 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 143641E635A9FD9398C57432E010D8F3 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; - 144AF412BF03B8797DCA6B75F0087BD5 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - 14B7415D8E7A28C61DA723E7FCCCFA3D /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; - 14D4B5810339E99B72028CC6C198D142 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 14491EE39D97F484A441EFF26F372928 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; + 1496791F7875988245696D34C6F6983A /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 14B9317D9BE65232E6F83AA8B2C7B44B /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + 14CB84643D7C419D2B36227A1C6B97A8 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 14E01EC52611567014EE6602384FAF98 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; 14F2AF67D939C407B4E0C830C719EA35 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; - 14F46F521449474D9AAE65EC6D1BAD63 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - 14F859B7957DD7546A15A1F25F252699 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - 15044948BD6369E56987DBA4C4AFDC95 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; - 153D0D323854AC8FACDFA0774D1E9380 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - 1562EABF3CCC4705315B8043543E207E /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 14FD9EE8DEA94E51D6A6AE92728BD720 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 15306F6FD4ED468D98B5C51F933C3C1A /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 154FF1974291CB613F271FEDEA3E95F6 /* RTCIntervalRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIntervalRange.h; sourceTree = ""; }; 15668F5FD97ECBA0FB8A0FC54240039D /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; 156B3CC133ABAC42F77BFF7E0DBCA9B2 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 156E4D24CC7171A92173EBAF45D28EC6 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; 15709B7021248CAB27E66715397AA976 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 158BF40B76DCD1BED43D04A6B48BAC0D /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - 15AC6CB4B7E1F40F37318783CE47D1F5 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 1593030F22AE2BFCE51AF99F036580EF /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + 15AF0B4DC7AF4AF11102D2015258C7EE /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 15B812627CACF8DB5A9A6ECEF2B6BAFE /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - 15BE8E11BC039F481D83B22F89DD57E1 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - 15D5E0C896CADCA68ECA816366ED25E0 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; 15D7FA48D8C42EDC3E26C474BCC0DEFD /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - 161026034B58803B83E2A3180D0267ED /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - 161DDC8E9818F478D03193D302EEFC1E /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - 1623CC1317A4C934D6B1D1FA6371BC5F /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - 163923AE90A5A8C1E8BFEDB38E4381E4 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - 1679E5BE8868596CF47C6A0FC2C4FE43 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - 16C1FEE866B0BBA4529C87B3D5EDC258 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 16EB02BC73457919ECB8685001CAB565 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - 16EC7FFCCD260E58EFD7D18F4F300F68 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - 171F86C9A5430CACD0C7C6C5E06111DB /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 15F469D239E3986755FF439EB43EC486 /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1619F6A005B57B9AE7F4F37AFCF390DA /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 162009AFE68F8454A95737615759E87F /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 162F30647909F8B46C0B09DF152E54FE /* UIDevice+RTCDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDevice+RTCDevice.h"; sourceTree = ""; }; + 1656A74DA866762D5C0D465B7EEBF82B /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 1663562AA81606F537154F2BE0E1492C /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; + 1688A7691E39FB917A701850C7595B64 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 168BC584847C8AA9E4E4EF4D89EFC6A4 /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; + 16FB3E08C3FEF813548C1EA43F017B43 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 170C0B92D8030F072BDA907F631BDB0D /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 1727AF9D01B46FFC15218621D02E85CF /* UIColor+HexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+HexString.m"; path = "SDWebImage/Private/UIColor+HexString.m"; sourceTree = ""; }; - 1770C4270FFE3249CE3D953576A40353 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; - 1771B49438A3AB1ED0D8934A785BA96C /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 1787D318C8069C5DE4410094624E6C45 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebSocketExecutor.h; sourceTree = ""; }; - 17B080C1BBE18D573840429AB5DD98A5 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 17C3BAAE8DCAEE04C6E41EABC58E1FA3 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 17CB7012BC40063FF7C3A6F42053877F /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 17E63AABE884B350F60DF90525392EB0 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - 17EA647C95FCD3EFFF9B3F55155AD675 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 1811B648E30D075518FBAF437DB3D03D /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 1750132758DAA705EF1D97893747F807 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 1761D7D2978809F3D0C3D50150AA9182 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 179E0F504449D617B1E490EC257603D5 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + 1818A0063B16A44DEF4CC70469D83CAF /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 182B26C838B463EF6E209A217FB54C24 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 183E9BB4BB85EC42E515F6C865135F00 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; 18441F24ACEAB19293F92E316C31025B /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; 18575A59266F7A6CFE46B8E5FAC1ED85 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 187B3211C7DBEE6316BB3C7AC114FCD4 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; 18B4D4CD4F3228B47F6A17E1A8BC845F /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; - 18CC333CFF6B3F92573425FAD58D5BE8 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; - 190B39B2BCBBB090E039108CCF79F99B /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1921053468A32E19E83EC2F76588C0EE /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 1933814A95A3BF25A22FAA0C3D6E0B51 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 19AF958D2186A57F451EB55740B61714 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 18E073ABD2467D5EF4850F2B24D7B8DB /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 18F625F56277BFE80C718D8DA375FA6B /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 191492EDD0A710746DDDF0581988A1C4 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; + 19231630FAEE81DCCC5421C449A86AED /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 19344F4BEA829CC16C242C22476F0C71 /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 194C05C6652F7AC6E377ED0C7091335A /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 196DE05284809570408F85DFD2750E59 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReconnectingWebSocket.m; sourceTree = ""; }; + 19ACAF5A33A1AE265395DF8C9337A1BD /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 19AE973E6A93A34E9E6C31688D116A0F /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; 19BB9E5A300AFE1052AB5756082D320F /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; + 19BCE5B8A3DEDC45656C07663920AC26 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; 19D604C2576BF318DD3980220AAAE424 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 19FC1EFF13BF8A45DAA1F52574EA0E71 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 19F4728744093AC4EB67D22D9F3C42ED /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; 1A20D76317E3690879C32F7ABC95C661 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - 1A405E78316A37BA2B6FEFC263A2C429 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - 1A40CB7BE8E99476CA4E50BD5B9C5C64 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - 1A5B1030AA9714F68B4E5842F8250538 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 1A85651BE2CA192EAD3B3E07C2CC717B /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 1ABCDC27BFF089006951232E428B65EB /* React-RCTWebSocket.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTWebSocket.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1AD94EC0403864159C39B2BED509EEE1 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 1A220E229E2837D14F7625C22E7D6EE0 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + 1A2941941374CFBB82FAC3F79784B689 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 1A4F317DB724BD81A70C8240E6FC7210 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 1A6F6EE07F65041ECE330E7A1A8C23FF /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebSocketExecutor.m; sourceTree = ""; }; + 1A8B25E20FA3258580F26D11319515F3 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 1AB9F3245B3E912EE3213D66428560DC /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + 1ACD1AD8B6BA4EBFBA76D60177201025 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; 1ADD1D4BD44FE2B496767D09490360E1 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = QBImagePicker/ja.lproj; sourceTree = ""; }; - 1B1896AF0E247D8F22AF41F5D3301DEA /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; - 1B44CDC656C60B22F0775C5CC9045CC1 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - 1B490AC25D7269468DA651E072EB682C /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 1B5250520068FC5103D996162252BC81 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; - 1B6AF5E20CB5B9563AC579F8BDD184D5 /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; - 1B7A4721094DC22A2134C2B034FAA1CF /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - 1B9F9E9FF603E2E2C1D1A9475C59296A /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - 1BB0F79397C05807851DC23AE4F404E7 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - 1BB43C6952EF68D5E3156432840DFEE8 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; - 1BC904A65F81717DC1CD333CCB25B240 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - 1BCF7884C8A9C4D99E5E2BF1DFB9E05E /* React-fishhook-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-fishhook-dummy.m"; sourceTree = ""; }; + 1ADEFFF57857F236212EB280D89E3628 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 1AEFC3359483613134435A760C89184A /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1AFE20BEB5B1B356205A490AD8880F1A /* RTCRtpReceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpReceiver.h; sourceTree = ""; }; + 1B61320147E67E457CB0208C65E33999 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 1B8302198BC7E35B8F4579F3743BB37C /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + 1B9C4CFD173747A309E24626D368AA68 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + 1BB0CF1D91D53AEAD98070670643EBFF /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + 1BE022D7A4B4470D1FB71A8C88B654CC /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; 1BE4DD9A3A0342A8E44650599C2CCF76 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 1BF963B67576AB4E0EA8E26FA194565B /* React-DevSupport.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-DevSupport.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1C1F8AFC604B3356FCE25B2C9E320C0D /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 1C34C70B945C16DEEB4BF17134782780 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 1C6793E23D4CB0376854683D7A0AD0F7 /* GDTRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTRegistrar_Private.h; sourceTree = ""; }; - 1C85AE5450B759E19C9116D4C03A86D3 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - 1C9518AA55AEF265D74E5C3114000D5E /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1C9799FE0ACF8696D712F656800623E2 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 1CA4598C6E21A817589710691F319F0B /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; - 1CAB77C66A90FFCF732F5BA30DA664EA /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 1C8716474105874BB23C7D65EABA7AEA /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + 1CA32F6F2FEE76EBB39D4B7EACDE6BBC /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 1CB8E96300577ECE5B570C0DFE8BD5A2 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 1CFCA2B826181926957ACF088B29EFF8 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 1CC032CE4D36E6ACC3C2247EC1DA16E3 /* react-native-video.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-video.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1CD142CEFBACF1123E791728807877E3 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 1CFC4DB191E446CD097041E840E96E48 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 1CFD5AB092ECC5B7ABFD6F4966CAA021 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; 1D5ED9A3BAEDC5204F1097FA5BF68A12 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; + 1D6777C36B1B42891C11983BC2FBD59C /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + 1D6DCAABF437A05889988D68463D3CC8 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; 1D79AFD7B38F36B17A576E16D20BB7B4 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; 1D867735790D50598FA09B5FCF9177A4 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - 1DC773DB1F440F7828ADD2BC4466D0F3 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 1DCFEE894E9642749E85585155815804 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; - 1E091D581070158B0DC9427D4CEE20C1 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 1DB121501564B5FDFFB1425CD2246F91 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + 1DB6414A0790EFA0A84903F39DDCABEB /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 1DC01376555BEC4EE4CC37C3AF516955 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + 1DC27DB9DC5CBAFEAC0E96C80C266AEF /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageViewManager.h; sourceTree = ""; }; + 1DED6959A771B78E9D584A0500D0BC8A /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 1E29F6466E30ECFA65A6C1228F8F1C0B /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; 1E7212AAC51502DF738D2A093B0A145F /* SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoderInternal.h; path = SDWebImage/Private/SDImageGIFCoderInternal.h; sourceTree = ""; }; 1E89ADE6086B260D6061AC9AA0677350 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 1EA6361228A7002B6EF6CB1771EFB562 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 1EB09F976E3C379A8CF34FA3A4B7D72A /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; - 1EB10955623773BCA472F70756DFB853 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - 1EB6D8CBE957C8E1105C4C1E9E489D8E /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + 1E9D39208209A7BD5EB5CF40EE1BC062 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 1EAB86F2F778BE56ABFD7EDB028AF526 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; 1F2CA2326F69284F493D911019DD6729 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.h; sourceTree = ""; }; 1F3EB3CCAC800B73FCAABD2AB3CC8D66 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 1F41DAE0722B98B6226FFB79FAE1A934 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; - 1FB8C6E58748FB238B435661F40A2F42 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 1F85465DCC92F826D781C30292A8793C /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + 1FA63AC798C8D16B8E5AFF307AC7FBE2 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; 1FBCD73C563D599E2DE67CBE79D3C69A /* GDTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPlatform.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPlatform.h; sourceTree = ""; }; - 1FD08A546373D8DA8229FC9E333763C4 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + 1FC5C8A513E491D4D7D8F415EC66CFF6 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 1FED883E970A8E3DAA48FC7C158CE8A3 /* react-native-keyboard-input.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-input.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2009DB4374CA5FA1CE6320D16B46D5DC /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 204B0C4E015C3E2CB00659FFCFF5C8E5 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; - 206DCD3D18193E958F8F995631E7BAB0 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 20320D54C90D9498781B00281EF43847 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 2045BF999D43E1474FCCCF1E3765A3C3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 2058DBA2C8EF3BFC9BE65BA4184E8B24 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 206EA7C3801A2B30922F8B13DEEB0531 /* libReact-DevSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-DevSupport.a"; path = "libReact-DevSupport.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2078B73CFED3E988D47CEC70589963AD /* GDTStoredEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStoredEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTStoredEvent.h; sourceTree = ""; }; 2092051B4577548919F24B8EDAD80932 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 20A42E113DEBC0CA926C24D67F0ABF36 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 20A5C2EA56B98E369D96973CAA29F1FE /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 20B0EEE430486B8EB912DD10666CD832 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 20B3E8897FE4D5B4AD06435D42A25DBA /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 20D33CD7E9BF14C9CCC07D97E0DD63D1 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 20EF4AC9DF7AFDEF2FA45B66352E2556 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 2093499FB5A0D1DB65E3EE2C5B869CBA /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 20A4083B05BCB977F381FAB9FE2DBE53 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 20B87E6A7526EEF7FA07B06DA611D350 /* RTCPeerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnection.h; sourceTree = ""; }; + 20C59FB31AD3429F83959DDA43D3B3CD /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 20D397DBF640D2713BAEAADB9FB664BB /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + 20E9F192E1E005DE8EF4B53018A062E8 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 20F9C00A09954A3C4DF7243057ECA968 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; 20FB7B4A045FB6018B76109BB4402D2D /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - 21050EF2BD74AC70BAF6B476AE19938C /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 2119F559418EE297D7B8C21D6135C4E7 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - 212E05FCAF526AE7EEE0EFB9C48D5373 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - 2144C4CC6B346F0FBBA634BA82F92173 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 214ADBA008C6F467CC7E0BFB6053DB95 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 21618336E6854492D5570E4FF8692E3F /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + 213CE0DD0D1FB97BDFA3016971DA078E /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 213DF63C939D5004F0F549DFD51A9FBF /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; 2169C0C00372352B960FAA622851EC94 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - 2180E93BE23C4D41D3003768F5B74EDE /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; - 21B262D1D12C460BDE15CDEC413324ED /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 21C54A272638C9D1C6AD8A996EFF4159 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + 217485D701D285E3FE8398A213851E2A /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 217F81D49069C659AA0F4E74ED8E4D21 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 2184E6611EC1772F7C0A3ACDEDE225E6 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 2192791BAD79F9D3A64499F158FA66FB /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; 21D2519EBB681F820C4C705B754DEEB1 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 21E6053C49A19DC1C3C72FA302830870 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 21EF974020D2DBBD3B5149575B06BB71 /* libReact-RCTWebSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTWebSocket.a"; path = "libReact-RCTWebSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2210D12E523B8DC979F9E0C783A4B7BD /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 21FCEE22A42237A257DAF8C61299F01A /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; 2211B861FAD633539913BFC2A4B64C91 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; 2213FE253CE86E4A6B417F320CE5C9C5 /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - 226EC76186784160590B63A5DFF80A52 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; - 22810B0DC47B5CD0A2369B1E59C533FB /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 22B1FA7F3CFE61D7686E0135176FA950 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - 22BA98A5B60F82ED1A0BEF877B5FA8E8 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - 22BF24E49354F10B2BFAA176AA89AA5A /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - 231CF4FA64AC13747332BE023103D11A /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - 231D2C064C5F9EF7D93CE133E632ABB1 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; - 23925EC963EFD0F90E5802D86A55362D /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - 2398050823277AB4E2D9D3FD20D0736B /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - 23F7A61198D347EA32E1B1EA49667E0C /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; - 242E9C6023E4AD0B24DA5981A5041E3A /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 2431FCC8C857C1BA1A2CFA4D958A2208 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 22269C7ADEEA055CD6EAB94C885D38BD /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 222FBFFE46A483F13B810824A5C4C302 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + 225B23BC7E09A57BB81DC7223CC033A7 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 22FC48F3F9D76C92ABC6BFEA02058B48 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 23177127D8E403DAA312B40339D82EC9 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 232253A5693301FCAB478EB3190DD536 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 233590D394D12ACF3356DF3BCF908DB8 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 238014B21C439A1C3199050625D98013 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 2388C481BE400195170154F70EFFBA52 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + 2394872D80ABE2A3E447D3D37A2D5B8B /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; + 23A68E6734213B3A19BC166F35CC8579 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 23CBFED2EC4B1CB34288E9A1BF552159 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 24055B7862CDE08FD4C2B1C7B2FF1D6E /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + 2421D918A551EE3CA2567888F02CC919 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 2425C40ECB016E238C047F0ACB06BE7E /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 24782A672E657AE222951FC5890B29BC /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - 248110FFB6D7D84FCA570A564E658222 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; - 24ABA99D582D5807D35D659070E02CF2 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; + 247C346B7E4E644BD3DB737F46BE9698 /* RTCAudioSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSession.h; sourceTree = ""; }; + 247C6C4D3C37FFC9F240FD5593F80342 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 249785BBD90C5395F00C97066B1762F0 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 24A230210D123B60E0266F793E604D52 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; 24B916F20C60F85F7360D2F3B2B64E27 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; + 24CE1ABC7A4D3EBEE9C5BE748CDD34EA /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 24E052051BE80E1F507FAE240002FCC0 /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; - 24F5A62A722065FFC58EE542D1BE7C7C /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + 24EF532FCEC293A2DEA18D3EBE58BBD7 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 251B08487835835AC957B1CB4B56E359 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; - 2528C40DABD8EC42F62BEED4A1C3B890 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - 2583468779239F77E58A8A9D59FBFAAA /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 251D21ADF6756B97FC6BE61E1630499C /* RTCVideoCodecH264.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodecH264.h; sourceTree = ""; }; + 251DFC07BB02967486AF483D8E7039A9 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 2527200E25960FC494E4A6EE4F49D34B /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + 25470A3049F646F7A43D85724FE5752E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 2551DC0D5E53978B8450B44961CD6151 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 257232E964025624FC1750793BFD757D /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReconnectingWebSocket.h; sourceTree = ""; }; 2587AABF22732CC81C58D78D9EA845A3 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 2589CAA08CC7CF1049BFA11AF93753C9 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 258E46EFE4F5B0D1C95E7989DCA6E9C5 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 258AF41110463BE9736BE2809EDEA878 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 258F9B9F16D67BA9A3F9CC592DEBF8DB /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 25A8F98E96DFDF3357A115885DC44468 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - 25AD6DFEAC6474763E002C8BE5695ACF /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 25B460690D85F29E715D404D98DB7B21 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + 25C73E3EA5483EF8F6BAF43585D19AB5 /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; 25CE7A909D2A6AD19C964C140CB99F43 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; + 25E8ED55FF13DA927D69901025E03F16 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + 25EC550698814DC7DF33F0ACACD03B8B /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; 25EF2FBD2D73E734BE8605878ADC7B10 /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; - 25F42F431BB0E90988DFCE445EA0D7DC /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 25FDA356CC49DB2801FE0667635AB9D2 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; 260536C3F1F5B0F24E9A959B906D07A0 /* GDTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPrioritizer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPrioritizer.h; sourceTree = ""; }; - 260E2F5BAD367E98EC136C7DB4BC2598 /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; - 2630A39F0C6B2519A28DE0043DFF17DF /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 263A89A7B3E463A823F9F4BF330CCFEC /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 267700F59E586BC2481C9D46D493B6AA /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - 2692AC287AD187B5479A0E10AC4A9264 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 26B2EC19590C89A9549C900942D0F08F /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 264627E3CA89FF063B3D63B1E87F5CBD /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + 268495A169C2E34E1FAFB7A056526021 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + 2685BA09B2A6F53B3A58C8A868C0503C /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 26A84A765E3BB0B344722D902B510081 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 26ACF13A7FFA34BEC22DB41679162E1A /* React-DevSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-DevSupport-dummy.m"; sourceTree = ""; }; + 26DC102DF6538FC5718376E0D0F42A5A /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + 26E349AE1756060B134D880AC959F6BA /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; 26E7C3ABE9D7035639151BAC1CAA023A /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; - 26F4D4ED48B0ECB914113D1E20CCB8BC /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; 26FCF70259DA5F51659A6934E776DF61 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - 270104B540A738BC27A9A514F39B31B6 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + 2701A02BC7CD579B409FA59C0EA13D6E /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; 270D7865FAF7BACAF1945F47F7F36D69 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - 2759281DC2B5078CF7E6185199F43441 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 27759C8A5584B75F06B24243917E8C69 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 27B62CD3D697760E85B72408EBF6E835 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - 27C712FA63BC9FEEBC37A5B3B0032671 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + 274E5834A4D232E7A92B9C0AE2133AF5 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 276D82CCDA6AA238DEA838C835D316B9 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + 278D7B535C493D8E3FB6C0E407CBFD32 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 27A989DB5B60BB93DD9560D6B2EFCDE8 /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 27AD8BF520C2CF14775414725B065CB5 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 27B3D8DEB9F0F1930A1A56F3048472B8 /* React-DevSupport-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-DevSupport-prefix.pch"; sourceTree = ""; }; + 27B7FFC3846F19EB3FB254BFC9462554 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; 27DAA7F9EA8682CF9704FE1CAFDDC2F9 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; + 27E1A0E2ED1633F5BA5D969D00EC6437 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + 28047A71A7C8EAD479869C5F7CF5A930 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + 28054218ABA4FC67F1D8B34062B38B33 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + 283500765B564383F6DE2F0B4402046D /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; + 28411B9EA5D945421681F294A1BD05C7 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 28484CD16E3E3800D0174E9A6EAD9F4C /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; 285F1C20B291AD091D488EBD9AA3066D /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - 28AE5609321AA47365DC1F5784DDC047 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 28E1337B043E1B3D5A881C5D44E43501 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 28E6749E05B1D2A0F0CB925540E0BE6E /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; - 28EC3C01032D02EAFE02322B0CB3FC71 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; - 28FBECF22F52ABDC91B2DFAA93A71252 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - 292BFCE23E8348EA7808657FA43DA053 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 2875910CC22409A22EC63C5012E1ABBB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 28B0BD4070FBB6E605992207B7050DD6 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 28B3CC978D37C0A9A2E085098BA45839 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 28FD59BEACF23E97DAA493C4C13EEA62 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 2925C1EF036BEB210767A14C6E187F2C /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; 29502A0004E740F80FDFA9E5CFE421A8 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 29536746E495BAED8B33D16495C0F774 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 29AD1BBEB2C4D9860135FC766A35293F /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 29BA34328BF0E8648F5516CD167430DA /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; 29D0DFCB9D70457B9B48F8858EA6D2F6 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 29ECBD992F48F807347DE2FF205FE26B /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2A13922827E0FB27A6DBBD0AED67F1BE /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - 2A3DE8D8339226C9D911B3051375CAB2 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 2A4842132B0D8B8B1C2520D1DD113369 /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; - 2A4C307FFBDC6D348C092A4A210875D0 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; - 2A6B67A7E1B245CD408B9447AFDE7E9E /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - 2AA5925531CE66C701D9F5BA354453F6 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - 2AC45F33A027841E07A79A2CF7C9621D /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - 2AF424360B844F89AB206F515676941A /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - 2AFA0E290F72E671A7EEABA9C88C34A5 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 29DB4845D7433C98545BDAAF37678E4D /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 29EA2CDD8CFD0AF7275BE306600DF214 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; + 2A1659414A724C865858B812CEA7E5D9 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageLoader.m; sourceTree = ""; }; + 2A3542BB014EBFB206314887A00FA9E4 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; + 2A508EE9E7198040C37BCABC23E5F4A7 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 2A5E230E475FD65202751138A8418DD8 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 2A950A006FBDCFE6AD93E0A0D0E55CE4 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 2B002C83B3DDF45D51AD0B8F31279909 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; 2B367DCE92865D3CC37D33E46A79C9F5 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = Firebase/Core/Private/FIRErrorCode.h; sourceTree = ""; }; - 2B4E8E90A13B5E22E61FE9E1F954C032 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + 2B498F27CC09F6C300D96B6D78B1C90D /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; 2B59CC1BAA4BFC5DB2D00452E5713ADB /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 2B7031F528ADBDCF68BBCB2A104DB7E5 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 2B9BBD28914A9A13EEBBCA8F183D1711 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2B5C7E0422973C6A337EB16FBFBDBEF6 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 2B8EBB96CD18005445EDF8B640AC7D07 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 2B9A2C2A8F69EA5DAB5D30F0C3EE6D1D /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; 2BA2ECFCD04DB9708EA2504DFF8341B0 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - 2C2153130A1DCD2B3B7599744746016F /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - 2C30E17EA12ACB8B6F5C443D2316DD47 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 2C2223CD67012CB82F648B35DED3A7E4 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 2C2E95ADEC93134427F1FEB31CC8EAA3 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; 2C3DC6D5B9BDAE5D38A9C3FBABB1496A /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - 2C947C63EB7921E2ACBA351099EC3C7C /* RCTTextRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextRenderer.m; sourceTree = ""; }; - 2CFBE6BE9382F618DD04EA920A6BFE71 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; - 2D0E10AFD9B16663DF59E786D100868D /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 2C4D29FB5361710DD1DB881AF1BE0353 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 2C5612F44EF9E0416D7F58DF50ACF273 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2C7F0C80F7C41B7C4170B088C06A029F /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 2CB69376230978E503E51978FB90EBBB /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 2CC1275D5D40721F833EB331DFE7A512 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 2CE908E17D34B70B36F2401ABF27BB0B /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 2CEC55A3763010026891A04C8CE2BE4A /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 2D0214EE22CECD5905E3885165E137A0 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 2D128EC9C661C9123DB9482456EFF500 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; + 2D1B2877E06081006E5D690ECAA95949 /* RTCVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCapturer.h; sourceTree = ""; }; 2D21568CA3D2B002C973A9BA34573B73 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = Firebase/Core/FIRDiagnosticsData.m; sourceTree = ""; }; + 2D3E71704373663D305B6718DAF2D87B /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 2D5899897AF05F4099CEFED7C39DF498 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; 2D6C7BC478AA059CF44CCA9A7269C7F2 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; 2D79D9AA154EA96EEBA66E477BF5C078 /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; - 2D7E20A05A096F6E31B89FE40BB28C70 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 2D900897C65B4848883E1685FFDBB206 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + 2D8D9875012EF94FB3B366AEF1E6FB24 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 2D9460157F7FDCA4BF2D95C08EF96DE5 /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; - 2DDC72260A2A6E242E46DF2169DB416B /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; - 2DDCEFC7882E2098FAE48DA8ABB0B78A /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - 2E01DDCB374A2337590199437BFC9A08 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 2D9B5517DD456E91CE66FB7D42617486 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; 2E04744137C4DC860143BC52B6FB9548 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - 2E5985FE783F85BAEA2EBE769BE16011 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - 2E96A283FCDCA122F08478CBCD9B796B /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 2E9737B186AF79F41EBB06228EEE1CBB /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - 2E99A247FF362A3036165E3EA86CA31C /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - 2E9C5AF3B8B0B2FAD7FCB49B999AD88A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 2ED59E162A1DCFDB2E12C589CCC8468F /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; - 2ED77732AEB2AD592ED3044DFC4DBF81 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; - 2ED91456FAD7A371AC870ED4E9E6ABDD /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - 2EEE78D2A71F6AD48134D8B7A4FBB45E /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 2EF52270D8A6FFAE1F8A09E543E9D36F /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; + 2E0AC3862DED458ADBD5B9B2E5C39526 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 2E4471C949DC5E2E9C16EB41A2D4BFF2 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 2E5114A5293B72E5A9BCB1310F1B84C1 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 2E6339AF8D32C284615ABD60F19D6843 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 2E7830BDCC9FB0191639E0CD7BB25B59 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 2E8F009B087EA10C0AEFFDD2FDADE176 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 2EA55863C831AACD54436A75E17E0A07 /* react-native-keyboard-tracking-view.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-tracking-view.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2ECAECEF6E93CB8910FD7EF1C03CA0A8 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 2EED36E8F5441F344FED466E5AA34306 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTResizeMode.h; sourceTree = ""; }; 2EFF26FBF25613C65417375496B5A684 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 2F04D40C834DD098055F62CC27680124 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - 2FA8A7CB6E09B8F35D8A922D772308CA /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextTransform.h; sourceTree = ""; }; + 2F2FF01826C3011E28538B47A9B3A89F /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 2F315BB023F013A055A42A46D895E975 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextTransform.h; sourceTree = ""; }; + 2F3D31A37D4195E1C71A739A6CAF3FEB /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + 2F3DFC03A6CE159EE38DED045C0F8380 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + 2F6EE4FD07A09E1E591925394F3F37AC /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + 2F907803C9855FCDE94218C03B7BD235 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSRWebSocket.h; sourceTree = ""; }; 2FBC9DFD2C3DAD553E47628E06BFD862 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; 2FBE6D4529581992E06E09DAEA44BC62 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 2FDB4254FD3D8874D64792500CB63343 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - 2FE61E0CD030365ABEA6646B226AAD8E /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; - 3012AA5494957D83BA41715E529F1900 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 2FE126B3EE7A4E236F5154B2B85B5ABB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2FE51D81149677127B01BCC43E25DB77 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 2FE5515F93459BF4867381E736FD2BBB /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + 2FE9C10127545E3D0A0F331A65C787A3 /* React-RCTWebSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTWebSocket.xcconfig"; sourceTree = ""; }; + 300A79D4DBF7F9DC0D4197A864A02ABA /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; 302669C528EB41EE070FE1C234C7D7D4 /* QBImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QBImagePickerController-dummy.m"; sourceTree = ""; }; 302832E989F3265D092A1216B7CF3C24 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 30378C6DC967F17DAEF2B0AB16696398 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 30357DF7ABF3B014C79F65908867EBC9 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + 30AC1D39D7B7700493542DFE95B13B43 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDataRequestHandler.h; sourceTree = ""; }; + 30B14134CE1EEB8B9C85CD07B8687856 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; 30CD69E1B9C38E757319BE850F56DBE1 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 30F4C860FD823C1FF4E8D7FC0D66A507 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 30FEAD4E0D7A410C4D7FED571C4FCF6D /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - 312E63F534CCC5A95081FFCF5E120F39 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3193063BB2B500F05483DDCB2F6C092B /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - 31E624D63EFD34F88E903C85CFC595CD /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 31E7AFF2B180CF47F7288AD37E5740AC /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - 31FE0BFE4CC5514B9B900D78FB12FCA4 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 324EC9A48993622C5693242CCE7E870C /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 30E38F565AC36FCAB8F8B58A16782FC2 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + 3116F1693D8BE11B18B431341D42AC86 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 311BE0342173A0C9FEFE803A861A3072 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 312A4336B92E83B4443F8D3E67A2DFA9 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 31313F08922AA436F56F130588C34DF2 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 3137D223DB236E50711878670D1B760C /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 313BBBF4CD1F3CE1EA8EE05DB994557C /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 3184C463BD172316D1AD748B487819F4 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + 31C10E1570F38850B8A2852EC9F2016E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 31FDD552F5F96C5238EECB2D3B521AA8 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 32413BB7323EFB9783D21A67686E925E /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + 3257D61539C445D5D465A2675E33DC7F /* RTCConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCConfiguration.h; sourceTree = ""; }; + 3273091D512E421432CDB65E061BC47C /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; 3286C47D0D2E7941D9F892B0606F90EF /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 329CE658ED52FC4351E0175DAF9F15A4 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 328BBE5126BD51C38C72885E74CECC6C /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + 32BA8626C355E3F583E2B5DA2914EDBC /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; 32BD5AFB9D2CF33C5166AAB7695AD8B2 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; + 32BECF54AA22568F6715375280CD41A9 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; 32CC9D017DB6C7A3550D95D367BE7155 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 32D3029877A397EEA448612A552EEB10 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; + 32D22A609AD24CD438DE5B86E343B199 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; 3312D054F2CC88795612F8C6BE2C20D2 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - 3320D4B37DE3C86CE3C1F4AFCAF5A616 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; - 332993F348D811E714AE62A7A56CA335 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; - 334AF8F9613F4B6C8ABE9A99ABD880F8 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - 33544A0943E76F42E35EA60471DA58AE /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + 333DF5C8901C0CA3FA13054B53911849 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; 33653E86EB98AA1A2E65EA48E08B3257 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 33868CCAEA36C4164842993DE0A7B7E2 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; - 33B535A3855FA08AD42DF5E230A14D3D /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - 33B9739D66D2E280DEBA2944F9DF3BD2 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - 33BEDDE0314218C66E40B3D6D29732E0 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + 336C078A7B98B53A4C922812FE46E0CE /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 33726FC4E302F309408E8B098042A11C /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 3376AF168EC6C13692DB1F130CC363EE /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 33801C7B0C94887B9DF660A737E3A1D7 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 33896753230233229EE733A3279E2123 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 33992860045FCB2FD0DD2AE312747C65 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; 33D77B6B010AA1DB5A776730EC6CAC8C /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = Firebase/Core/Public/FIRApp.h; sourceTree = ""; }; - 33DB261DD6E39B8C103A5CA33F90D5E7 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 341248537B532E1C3BF8A28CEA019E6A /* GDTTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransport.m; path = GoogleDataTransport/GDTLibrary/GDTTransport.m; sourceTree = ""; }; - 34231E785B8EE1A10D7C90AF0E309E0E /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 3469FCFD202AD0C2E94045784670EF65 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - 3476280344337B12715F107BA879563A /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 35261FDBE3E56F6EA599B8A3C36E2A26 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - 35884DAE6E417A457FA36C8BD33FDACA /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - 35BC20407CDBBEA1988558AE41841E7B /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; - 35E2A69C9F995E00D6C486A93B202A6F /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 35E5B4F1DC5C89F0238898EBB3BEB431 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - 35E9912AA4787FB7820E69B86B7A5180 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + 3425B1A3477A128CFCFA404A0D5EC6D4 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 34B382897FF1C7E4442CD9DB771113D0 /* RTCIceCandidate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIceCandidate.h; sourceTree = ""; }; + 34E6B863B3AC076AE6776A7745989DD2 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 35726B6A07A73B507FEE651DEC60F73E /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 35BF9A3B2D41865C2DCC677B1B7D4C11 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; 3601E287D42AF8BF9D590F830354C37B /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; 361ED24B795D598831F92950AAE3106F /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; 3622A654DCA94A9C868CF3777A3C171B /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 363A044359A7D9BE5F2DB4F5D8992CEF /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; 366A71480716A7F4AFACF4B7A4B0F575 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 36B7055D00B6746B8F34281BC16BD73E /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; + 36BD82CCC46004B73463CCC60F5EE804 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 36D564D5DE5EDEE645A65BAB86FBC19C /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; 36FAE3621D77782DAFD73A01E76FB8BB /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - 371674DF59BF4D8C2E4FA2F9F98BAA03 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 370D2F88CB961DD574D872898753125F /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; 371BCCE6DE6C1C5F6E933AC8F0CE13F7 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 3721E77C21FA3733E371C4BD0D42FDAB /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; 37232A41056D9A38B04FB3C9A5F784F6 /* GDTTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransformer.m; path = GoogleDataTransport/GDTLibrary/GDTTransformer.m; sourceTree = ""; }; + 37243F9091F90AE0B46FB892009A6CD2 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 372AB064334408A4505FF1EB3D6740F5 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + 3733FB3C7C5D33FF3292EC67BA954C02 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3749C2745107C4FFBD741432934B704C /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFileReaderModule.h; sourceTree = ""; }; + 375230B356E2C541FE24BC6A6841CC22 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + 3768B1EF49AF63ECC0ACDE8E85C78DC2 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 376BDC5CB4EA5246CCF721ED6D100A73 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + 37A2DE1145CB7CA20CA5B6D7186B83E0 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 37A4702F0BD62D18A312AE3E9EFBAEB7 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; 37AB3E1CA524C470AC4217C4A2146926 /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - 37C6E695D617F57F11346E53F8ED8EA4 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 37D1E62B7D254BEEA42DE0A8C46EB77F /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 37E4A75866F5A17B9C02E9D166ECA7B3 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - 3804A8ACDD0179C51A480AABAA57BB15 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - 3823108F714B4BE450785361710C8853 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 3835ACF70A6CE9C3B96F58B25FEB9603 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - 386FAEFAAF857FCE9BCBE455D79BB0DB /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; - 38C725B1734D0EF7CE16B443D117F511 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 38EF904F5756CA741FBA66E2E53C262B /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 38F86CF6326F0EF472CDB99BA636B7C4 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 3901A8A69B13951CDE4DFE263A071E26 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 390AC4EEBE54FA80FCB9B359E00E92B4 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 37EDC5DF511C5E1918227BE35DCC17A1 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 37F5F4EABC6487EF44A15062C2473B8E /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + 380CCB205AD58D38D896D39336307311 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 3834945D9DC81E20AE13AFF8520282FF /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 384457842B583372BAD8730A0FD0DB1D /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + 38D2FEF51ABFB258F9CA4B9F7530CBDD /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + 38E830C3866F78F3031D31ED26822112 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + 390974FE43F3FBD01FA46ACE3064E00A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 393528B515519041E4DD57AFAB7E116E /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; 3951DE70C23C86F6998FE17870CE31C2 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - 395B14AFCAB77323B9CF0B090F8000BB /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; - 397813083C03D24C146FD71D85A0BB36 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + 3956C34D8C4BA22ED3459FE8D97D297A /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 395A0BFFF15889718930EA127ADA554B /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 39748147402AB8AFC6AF4CCDABFA7AB2 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 3981FE3492BC1794A682382B972427BD /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; 39878CFBE7B41C682EE69941F7595C0F /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 399915D00503C6D0B4EF7C4432A3DFB3 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; - 39BD66D976BF106158EE3E0DCCE9233E /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - 39CFCEDC32E2765981B7FB6164C92798 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3A2B325A4C80364F2BD4BF28F6F5E273 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; - 3A35075C5AA64CF7A4B370A4C0588AE8 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + 39929E6CBE422DE78275127B70818286 /* libreact-native-video.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-video.a"; path = "libreact-native-video.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3994176AE319D8D998091943A8588364 /* RTCAudioSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSource.h; sourceTree = ""; }; + 3A2241DD02FE8DE56CF995B78DCE250A /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTGIFImageDecoder.h; sourceTree = ""; }; 3A465BE307F659E6500E34CBF82517D7 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; 3A66D67F0321370D7E120BF270FD2768 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 3A9B825D5894FC47609BB2CDADD60C21 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; - 3A9B8F98A954C6D4ACC59140948DA04F /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - 3ABBAB4779459D6EA7C2F31F57AD587B /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 3A96FC1B62F94E5E3B20127A8B413E82 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 3A9BCD8378FF46659F9EFFDCBECCE1B7 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; 3AC5E071A78F24A2A29B9B0D6BFEEAEF /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; - 3AC76B2B26BF4483305C2ED328BE89ED /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 3ADC7F0E3D366BF82C463A156BC27FE7 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTGIFImageDecoder.h; sourceTree = ""; }; - 3AEF2B042F084C4086FD9B65ACC7FFFA /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; 3AF33AF7A1FB6D5858DB650F2BF7E98E /* FIRInstanceID_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID_Private.h; path = Firebase/InstanceID/Private/FIRInstanceID_Private.h; sourceTree = ""; }; - 3B52CEEBBE65FFAF8F56911DE2E6E03B /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - 3B809079383D97B2C4BDE53446F051E3 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 3AF5FAD5DEF8F8FA2EB49C9BF18DDCDB /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 3B1620774B29656AC3E1A71D3FDA84D7 /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B52CD6C85B79F80172D9379272CCBA3 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; + 3B6D7A7052F4379E8962018996E0909B /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 3B77D2A8D8C6766652C0F147D7489383 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; 3B8C02DF38AEA9FC02589CC6FD1B37E2 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 3BB5F9180B71069B72F9C17E8F4BF405 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 3BC0EBEE3AB86A5AF225D774F7AA7EA8 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 3BEFDAAC8A49E5ED54A5D89285CA462F /* JitsiMeetViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetViewDelegate.h; sourceTree = ""; }; 3BFCE6CFFEB93E37C6C3A066D694052A /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 3C00D69401E0480E872D8829DC7CB8D4 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 3C005841C0FCA76E6455CB29A76BA798 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 3C05ECB9067AD66981D934993D596045 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 3C0E9EDD098A4D02DF3CB6D72A0973CA /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; 3C338D2F98F5FA139C28C25640E7726E /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 3C45645B442ABB0BE358A84C461CC1B1 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 3C8404ECC73751262F66E4C0F15D5FBE /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 3C8672C3D373E305FF4E29895806D011 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; - 3CA734D088EA41A71296AB0E0673B8DE /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CCA2939DD0176D257CAA9014D238A1F /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - 3CE94CA2B694C389FBA13758A135E71B /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - 3D1075DE43CDB5C7CB5E41A434FC56DA /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; - 3D33CC85AE118CE451FA72D54C1B852C /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 3D37ED9655C0AC612D334C2CB60EC0FE /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 3C5B5C42F8458B9CEF0F6E93BC0B9E22 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; + 3C72D0A8A1F3408AF7367132D13E90B1 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 3D1F49F66EC99FD93D741D2F5913A303 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3D3A46F9CCE8CEFF84C4C455EA782C9B /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - 3D48761960C687A4054FAFC604810775 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - 3DAA212488FC35AB487CF1B683188AC1 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - 3DC38E9781516D6D0FD3331E92132357 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 3DE007E20FA8C78A0948986C51865DDC /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; - 3DF59EDC13D03C66AD48DF06A86E0C86 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - 3E02A24E0E1DB031AD667AAF4F45AF40 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageView.h; sourceTree = ""; }; + 3DB600F0912A7A471532BB4EDECD8773 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + 3DF90D72D6E71920208B8AE8BDD6F721 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + 3E095BFA72745BB4B2699EA642F07B49 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; 3E2147BA514227BEB53E26EDBE8254DE /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; - 3E2B57281220CCAAD33A506549A892A8 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; - 3E37747181D09241DBB681FED86A15B5 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 3EDB6EF2CF018630B5EA31363CD5C6AC /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; - 3EE39B31FB98E11FCF307DD82F1BCC98 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3EE46604DFA553F20F83A6700C8F6E6A /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - 3F0B6E9E295CEEE2F5553D3A44C9E5BC /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; - 3F1E6F2DF676DC3C64AF73781B4D6FFD /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 3F418E0FFC892AB2EB5898201E89CB31 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - 3F57A8D2F3D76B8DF5B306BB77E540A2 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 3E4636D974A866F68E6CCD7400348349 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 3E60EA2F7960FCB3D708426E1757CB59 /* React-fishhook.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-fishhook.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3E7FF38617E92F8FF066DEFD379E72CA /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3EA891633FEDEC311D9EACCF97876BA6 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 3EB28381573490FDCA535EC23E01F503 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; + 3F1AE4CEE24B3064F810CD6716F50691 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; + 3F5DF676496EE5904C71145919DA9ABF /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 3F640EA131E097ADDCECC4F5DAB55547 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 3F663AC9DF4A7F5C59D11A3631D03905 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 3F8D0A17FC7CBE3B7CC5ECA0B8F25E27 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + 3F8EB5B8A279F66BD3F7BCEBE25D0BBF /* RTCMediaSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaSource.h; sourceTree = ""; }; + 3FCE85C0A490DBD5E741CCDCBFD25AC8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3FD209DA7BCB571974AB71AAD6EF43D9 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; 3FE0430BB8897862A9EBDB1A2FECD649 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; - 3FF4CFB59F6279E2DA79ACAE79937C16 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; - 3FFBB81B304B4AF910353864745EB168 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - 3FFDA552B1986DC6555609F57592BB8A /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 3FE75D7025F932EA0AEE68A5222294E9 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 3FF0E349C9F11E17F62B6C7C11391ADB /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; 4023E271B4A414D1A43D2BA7B0EAA00E /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - 4047439D1B1C355741E5E13B770189C3 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - 406386C3CB15CABF8D09B9ED96B411C3 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 4037A75865A518439474ABACE494CF97 /* React-RCTWebSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTWebSocket-prefix.pch"; sourceTree = ""; }; + 404244D3A8D555D5D4E96BB69B4B9DB7 /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + 40462C1A2F1D4A15AA4409724DE139B4 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; 40679C865AE0F12EDADDED081DA55A5C /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 4083FFBE543F29BB03F3DDDA79273211 /* react-native-keyboard-input.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-input.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 40C02CCDD7E0A359F3DC6F4EFE39D145 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; 40D86A35C64C72911FC247AEB64044D1 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; + 40DAAD6C33D844CC2B374D9587D8841A /* RTCVideoFrameBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoFrameBuffer.h; sourceTree = ""; }; 40DE467A1FC32C3FECA2F64129393790 /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; 40FDE3CC78432E4EC36D860A75ED30E4 /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - 4107F3D17952B1844437EF41471226AC /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - 4142A9D57093AD7A146D02A4B8A203FF /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; - 416430EA4704EA4EA18C0A8E9A803ABD /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - 416DB4138D5F2BE3EC1BAF1FE6BFF9B0 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 4176C6CF3ACEAF2DB8B96F889E048483 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - 41911965DDE207F1B002F4CF8B6317F4 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 4196A7AB8F9939C9ED867CD59972DD67 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; - 41D37DD2013C63370E9457997045B36D /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; - 41DC749D2C9DF562AB454EDABD926FB6 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - 41EEF29D6FFF8724DAE263CD99B93C03 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - 41FED27F378AF79713779DA43921EA2F /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 41107D755DE9A8D7E7E9905FD89486FD /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 415106B84BE8B3B374D54B9A254C6B55 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 417513EE6AE0E51AF543D074A8D86358 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 417F72D77D57E80979FC1FE895B37C28 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 418AAAE033F91FF1AAAA168A66CB5CDB /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 41A3CCA896AD5C431BEF13C0A0A8F5E1 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 41BAC99F94375BA8725F1EDF55D76F5B /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 41D1B0B8DAC1756964B592DB957E3B9C /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 42076511B6CA8354982B1E02FA428877 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 420C0C04F3AD35F2F48B537FA82DB6CA /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - 4224B07DA506BC860001A680740B75A2 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 42509991680C6FDDD10FFE22F9903C50 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; - 425CC23D047156D34C777C563EF240C8 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - 42735D69D041D4BE85EC91405E02FF09 /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 427AA6F00532C4BCCA70E1AEE24B51BB /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 42142C98D83FB3FA719077E99E300D9A /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLinkingManager.h; sourceTree = ""; }; + 422BACE03FD8BEA099D67A3084258ECE /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 4254115BFCD2C5451FF94075FE2340CA /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 426B3042968279100CBFFABA3250F474 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 4289A253D51A77E57E304ABD9B76AB59 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - 42EB3BA6DBFAF30441E914755CE66739 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - 42F26386EFD752B77424A80EF7CC5BFB /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 430D8C2FE06F2CC7B8C16AF0EBADD28F /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - 431D39B0C9B20FD54FE3DED0AFCAD858 /* React-RCTWebSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTWebSocket-prefix.pch"; sourceTree = ""; }; + 428A1D327B3327C99AFB3092BB4A1BE8 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 42C5DBCBE25BE6EDD3E237CF118D94DC /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 42EC890E62525DE3B408442912AB1079 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 42F69A1751A67EB85E542EAF2FD6758D /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 4329C88B160FB25E747B65E341A2F1BF /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 434244749BC458AFB264A6381417A25B /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; 43438266D6833B9B80862D52E641C88C /* GDTEvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTEvent_Private.h; sourceTree = ""; }; 434D227E739DDA39417063C143A8A051 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 43566688A2F6B2F8084C9A8DA9F22181 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; 436AE389A1F083361C83674F71CE60FC /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 436F250586F71C1E0ACD295CF676BC8C /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 4389CE451A27C75AA838DB5D66747AAD /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; - 439A4B82C552FD6B1A9C12ABF96D3164 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; - 43AB39358F24B51E7FAED99A4FE105C3 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - 43DAA951C66CC7C457F38D7FCD5B0049 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - 441556D7A9CF8E81DE09D36CA7967F5B /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 441C288FC0F7C3B684CD3D568C937A6D /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - 44209D76FC667348BA5B0A54EFB64459 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 4424C3577D61E6ED424D94537483105C /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; - 44600E6B2185270621A456725F7F8206 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; - 44B9203ECA367EDB18E3C0F4B51A4D58 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - 44BA23DE3207220597C857607A81DA0B /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - 44BA8720DB56C1CD1817CA39452C55A3 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 437DF619A56EA18D24CADBA5CEFF64F4 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 443357B49CD19C73D7E93F8A3201199D /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 443C6147350CAF89ABC861B9462F6B68 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 448447B63D65ECA2DC9F7B92FEFC4319 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4499EA7D87C44ABF1458DCDAB7D3AA70 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 44B62C15CF4A2A52E3565E5BFC105E3F /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + 44C2EDB401C1AB4FD4B66BE4ED480C3A /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; 44C76917613733B052AA6184773C735F /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - 44E0238B51B8FA5E394347513EEB7564 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; 44E75BF06105F11906E395759D1B7F66 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - 44EF683DBE153D64045DABF91DF618E1 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 450171782DC0F3BA8C24E47604F4B3B0 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 451AF79F46F083B22E4B8C47FC32D436 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 45227E27EE6C20BA67A270BB42CFBFB0 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; 4525C0A2AA5C85FCFE53C72A95B015C4 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 4536FDCE294E22E73DB5B40D37BA54EC /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 45C6372A5B49E2E1FF06FEEA2155BDD7 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 45E3815A68BABAC236A080E04345B268 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 45E43B0DF9CA11B47CACF6EDC361606D /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; - 45E4F5B5270DE0FC81332131F1DE0F85 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - 45FF082256F72E6F374174A00005B4EF /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 4535412137C67A162B7B8C204F21C292 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 455345707B9594E55B61072B9BC26AB9 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 456416B87038CE170CAF2CF1F57AC055 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 456518C68EA541639430AD19FD27AB1D /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 45EF310376CE49CB4AA45FCBFA430D37 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 460B74A5C0A48EDD1D0BC2AB02A16BFC /* RTCMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMacros.h; sourceTree = ""; }; 4612629D5516E4E170C410A4783836B7 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - 461609907A1877410506E30B95C29227 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 465EBE9FA967B134748C301E7E1287B8 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; 466AAC20CA13B094A23729F39FCE7B46 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 471FA1EDF6DFEE79ACAA43351E30EE1F /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 46A54367025ACCCB32096FA0B124098C /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; + 46ADA497AAC08B11E14E1F4F58BE2A45 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 46DAC266A6FD08A19FDC690C3A14F352 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; 4733AAE8C450C92BF1A189451161D256 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; 47387B03B04A5BE8B9C465D938238A20 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 476EA94692D543A7EB2CF88846EEF69B /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - 47A1FBCB4AA74BDA0C9EE869E95E12B2 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; - 47ABEC27B4EDA29C63B4EBC64B5BA4B5 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 47B49192AF0295CD4E82703CC4F96C2C /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReconnectingWebSocket.m; sourceTree = ""; }; - 4820FB40463901FD7E7A334DE02FDCA4 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 4742D70E80DA5AFC9C2AEB589B88215B /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 47BF8824F14E5D7F7AD17F3AFD032E6F /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 47C74627B91DA291B298A63A8C900A47 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + 47C91112BAFF2349CD154E89B5A14061 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 47D3261B2052D59359A491D485573B3D /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 47E354A7F3CF3DCF8544DC60EFFD2B53 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; 4847B482EFCF00D61052680F980A3696 /* GDTUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploadPackage.h; sourceTree = ""; }; 4857951B8BEE52580B8BDC2812DC32B2 /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; 4865375D89B483266789A58AC5050D1B /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; 486C52F0584E1522A2178F6078147EB2 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; + 48721A6E7C8C85D6419278A858BCDE17 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 4879320CF6BE6C0D063B667FE9A18098 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; 48866415580354FBF873DCF0211B4C84 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; 4890A430C0D350B24542A4C7BE7CF8D7 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = Firebase/Core/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; 4892E2CEE10C1961753364F628FDF10F /* FIRInstanceIDKeyPairUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairUtilities.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.m; sourceTree = ""; }; 48B371CB114CA324DEE1CE9661DF246F /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 48CE6B4E0389DFC22523E98965AC6202 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 48C193AB505E7D73550B8309D80B6436 /* RTCAudioSessionConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSessionConfiguration.h; sourceTree = ""; }; + 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; 48E310BCE6CEE84413B0F6F4C8E4D4F1 /* GDTUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadCoordinator.m; path = GoogleDataTransport/GDTLibrary/GDTUploadCoordinator.m; sourceTree = ""; }; - 48E65172060C29140E087D4C009FB17E /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + 48FC4EC24685FDF904FD9467693CF7CB /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 4935E19EBD256BF18F96A1DBEA8444E1 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 493DA36EF27F0AC1662EB0FC06A91074 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 4947D5C4E29AACBE0A9E8E2A8B476931 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 496BE24B5C97257D682A8ACCDCCBF9DB /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 49958BCC063FE3B129EDDB0730E71D3E /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageCache.h; sourceTree = ""; }; - 499F079B5DA2D74497540222B92B7657 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; - 49C30D27A3C6093539EDD9027961C225 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; - 49CCF9E4AADC9767285E3B9381E2EDF4 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 49DBD2947B82EAF484EF348C380C212A /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 4981564A7F7628CECB5898FAD352FCF0 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 498D4A62328D5A0D2EB1953FCA9D35B7 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 499D27264EF29DC10DA9F2C47227627A /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 49BB2E12539F31E896CC296068B5744C /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; 49EDFEC01407C66949E4CEDEB9038890 /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; - 4A0B3D1FABF28666E78CD69FD13BE8F1 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - 4A40CFBCB4C54B5CE74D2BDAD70A3DB4 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; - 4A4CAD0EFE35D1A9FA2CD6373FDEA1FB /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; 4A785C0A08BEF4A7671FDE7C7153BF55 /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 4A7BBCE8C4BD6F6AD850EC71FACF6DFC /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 4A90C28B53EF65FFA16E8AAAA81E3162 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; 4A943E73F3FD098F409C63811FCC88B1 /* FIRCoreDiagnosticsDateFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsDateFileStorage.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.m; sourceTree = ""; }; + 4AB95C45B4D52F822E712B34073E57B1 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; 4AD75E49E586BA3AC46DB981A0883F25 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 4AEF18248488CCDC798B2516DA90D5BC /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; 4B148D97AACF0F13E77EDD6FD6AB019A /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; 4B1BA1048188A983B0FB46E3EF3EFFC9 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; 4B245045CF92F0E6C10BF9A8D1AF8395 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - 4B49525413836CA0A4B3429A065F0A65 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4B628604D7A3FEBB879E0FB704118CED /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4B6CEAEC26EF43D22FCBC5C170785890 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4B6E296AE37FB7F2EBD15BCE44A70CD7 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - 4BFF973C124E8B4565E4200E1D8C576C /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 4B2EA136497E33A9AC0A1B21C107F89F /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 4B694AFCDCCEFE0DADE91C87E3E47311 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 4BB2811C4490F510BBE8BB3B10F6D5CA /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 4BCF26E3672EDBA23882856B903F4EC7 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 4BDDBEF28482CFF061E51C62955961B2 /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 4C0DCEC8BFB86E14D2C370E114885266 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 4C110A8E4900DF59E675984EB90690B9 /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4C1BED2E17E1566D858042C305437ADC /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 4C2AE8294368CA46704CA61C84EA43DB /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; 4C3EAEE65CDE17A9B4069549BC2EF2DD /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; - 4C6A3A1962CEE764D3B25BCA186B34E3 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - 4C7883822072852E66EF6E3DC54D7A18 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4C5EA95BFD895411F657F623558D2AC8 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 4C7232FFB86D212C9DD1B39A2060DF18 /* libreact-native-orientation-locker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-orientation-locker.a"; path = "libreact-native-orientation-locker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 4C913B6FE9B8FEE9A151E8CFF9CD6FD7 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 4CA34214ADBCCAA8212B15FAFBDA59E8 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - 4CD6096ADF83502C482B4CB291EAAA44 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; - 4CE3867CA3D639A6CDF955E16ECC4E1A /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; - 4D1B2AE2B60CAF2061A95F64EEBA0E6E /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 4D2D8D5F5EB97A290F064C371CD32EA8 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; - 4D402537EE668AD4750481F17036C19E /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 4D546E1507A3A3E12B31616E63CCE9A3 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; - 4D737FFC728496F3A684464D914CE2B0 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4D9C6341FDAC19E5535D035C9903CE34 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 4DD5931CE4B3A6347501D2A2BC95B0F0 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; - 4DFD8CCF44096F822716524A528636CA /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; + 4C92798D2D1D5FB1EF9CAA74494509B8 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + 4C95C352DA802B3BB59B579F0C452227 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 4C99284298F3AC9BDAC2BFCE0CA151F0 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 4CABA137102F16CCEDC1977440DA6CFA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4CED1C82A9058D8FA12578B0C16339C0 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 4CFC24095D62611CEC3E3EE24D91CD0C /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + 4D28BF6FF0EABE68CA3A8AB6343B5624 /* JitsiMeet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeet.h; sourceTree = ""; }; + 4D60EAA237DFE59F3591370907DF0B9D /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 4D970391548295373C5BE1BB1A61816F /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; 4E09B42B565466629F7C364D9DA2D8CC /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - 4E1242ACD95D4FE940676C04201FA5BA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4E3E6BC054015A601FAE38C64CC8EC2E /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4E22282651D6D0177D40817A41080173 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 4E22F0EC3F0C26A81ECE4A34BA2C8DAC /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 4E2F94448BD62A7D8BDCF0E561A5CADF /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; 4E48C528D89C280BD3AB34ECF081E506 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 4E77753674C1F425FE523084B4E3FF6F /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; - 4EBA0F5B4D69D46F4AB358ADC9E76D3B /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 4EC8FDF7BA2604E5BFDAD7BCCA15BDB2 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - 4F740C461439EE44356AACADB21CE2CB /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 4F81775F6BC346F50DD5769332E5C42E /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebSocketExecutor.m; sourceTree = ""; }; + 4ED70F9394E98E77BFD97373B58EDC92 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; + 4F00F820638BC4F291C06097E1409B2B /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + 4F33EEE4847A0B5C61BE4011BA4744F0 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 4F511A3168E3A07586ADDAF286B53C38 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + 4F5ACB0D2A69038D4236075BD23C802F /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; 4FA7C78F56C449B41A76D32AABA514DD /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - 4FD29D0CAC629DD94B999810B589DB4D /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 4FC82B5B1A0236F69A69409D79C1E958 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; 4FED780AB8B230BC37FD0DA6B2D79D9D /* GDTTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer.h; sourceTree = ""; }; + 50015392CED4F429DFA7A43DB188668C /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; 50101F492CFE7EB14B22368701DA6D02 /* GDTRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTRegistrar.m; path = GoogleDataTransport/GDTLibrary/GDTRegistrar.m; sourceTree = ""; }; - 501DA347A5F15080B7D877AA7572C3EA /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; - 50571D14DE17E8C4D71FE098BE1935BD /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 505CEB10AF28771ECE84CD21A2478A56 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; - 5097D6979E30EE25A2698929E9306AC5 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 509DBC6F4554CE9568DF6954A6F4AB77 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 50DEF2587B4EF77A9EB0C92043D9805C /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 50304151A42A116EF5ABB4185C9285FB /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; + 50318ABCA6A5C8070198468ED503814E /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 506F7D6F7DAF97534C89FE3850C53DC9 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 508E12F1266054D661107D8E9C5B880D /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 50E63AC2F46D8F4EE6F947CD3D76B190 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; 50EC88EFB8C300264C2A2020EECAECB5 /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; + 51048B88163DB56478612CB2E0D18977 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + 511C13AB1368E84392E76E2C090D0B44 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; 512AB02EFC3F106A433D1F8864FAB5E6 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; - 5151FEA6594F5FFA08E776734F13A89D /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 513DAA47AE1BB5C7A2CE2E878E7145AC /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 514471170F50C4E5FD985EFFAB396A06 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 5148E7D8AACD8EF66295E6D371040526 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + 5148F5CD61F3D713D87AEDDCD967B4AC /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + 5156F0C4F87723F264F525A835C8FD7C /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + 51671392270A0741A3FD360EED79EF20 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; 517AAB99067CE5090E7DA2368B77BE6E /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - 517F50C1FEB36263CFFE0B05FB717754 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 5186014C1CA77744BDA142E44E744535 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; - 51E86FB4685128F38C089AA581D4CB52 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; - 520FF0A055EC8BF310DCBE6C50255CAC /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - 5264B826F320534F554663C69EEF5F0A /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5192E192FA2FDB1BCB8F6B7C773C1F81 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 51A40489CAC55939F20EBAFF06E3C0CA /* react-native-splash-screen.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-splash-screen.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 51BEE34DA24C1ED0427C0897FC68DCAC /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + 521EEF0EA5C39DE2420E67CEA6A856CA /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; 527125D5A4B8AC39BBE2295228318B0B /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - 5296C906F87F61CE96F23FBBDC164811 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 5297A2E8743907EDDD47CB94AE4378B5 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 52A41A09B5C123AC7E1D25A7572213D7 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 52BA1C7C25BABF825877C2B9035615A1 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 52CE60B0E64DB7253508509BB356157F /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; - 52D4902256421157B71FC68FC0D4A2DA /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - 530A3EE94F702B43BF529A5FE498B670 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 527730EAA6F1800DF3DEC2D8DAD638F3 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 52CB7F9FEF65585EA2043D80B281806A /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + 52F78D65F8F0C11A200896B1C379361D /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; 532A3924AE2B062FC4E6FAD7612CB25C /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 53342E2A1EF652A24451E5D8A22D4202 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 5346E81D903AF245D60C679DFB544861 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 53497E63A971D6E2F6A477B7CB25200B /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + 53452575AB7F2DC8DA4C08DF45827CD7 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; 534B020E4ED8D612FD4EE4FE6597FF40 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = Firebase/Core/Private/FIRVersion.h; sourceTree = ""; }; + 534D7ACB0893DE48DB96946D0824C62B /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 536FDA7D29F9A2FDBD445C44C7D3BE01 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 5375A66F588B12C7FFC3D4096C9121B5 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 5396094C894A84A05ED26CF9D039DDA8 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - 53AF0403E5F73506EF6E553FB417335F /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + 53A154975B4D4ACC4517EF50F7D90D78 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + 53AD96F742031216D199795FDCA006E6 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 53BB7D6F0EEEAC3E41B04BA7FF236BFB /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + 53C97244F03E5FFF4AA21A33AB0783EB /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageView.h; sourceTree = ""; }; 54133D9F4117665869466A5C369D41FC /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 5419DDC7015AA0DFA1556ACB72A7D332 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 542BFC98A38CE1BDD075868FF6AB1B24 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 54597076F8586D36ACFB291640533A1D /* React-fishhook.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-fishhook.xcconfig"; sourceTree = ""; }; - 54619319C6280924DF9C1E088E23CF84 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; - 547D4BD65F5EABB7DAE0E723E8192480 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 545580904F78D61C86BDA5B749BAEF46 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 545DB21567395C5939EDE45901D3A800 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + 54705F3ACBB1A6D61D7A07DE0010EF10 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; 54BD948E35981DC92747E6BE93881C75 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 54E9EEB32B05D38D26FFC86255E22111 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - 54FD29DE85597023B8371C7A325F50B7 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - 554D445A21A9ACB0D1499C0BB89F3EC8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 5566B3A2B9C002C2981AA596A5A587C5 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - 558AD8A2E3ED8C86D8302AB46DD0F3A2 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + 54C91E0DEC1D7C7AAA50A225F1D2D48A /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; + 54FE949739715B45EBFF179A5AEBF1D8 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + 55AC0E8E71E1D76C815A2B44D9EC6795 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; 55B3F61F2EB9BC6E05666B3449736569 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; 55BB3DEAA86586C11D4ED2FEB26A0794 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 55BBBF34499E018DC92B25F1D593B47B /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 55C552C757D667652918548D83650C25 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; 55E1AC173553BFDD838D58A54A2D1E42 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 55F10AB43C1B7496F6A2C2869C8F2D17 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 55F9E9C29B4DE14CFD4D20440F9D47A8 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; - 561658D6DCE6C96CBDF51437D09BB039 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - 56748298AEFDEAC5A13A5E58FDE1B660 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 567FBAE3B48C58EFD5F894C3340CD38E /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 568452C2C96D11263A167AC93E048422 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - 568AD2C7E24FB8E9F91AB5392B5732FD /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - 56E72A33A710EB333F582CCB48F632EB /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 56FD53C48C09DBCCF50541498A0D5A6C /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 55E6F0E2607799B0AFA92D955FEF2C41 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 567C968BBBA6E8A3948D136C7A820568 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 56ECF21D11C9C9E4B6DE55A85E0F4E31 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 5705572E9CE4F39CF188596636AE7BA6 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; 570EC5C510253E37038C8008EE1F4FF9 /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; - 57133A36731577FA629730FB88C32D9D /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; 571450E9D18ABFBBE1E0C3790D7FB52A /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; - 571DE2951B52C0AB1AB5D42DF89836BF /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - 57494E30E50D5837D8DAA330CB6BBA32 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 57297CAB9BDE786F11339BDB0D2F5E82 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 57AA2A2E9AA631CE79A1AECF85CD0244 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 57B14929965F17A9C69B9A87B7E036CE /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; 57B2CC75CA8E3F32098308781F12F843 /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - 57C30D0C83A00ADDE026FCF6BF3140A9 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 57C36AEA8BA26ADBF17975523F9F8F63 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - 57F7E304891552DD191194CEC340AC8C /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 57FC1D76B397708249A7B71A087FA21B /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; - 57FD56D95DE62855D410B3E09C1A647B /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 57B618701E6E1DFB2D6766554EC897DC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5802E78F7C7F16E97574BD9A75E4E7E1 /* libreact-native-keyboard-input.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-input.a"; path = "libreact-native-keyboard-input.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 580CB2C1FA2261CA43BED95F16C84F76 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 584906AE95C9BBDA7D0B29721858CCA2 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; - 586F8B6882FB64BC86BF9DEB9D58BF8D /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 589FF376BD101E878B028C2FE67D1328 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 581F2D86DC66595A5704E34AD02E3F52 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + 582507E561AD360A80FA735EF50BB2BD /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 58536C19039F1FED7A93DB2A085EE753 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5854841CAB4CD463DE3F4F1DFBE088B8 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; + 589F15C9034EC65221895322C598FF48 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 58D7F3210969F6AEB00C5D20B282135C /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 58E11D269DC47DBC88C7826F0545CFFA /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 58FE1C5101D64A38EEB0E2533961D856 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; + 590684422CF24F904D23E61DCDF416DF /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; 592BB6B8234B8E4CC08CD548972BD2FE /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; 595BF48F06D1D9107E6563EE99FCFC18 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - 597A092C9AADE755D202F8DEDA4F09A9 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + 595FA8DAE4B0E00DE93A8D96F0C31442 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 5973698F85A9B2944AF7A3EBCA20CD7D /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + 59DECA80C4EE932F2FC1BEC18996D01D /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; 59E71DEE276ED052E4EA48DF3D8B82B9 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + 59FF9F743F83CEF089453F45ED782049 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; 5A1175049F88CB8B0F9A99BD424844A0 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; 5A1A7607FB0F59CB4D9CA4137D10A849 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 5A1F9B7A6504D551D8E43049A7F011E5 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 5A474E979B4DF15232A6D3AB4AC02148 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 5A488B1D7FC3E575BFF154BA1426F770 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 5A4DE8C9C9112596CBEA853A84555850 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - 5A5F8D1A7D44B13565A9FFB33E0395B0 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - 5A77999B1B54617733A5E6BAEF4FE6D9 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - 5A80A433C1DD5901C0B8651463363298 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 5A5E2A1800DCD8F68FBFDB875DECCE63 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5A706FA12EC634053D401167E5F064EB /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + 5A7A38165C820864E1383943E18904FB /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextAttributes.h; sourceTree = ""; }; 5A851005AF38D640F29903269B8A7FE4 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; 5A88FD8114BC9BCAEA646DD2C5C88977 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - 5AA0D00F9D3532DE1FA7A50427C1686C /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 5AB02082821F43C285C7E0688A89ED25 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 5B30A4E7EA86416087D9194ABC6F4CC7 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5B64A04FE13450C5B8900B608418D8FB /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 5B71358F17AE9A1AB82FD03E1BED0957 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; - 5B89B1D14136A7CA2628804BE9C56486 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 5AAF020FD7B552F5CCA26EE710CA3A63 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 5AC309036911C708E5779FB6FB6BE88B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5ADD28D135984B46CFF58DC13719C0F7 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 5ADE0BE6D3B650C64B1DA7E8ABDB6B49 /* RTCPeerConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnectionFactory.h; sourceTree = ""; }; + 5ADECAE14B0864E549BAAE281998957E /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 5AFA056E391AA7A19B7E6B74C5130B47 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 5B3993C4101B711681D6F9FDA64D67AC /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 5B5258AEBECE823E2C2C75AD3A6FD70D /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 5BAD548D6EE72D4DF3AE618B71C60139 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 5BFA2DC282CA115637EE1255F5883583 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 5C13C29DE2089FADD1CD243A263A244D /* GDTUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadCoordinator.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadCoordinator.h; sourceTree = ""; }; + 5C14D076CF909BE6AFB2E905796323AE /* libreact-native-notifications.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-notifications.a"; path = "libreact-native-notifications.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 5C15AB22352ACB1710562384C58F2C31 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - 5C8974C8E1A0C09C0F6D32AEFA43597D /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + 5C27057AF391381E4DE51869FA94A731 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 5C41C5AFAF0D69FDC21FA299665F6F16 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + 5C6E407BD8D86B2F8B0DA2DD577E29BE /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; 5CB98D2DDAE2A55A768A30FDFCFDB9AF /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 5CC7B28E5375132F8CF2F7842AB08D68 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5CBA0727ECCEADB1C9369F8BD6ABB189 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 5CC2D8A41EFF8C5CE700D98B9E71F2F2 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 5CD671CE3FE34A0220E925FF2F5A8C38 /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; 5CE7C17AF0DABC49445CE80EBA378574 /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; - 5D4EB5276A860AE284E153FD2AAC347F /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 5D89BF18E71E72263E8A5D1A12E272A5 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; - 5DBA79567BFC8570CA5FCCF2CA4E0CBE /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 5DDDFA1F336C70571A461FD0A21188AB /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - 5DDE738BFC172477E1469DA768C12F41 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 5D1D9612CFC3F7BF5A5A847A28912153 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 5D52E152030D3F2CC8E52AD8717EF091 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 5D9E56BDE5C5FF39A2FE1F0AAE0D7D2B /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + 5DB7D2EE6D6C47162214B22EBFBCAEB2 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 5DEF7ECAAD5F05450BAB832A516AC698 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; 5E012CF1DB5BB794D9C5E009E1DDFACE /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; 5E2164313A0C0905C5B30EACB4066FAF /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 5E4642A040666803E8013DB341BCE195 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 5E72F6D921E8C03017B8E299745BC2BC /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - 5E89011EA3CC1136B327544F240FBF41 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 5E42845AC8E2AD21C90B304E53D76E43 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 5E6A2EEFCD2C08BC72D51C3419724982 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 5E83D400CAFE9FB8E89E9898191BFC31 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; 5EBA4A6D0EC6B5A642D1EFBD1391780A /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; 5ECE681DF01112622A1E85860849C2D0 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; + 5ED08A6047D33ECDE0B47256700F85DB /* libreact-native-keyboard-tracking-view.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-tracking-view.a"; path = "libreact-native-keyboard-tracking-view.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 5ED8C8A00B509170203FB4A02642BFD6 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; - 5EDEFADCEB7B66C33F4B35E8F4539B58 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + 5EE3632A2415579DB2FB4E89C89EAD1A /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + 5EF4185644CA2A4A29896923EFC76E6C /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + 5F46C27C7CEED7D2F40C44453BB3454C /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 5F5BE4D148D557D39BF287DB9EE55ABE /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5F600EF1C15E8A39041C80B031FD7D3E /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; 5FB16BA3DC25064CD60A2F569316C1B1 /* GDTLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTLifecycle.h; path = GoogleDataTransport/GDTLibrary/Public/GDTLifecycle.h; sourceTree = ""; }; - 5FF7EABBB1DC55B97E644B29D1329288 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 604718BCF2D466A75169D57745BFC047 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - 60512C253821640C58CC1929B5D15C6C /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 5FE031C31C8DAA0D545D0A5C1A575386 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 60625989737D772D3B5D6C52D8F19925 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 606428EC8C93FD3C60C0FD77CFCE5C62 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; 606614A35A3F0F9325365CAD1EDE57AA /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - 6078914FCF772F58293990ADFE5B4076 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 608C14642DC08E74C948D5497FB382CD /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 60934FE549C8F5591B988B0A80CA3BD1 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 60A0EB8011D3CA4F519D993FE79606AD /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; 60AA22BBCFCF2B724A33960D8EF6F64C /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; + 60D86E3836ABFD4FA2C3C4D26123D40D /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 60E891188C809F6BE4A3DDDEBD9C582F /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; 60ECCCC43690D9CB6A582FE619243E25 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; 60F086DA74BF133AD68E714453CF3E96 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; + 60FFBE26273B7A7653978B65B93C9362 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 610B0A128056CC6126A005BAFAA887F6 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 610F587792BBD58CB1FC5F32F1550EE5 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; - 6126CB937F3D420A8BA73CFEB130797B /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - 6130F1B1405BAECDAFB5DE4E15A9C143 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLinkingManager.h; sourceTree = ""; }; - 6173877910D5D01A04CE6640ED9ED472 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - 619240AFCDA7BD6823699E7938D676C6 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageLoader.h; sourceTree = ""; }; - 619BDE74FD22826933F5C8695DD5F452 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - 61A3665D7AA499A81B6F028D51999646 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 61ACB4FC6EF337400DD4D56201E77582 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - 61F704002BED4342EFA64854067A722D /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - 620EF32D936C540EE496B4EA8A7BF65B /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 6171D5067F5D89D772A3929E0CCD4E45 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; 621455A6189A6D813A2BF66B2FB2B919 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 6214EFC1D385FD8CC6147253FAE18861 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 622447CE5B364B130ABF79AFE5A2542F /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - 6235E3CB7F1DBD970C1613DCCA6FD3B9 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - 623663F979020A275D4F2FC5C5DDE563 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 622DD7BE05BA9BC106F0720371AE8861 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 624F1319227376756C5B6B817F0358B7 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 6299B07F20A050CCA97459DE44CE30E6 /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; + 6279F9B7DC062C3DBF782826438EACED /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + 628E51A7BD16C5CFF917D293A4F2BECA /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 6290A14C92EE61380CE53E6460449DF7 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; 629B780CB6C81BC6E3CDB2322C8D9EBD /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 62B6F046023DB90309CEF63307ADD86F /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 62B7661887DE18D22205A3DA41E318F8 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 62B8CE518ECBCCC532E8198A63929FDE /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 62BF52A7FDCA670C0663EEA64E78F333 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 6313C0E61D9004DCF8F6292C1F425FA5 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; 632D89C1E5C1CB57B37DBC3D0B402B38 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + 633AF39CF5DC32F4D43A7608A2416A41 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + 635583FD771B1F8A601CFC718C9E6D1D /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 636B396301284754A0C275A5C8C6D19B /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; + 63805770CE626DEEFDE79A52B42E5200 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; 63AFEED08855FAF445DD96C3C4FFCD3F /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - 63BDC69A9266467B6A572421CF1BE84B /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; - 63C1E934AB2989D7A11AC9B284CCFC8C /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 63CB012032E08EC9F3AC7C1DE73671A9 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 63DD64F26BCD0E6C32AD797E6DD5B53B /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + 63C8A1FC0E44E0A2337E9F0FEAFC2A3F /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 63DA4EFB401FBD831BF7AB26877AB18D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 63EC4C3D4DDABFD3BBED1D5DB0B73EE3 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; + 63FA144522A696672C75B1DD92440CA3 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; 64095BD0B41E161836B45B19C83132AC /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - 648F3D5111FE66F4B086E0F978A46A36 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - 64ABA3879AB446D6747F4DC018C6103B /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTResizeMode.h; sourceTree = ""; }; - 64C2699511ECB924FE3116A301B06E6F /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; - 64DAE394E5B04C3D3AA1B2EA1AC8D81F /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 6433CF6BBB295F0113AD3FD7F278EA57 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 643AE58DFF783D6F5486B3A6D1A70196 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 6455A175DEBF2D9CDEF577076EE70D5A /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 6467636F6C0199E64C6A79899EC14FC8 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + 649B75FC11C456ED266CC9CB2FE4E66E /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 650AB6A4960DB8AB8EC84DAA3B673C71 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - 653D8C3BC42EEEA598A7FC54997D2EC7 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeAnimatedModule.h; sourceTree = ""; }; + 651289D07B86D1F85820BDB4E3F79B9C /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 65AF7CA0A44A052FABA3C47DD869742E /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; 65FB620DC5C3D0E52325F0302200B457 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 660ED2C13AFBB7DD553D728EE6C227AE /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - 6614F90F95753C60B90AEADB62A7F1BE /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 6645C65EFDB2A4DBDDC73110D983039E /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - 664712B592D736AAEB3412716B1CA543 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; - 6659A6A7C9CE77D75C5C758E52482F53 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 6603F90B3CB7C86F5A1E8BF524DEFE68 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 66282CC25CE5CF9867F0DC426FC30091 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 66290E4FEB92BBA08B4364BED2D01DB1 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 66364A744C28DAB70F06227882B968D8 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + 664EB23A215D72FC386F71B8B23C74F1 /* RTCVideoCodecFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodecFactory.h; sourceTree = ""; }; + 666E5990AE8745387C6565AA91A697A1 /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 667BD2DD8232F3B014648070F87D419C /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; 6692124A109C0B6DE0A64CDF4BDCC3DF /* GDTReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability.h; sourceTree = ""; }; + 669B6C6155B1B2999DA7BC703DB0C0BE /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 669F51CD7487DC6338745AC748F00B57 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 66DF2465DCC11C7377F2264B2F92598D /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; - 66F4FF98E9FFF492AACAE02CFFBB2DF0 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + 6723AF942CA689A3C3BD7FBF7226E97C /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 673A6DF628A51A741726FA57E0DACA5A /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; 67425038A4636DD4E5DDFFA80179302F /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - 67472DF8B4B211AA18158D6EB435AE4B /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 674E2248562C9240A2BE77013BEB138E /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; - 67619511CA0BB191FE2A5FB9D03E0C67 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - 679400ACE958F98409C874B5359A2445 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 676C9BD02F9A83AE28758C0480D94D5C /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + 67E4A304656CD956CFF27C72818BEA17 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; 67EE50FC4FC3129AB23E5485B79599B7 /* QBImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QBImagePickerController-prefix.pch"; sourceTree = ""; }; - 6829EB38740D7D3F61F45E588C53DC5B /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 67FD5BB8070EA7B5B950531791C3C78F /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + 681F67F6D572C42798D74454873C530F /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; 684D0A362437383FE39B4A110A68E2D8 /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; + 6850FFDB65420927730207155E0F858E /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 687463618A2B560BAD5BB220756865F6 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 68872F6D5FB850F451DBFCB97A2A7DF7 /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; 6893302EFE047A8E68B0ECEB7CAFFEAD /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 68A47ACD10FE754FB1E501EB6DB3B2AC /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - 68AC2C6E48332E1DDA285292468A15D7 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 68B8A5BF371C0114C6937ED75D230CFF /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 68A84FAF1789DF09E36A7CF9631D38A7 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; 68C5CE98BC85CE82C28A22C9EB015CAE /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - 68E24046689842F7A82BBF175B7B4B89 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 68F3227CA8D6EE005A0EEF320A6AB57C /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + 68F3F2A91FE025FA73D7C552E1DF6AD1 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 695B9E314AAF09959B4E365F09138BD5 /* React-RCTWebSocket.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTWebSocket.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 69681350441B2A06CC6804C52BA2873F /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + 697630C007DF85B31C9DFEB788311FB2 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; 6979F745024E59DEBF6A61E965DB9955 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 698EADE76C455030194FC3A8AE4C4F04 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; - 699C1B32668455A01B0F755AF0C6FAE0 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - 69E190643271A3BDFFB8250E0FDD6832 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 69EEFE2BAAE4E324CAEF3BB83636450C /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; - 69FFFB727F7FBE9732D19330D56CEF1E /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 698C7C6CA8A623FB3A465C8FA0B65DB8 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; + 69A55F4CA75C0DD8E0163ADE7B354A94 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 69C6BA2C11389F5EE6489A7256CD67A4 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; 6A07617C23A5A8F43832309D7931CD65 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - 6A11436ACF363A8BBAD6DDAD84F45148 /* React-RCTWebSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTWebSocket.xcconfig"; sourceTree = ""; }; 6A19CB4381EC8DE430707CC50BC15A1E /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 6A3288D3CDB1CDF50FA4B8AF91569A68 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - 6A8F1E84A233971B23681C11CC3D96F1 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - 6A933ACB6FD67F0F0EE6E1B17D9D8104 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - 6AAF2ACE3FE7E2DD86ED5D32E5150F27 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - 6AB80691416F0BDEF6850C9E16210715 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; - 6AC231C91232C2774C79AC28F94242CF /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 6A6583286B1E5BEC06DD4BF715369E5F /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 6A95EFA15BE9FD78A959B4B6DAA72113 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 6AC5E310FA30ADA42244538FD8256084 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 6AD40251501E1C7E14BF28223BEE7919 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; - 6ADF6B204DBF9253431D5AAB0291C1B1 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 6AC77724E0896F2E237527C17209918C /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; 6AF18EEF141DF5F227AF06FE09036D47 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + 6AFA1A74525A190F680FCB7143F7DBA2 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVibration.h; sourceTree = ""; }; + 6B024A3A6395910ED00711DC5F7A095D /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6B4DC79D34741295943DBA663759ECAD /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6B891842FA76E72BEEA1C138AF1355C0 /* GDTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTAssert.h; path = GoogleDataTransport/GDTLibrary/Public/GDTAssert.h; sourceTree = ""; }; - 6BD49563A0BA117D4E7F798DBE0AA567 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - 6BE90D13C0B3C3F5F552D957B2AF2B01 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6BE9580D33DCF58EBA49CBCE4D2C3792 /* libreact-native-webview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-webview.a"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BA041DB50458A6AC45BE0C895514221 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 6BC889F14636CBC952EE2E086D4A3361 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageLoader.h; sourceTree = ""; }; + 6BF3815488757C28A9DA933604BC6B8D /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF737331995C7BA41E9EAB89FECD1A2 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - 6BFC2A90C723180E6C1E4BC75D02DB65 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6BF8CC7DBA564115FD733324D74A7CB9 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; 6C3048BA25D9C7F05C9E07E5B74D946A /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; 6C4D7FD9F2DCB559C2D75CE9217CA668 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; - 6C5505582A16B6C1A593328E0D8B9AEB /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 6C6ECA5D69D565355314E75E047A0A0D /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 6C59428AA55B9222664D79843A9E1121 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 6C8AD71987E8EABDDA5CBE1979EEAB41 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 6C9F9138773ED5AAF70DA2EB4951AC9A /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = Firebase/Core/Private/FIRComponentContainer.h; sourceTree = ""; }; - 6CCDFB44F38DA8AA0C63558163E79218 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - 6CE2B0DF422576F9A6087AD40F075223 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 6CCDD182FE0740DAADECB9AC2F3B85D3 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 6CD6E8EFA6ED3633E440D95B011839CE /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 6D2D75FDABCD85D4174157FA49865E1D /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 6D3DD62244FDA6E6C36ACF68585C753E /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 6D3EB049A701CA5F84DC2CB0208787F0 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 6D999367F894FF26DA24E3C769F4A379 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; 6DAC87828ACF9D8AE537F72FF4A4F57E /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - 6DDBCB93DE0FB3BAB971C7139DCEBE9B /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + 6DEC88E501155A55D21E40A2250752EB /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 6DF74E94CF9E25426B544B546E1EAF7C /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; 6E0D257A452231D9919F802CBB1191B3 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 6E182239D2346FAEEABD8411EECD84CC /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - 6E39601DC32AED5FA5C910CF76CD429F /* React-RCTWebSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTWebSocket-dummy.m"; sourceTree = ""; }; - 6E44F7F1754D0B03CF9FDCD48BAF91F8 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6E68310F4814224DCA12EC072527D655 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 6E198166A2ACA8C97332A716302DA299 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 6E2A8F94F10258B9CB15C9511A909B02 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 6E55F239CBBE06779B56E91FC66477C4 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + 6E580D2FF81B40FF03C160CBC2D9745B /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6E73667EAB76F89D466346DF2412413F /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - 6E888C5EC01D49518884B47E96ED3154 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; 6E92474C334E840C7FADC52192C0043E /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; + 6EAE7AB114B993A1513B00CE7376E71D /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + 6EB4AE68FF70F8661D38D4D6E479330D /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; 6ECD9699C19C8C6F431640ED88152EFA /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - 6ED5202DD4CC64B4AF6FF954028B77CA /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6F170CEDB89733511DAE42B07464938E /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 6F279E8DDD0482EAB1E5B14906535B90 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - 6F4A63248ED7A2E95B7AC4BD8DDB5C27 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 6ECF7A2C8172A21A5C79757DBF8F282A /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 6F138BE14C5937ECCF54388B1992E147 /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6F320C8CD9E349059A5D937FE095B659 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; 6F86DC96EB0178B7C7BF8E2C8D153E44 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 6FC70FF5C9FE0209DCA316B2C28D6E16 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 6FD621D580B39574416E769A4378EFCC /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - 702C9E014B1B136A736B1B3F00B91B1A /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; - 703D8C482D12522BACB42147D5E7D12C /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; - 7099BD0A3465BBEA4CBF360565ED0B01 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + 6FA5D3CC034DFF3C1776F1B1D54273F1 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 703970B1B193B0EA03638143A9243173 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 70543A27205EACEC84D6FB71FA341B7B /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; 709BF827BBE265C6711B99791806F011 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 70B5AB6131167160065F1997493417DF /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - 70E67C3B013B2E5212021BACE75DBA0C /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 70E89A478F50BA040045349B1DC0B001 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; + 70CB2BD39B2EE815B011E6AE54CA7C30 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 70CBE444DA7A9D34C5D705BC3E0E8317 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 70D925ED280E4497A978083010496B92 /* RTCPeerConnectionFactoryOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnectionFactoryOptions.h; sourceTree = ""; }; 710A21C1D548E46534D46ED9326EBCB6 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; 7140F68790174D21FE0A2EDA07FF3550 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; 7181FFCDB07FE21BE0EE00B5DF442033 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + 71AD97E8645BD5964346358C87FCA6C5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 71B1BC4520D3E182C3FB3746546C6D19 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 71C79F374395DF0DBF873D9BDF60BEA0 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; + 71D517984FADABD99BFC731A006426A1 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 71DFA1CB287620B31E51EE5A44A4CE73 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - 71E068C1DD38E2937CEF9E1E51D857C2 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + 71F8FE0BDDD32900C2C20BEA4846A123 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - 720906B469BC61831C3C51281F18C5FE /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - 7274CF47C3282B42D216D8239BF6B9B3 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 72058EB340F868E80E2210C02082777A /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + 723F47ED0A1DB05D96CF9C943A2C5C9C /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = ios/JitsiMeet.framework; sourceTree = ""; }; 7289C8A37DAFE930F15415D6FF046AC5 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; + 7299F4AEBF5CC5CEF6255CABDD650066 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 729F00B4AE6BE50E6FFAA94DD7D03BA9 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; 72B30F1B5D2D3007CC2F16BBAF746599 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - 72B99EC665EF34C1A2E7018E47792340 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - 72BDF6A87AFB7D7C47BC11B79D56E1FD /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - 72C531C6966A7B8091BB3084C1D1174A /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 72E021EA78BA43C4E169AA976AF69340 /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 72C9BBF114539864724A8E898EC59A31 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; 72E543745F2C87F5282760789265CBA9 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - 7314C58F5832505AE7285471BCAD3654 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 732DBD8D9B9DE28C0145A8B946E3809F /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 734D82D1AE54474DFF845C409CE25850 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 73745FEEA820397EA66F5CB941C7136D /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 7325391FE1E0B780FBC44614BEBCFED7 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; 737B25AEF6C3F7B8C25EF3D58017DE68 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; - 7385482D9FB9C7E491C9936350A35B0E /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 73E98C45D3FF69B3C893D539796D4B95 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 73C659602438CE11DDEBEA800A566F34 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; 73F3B335E56A3601DABA0FC0776BC8F9 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; - 73F59970BF0D5933336F54D3DEA38CC3 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; - 748C6B26247F46986812F9A2D7E58E7D /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - 74A1643AB61EBFE5CAC925CCC999FE69 /* React-DevSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-DevSupport-dummy.m"; sourceTree = ""; }; - 74A72B0F6F907EF4664ADEB181511616 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - 74AE6495FF9F3C087CCD3050E88EBE8D /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - 74C03D7AE0766E7780C4CE3248E79900 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - 74C10C345193C4FAE67D12793A6E6AE6 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + 746672087CD70BDDA884FC8FA203FA94 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + 748055E8B7891875D576515B3559CD71 /* RTCSSLAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCSSLAdapter.h; sourceTree = ""; }; + 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; + 74CB1D6C74256DCCCD5BDF15C7FDF186 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 74CE7A093C81DC6CF8311444B497F2CC /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; 74DA632E81504F6FAF6AF978C00DB2C5 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 74F089722C65606B6E7305A8086286B4 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 753CAC4F5312CF5C4CF9765EF017232F /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - 7559D3BB06AD2A7D1DA9585FD6CC9A53 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - 756FC505BAD21C7CA268DEB80D48AE8E /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; - 758582F60EC711CCB0124EF5DD1DBECD /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + 74DDF8185B2EEA7DF9C4B3F079D608A3 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageCache.h; sourceTree = ""; }; + 74DF9D42B9BB8EDD42E86C9D647D3A73 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + 74F10490F42380830676DB14B93E0911 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + 7506AD2E9B83A6BF1F161BCF2DB51B97 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 75120C73BACFA17BECE17FBC02294736 /* RTCMTLVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMTLVideoView.h; sourceTree = ""; }; + 75A9595FDD5A212446BC533AC66A8C8A /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 75AFACDBD8335C236D2F11C0BC8C0151 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; 75B59D8ADC023FA9E188930F999F3929 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - 75CE041A5ECBBA9BA6CBFA903CE7A0CB /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - 75D70BF36B34FD199F67FC23C4B6994D /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - 75DE36372A79B62FC7ADD1CBD543774B /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 75FBBA7B1735F957D6877E397159EA40 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - 76160870EE1B67F96AC6DAB8F364BDE6 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - 763FF07C7A3224B6DFDCEA0999CB2285 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 764F6BC98EFEF9A12BD84A50019ABE7E /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - 76782ADCBB93FC6C7ADF39F17B506A86 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - 768D0474C387997CB2E6B2B8BA54C7BF /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 76B021FDB4469EF4DB9DD5DBFCAF5C57 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 76B155448642B140C12D060D248DC3DA /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + 75CFB638C231C8B7D41B28548186BE05 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + 75F6D391ACBA89A9C14AB36C15309C46 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 7630837DF9EF6FE84E755706209BD3A5 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 765B85406931C5082E98556AF4521218 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; + 767DC0CF17388C57F01DF92F3E6D8868 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 76C172939A060CCB9E8ECB5CE58BF22E /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + 7705F0B74DE9556F71CC98D92D99A254 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + 7708661F19EAC6B9B9809E6F2E79A5D9 /* RTCRtcpParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtcpParameters.h; sourceTree = ""; }; 770C7186739996D7082568CCEFFA53BF /* GDTStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStorage.m; path = GoogleDataTransport/GDTLibrary/GDTStorage.m; sourceTree = ""; }; + 77287F106D7F32D37754DAB7798A1B83 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 773D989862F7804EC138068C0648671C /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; + 77581CAD88B4DC303F4AC21BB7AB2E46 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + 775D0B1E232EA49373E8F5B42E714770 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; 776D767CF2D3E09744EE4E72B37334E3 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - 77A09B1089939BEDA67A9A2897A6F521 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNetworkTask.h; sourceTree = ""; }; + 7798173C3D80863355C48B8CD077BD75 /* RTCRtpHeaderExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpHeaderExtension.h; sourceTree = ""; }; + 77C4C2D64A9AC391CB3E4E60E9CDB565 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 77C5D531014D942E361F9325AD560C62 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; 77CD8049365D030C4FA73602E6D9D867 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; 77D4F80E797422D53F0251EDAED100C0 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 785B94139F1B394788527B8CD586D2FE /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; - 785CF522439113A8560DB78775B9473E /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; - 7868C00FA96930C3E277C957D70B9348 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 786A54A94A3E7EAE58E0A909970D8D8C /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 77E4C5951ECEC2E4547C486F21911516 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 7836DABD581422073EEF11E485D1E52B /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 783790B1956322D4BD8815FDC2E2E385 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + 7839778FB021123854F1119A6FC56BF2 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 7846727DF52BC694F51DED5B879D7C5C /* RTCRtpCodecParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpCodecParameters.h; sourceTree = ""; }; + 7856438996BF1E5DF536EAAB0EA7BBD2 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; 787962550B3A64379933CCF755AAFA54 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; + 78D1DB0EA93E1DB29C0ADF3FF0097706 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + 78DA1710EBF157C3CECB6463099B4E03 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; 78E80245ED31EA62A75571A2EC705E0B /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; - 78FB885385284D83BAAA1A867EFB0AE0 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - 791A6B231A6E238C7F7ABBE6533B332D /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; - 79211B30E895C1C103D5D6CC54885837 /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; 79390E2773EFA92858139BA9E4C71C32 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; - 7940731E3A76F795D49A137EE12DBCAC /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - 7948EDEE4271ACB553E2672BF5B9F95B /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 794E5FE51CD438EDD0931C6A49297F5B /* libreact-native-splash-screen.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-splash-screen.a"; path = "libreact-native-splash-screen.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 794F398AE48A71724FAED5208DF62376 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 795202CE3C06B97109C450876F8C4F81 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; 797D106FB4A2A1743CC04DCBEBA74F92 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 79A661571C8BB75BF54632AE2599CC2E /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - 7A2323C910C66D1116495C1BD2E8D396 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + 7983417FE781FCF91F8AD926EE5A0C97 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 79CC6A5B9398398114AFD0752250C52D /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 79D2D699B515D1A6161300A4102B73F2 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 79E5A34F52A4DDB094DDF08A04A9BE57 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 7A17A79FC0E28E30CB4BDDBCD128468F /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7A247210D5BDAD13D0C29737C0227412 /* RTCDataChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDataChannel.h; sourceTree = ""; }; + 7A38377FA27874F52E99A244496B7A7E /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + 7A4F8830E26F1D0DE3479E60D57E0255 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7A6077DDE95CCE5BAAA92982BB97AEAB /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 7A6DD973E46FAB266D85B6430C3F7769 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; 7A75F46F02E1A2C5721662F565E64167 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - 7AC6E015E77D9CCA0F136E7CFFBADDF1 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 7A975BD70DEFB3E2F139B8492781733C /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 7AAFDDFA74D6B997BF73363C5D3CD0C5 /* RTCCallbackLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCallbackLogger.h; sourceTree = ""; }; + 7AB6D372A5F52156679B3E5965338FAA /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + 7AC189011E2D6AB4ECA6572B7AAB25D3 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; 7ACD3C43D9E249F86725376237B43D64 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; 7AD8F59977EC8DDDFA47B22811A38C60 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 7AE6A66C3E15E35F11B46084320F1290 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 7AF976F355D5E0823B514A3BE0608A1F /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 7AE59787DE2A1F4227CEA02F657673BA /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; 7B1C3C16447C4D321FC9269D1EF1A902 /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - 7B610AFF0CBAEB5FB1BF3368AD3D0119 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - 7B70D1CB144A80FF7B2ABCE1175D6910 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 7B866A5731856216694EA6181891C9A7 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 7B543741C7E49CBA12FB593306D793D3 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 7B6402D50DCFBFD141A3F3317654803D /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 7B84DE2B24887A92B132B30A86B03A52 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 7B96FCD0CCD67D47B879B332898A0DA6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7B987C4280D9A94FAE75A8272553CA90 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 7BAAB2D1DDE8E1E21EFFF618ADC60808 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 7BC88FFB0422846AFE4E6A298FADE780 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 7BDADE8683DCFDCC0487018AE56C2336 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSRWebSocket.m; sourceTree = ""; }; - 7BE06D1FF5A95967E0D74510E562C170 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - 7BFEAAA5D01D9BCEB829DB1B8A46121E /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 7C383BB8D6B0229E2C04380E8A8FC6BE /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; - 7C66C4757D9B1F33B8A7972396D8DCD5 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 7C6A7F35A722F51724595F8DFE814079 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 7C736A04F6CBCC04F3609731EA734D11 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; - 7C794A227DAEABAE98A4D07D22F2EBD2 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 7CA99DC15BB04F7EA888482B8E4932C8 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - 7D0C10A035BE8DE9C9F7A2F9E13F28CC /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - 7D17E791A9C3CB12EA886E8CD8E3BAA4 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - 7D1DB3B67FD724782F3C374A5EFB2611 /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7D2D689A649E31074B500124819F6B82 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; - 7D43F7FE38952B8387A308DA61A406AD /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; - 7D7280D3CC32E610F3B018CFB177F08C /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - 7DE78E9DAE2CE047D5546F3DF3332493 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7BC9B95661CC3866C3E05B8C73203F4F /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 7C022D947D33C353F0FAF4FBE204C562 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 7C4223DA1E1F3D92448EC0BE8ED002D4 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 7CDC54313B60DB124E822F965D0B5944 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + 7D12394645BC1050EAA8A5A968259371 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 7D9D8B4A1F3F4EB26B330B988D740ADC /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 7DB54CE0FD112F60FC25D72FF0C09B13 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7DB7811676DA11C00165A3B5482998F2 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 7DFCC2AFA198C5122CF36CF241F59838 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - 7E2328ECED331CB4328D470C32D1FE0E /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - 7E3EDF9ADFC74EA285D9D71BF1AA221C /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; 7E44349664D0426A037C5B87821D0D54 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 7EB3B9232B7CF7F5EC6393048610AE3F /* libreact-native-keyboard-tracking-view.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-tracking-view.a"; path = "libreact-native-keyboard-tracking-view.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7ED51579B9DA69528E7C5AF1F00903A0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7EDA7CF3E29C21A3CB30A9EB9A1E9CD0 /* libreact-native-orientation-locker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-orientation-locker.a"; path = "libreact-native-orientation-locker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 7E51DDCE886985A22CBCA7CAB3F6CD06 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7E79B514F8D9F9FDE9BA28A45CCA0685 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + 7E9B4F01530AAE41F8D831C4FF68D37B /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 7EE4EC581FC8ABD5F70E10BA7F595D5B /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - 7EE6DF4613CB057920348EDBFDCEF4EF /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - 7F0593DD9793C228358400913632E671 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; 7F08060C005CC41632EBBEFD89FB9DE7 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - 7F114A780B3D3C069081D0BA8E7D03EB /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 7F0EA9C36D5474A3046885E58291BC6E /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + 7F1E32C1D4A460D0A0ACAC39E3075FA3 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; 7F3493479E8F6FE68508E0AE73EB96AD /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 7F6D805506141A7A985903CE9EA0CFA4 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - 7F886F2C3D77AACC13926EF61016B900 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageBlurUtils.h; sourceTree = ""; }; - 7F95DEDB8AFA6FC858386AA423429A89 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + 7F566D32394BD895CC139B7AC9729E34 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7F9E02CB5AE96400A5D13DB49DC01ED8 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; - 7FA14F40717D8B8385C1136FD2491099 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 7FEFD0FDC377ED57ED928168199EF70D /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 8033335E7CF5A4C21E23EA75FB3D9674 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8076D4DB53BCFF4AE4975947CDA9FD4E /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - 80B916BC26C874A2E8D003B5EFF151C8 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 816854AAE422461167A17A39397B76E5 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7FD08450DDF7BF3FEBEDA25027230571 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 8059F2AB6D8AD8683CDEA58D342E7080 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 807E8500471F60CA515BC2A50F9BFC35 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 80D78F8DBD733314515E895F54C97E87 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + 80DB0265FA24D1C64F5216C0D6E437ED /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; + 80E5779F0BD9D258A7B8FB9F0A8EEDBF /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + 810E2876824AD7075F0486802BAD67DA /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSRWebSocket.m; sourceTree = ""; }; + 813DE72F0EF7406409BD88B726E2D9D2 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 81499CE04A4EEA96E9240440FDFD1D45 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageBlurUtils.h; sourceTree = ""; }; + 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; 81B07643B402ED0516D25F7EB0DE7F3A /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + 81C2C018C22B72F14CB5E4440B4E0717 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageEditingManager.h; sourceTree = ""; }; 81D1D5A9FCFA9721EF49A2AA7162E742 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; + 81DAD2BD88C1C69E2981FE8CC2D499E6 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; 81ED6A414B8E02B39CC67553BB9F452C /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 81FA5B0D5D83E7F786C081EE77DC8BF6 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + 81EF1859DAE2E4E630F3D32A7A6E77B9 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; 8234A92AE9AB0AF5F299B81933E1478F /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 823DD12AA0380A017C2B16FCEE027188 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; 8240B7DB4D18AC85BB7F2FA4D6BC7A5F /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; - 82753617E233EAE24E2C6803B824ECCF /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 8280CCE224295CF5C584683E92542089 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - 82AB5EDC8A0B36A8FE4163BD10439066 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 82DAE08CF911CB36FC4E0F303C610742 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; - 82EB86A394648666FE20A10B79C6485C /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - 82F37BD13BD7F4976D1153BD80C59939 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - 82F942876525889EA4EFA2D8290FE707 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; - 8318223C8A35F75E96F9829DF56DED97 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + 828D100FC563955FC0662EF5B712FBA9 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; + 82CA8723A487FAD385ED9DFDDBAAC373 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 8301E3F4061E709EDF93C277234CF49C /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 83088738ECDAF84F256DFC3CF390D7BE /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 831E69476115AB40A6233D799D442929 /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 831F0D42D039450010FF6956E3E56C03 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 832F33BB9356CE8887733816F8D458BA /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + 832F5D23BA28870CF39BD6B771ED421E /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; 834AE62042083B620B37F4038109DB0E /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 83651EB464C89426FF14372647677753 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; 837F5202C5BE4A271772D79E3CFB80F9 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 838EC88CCC23151E4EEAB9A3DF0CF9F0 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 83925503106211527CDD99FD710F58BC /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + 83A11F271D6493BEC282D3C5A2CE03FA /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 83AABFEE9F4C757101D5F846CC4BC144 /* GDTReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability_Private.h; sourceTree = ""; }; - 83ED315E90D744642D619BEB6EB21AA4 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 84014BDBB1D894CF960CFBB268EA3B4A /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 8404356A2BED987402248352652AEC0F /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 842909DD359C276BF1C81241DE9BC410 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 842F6B6EE5D61CFA934DBE586C774171 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 843409D13E830EA31C283FA0AA1903E7 /* GDTStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage.h; sourceTree = ""; }; 8436B95314D136C946BDF183E8FC4FCF /* GDTEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTEvent.m; path = GoogleDataTransport/GDTLibrary/GDTEvent.m; sourceTree = ""; }; 84405484AC1937B8E83364CE1E8C457E /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 8448A4C474D063232512F1EED8F721B6 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; 8454C6D668F7BD2E0332A9BDA56550F6 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - 846B61E33897257C71D97E561AF1E959 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; 846CC889DA967D1D6EEEE559C07A556E /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; 8479ECEBA351866C6C0847745B1475CD /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 84B2DC252C8DD4AD33F8D3C78C631406 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 84A8D32ED22D4F14977BDA352AE3CF31 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 84CCA4315BC9508FC44F32EDB6A81E96 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 84CF84C3996F5690CDA695C6D94C72D0 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; 84D7B42939364492227C7BFDFB9DB672 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; - 84D91EE1B993087FB0C80B9779CE0594 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; - 84F9F714D8FA69FD1D5D9C6795333F31 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - 8507E6531BEA7B7FE5CF9148EF8DF150 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - 85205F2656F1E3C68D7B89527FE71711 /* React-fishhook.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-fishhook.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8502E942849E9FDFC67AC6A05C16C7CC /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 8525A03F760DE87350A4A005CB7E6057 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; 8529DCF7E86805C170FE18B61426189C /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 8535F83857F2BD3F77C18AE6E3B5DC6F /* RCTTextRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextRenderer.h; sourceTree = ""; }; + 852B9047FE97D3805DF016D9AC2CA991 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + 85570C95F3FD301AA7E78D97C2FBE793 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 8563FB24C3BE544C6A8D77CC2707962B /* JitsiMeetConferenceOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetConferenceOptions.h; sourceTree = ""; }; 8593DBD017822F6D970D1829CB6D34BA /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - 85E5122C9D21ADEB6FB946F998FB812A /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + 85CF7F9C43282732DAFA120ED02BF0E6 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 85EC32CA0F2936DEFAB47A5047289621 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + 86001C4B72248B557A28816A91D2A204 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8659DC6C8D7F8183E7746FEC9E014719 /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; - 8665487808600C6FF9CBE629B159900F /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 86834D13936A026206D66E01F0E9444C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 86BDB42799F62781690365C4AE4D58E6 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; - 86CEA8506D2252EAF94502762FBE331F /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 86B6EA39ABD61E9912083281842835B8 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; 86D02063967146D6A0A42CC7D323EC60 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; + 86DAE5FFAACE6FB0F3CA4FB0AA6A768F /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 86EA310B6923A839B93B51A993A791D5 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; 86F02BBF388BBC67B309A02A2AFC7A1F /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; 86F38348289EC83B5F2C73681AD30213 /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - 86FB4A426C0C8E9F6F7A4ABB29906921 /* react-native-keyboard-tracking-view.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-tracking-view.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 87039A8D37FA24291867269E886C2A9C /* GDTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploader.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploader.h; sourceTree = ""; }; - 8716EB975BB8EBBD888170F145E9627B /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 8717BC3F9FF25783B4D59A22C606CB3F /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - 8748A9FBADB55CD2D03E6092DB1CF150 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - 8790CAD9655A22DC201E783B49C2B829 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 877DB851BD98248DF823BF79C91880E1 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 87AF817B6584DB271B9714A678DC1CEE /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 87BD2F49DE7E2ED41B26A69441613E75 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; + 87D9D56B13ED6ABE9A79C06687374A08 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + 87F1B67B7D633BA2255822A9A9019DDA /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + 87FBE541B7D8C022CF1D613E41CE1CCB /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 881EF7415F26D6FD4A74D598CEF34EA8 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 882B674503FB91F8EED26196C8F92C53 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8832B25858720CFECA7F8087D5A4E800 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - 8834C7BEF27342CAC8A41BFFC2F92D5A /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 8846E321D64283AA8C5EEF8EE8946F4C /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; - 8851D3968D423E0E68D99147BAF75DC7 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - 8854EE94C4B9639731F8AD32105EC728 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 884CFEB9E4D549B09F36682459626D10 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; 8879B74BE4D8A9EE581BC7191B2D3513 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/Private/FIRInstanceID+Private.h"; sourceTree = ""; }; 88836057AC917E1A9EDBD574E385C230 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; 889D0D42674C5E6CC9DC2A462C90D239 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; - 88BAA384D93DF8D20AC53F0A579D1961 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; - 88C982B467057441DE3297A02E89BBDE /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 891BE3261D0300908576300813D1D317 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFileReaderModule.h; sourceTree = ""; }; - 894EB08A053D7C6452445489BA754F2A /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 88D27A21584BC6B0F5FB196078221E49 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 88F4995F768B92CB4CCD72E30CD874F0 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + 89128E6085BE8D56C72155DEE4E25630 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 892A647BE840B1C3C30821670F26D24F /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8954E18537096997A8D4FEBA753C6E66 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; 896953B31142010857BD9071C6C3CD1F /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; + 89A8777ABEE4E5BB0DF6AE3190A447A9 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebSocketModule.h; sourceTree = ""; }; + 89A9B5EA8A4FE3100AA1130113C19B7B /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; 89D21F51498AA6261BF58D256A261E60 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 89DE1CFC42D5704E9089A05522A035F8 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = Firebase/Core/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 89F9BB3C6633EF936F81979F8BFCDC38 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; - 8A02CABBC0F331E64A1355DF0D601070 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; - 8A20B2362A2ED34BB1F29E7D4E100D81 /* react-native-video.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-video.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8A3591B2B8C31CDF6EB6024BA2479614 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 8A40D56CA52D159E9D6845B811B67400 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8A6EEDA73A17B95FA26ACB3C428EF25A /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 8A87D0BA421404167E2CF4853F608C03 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8A9CF7E513EFB12816CCD45BC8DD4AA1 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 8B03B0F011C6418C760A3B1B2B5B7040 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 8B2007C47066DC5C18F752EBDA8A316A /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8B41E952EBFE66089C326F15B93995FE /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - 8B738F4714318AD83C2F8E180A38C687 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - 8B77714A5B085438CDABD59AFC616867 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8B832F1861533347054057F4F575CF1B /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + 8A81AAD9F4E3D6AC840E8EF02F51943E /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 8A8A1691CA218413AAF4FDF833E01BAD /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 8A9053F178D814237EFD404ACBAFEE85 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 8AA1905B5AB801F66698FA96C524A93E /* RTCDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDispatcher.h; sourceTree = ""; }; + 8AC1E4B12462B72D713A36AEA3E12AC1 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; + 8B42BA4F40AC8207444CA0D6C61F7131 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 8B6005248BF6D8BD5CAA6CF898D38E9D /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; 8BA5000E94AA313E650B6F2C01E8CCAB /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; - 8BBB1BDC8031F9FB5E40B884663909B6 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; - 8BD6EB8559B246A0B3FECE41DEBA914F /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 8BC6565E046B8FBA5413F782860FE946 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + 8BE27FFBE8E35AE9DE06E929E38B1727 /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8C003927BED9B0875864595A388D43FF /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 8C019BE8CA64FD24A59F5D23D1FBC8ED /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; 8C149F45F71487328ADD24ECC317E5D8 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - 8C2CD7B403F1A6BE50FF43DD9FD6D900 /* React-DevSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-DevSupport.xcconfig"; sourceTree = ""; }; - 8C5D57898BC951E346ED0DC7B86BA6FA /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; - 8C8304F6F6A42886BF8392CA4C225495 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - 8C88ECFF02A0656BB3350D4BE97B9915 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 8C9258BC4069B152066F3DE151BA82F5 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - 8D12F3DE529AB6013B3CF4D7ABFE0C78 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 8D17205550AD7115D8112FB3722CE4FC /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + 8C5C0410CD4152BBD8519A3656C0FCD7 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + 8C68B468AABD01F1C885CA4D226FCF15 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 8C6A84CE3700CC7751C0FD60097537BF /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 8C8B75786DCB410AE975F0A9F1004DED /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + 8CD041905A49C68BC590B8ED8ADDE347 /* RTCVideoRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoRenderer.h; sourceTree = ""; }; 8D3C2F73173E59C8227EDD293E235921 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; + 8D42ED4D9515AA8A9DD1656BB0335045 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; 8D8DF8B24F606695A090B67DC289233D /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; 8DA449C1FF61D3D80D76CB4852F13A02 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; 8DAE43A95A1DD64C112A7BC942745D2B /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = Firebase/Core/Private/FIRConfigurationInternal.h; sourceTree = ""; }; + 8DCAD8EFF2850D407895A7833EEF71D1 /* RTCRtpEncodingParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpEncodingParameters.h; sourceTree = ""; }; 8DD881D7E69E5AAC15235626814BA474 /* GDTUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadPackage_Private.h; sourceTree = ""; }; - 8DD91A307BDFF4FD45F84AA09F6EA9BD /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - 8E0157181E7D27F8EDE483AE711A8D62 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - 8E09A758E68C42F689D709786EFDCADD /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; - 8E39CE103F4AA045776C24714D709766 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8E2449A00CA36D6F08B925F41ECCB907 /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8E34809AC93341B5E64018153B2840EB /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebSocketModule.m; sourceTree = ""; }; 8E4D3A8243738B05FCFDFD8E899E5256 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; + 8E556D50C611244E3F0B51690348DBCE /* libreact-native-splash-screen.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-splash-screen.a"; path = "libreact-native-splash-screen.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8E584394E9D48C593E4B7909B5016C90 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 8E6A56450A8AF738EFD0534FD77B934D /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; + 8E6921CE1E7727803E278E95BF050496 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 8E711F12A7778155AA71445D0BB91459 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 8E7AD15BBD0FE79ADCDED2A7042B8D76 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 8E8536EDC4DF2903E3258FDEB16AC622 /* RTCTracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCTracing.h; sourceTree = ""; }; 8E8E1164F926BA4DC12102F1E2D1D212 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 8E916431247262D1835594A3479EC1E5 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; - 8EFE2AD04B9582D3714BFD298B16A78D /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - 8F40523B25A3023E6FFAF01D4CE7A210 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 8F40ED4B8DB656E8E4D90E318F6EBCCC /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 8EA09E15C4C86D4FF128B953F1193ED1 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 8F512DD440E67929D7F4EF7DC55707B9 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; 8F711E618AFB99B1074C4BB7E7C2A6D1 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 8F73CD584410E55A4738D0C0967113CC /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 8F7BB31198185B0FB10F2E7DB9AC7D0A /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - 8FE26F74E4AF68B412098BFE43F871DD /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 8FBB53B6B7A25D12B48532FD5D6D46CE /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8FC655DAD6D3F09FE88672E63A716D73 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8FF638D9ADE0824AE128CACB3A645A86 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - 902D0F0E4E7501D88B438963A7041152 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 90406E98007D839481A26DC833A3A655 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 8FF6BF28011503F3CB733E8CEA8A02B8 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; + 9030F149B08259FB5EDB32EA856DE568 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 9041690456A698CE5F6773D2509EC5D2 /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + 904404A3C543A9A576DD99AF2E9E13C7 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 9070CD0BE32933D4EBF3524C41B6E36E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 90756F1F010C3ADDE8656F519C9C5C2B /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + 90B665C26F8748E5148893D113953F93 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; + 90B6FAC077C3745634A7B05D249DF3D1 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; 90B7BEA5F009D938BF5F5F71F697E182 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; 90C5F94C259D127985F5504AF6F1AC53 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - 90DEA33D505EAE6CC2FE9DCD399BE765 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 90D0331B6ECD67074D5C6B5F153299A1 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 911213EDD482FE9C8576221ABC018F9E /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + 91216EBAACD768904799F983D40ABF43 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 9122224A67C7AF0701DBA9ADC88E3FDB /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; 912415A927A22B47295DD3E49FFA3F4F /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - 915316678B38224E163F5599D891943E /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 91706BC18AC0EC9283D51EC961794300 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; - 9195975470445C6530343CC3C15FF4B4 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - 91BA5B1704468E6FC5018E6F128D5E51 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 9148899A1C48889C61F22524C7F50005 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + 914AFEBCC6081168DC61AAE7E1A2F089 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 916F52DD2324550C670F776E6565C90E /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 91B2087F0E78F9895A64C325B5151BE3 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 91C45CA57EA6767676FBC094F184DC56 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 91D3B26269141BEE3316B00A2EBE514E /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; 91D7A68AD46162DA04278DAC058BCF3F /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; - 91DBE0CB4E7519C5E16ED6C9F3D60646 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 91EBEA5772BA6ABE9649A535656386EE /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 920F81FF3145EDF910F5032F97DE0180 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 91D98A11F19547A82FB836C3FCAC259B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 91F05101145E032C26E95D720C856D6B /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 920C51CD87C794BF5A3A528981F10789 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9239F7934F0262AC40BC68B8AF087DDF /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; 923A35D985EF56E8D2F58FE10FE88DA0 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - 92593ABEB9F9E1656871BD318804B339 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - 927791E238A7883664064AB862E193D8 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 92BE47053C59D6C72CA8358F8B660F1C /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 92D18C848CFE795CF783D5A53ED04374 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 92E5EFA2BF6CB4C04D42A2D3E85441C4 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 92F77528D2E3975C5B9619D2C1AE0A68 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 92FF03A70E1A66B48FCEF58B949DB94C /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 931C7727C13AA2007E3DE043B5818309 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; - 933757715DDBE63071CDCE7D6DBBF10B /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - 93597116FF65E74E5A812096C5E499DE /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - 935A5C3CEA430ED86AE5F755D5F8FC43 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 9242D0A20A446340F0873A4A80421BFE /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 9265163EE10B58CAE865D36CE6BC8652 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 927AD92A359690F9CDF6058497278F69 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 92874ED1747272F71B4F1A29C359EB45 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 929663746CF9C0F031968CE08611C870 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 92A4E4D06224CAEC3C41CD6A4F52E1DA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 92D5878FBCE5856B10322F4AB5E94A3C /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 92DB2CFFA16F6021485BE098EFE927E7 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 935E1393E28C453F19A0713846AB9F77 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; 9370C720089CCB95E33C739ED72DED1E /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 93AB37B889693A63104E31B2C9DAA2D8 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 93B244A2ED94A246A69964F8755029A3 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 93B917336C8F7FC127EAD9E347AECBA7 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; 93C511F27ED5D50E864DCB9B0AFE64DA /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; 93DDCE675BCA4D6255E6C94525287F7F /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; + 941AF3DE8220D538FEFF4A0F824B2144 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 941B23A83E08E05FC6E21D1812537ABF /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 943DAE35342735D221D1CCE7B23499E7 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; 945A9B6C6763CCF3EFBAD3658AAAA42A /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; - 945C35BF1B27F401328D98D590B77646 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 94779791BB17904347B9F2271AD0F69A /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 94845D049083BF66942C66362AFBB586 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 94C3AC517A63BFC4BEE3EC3070C1C20C /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 94CBEF7B892BCBF7E9DD5159B1285B9B /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 94E2EC112E3F35DB957FAA52620CD689 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - 94EC4676D746CEBAC2B3D1B47E8FA399 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - 95197C805AF86DE2FF28ED56C706859C /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + 945E4BED7CE5F4EFA859A013503B1D1E /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + 94827F74D8E1D40CD7E4413D73B5CB37 /* RTCVideoDecoderVP8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoDecoderVP8.h; sourceTree = ""; }; + 948C15B9A14B1A6781E66C02F2C25D40 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 9491AF948F3FA874F54067CE881ADA15 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 949C6775937BA61A725E56A07C4CF14E /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + 94A36DFB5F1A47939DD65A932816CB18 /* React-fishhook-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-fishhook-dummy.m"; sourceTree = ""; }; + 94B6EBBE61CD9EB64D7A1BD8A02F851C /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + 94BA45F1F7EA57DB1EB0BE882DF0E3A6 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + 951A634B3B788E67260CBD9260916089 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; 95326CF9943793EEF3C483A2EF154EFA /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; 953D2A75134E13234152E4C9C3607B69 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 9541EC8EEFA485E6751EEADBF3A47171 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 954237FD3402958590B19357C5ED017C /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; 9556B10138E402F637746986E6DF2758 /* GDTClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTClock.m; path = GoogleDataTransport/GDTLibrary/GDTClock.m; sourceTree = ""; }; - 95AB4C65269D3FFB0474273A9AA14D56 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - 963B266607287EAA109E6F29F36F1296 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - 963E891BF725D7AF4DCE75FEFE9BCB3B /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + 963CA6931CF10CA5752B949FB38CE477 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 964C2E3CA56634EA8AE6821E435242FB /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; 966A730FD988CC463C03A21DF8759D5F /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - 967A52FBAAC504F1770420B02BFA3949 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - 96842932481E884A292EDE4AB2760567 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - 968A9D81DE13F4D10473B1AA30276F2D /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 96B57BB0986E2BA3AE66FF48D8895C8D /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; - 96BC2F2CD4C9FF5B6078C384252D42CC /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - 96C8294332E762640A343292C9A88D4E /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 96D9A5D68AC14F577F6F879F70D11309 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 96DF7D0F2790F9FD27E8711D21521731 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 96A2AF9116E730040A2CCCF06BB65CC3 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 96E095031802DC9A4A67D7BF1BB0D531 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 96E3B33969B55503B0A19EC90C6A37B5 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + 96F379997337EEF73B309A58D0DAE568 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; 96F47211CE06FFA8209B2321135049D3 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; 96FEDBFF970311D4CE8F74A6572600E0 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; 970A7E2E51EEF752F257CCFBD7300F1D /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 979B2C3C80CED748F58A24ABA26F16A7 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 97A18B5D9697C5FA14C5D1EE9C8CB0C0 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - 97BA38C5D133CD6A543A169356D2E463 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 971AC3B6D311A190C6234E4CBAAB871D /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 9727CD897DFC665EB18524FC2FC165E1 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; + 974254BEAF43EFBF0ACA66D36931D556 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 974C9AE7383742EA72F04F2261131340 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9779FDF054553597E0F44A328B9082F5 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; + 97916199ED6955C13B01EACBCA0D27FE /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 97BC3D796B6349E51B907E484144DD10 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 97BE7330857285D0663B48A8768584DA /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; 97DA18D9EE387290D486E736823D7603 /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - 97DADABCE30FD6618D4541E19096F0D4 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; - 980857BF2351A587CAFD45AF24E7D342 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 980BA187310E4AA093939AA3E53D5584 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 982B1952DA9B1F43AAFEF3D3910FFA2A /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 9805DE1690B14DB41F359C5E7D935C9C /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 981054BCADBA03BE957273D3053FD0A6 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 9817A80EE67CF7C3E1225D109EF7D8C4 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; 98473CA72F08DFCE7A232FAC89E9E474 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 985ECC1AFD47633B39820516EF7DDD75 /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = ios/WebRTC.framework; sourceTree = ""; }; + 9864C1F11521835633A4D768D92801CE /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; 9870476FA94D255E61C842DC14FAC7EB /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; 9872016D9ED5AE2B10EFB1FCD2016A24 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 9874F9ABC962A7071571BCDBC72640CA /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 987532EC498D90D10ECCEEBFD9EF456B /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; 9883EB80AA0AE0AEACCD3B4C99C35140 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; 989E2230828062092C97F0FFA02E4076 /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; - 98AC5D5D6A36A6C5F03ED9487E121BA0 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 98BCFF3928889420799F7E6B6679CF75 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 98EFC789EFD8CD126815B4E0CCDBA285 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 9913D2E27955C1C94DB8FBB02D809154 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSRWebSocket.h; sourceTree = ""; }; - 995B81C327656708EE8D725DD6B446BB /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; + 98A39C024A609A721CBEC84F6B1AD409 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 98C28768FFCC38D5C0BCD109E6F85619 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + 993A80D8A91815C14275729481D92DF3 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; 996ADEC2706AEE60B10C1B10F23B17FF /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - 9997662495C6C179E7B5EC9F3416B3A0 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 99A30B30F50E663C4F6D01DCBC7D90B6 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; + 99A477AD9F5FE54652E31A7ECD230A6A /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; 99C3ABAC6136ECE26842D81E2A0152EF /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 99D24984BBF170B57735B5826C92C907 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 99D6D871001EAF342588EB92E5782AE7 /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 99DCD3614E282090E7250B5BD934C20E /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 9A10BAB773E05B8D2043F607334C37BF /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; 9A3360793B80DF3E76FB7C19901A69DE /* GDTTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTargets.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTargets.h; sourceTree = ""; }; 9A5156C8465DFCBF352F718A1DEA0AA6 /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; - 9A827F42A30BA8D2731F1CC960D38119 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; - 9AA60E8177A038BA389D3D5308F2268C /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 9A61D35C37C8AD0E66BDCB06DA7D2800 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; 9AA86202C2FEEE33586E1C460F5EA749 /* GDTUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadPackage.m; path = GoogleDataTransport/GDTLibrary/GDTUploadPackage.m; sourceTree = ""; }; - 9ABF1C45E3B917DA6FB90AECC87E5FB6 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 9AC024D8FF2A106AFE66E3AE0C33EC29 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; - 9AD1DC369DB6469D7CD4943CD9D7A148 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 9AAD67F6ED0B439D241094FD54A6C498 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9B0B62E00399B479D6D4DB026943919C /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; - 9B0F7056E659D32F16D88D84E7D41C2C /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; - 9B13232835C56F9CD406E321D8C8E7C0 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; - 9B2D2370970EF5AF373A5DDC91D5C4A8 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; - 9B7FB6823E93D02B9CFFF6C43BF4925A /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 9B1EBA307329FF68FF4EA03FCE3D8591 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 9B273F518C0660AB15FFA70B031473A9 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 9B5E0A62DDAEC3878C5F5792B0BDE50D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9B91099D2AEF3B2302E8D342AB57B68C /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 9BA07ED6B9BFD472FCC0F93524F5DAD3 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9BBBEF5EF37F45DA5CDDB9D9B6223086 /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - 9BC5C63657EAAA3C3C9CE341DD5ACADC /* libreact-native-keyboard-input.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-input.a"; path = "libreact-native-keyboard-input.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 9BE6C950D5BB483CC324D666974AF5A1 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - 9C224BEC3C7217E3A6408F1442AEE311 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + 9BEA1A42F6A035EF2AFB42C094DAD538 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; 9C2368C0573F26C01DB93B2C5D3EC89E /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 9C78B6949BAD6F74209708D6BC3BB77B /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 9C4A8CEB69CF7F073BFF76879220236F /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 9C55E5C2CC45C1DAE13B637EC266ADAC /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + 9C592674961DC56ECA89C887EF3828D0 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 9C5A9E1C09D1DFB316A5023FD04A0500 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 9C603D1FDA249ED275BC654D8025924C /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; + 9C6B3257A1B3939D9E977D9F6FFA4736 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; 9C93CB7E25886C1123FAC67FFB1F8AB2 /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; - 9C96A0774CD7FE9D280B7D0667C7F656 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 9C97772F11722772EC508D94A267F785 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 9CA946CFADCD1833BC17CD8018C0EB55 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; 9CB3E79D22D106F3C4450980C3272322 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 9CBEC06DB43A4C8854CC0CEB060D657A /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; - 9CDB6E5572CF9F77A2F31C0518188160 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - 9CDB8351DE03FD8580AC11757D164382 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + 9CD567A804B736A32DE85AA951B83FCE /* RTCFileVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFileVideoCapturer.h; sourceTree = ""; }; + 9CDA29D754112A7FF3C7CAEAE7DBAEF9 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; 9CDEF241D2E723AE3AA76C243CD201E0 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; + 9CE33BF817C0622B5A31829C31EAFE0C /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 9CF4C24CFFE7E566E48EFD73E27708EF /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 9D0F181D9C95BA7A06261015D0600A94 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D24A165C4123CC70909C0572AE7E980 /* RTCMediaConstraints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaConstraints.h; sourceTree = ""; }; + 9D2D50FF32EEBB560B7AE64F6A5F7A7E /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; 9D2ECCE0FD4135BCA35DDF813D86DBFC /* GDTReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTReachability.m; path = GoogleDataTransport/GDTLibrary/GDTReachability.m; sourceTree = ""; }; + 9D8064289D118AF34F2F7BDA82A65CE0 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9DA9DD48C0CD8D64076EBF2A83628DCF /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9DB568250FFAF8EDCED8C4C5C3756ECD /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; + 9E083547F9579F5ED433859DB6F6448A /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 9E0A534DC600C706E236F3E790306C61 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; 9E0D044868E3CE3EA2B650D94AA0C42A /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; + 9E13839B7DD3DF4506B1A2E0861DBEB5 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; 9E363803F2ADB3E9C7745366D24CCE71 /* GDTStoredEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStoredEvent.m; path = GoogleDataTransport/GDTLibrary/GDTStoredEvent.m; sourceTree = ""; }; - 9E36E7CC68C697BF67F49C6FA012D98C /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; 9E59473F2C4173F38055CEFA6CAE01DE /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; + 9E63EA5FFBF1BB5DE38DD26C6CB2FB73 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 9E6596BE80EBC4F14B569C64397D7F41 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - 9E748F391DE2D0222C842B58CE23ED8F /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; - 9E834A5A86831FC24177563ABD042646 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9E8F8D194A4EC0F55D2BB439A63A9D89 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - 9E91655710FCE7211802B85F7D60C056 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; - 9EA81026186E4433C8D58C2CA8868837 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 9EA2E75DC4A1F7259216E29FD996F251 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 9EAC0DE1B2D16D2F3F98ED0C1EE70784 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 9EAD81636BDDE142E30562BD036867AC /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 9ED8F47BB05C6724F22C460E6ADECB06 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextAttributes.h; sourceTree = ""; }; - 9F3DE190C3FA138C587BACD123B09B9E /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; - 9F4DA4810CDBA63DD3257BA2566B4B9F /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 9EAE68EB1895C8497AC2724021774743 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9EB36E6A39649D847AF77FD1A5239CF6 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 9EF729E9B246F17665AAC4D524901C52 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9F609AAEA9F899181439682595E51378 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNetInfo.h; sourceTree = ""; }; + 9F66E6A960080EAA49A7DC83DBEA1ED6 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; 9F769D6260F9E292438D0FFD1264C69D /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 9F8C7CEFAB40BE85AF65E496A17F3F9C /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; 9F9C2F09B67806EDE58E40D9A648E897 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 9FDF5577FC7B1C4F3035ABF1AF4E59B9 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 9FB6BF87AB22A53FEDB3B70E1E91A50E /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + 9FC3292BB7F4F09DFCA8F2E1EED92A76 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 9FDA5EAD04DABB16FA40C9A37736DF95 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; 9FECC40A877CF4171127CA354B4D4F06 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - 9FED9006C2EC21D5AE97724FA3F7C34C /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - 9FED9412E36C7E2E335BDA2C0C694534 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - A010434FA9A6A97D0A7AB37C1E34F258 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - A029DEE8FCE2B8CD5EBD093B13332AC5 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 9FF7DF68007747195DD27948CAB699D9 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; A02C25A0F050BBA3C3192560B437738C /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; A04AE81FAFCF6A28988F4C7E777E05BE /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - A0DFF0F4FBC18D6338BE25FFB81F7FB9 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A10BB0C93993448C44B113561E7B5D21 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; - A130F40E25443B64CCA4DACF74DFCFAD /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - A1365AA21636B434C7B1D5D85D82B361 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - A1B1A1858D317B5B19BA45B5A24B8124 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + A04D324EC31FB81E40C495BF4D1A95A7 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + A087FCD759D456A8D0F0A36084D1BC27 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + A0B99299CD4E6CAD2BE62176783DD9CB /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + A0D9433DBCB75EB69C1FCBA82F630EF9 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; + A0DB7296CDD0CD90CA0CDBDFD4AA0704 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLocalAssetImageLoader.h; sourceTree = ""; }; + A19C1A37B688D9DD773BDC435F1A03A3 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; A1B88FD9D6C771307C9F1804DE04F464 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + A1BEC438D22A7DF98D295831A856D62E /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; A1C0E2D38A464972E87853ED7297DCFB /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; A2048FA7569E8B0EA346BCC21379747C /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; A2269041F71E93DC3D5E4E62F1D9FC94 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - A22904A6B607BB3328CA81EA8BA06B04 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - A22F1995E1A4C9767FFEC42EBDC87120 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; A236B2D72366F344B655017EB8EA9D98 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; A2669F9597361BA03540DB202E45107D /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; - A29721BB2C019164742577C5A3B5D834 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - A2A16B5C1895E6D4C8BB5FE324FB98DB /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - A2AABC796CD9FF5735F14BE9BF4B151C /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - A2AE548ACF39D12A7A53F40B6CC1D872 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; - A2B1998212FB87F212D2B48A87437173 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A2D5C5DF3E1D6324CEC904F0169FF0BF /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + A28BAC373C876446EC9228F5C92E988A /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + A28DC1886F2C9C69BF8097754B5236F0 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; A2FC07DBC2305E98EC8F83EA5D42FE4F /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = Firebase/Core/FIRLogger.m; sourceTree = ""; }; + A30B49811A55C3531158E2CEE523597E /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A31B7AF9D97883D1431BCF0BEBC6A5BF /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - A32302F4F43BE748E6C2ECD407D6C480 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - A3437A444290BFD6EEE4762F77662EBE /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - A364D2E650BCAB24869D1CB46AA63BE6 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - A3665A1FBF0A6E0077C3867E53D095E6 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; - A373EAAD3DD5F938A177DBFA6F14B104 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - A380BB44C05BD28C672F3AC9C260DEFD /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + A33FFA196107E6D83AFC13EEBB548416 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; A3AE96A6C5ED8CD28D8F9C82C8CAD319 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; + A3C69448A607FE3B258D9E852733D0C5 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; A3DBD6D4B64099330ACBBF9E0560ECDA /* SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoderInternal.h; path = SDWebImage/Private/SDImageAPNGCoderInternal.h; sourceTree = ""; }; - A3EAA5D73188E332170189A7944AA937 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A3FF8A2D1F37C073965EC979900E9E48 /* RTCRtpParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpParameters.h; sourceTree = ""; }; A474ECFEB4E81748E6FFA85CFDEFE7CF /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - A4897980180B4B49664BB1789AF35693 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - A48C31EBBEF0F5B9B1C2A5BA4C55CE40 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; - A4AA3740063FC210165FEFFFD556F536 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + A497D72857CB1DEECA6A83DF2F0356C0 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + A4C42E6AF56C67AA2218776FECF6FE9B /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; A4D016D868BD58467CA1033C502573D6 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; A4E3B80FEC459F74915B3D9B6DC2BE6A /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - A52828CB51B71F5076031A02DD04D628 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - A58CF9900C98E30470CA191878D8E52E /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + A5066524050E26BE1284211F4C57C984 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + A507BB59A2B27F21A3AD91CEF482B5E1 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + A52F81A3EA60D1B996E23D393D914A38 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; A58F7914B909B36DF27DFAE5864E4F23 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - A5E862A6FB290418396AD70B448B38AF /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; - A5ED683DD3F2747D4AEA6BEC69F69897 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; - A62630B597A616F406D5BC138E897E05 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - A699D19AD671A866430BBFFF9BF81558 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - A6AF7065F6F423FD8BE3725E49887293 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; - A6E57B284963F6AE796C7031D492AFA2 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - A6F99FAF769F0ACD2A2B182711F4F76E /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - A700C5421150747BB65E8019F7C613B4 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - A701F4BB315BBAE49C99E1444577E377 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - A708B941708437F7363670F3F348DB76 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; - A71908ED27A84394A93747AC3C6BE223 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - A7210D185BB792BE776701E26E31D9F3 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - A73731D96056AADB6C3C22D70863273B /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A7374D25AEBECB070840EF48E56B89D9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A76D90B8856DD4E548C6B252E7A725D6 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - A786DC1349F49EBB898FE347676FCDD8 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - A7877F2D3CF70BB8D9DED1DBAB1FD501 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - A7A3D32B07E6867105DD76AA8F940ED4 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - A7BC55F4362943BA8DFDE3D34F7C4F56 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - A8357007FEC3306B6FBE0C1E7109D6E6 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + A5C764272FFA2507B08277CD008843DE /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + A5D7E9E1C2555F42F76C7E9D1C371F2E /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; + A5E4D0A95D645D6EEE043EF41795908E /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + A5FCC6DF3B0426A53DBAF6CD2F0B5A38 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + A6194FA41D274770C0D983A409E4AFB4 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A640EA4E85693D5A0E22CFB0046E061D /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; + A6684837231DD32E07D224681453C6C2 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + A6B3F9A60E5DD3BCD8621E49250C9DC4 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + A6E10D9F4B6683407DA4456218459A3D /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + A6E1E94E3500DD7A642F1C9C215239EA /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + A6EBDEA822E6E9613B5673C69D6A98A4 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + A6FD1319634506666ACAD648469BA25E /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + A71946781760342C927A6D31AD36CCF9 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + A73FB727E98DC69639C199573680DEAC /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; + A79693CAD457A7347DA72F62C698437F /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + A7D1FD034B94E4A71369F3DFCBEA95A2 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + A7F18F09AF7A31610A85E63FD20DD5AD /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + A7F770313525A6CCEA0860D039863F99 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; A8383AE4B85D593EDF8335F75E018DDC /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; - A85E2CC8F87F8CEE18EFBFE6D4A70C60 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; - A86BC95DDA09EC345F79F711EA380285 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + A880A5517A83F35F30E97307591CD1A5 /* RTCAudioTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioTrack.h; sourceTree = ""; }; + A8D2DF6877363067B846964E79008C95 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + A8E47C778C9007546B45026FB68A4BF8 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + A8E81D276B0287A8A94F23EC14D6BF7D /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + A8ED432DB44B6699275DE4A68D609845 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + A8FF34683E5CE2E206D55106B4680A02 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + A9224D2AECB42676905A56B9A541410C /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; A93F446AD7B620C126913D53D66C7C99 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - A9406FAA2A308A063232101F846A0755 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; - A9525C9F89E728A090883B2317AACADD /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - A95AF02CBA1CED11C1C7B9BB935F90CB /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - A968DFCE0D3C0072B51F974402D57D53 /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A96DACD6D7B837517DF7C6024FBE4D86 /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A96E30556795B2F8E0CA42B67311BD53 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - A97BA26BB02BA9B6283731F3214547D7 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - A9B2C9DEB38426565199167BF76C236A /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActionSheetManager.h; sourceTree = ""; }; + A9461706030CB674B1750262BC8E9A50 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + A951F3D4A1107C4876D413494143795F /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + A9536CFF1A5C4C2C6D673C9DB61891C8 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + A97616B7F0C1E36EEACBECE0ADBD16DB /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + A9773738343A838AB060E5A45C2550E7 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + A9B59CC2DC7B4DA4D5CFA97A575365A9 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; A9B791BDA93E2642E2AE20773005936E /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; - AA194C39136FCAEE12F52FB3766B2BBD /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - AA2FE4B436059D99702DF34C9DC7631A /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageEditingManager.h; sourceTree = ""; }; - AA5F67BB38B41ABA6E4F55475B29B804 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AA6EAECF946863A592F8B174348C215F /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + A9C3703C2057B7C7649A7885B80EFDD9 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + AA382979BE64E8344B083E4219CC44EE /* RTCLegacyStatsReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCLegacyStatsReport.h; sourceTree = ""; }; + AA8FBA102FB1166DF7FB0802B5BF7728 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + AA93954BF32AB7978AF08366B26FA3A8 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; AAA293DADEDCEDC13D22CE28A2C91ABB /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + AABACC731535E862A53D4154431593E3 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; AACC3906679263F744C164DFF7329977 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = QBImagePicker/de.lproj; sourceTree = ""; }; - AACE8442704D4B505A0A4220A137B8E4 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - AAD97CC12122A5B5746F3AFB4ECD5A42 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - AAFEC1DA9172DA1E820CCB9A6025C1B6 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - AB2FB23EDDE166E0FEBFA4C23BD219B7 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - AB53CF67A02752A29252E5157518ACB5 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - AB645AEB5EA032D771372C901EE0EFDC /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + AAE2DE2C1565696AAEA94D066C8AF6BB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + AAEE24316DC8FAEFE3396F1CC9AFB935 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + AB0E6202D1AB7C3808889080FC2FDC94 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + AB291470BE68256E5FE3CBEF817C614C /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + AB5BCF059C100E0E5524933922D16B0A /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + AB5D895479D8756BE0CCBCCC0A6FC03F /* RTCFileLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFileLogger.h; sourceTree = ""; }; AB6DC8697BCB96DDC7099E19C0FADEFD /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - AB7FC6010DE52354C3C59CAF0E93331A /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - AB8913D1E2AE163AFEA868AF6A1687BC /* libReact-DevSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-DevSupport.a"; path = "libReact-DevSupport.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - ABAAA194EC2FD1FC2CD955581F27A919 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - ABCA88332B1BB076E2A15DB8D9FAF8DC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - AC062FA60F2C0C47759E06A01C2CF70D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - AC083CFE513DE197F238FC97D5768181 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; - AC10A1A51843487E7790F53C4B65D9F5 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - AC13C2E4ED73D7B988B996E0A0B98A48 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + ABECFADA9EF56F58E2A69627E44883A1 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + ABFE44D10BC96227DDE760CDA55459E1 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; AC2CAF795431503D42B35C3E4DF175E9 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; - AC6C24293B5AF90747506CCA2A364A27 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - AC84951035D72C1A26D9A6E65F9543BC /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - AC8B3C09B5FE45443FA32DE24D44519F /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - ACBD25509A050805531FB9DC2C807B7A /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - ACBDE845D1259E146B4DC835F57286A9 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + AC3449896238B5701AF3BF73CF742930 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AC8758183BC877AB68D7A46210E21282 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + AC9D9808BFB89D23C6A20D156AF7E920 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; ACBE62257E052F1FCCB9E800349980C3 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; + ACD28F442E05624658203DAF3448EB2B /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; ACD9D744C521C1246AA89B34FB235398 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - ACE79E0BC5851B91682E138AB19FE7BE /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - AD020B08F433B2A45F6135BB3CD31AA8 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - AD0F68B646F72E6968C9F108BDED0624 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + ACF039C83C437FD5D98726E40470D559 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + ACFE10F216169F111B1509D4BC64F1C0 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; AD102486D88241996893F8843CA86F6B /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - AD5982F8668509EC884595C7CF14C4BF /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AD5A2DEEABA693EEA1369A43A115AE28 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; - AD801EEEDA7A7A4CD82E85A9261E98B5 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - AD839FB7717A659FB15B1922965E29AC /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - ADA349097F758AE829DEEDCC24123880 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - ADB97F10149B7978AD361724416A1172 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - ADD512EC5E92F7D43E8255D8EF753916 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; + AD25FB34758FB51DC7E27302E4E33607 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + AD2BD30BCEF9199E3FAD0B438AE2D6C1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + AD3733C7249A87D4E7256B044DB69FA1 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + AD55E5B123DBC81389C6597157A1D61A /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + AD8C953CF7A28B957A85C011702E4B24 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + ADB13650538B6D017FCD789F4778D483 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + ADBA91B70D66AD0C66B90F33754AB444 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + ADBAEE769E4BA3C105CB21A876E15FC6 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + AE020CE980797590A8FD394C36A65021 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + AE16E0BF1D1DB866AE18CD43899CE756 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebSocketExecutor.h; sourceTree = ""; }; + AE305BBA4B4D5D9726E7CC223C084137 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNetworkTask.h; sourceTree = ""; }; + AE671F9A1A26B5C284532EBFC3358B61 /* libReact-RCTWebSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTWebSocket.a"; path = "libReact-RCTWebSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; AE7754584504BFADAC0D66E9977C6076 /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = Firebase/Core/FIRErrors.m; sourceTree = ""; }; + AE7881A35121120CEB01805E5ED37765 /* RTCCameraVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCameraVideoCapturer.h; sourceTree = ""; }; + AE96EAD463BCAD2A502D43556C729D79 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; AE9C522BECF62823BF32C1C310AEA94B /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - AE9CE3CB663482A892F27575A515878D /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - AEA2771FFDBF750AB8B87C609FD61536 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - AEA4B69A46529ECEC30F727789756B1C /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; - AEF6B7BDAE4BED0A9CD4FA64625B0751 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + AEA2E6893FE4EA8CA4FDC62E3876D337 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + AEF9692FF93A53AE83A9026E5B68C754 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + AF00D0D625436F5B3775308395AFAE47 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + AF1BCA314238149BFE80E23DCAF8D959 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; AF3F49AC7222558F70BF96377BABF58C /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; + AF51F6E751008277E08D864CF38C9CCA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; AF59AAF9C1E17F9B17CD706F50F80B69 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - AF5D70AE0BBACE08B9D14D76F6CC638D /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + AF775ED8BFC07F13828BF3ABB9B86A1A /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + AF90510A2BD790D8C91E45285DC6F919 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; AFA8781E13A2EE5FEDC037BCF3DE1F99 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - AFB2B3C562A4DD0E0A06A2587567AA1A /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFileRequestHandler.h; sourceTree = ""; }; AFC9197BEA9A6CD03FDE80F6B71E451D /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - AFCC463E37675F892EA9B5D0EDD548A7 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + AFEA8EF3D28B8368A352D296AEA4834B /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + AFF4BBE84511E470DA5AD69A14ECFDC6 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; AFFEC13D0BCA59D868F6841E4FFD6AF1 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - B03D5988758737D5C011AB23D45E60B0 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - B092A5C8DB0E1B75CD09D351AC7AF52A /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - B0C4ADADD124F4F975E74A8B91890628 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; - B0FA0BE11882C38182774343719A06E2 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - B10D82362A372C4BF93505BE0D5FC549 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + B09883C0F386F535493F7806BA1F20C4 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + B09A88DCBF1EFF9247669014E3BFC939 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + B0B07B2CA13B4B5B848AD88AA1B2888A /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + B0CA6D93AD942CC49C6551B0D6CF8069 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + B0D526E64BB8D35243A7AE962F308165 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + B10C034DB724A15D796703BBC605A2F6 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + B14288A1A50D20954A300339DC72378B /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; B14321EE392ADB847052BD5E58762AD4 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; B173D0AE66CCF8DB153DF8A8B1D42B7B /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = Firebase/Core/Private/FIRLibrary.h; sourceTree = ""; }; B1818F7EF0C10182EBEA70AD74197B1F /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; B18BFB5604EB58F3ACB30DAC9D272B5F /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - B1DB15BB39EC55E9BE9ABA32FBE3BC9F /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; - B1EABD9705F9ACC25AD24648B3B5DDB9 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSettingsManager.h; sourceTree = ""; }; - B21822126020627E92AD8B308A8B95D1 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - B2262DA36BDD89C80BBD8B44439EFD4A /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; - B23BC7615287E2953E917F78A12504B6 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - B282C04BB478AA75490E878C95DED62B /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + B19BFB70C36EAB835DCB038B02FFAF33 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + B23B72E3E9635ED6CAC46AD3E9F26B79 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + B240714C009A7083197074E629FCB611 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + B26D74B193D7F36867248A875A5825B6 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + B27E618D827CB6BB235CDEAF4A3A1EB7 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; B299FFF600468CC5F031359F11529C30 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - B29B23D4A72EA1C7F3182D5419DA0138 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + B2AA7C7FE094946BF3612BF110A6CB16 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; B2B6CCD6199BC227927A6F66F1C4B676 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - B30AA69C2809E9542846F8C923C0914F /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; + B2E6E90D013EE6988A88B9AB64CFAD28 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + B2F66F5DD04189A99F8F216E0B896022 /* RTCMediaStreamTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaStreamTrack.h; sourceTree = ""; }; + B2FCB87EB44E1F15BE76EC4FDED9BC12 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; B32C29637004DFA00C422469551F00C5 /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; - B363D1981C56815FD302BDBADF3538EF /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - B3AAC7E59E011EE7F86741FA653983BF /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + B342CA448230FE40D533E094A5473B0A /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + B3EBC87084BF08F730D22A6808C1F91D /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; B3F82775A114DC463B1A22D9750DDD70 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; - B3FF9EE5CE7E7356D81DD5DAA7DCFC52 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - B4064ACA3090224F2A8011D547D831D4 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; B41EBDD1DB022AF9820E6B5214C69976 /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; - B47D7A230A67DE5298523663C70F0294 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + B42C447FF7C028E6520D83F7C6C21C41 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + B44606B3799D248F8595252180862355 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; B49603EB3034DABAB10F60382C1DD4C0 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - B4C17265845D3D788017B88D99315E6C /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; B4ED747092A1D20754551030B7A387CE /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - B508130F7FEFAB0E9FBD378D5828A4DD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B50CE2D7F1CBADD1DFB02F81F351B014 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B5107C6780B01E836B2E16DCD00F2428 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + B5451638C37FF180AE6320A16C731855 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + B565F3F58DB6CA7CF8D1B9CF42E0D60A /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; B5914966BE28AB5DBB32C58DB776E87D /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - B5EF2623E822A8E441B33CF9B19C0CF7 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - B607395F3DA8AC5AACC8754B8DCC2054 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - B630FF2DC31E86AC40045C8704D097F6 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - B63E9E520BC97C3140F6BD11026AF0F7 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B641B14936C36FC7020029884447AA12 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + B5C379D69648E4C64C7EE6B4A00F093E /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + B5E5E98A9BC00D13BC425491B3FAECB2 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; B64278BFA907F143E534AE7A299EB104 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - B67BA50C36A2F53B426CF2BD606C542C /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + B682050CB644B8EC3AB810BE6299787E /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + B6831DBF363EE17255553F98E138F8E2 /* RTCVideoDecoderVP9.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoDecoderVP9.h; sourceTree = ""; }; B690630170EE510DD6CF469596160CF0 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; + B6A2E29D46AC0211DEE039F98A5180B8 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; B72212531A17E04632758E53C8B378B8 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; B74045C89CC6F81DF35F0CEF214DA46C /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; + B75C5F07F0B5EAE4031F252CEB5B7AF0 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; B76B06E44B473727B6C76EA4FB258784 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - B7AF93DCB30558D8039E90B6C8B284FF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B7F1012C799C9791E4FECA188C90D12B /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; - B7F313564C6C62F9D8C4B2C50B7BBF08 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + B771755AD058E5E1AAC7215FB1179E4F /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + B772EAE60EF6D37DEF61CBFA5458E247 /* RTCMediaStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaStream.h; sourceTree = ""; }; + B7862ECC9EC85533D6E2FA04C81F2F6D /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + B7CE3A08266E82E5793DB0FEC7DD7CCB /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; + B7D2C12903A2D6625DA763475473FEFF /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; B80AE04012735F39420C32321BC8CF64 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - B80DC6A89DF0B9BE110A30A79C936850 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + B811FB2F2E622C6E7F75E53239362FCB /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; B8198475A46AB05337E09F32DDA7B688 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = Firebase/Core/Private/FIRDiagnosticsData.h; sourceTree = ""; }; - B8199841CEAAA11C8A691472B30E3875 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + B81B5C1E9096D7C7C3655525CE908F99 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; B82698878E55481EB830AE41F5792A4C /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - B845870464F200FB55113E01901A34F1 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - B847369D6982DC7922416A3069B7B411 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B84D2982DEAEA03D530758B19372E573 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - B8569579C559AD253F170AEE7A85F788 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + B8792CD56706412C9A40FFB8B8569DA2 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; B87E594363914C08F60E7F87BC3C62F2 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; B87FA68E472648622BCFBBBB49B59E73 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - B88C41FE8A7C445F9EEF3672DFA1A03E /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; - B8AB01D3D17B7632E4081FA869D788FC /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - B8EA8A3F3D68D86D8D2ED6BB7F4FCCA8 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + B8A178BFE07B65C2EC9BC75FDE204649 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; path = fishhook.c; sourceTree = ""; }; + B8C90022B498754AC293996FC03C9D2F /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; B94698C378DCCD8D5BE53B980B19B437 /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; + B94897D23C06C54D06D16DF4CA4F8842 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; B98F22D61095526FA4DAB138C1B2A193 /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; - B99020A66A49A6C5B6075FF6A1FA6185 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; - B991C1699FAE71C6FBC84B87F788004A /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - B9B3D67ACFF92533F0F623AB3F912627 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; - BA23BC21765015EC45A51BDA2B601FD5 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - BA47E1AB9713F7C4AE14F03CE2D408C9 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - BA4F7994E5270B6C156D70227978DBFE /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = fishhook.h; sourceTree = ""; }; - BA658F64A92CFB739F79AC95D27E2371 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + B9ECC66D488DE7886D4825BBA1140BDB /* RTCEAGLVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCEAGLVideoView.h; sourceTree = ""; }; + B9FB3532848E9B7CE75741192C4A2FD2 /* RTCFieldTrials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFieldTrials.h; sourceTree = ""; }; + BA1BCD15C886115848BAF1A732DCF3F4 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + BA2CC8FBDA5DE4B610ECDA7FB13AFF97 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; BA7B1ECB0A999AE1D6894D31557E6E88 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - BAC046E27CCB11E2FB8B51D678B0B91B /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BB0562477B2F88C9FD275B125681E33F /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - BB16AD3467F0E21091B9565CD95A5069 /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BAB1B93D3BDC791EFDF762035259C14D /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + BAFF720E491BE37D82072E2AFFC52793 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + BB150F479DB4BA90109A2FE65154AF71 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + BB1DB74387B878569D617A5FF7896725 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + BB3EFEE1ADC779954C4623DE47E26783 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; BB55D0A7ACC4018444D830964E5ABB33 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; BB5F2196F1F6A0EDEE597A6832009041 /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; - BB661AC855B783E42DE358E7EEB846B0 /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BB830A5595A1DE6714426189002D6F3D /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; - BB92AD8B652014D76A351931A114FFAB /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - BBB63FE3E96BF6FE03A2879DD0ECB1B1 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - BBCF8786AAA5F34013AE1B494BB51696 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + BB609D11B4B6606C1AF8C43D93758476 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + BB74A61918BD691F395662CBF21D1C0D /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; BBF84FD0D965475766D25A1A9B273BEA /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - BC415E5931A27F687D96D46F6D0EF635 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + BBFA2A3F03E3E00D5EDD4D06C6A56955 /* RTCSessionDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCSessionDescription.h; sourceTree = ""; }; + BC14F81C35A7DEC275C3C657C90F0F08 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + BC3608D088678AD75DB5AC70084361F2 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + BC370954C40FE4F91E54FA2D4F451EDA /* RTCRtpSender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpSender.h; sourceTree = ""; }; + BC5C8B6E43D82909012606B2C27B6425 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + BC6CC339E61F24B33C25C89895114DD7 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; BCAA872A4D14CBCDBA296FA056611526 /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+RoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.h"; sourceTree = ""; }; - BCC388D85E62188E33D791D341BA20E5 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BCB434A3F5C78F02C5254EB8B22F3A9C /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + BCF339FC7F13314A8980D9F2882017AE /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + BCFC653E636506E7DCC03D463B5CE0CF /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; + BD040FDE573C21F19D9967DCFC11E36A /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; BD096CE739D36FD26696BB655E78E515 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - BD23916AFAA058F0A9696D3A26E1C8DA /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; BD2B4EBDA5FECA8D692FB2F5D5AB8645 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; + BD2F2FB3028C140B85969CD78214FCF8 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + BD3408A59D6FC71E782C3DC62EEBEB51 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + BD547426D56D340222DD530246169860 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; BD735586A4C70F9EFDFFC1466CCA54AC /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; BDCB6B57878BA7581E54CF2B80E10903 /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; - BDDBDAF6207AA1DBE3B3466D2F6E0BC1 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; BDDCC90BDE3C4182CBC95A5B0C56BF99 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - BDEFF9C58110B2293B28CAABECC90179 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - BDFC76302DB768F2BE79BB5C30362043 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; - BE04677D8B0CC715F53B3D0CA62584AE /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - BE1765E934F0CB1320E80D2D366A0A86 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - BE42ED26790753292BFA72C2CA78BDA0 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + BDF37D91DBBBB9AA693725A86C6D4A96 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + BDF5CB6940FDAC51C6171F10ECD1B36F /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; + BE08227E965D9B47E01FCDEE53FC6C55 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + BE12ADD9ACF7EA325D21BC1C2E570606 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + BE16E82029C2739CE2BAA085DDD41D14 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + BE3C3286DE026A0E70EED1E2569D80AD /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + BE563DC36C241642DCAE3C66BBE960ED /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + BE5BF2B0A81227D2E095E11601D90D64 /* RTCIceServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIceServer.h; sourceTree = ""; }; + BE5FACB45C5311E5113E127F403A9689 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BE60334F434C035C97EEDC5C4FFB0B66 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; + BE8E5EB8162219682F0123568FD00B6E /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; + BE944973011F45968E9D5109C976856F /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; BE94543A04B8947916F72F33F5AB59B1 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - BEB5A2F38AB5C7314A6737FE9E403A51 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + BE9685A51D6DC22212677826398D5A97 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; BEB8AD90DE687544934847BB70635A54 /* GDTClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTClock.h; path = GoogleDataTransport/GDTLibrary/Public/GDTClock.h; sourceTree = ""; }; - BEBCD404D4A51D256B1D7B953B80E6F2 /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC4B45AF54E0F6C10960634D5E8010D /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + BECBC00B5BA6BE7D5060DFEBB853F5A9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; BECC174CE98D1E8D25855CBCA368F55F /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; BED8F77941E9853807B379F320762D81 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; BEE47C639BA506ECCE98AAEBCA942A81 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - BF3FD2A3935B7995B8CE5974818A2B9B /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + BEF5D28A5C98A6F12FC015AA2C5834F5 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BEF7F9BEFF85E6EC05C2C65A82D0E4E6 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + BF176078A2EA89A3F2AAA1473CE18BC3 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + BF214941C7C1BBF2E7A415B015998579 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + BF5862C159E8FFA7B28C316BF00AD010 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; BF7E7F291CC663AB89B2147B0A97CD5C /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; + BF84187B927E6587B1AB9337C53C71A1 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; BF894941A4BB7EDEA10BB6BB72A8B31C /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - BFC349D8BE14864173F046B8F2C12790 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + BFB6BB9BEE282BE24B2F7A062A3F9FA9 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + BFB7B598863766DD3772025FB9D2BC8C /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + BFD8ED78C1C37D65A608ACBD487CD207 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + BFEB264D81580315AA2560D896B4787D /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; BFFE931B07A9A985A20E831637607803 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; + C00E29D40328FD90B8D0F3FA63D470A5 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + C011322D1E9F0F83594E269A1249A9D3 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + C03100E86D528B30ECF9693439BA5477 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + C0435DD43CDEE93F9B0B79AECFC63E4D /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; C05C6C734B7E36A49D79E4340E2E1A98 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; + C0915E3E48F3EA6A6D7A49EF22D804FF /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; C0A19B5100ABC1F5FBA1997C6DDAE10C /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - C0AA23146B019EB904A9D5D814E1C3AB /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - C0AE4B613F41033248DB894783269471 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationUtils.h; sourceTree = ""; }; - C0C5087AA3C28CD7E547D23E317B1404 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebSocketModule.m; sourceTree = ""; }; - C0E24D38ADB9E29404E790E090BDA445 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - C0FAEFFCC0C2258E88AF2ED638620158 /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C0FBC604721548C84878705E36BCCA07 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + C0E2F68F013470EF6536DAD9C697D7C6 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + C104113B235CF12A38F65BF3259A6E88 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; C107FA2159EA63861A4318B4F213627E /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - C10B55917E78E59A3FE6D2B4762CEACD /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - C10B7ABBA5DB7FE79752997191FD5580 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - C15D478EC8532554E9C3A82F883AFFE7 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C197ED2FB17A019AC7D1BE3DA3BCE6E6 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - C1A8047590B65DA51F1E4F29EEAF6299 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - C1FA18B6B6F1BB855E3F2F74FC02D1C3 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + C10F32D01C7DDA0733BFF3A3F0ABD595 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; + C11F482D038BEFA9B8D038298650C688 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + C12B504A2411E97FBF31A198FEE2624F /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + C20AA83D8E3C884BF6BA173803CA3159 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; C20E79FF6379BE775700BC9533CA620A /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - C2BE11440018581EBC4B0F3EC0831201 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - C2D1EA1A3771BF9AF1D5DBCA15A0B1EB /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + C216A397325D711052ACD7E6779F231A /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + C23C2A95564A98A69E8D83F674F178C9 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + C2678BBDCCBBF362C0480D5C65ACDDED /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + C2896209A87724CEBFCBB3F31231DED5 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + C2CEB6F8E1B93CE6EEA4C1852A0A9073 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + C2D3CCA10AAB146BC367549B4DB206D2 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + C2E4655DB8C2E772AB15B978AEF92691 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + C2E84685336EA27889ED308BE44FA437 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + C31E3619902EE2EAD7818A1AFDA05264 /* RCTTextRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextRenderer.h; sourceTree = ""; }; C3317292C2D6C79FF816A519DBBA5251 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; C343C860082F1FEE952201B8C2AF754A /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; C34446947B99F093F682D587EA14882B /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - C36EEA33AC428D316780A5588CB86FEE /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C3C6C1591A3499751B8C8746A5647529 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + C3502944BABFF624E0A4C1718B867501 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C36EB0463D8B3C8F17F5DEE34B7DC70D /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + C39FE0D227A933495D13609400A465DD /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + C3A92446F28383992A77DC8411BE2322 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; C3DD38C706C10C12E336FB35A6B38724 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; C3F79C626B8D5DCB8C1CE936834A7407 /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; - C40B6B4B213D438A36541A77531DC729 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; C44017B75276DE9B206A4D82A9690242 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - C45960864EA6614E94C4C8C5BD3E9FEE /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + C460519E921BAAC282A0454F3854E475 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + C47DDEED9B1A3F93884682943889FC1B /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; C48AFDFD4458D2849FA11DDB2AEBC3DB /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - C493846DA82089F44CC062E511F63BDD /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - C4AF7890C9B054C452D81767DB2C25CB /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - C4C60D4739FC5FECF14C85AB27887528 /* libreact-native-notifications.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-notifications.a"; path = "libreact-native-notifications.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C4CC4FCA89F1F6953E6D39BA6E5D6FB1 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - C4E3CEE675180CB55CB871F9C7D82811 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - C4E5197AA72D3F0C5C99A8AB9572F10E /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; + C494DC58EC950DD60D5622D8FFFC5BDD /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + C498FB493BEE96977D34DFE02F30FFB3 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + C4ED939680B988B1822284F02D238B80 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; C4F52BE8C4C32DDDD82F9A4E0F1C97D7 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; + C4FF853BC24533BFCF976A3D4044C385 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C50F79225FBADCBE2EBB3B2E6528FFFC /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; - C51B0D1089B85084E864AF08ACA1B6BD /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - C526D4C020A0B5F63BEF6CA55982F818 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + C52200328B125F9ACE61C37168E46C00 /* RTCVideoTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoTrack.h; sourceTree = ""; }; + C531B29DBE2698E109A9691004E57881 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; C532307C6FA70A32BF09B2CAE2F65AEE /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - C545735810BCDE8E4DAA5F060FE6F679 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + C534987EA7AE4E220C03775356333912 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + C53D9399B63217BD4CE14E8EFA4C6E2C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C5491EE4ACB398BCAE280CA7D30FDEC0 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; C5746050230C6395736E499C7FAC2CE3 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; C57F3A256584CA86343D5E7BF998DCB1 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; - C5AD1883555BBBED3AA7A2E0266BAFB8 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; - C5B193632E1CABAD99FC92DC885A56EF /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - C5B490404C36F1023A63BC8E0F8F285C /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; - C5B4DDE044870DB60696054BAC58F466 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; - C5DB08D8CA1F9F072AC9FA7A22F5C1F3 /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C60C5CDF1BDE9184719076C910CC69FE /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + C5A2DAE853B51FFAAE26D86DBF6162B5 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + C6180EF9B46ED864B7F128BE4DD7A7D0 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + C662315C9B4C42165130F325702BED65 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; C666B2725A5A11504FE424459DF51AB1 /* GDTRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar.h; path = GoogleDataTransport/GDTLibrary/Public/GDTRegistrar.h; sourceTree = ""; }; - C678B79CB97B799981B8664C5406552A /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - C68332FB6B755785B62085DB326634DD /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageShadowView.h; sourceTree = ""; }; - C6A96B0469A1CCBA8377B116CDBB2E4A /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; - C6B2A7473598E2FBA07F8695F32FAFA1 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; - C6B48F68CE68AF6AA32D1E9DB01B87AC /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReconnectingWebSocket.h; sourceTree = ""; }; + C68717C0B8103B307394F0CEB238A966 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + C68D33698B1A57DABB40F4BADBA907EA /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; C6C822CDF50173D41B4EB726BBF1F243 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - C6D89889724D01F027B90E56CF346FF4 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + C6C862E6728AF11811F916FC759DF788 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C6D5E4F782F63058FE1BA25181C1F014 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; C6FED9F0BE14108E4CC6E139F97D40D3 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; C7525067550F4AE7BD3A6DBF95FFF0EE /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - C75FB754E99D40DEA7EE8A05E0D825D5 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - C7BF8889AE3768AD15C05E0376FF5A58 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - C7C820567FB5E7201671DF9C5A4611EE /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - C7CEB7B2105C3E35CBC1BE7223ADD903 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - C7E715E22E69D4EE2459C743522B9C7D /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; - C815A9457D1483145412D6E9A8A87165 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - C81F4BC5C38691605234C6277B7564BF /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageLoader.m; sourceTree = ""; }; - C85E49B3AD193189638DDD1A4C81661F /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - C981CF5E526184C4A7DB7416789BB999 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + C7862FBB7BBD683B4C08C8F937779A58 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + C7885AE2BF198BB4A5292028FB47DC7B /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + C84539085B098599201722CFB82B8B20 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + C8535D44C10E16DF311C84FA97A7D4E5 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + C871A964EFAF5A7E82BF98AE2B5847C7 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + C88F8FD28B8A36C342F510140396AC4B /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + C8A3EFB299DF06FE7D8142E0155827CD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C8B14D0CCACAF6FC03AF00F35B77D6FC /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + C8BEDC744DC981DEB274FA1B99263AC8 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + C91D02140B8942812D252A5AFA0A34ED /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + C953EE43D675E7E4F2A524D7E8569C43 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + C95661ACED4E496A223D7B9A3B85501B /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; + C96DC7C141C998BBCD388D03E5B5DD26 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; + C9706AC004C9425464D86E16CDC32601 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; C982F354FBA3AA8957FF45226BD8292E /* GDTConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTConsoleLogger.m; path = GoogleDataTransport/GDTLibrary/GDTConsoleLogger.m; sourceTree = ""; }; - C98BEC84CDDCE3D256E28A4572E00EF5 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - C98D12E9C86B87D74FC3BFB0A1A3E2C5 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + C99B09A20658D7806B822691190B499F /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C9C929E0054DD6CFBA0D1A315C4E79A9 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - C9E239E8900F889252E2C855CB84CC65 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - CA5242E1C6FAC645A1ED6B8A320B7F80 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; - CB09CF769EC49B1D96E7A5FDA8D49939 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - CB10C495B3633E7E56898F5B48FB03C8 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebSocketModule.h; sourceTree = ""; }; + C9E037AAA848724396EAD18ED5B7C940 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobManager.h; sourceTree = ""; }; + C9F0C31A769D053FF8300D615339570D /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + CA4D663A4ED65B8292786EACA86D117A /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + CA5493399B2CD2BAD56C41D041C2AF5D /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + CA8AB657CF9F990F230F790DB4363685 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTHTTPRequestHandler.h; sourceTree = ""; }; + CA9F9461DE2A7C9CC4FC3834A10B4017 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + CAC66B3AADFB8C8623C691E009396936 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + CAC7A52B5EF0CFDEA2A8482D1657718B /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + CADCE6458B46F4D6B823AE5A9163FCB8 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + CAE6DAD24C9CCB2372F25805CE5500A8 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + CAFA2752C18924C8CC5D9ADDC0963E7D /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; CB474847C01C8226B45873C974C8A65C /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - CB71DDE5E028E8703A03029F71565637 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - CB736BF216D0BE5EEFE66D6092F89D0D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CB7E229418479A836A9B5B44E402E61F /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - CB95CCCD171AEF95EEDAB112D11698C8 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + CB7AF9F34117C8D3E25E9B39E8EE4E08 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + CBD4A64C0CB98B39A3D41D73AD9124C7 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + CC085F88801A65C82817D397B81B0922 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeAnimatedModule.h; sourceTree = ""; }; CC1F595BAE2B9941E1DF118CCF7EED4D /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - CC455D7D51BD95A969F1ABFF55228E96 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; - CC63BCF403D3C98F6670A4F7FAA83EDF /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; - CC7462C0A40D81143520D656AE90DF45 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - CC9A2F78A2BFF013DBF0E729EE452491 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - CCDBA249BE21C51D4C8C9BD22813CBCC /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + CC2C4A2098DE5C85A5A3D1EBFA967B98 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + CC53B09C7BBFDB1DA17A24E62AD6FA97 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + CC66E982455364D614DF401B94602E8F /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + CCBBB8DAC7A5C7FEAB45788345976867 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + CCD14ECEAD3C5FA298E8BE0D14BFFB94 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + CCD9C348D4133723950810542392BECE /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + CCE146BB2005C90D36EB0566356F965F /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; CD0E671EF80D002991AAF981E72BED49 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - CD2E395927B92ADF560A3ADB1E8A8E2C /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - CD375913032DE7CAB1F6C2DB3A3E6795 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - CD38ABEF16475EF38D017FEB6EE314C4 /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; + CD182B7D3029972B154EA2CF58646810 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + CD5AA3AEB73FFB5731BBE3E5999020C9 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; CD5D4D04DE011B2BCEC7CB50B6A2EB6C /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; CD6B23FFF48BB43F31E60DC5F3C4F92C /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; + CDA0F964FBD0C81D9787B9F6371E7595 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; CDA3E71057426F69B44429BE6174D6CE /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - CE064E4404A50B72546C86AA964CD8EF /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + CDD51648DF4E0DF81954C937383B7561 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CE0ACE19D1CB1121ADBB32865822FC86 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; CE267DBC21168FCDE00E079886422BE7 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - CE33456DF539F1F494639FC9340C2BBA /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - CF048C95D5122E0A16C539A49E55CA60 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CE48895561295B1873810AF292127B47 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + CE6C3EF04D244B79F4ED776629E6507D /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + CE963A9E8C500CE91A57773153CAB7E0 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + CEA6929DD4698DED8181AD050A4A4E0E /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + CEAD334EEDEFC63ECB5062B271B01CCC /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; CF2DE2FBC85F5A7C4B91A1843E653A85 /* GDTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTAssert.m; path = GoogleDataTransport/GDTLibrary/GDTAssert.m; sourceTree = ""; }; CF34934D7B6EF5A185FBAF6BF9CCC504 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + CF7194D6DCC55275CE397D70EA634090 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; CF725CC00D12DF34068FE21EB0BB2115 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - CF74F4C975F2F3A1675CFBEE2A73917B /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; CF8EFCA224A8A78EE4E46873DD9DE78E /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - CFC701295F017145F588855CD0DF5AFA /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + CF95B1C0F946AD48D73E33DA6D128B16 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + CFF51A116DCA3FD9BD63C566B1D55800 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + CFFDF8045CBA6085499624A8162268B0 /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + D00609DB8D2AED96E1CD27059D9C495E /* RTCVideoCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodec.h; sourceTree = ""; }; + D024EDD7A19B58B083A5F08467CE0E56 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; D03C45B97B087F2A82A89A5EA3B77877 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - D03CCA298C92778A5A0C89539567D5F3 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - D04253913042A09F52B8B2B73E422408 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - D069BCC7C93C674100AF63E3894FC7C4 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + D03C8415FA4550FD730BE0939D8F5137 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + D0402B22E068B37EBC11F3CBC625397D /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + D04FDD6B4AC745C08223B4D304F993AA /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; + D07C0F47608ABC69DF4310AE3BDE5E17 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + D0AC147EB003EF9D71A7B2104F9B7683 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + D0B7FE131152D449361609A10104F2F9 /* RTCDtmfSender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDtmfSender.h; sourceTree = ""; }; D0D54B89EC0AF7E09DD6B2B7090F1E09 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; D0D90B0B3AF47CEA448F326F55EED569 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; - D0E6733F7D74F752DFF20DC887FA70A8 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + D0E0D454CD65A5A55B90B4773CE2C624 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; + D0E4EABEB4CF7B1D94E7DCFF93017D87 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; D0F0CDDFC37CF634DEAFF325946238AC /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - D1112F03EA48DB9D976CBBC2A3F41D63 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; D1177991A497DFD1BC445CBC02CA0241 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - D170C08AFFCA380D1172C16EA6BA1EF4 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - D1B87227C7FAAD791C8022AE6F8DBC63 /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D1BC3B8EA59881FE1DBEE594195E2B7B /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - D1C737F3442C503F0B7EC38BC7B803D9 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - D1C76CE8D6F56411966FFE5CE1C6B3C3 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - D1EE20B6B030AE36ACF8263B79B368E9 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + D12EEF3FE003C43E722F9104827007F8 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + D168B9567CBB186333C5B16B6CEC8CF2 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + D1746A3E6192D0D04873F0C1EEC5909F /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + D18CE0DAEFEAA6D474A23DB518DA05FB /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + D1DB022E784A396954AF9BCA82930E67 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D1DFFED3C5B16186D336844AF417F2B4 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; D21280F8727253B2C9655BF79BCCAC51 /* FIRInstanceIDKeyPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPair.h; path = Firebase/InstanceID/FIRInstanceIDKeyPair.h; sourceTree = ""; }; - D23BE6A82E82097A55B45FDC71F33F14 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + D25D9149BE6DFA8BC723C813E68DC3B6 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; D278C02A22313007EFE6AC57486A6B89 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - D2B7653E4E2696C673E698748E29AD49 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + D288E2A1097B53A8164134F5F857B4E1 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + D2AA72ED8546908D4F8336C255B8CE4E /* React-RCTWebSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTWebSocket-dummy.m"; sourceTree = ""; }; + D2C1594F73125490465C61584369200E /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; D2D80125EE7AF49F27704FC89CF1BB64 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - D36A7DBB1CAA328D188048E619B5A1EE /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; + D2EC694F312D47738BAB2199D15ED4E0 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + D3033F24512A5200D8C8ABB1E14708B2 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + D32900CFE7B190CD21110C1C44F7545C /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + D340534F23FD3A765547F2C6110B07D9 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + D34BF3EABC235B18C1DFC631914DB54A /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; D387F835AC8DA23F3D29D5423CABE800 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; D38F9EBA512377F8AD6195CAD24AA076 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; D395A41DFE691263EFBD73A036326E1D /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; + D39CF967EEEAD5D89855FC52FFD75784 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + D39D98A6A9F7F237C9EFD924D44B78E9 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + D3CA35E11B829049A1453A7190CA318A /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; D3FF10070C419D99AD4D822D3AAEC58E /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; + D4159BA1E2CE3E5C3B3F61DB4941E910 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; D418A9B1C95E6D0B846EF2FA2D37FB61 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - D42482BCB582EC7B4ED4BF719CFF66B7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D437E2DA4637B926A7C2E5564DCF06F7 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - D4A723CEBD6A5B3FA35733DBA5955321 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; - D4B6E11CFADDB69572387C7786561E3A /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - D4E9D9900348932901C544FB243605CB /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - D51E27FB2838AAFCE578FB8FAE54FEE1 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - D52E950083CE13D1370CCEB4CFD1A165 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - D551633C61DEDAE1E3344A9ECE6F793F /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; - D584630DFB8EE9BB52F716EA22343A8A /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - D59E9B2F411A3FC336E3BE39A5A9769D /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - D6022968E56E73C04F3FB3C9FF938C3E /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - D62B596E3D791EBE46A558B57739B450 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; - D63F824472DAA137E92CC76B727981D0 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - D64055DE1F0E50879AD816AEE3EA54FC /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + D475C3C2BD0007BA095EB822060A0DA7 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D485F8551EF24A8C30597F66D9C6EE45 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + D4B0BD6A8A65E962083A3EAC58ACA16B /* React-DevSupport.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-DevSupport.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D4CCB9E25179654A10FA8079DADC7E51 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + D56D04C4E20011BE676A3E027F899C40 /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D5E04F264CA104360DCAE9309F75C247 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + D5E50576A3610C371DA73A1A2799B6DA /* libreact-native-webview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-webview.a"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D5FB90ADAABF5B54EE2A15E293A2D37A /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D619BA46892D05FF4710CF3364E55443 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + D641EC74A759144A3FC05385DA4F222D /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; D6470CF65092294FA7B4087C4377314C /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; - D670BB72F7C79A823C61CED851100CBA /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + D657301D987FAEE0D9A69E422EA25B4E /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + D6848E08FDA7AF8EF86D06D2DEFE1A11 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; D692DE8FDBB660E94D7E45841B4028F8 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - D695A2E409B9EAF290A6B51AFDBF6B93 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + D6A974826D08DE12A6C8DDF0C74DAD47 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + D6B39A9BA3D8203837C0D1ACEEC8955E /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D6C963FFB4653B60D8F6BB798F4479C2 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; D70D0D476839F85C75D635CAF26AD9FB /* GDTTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTransport.h; sourceTree = ""; }; - D70DA07B5B86A16EBC43B4326A0DD7A1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D721167690A62B806919C4060524F1A4 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - D72AB6ED59216E95110BC9F7DD356AC5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D74B7B08D104146F9CBC9076F20BF49D /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - D75AE166008B2D4F92780F7FC8170C2C /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; - D7780C0EFBFE669B1E26443CC344A69E /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - D7A11216E6EE4E7C0343B477383B033A /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + D7232FCDC7E3427C4E3B77BB433D3D5C /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + D726F638517DE896CE8A5AC756AFFA42 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + D746FDDD11CAF672EB2AA51FC25354C3 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + D74D79A21F2BA3836B6CB5FCEF6F89A3 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + D750066A0F718750887440D72C8D36BA /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + D78B603B040B149AF9158E6D6EAFC7DF /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + D7C3A66C114C883258850DF55F4C5441 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; D7C5FD4A2B413F2340C28CE67D1E39FD /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - D7D8CAC32796D9E8ADBB0F0CC1D738D6 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; + D80C016928E74B72A4E015DB46C8714A /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + D82E6144F3F8BB0919C6487481C0E34E /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; D85C13B6D27EA4AA12CFAB1830B09723 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - D867DC56B14D7F9127E526D29AA6E9C1 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - D8870C69C62D830AEC01CF4F4266AADF /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - D8A92AC900C8EE2ACE985E552194AF9A /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - D8DBAB665D67A4A1DBFC02B0AB4ABD36 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; - D8EA1A72FCF227A25C31E74AF4A51DEB /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - D8EA2471306A983F6E52344BADF4267B /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - D9004ADE4F483A5DDBABBA78328A24AF /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - D92065500783754ED2FF58B22D3655EC /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - D976D0CC5644602F4031677C5080B040 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; - D98947153E3073506DB17E03C33BE7C4 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - D98E740D6A2CA4C8275A415F9C2C6005 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - D9E51E831EF828138C136D449123FC59 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - D9E7535A608FB06AF8E9E8CA4D43391A /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Text.h"; sourceTree = ""; }; - DA16AB71853B8548F47605009FD76347 /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; + D8700A1E3049C7EC2B45DB7F0E8E4AC3 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D87CF7D69622540A84C42BF33E227D40 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + D88B45F809EB474C8EDE7E56663F1210 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + D8B6B7FA0B93A56E44C963046301ABC0 /* React-DevSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-DevSupport.xcconfig"; sourceTree = ""; }; + D8EF7B97B2525B9BD9B1D3B530FF70F7 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; + D8F8F8CB86AF57DFF49DF281905B2E74 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + D906BD929624467916DC240B348D1692 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + D9201CD38980A63032A4DE8BF5E732D6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D9218A842A6D6DF83A57076B1E90EFC8 /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D92B00F4DF1037F5CF8C741C74F79CEB /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + D9356783DFAB60412E4A95FDA1D32D7E /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + D947C3DE31525BAD97767A58A3C736EF /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + D98E36729B93ACD25428350A9BACE568 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + D9B2FB44369EA93B47812531AD7F47E3 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DA19C5B06E232034EDB5EF3362EFB5AA /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; + DA29A8EB31EB1EEB5F9205381F8ED317 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + DA47388D7B36ABE711476E64975F9781 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DA48F97904C179AC3326BE4587A49249 /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; - DA82BF518BA12487583FB7096644F4A5 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; + DA8EE343D625B06EA1359870A66259D3 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNetworking.h; sourceTree = ""; }; DAE138DE274E387CB5BD5A4785EED9E0 /* GDTTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransport_Private.h; sourceTree = ""; }; - DAE4124440BD9CCEBD07774F0B2B6A77 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVibration.h; sourceTree = ""; }; - DAFEDCA6511829295BB6BA87BA7DF02D /* React-fishhook-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-fishhook-prefix.pch"; sourceTree = ""; }; - DB6B9BB62AD6D5EF7A4987B22547CD56 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + DAEE787CF33D79EC8078B8A152606812 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + DB13E1315E2DDB9966666EEBA42A599A /* RTCVideoViewShading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoViewShading.h; sourceTree = ""; }; + DB3D3DE524550989F65EEFF314A794EC /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + DB4DDAC7A9323A31E17883165FBEFBF8 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + DB5A8E142AFEBC1CC08E9291253FB6E1 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + DB97C0E542AC5BE5C05B0E8848099851 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + DB9AD4A6FE1E3CA4A1F14B79226832F0 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; DBA4B7775EE344D3605443272F244FB9 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + DBAD3F6269AD912F0C5E9FB5407F4611 /* React-fishhook.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-fishhook.xcconfig"; sourceTree = ""; }; + DBADF308753226D1136A139DDBFF022B /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; DBD5AB1191866F85728382E4C44FBEA1 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - DBDFEA882CD8D83E46CA103863F67E19 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - DBF2B18E513F28D1A93ED2813F9BC5ED /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - DC0E53FE669B93BA215EC345B3D5C67C /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - DC112C53F96F285D1668593F36345BF1 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + DBF631D95CE9659649674B49EA5E8ABF /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; DC1B3A67DA9202AB6021155602DCD3FE /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; - DC25B090F79C11554B08DEAC03D9FD84 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - DC474EE9137ED81E7D839D058C0399E7 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; - DC5143AF7BB4FE28E5CFA20C2778547D /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; - DC85BF8A5511BEAB1E4B1D26220B0DE4 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DC26EAD4C76E544A68DF1B35B0F8B74B /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + DC284C1FAB96AB619F94D93F431DA459 /* RTCDataChannelConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDataChannelConfiguration.h; sourceTree = ""; }; + DC3ED586E28B8D7DADBD7352904E6682 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; DC8E785FF376689515D1C1A26F4C5CDD /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; - DCC2428E07CAEA5773D4EDDCA723E8D9 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - DCC5ACAA6C1406984C773E1B77568AE4 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; - DCC6DFE4B3EF8E8479E00C24847F70BC /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + DCB3FB1F1C86A08540A6A052D7FB42BA /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + DCE868B2DD2A2397AE9CDB09C640B3D7 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; DD02C6DFDBEDEC38DB9316122DC68038 /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; DD0B1E28CFEAEDE4D379309B30800D2B /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; - DD4915475ED94EC1DC813403E89620D2 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + DD316097D74A6A79F091FA6C69794A23 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + DD47A722EF91DCF7B1735AB023587EDD /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageUtils.h; sourceTree = ""; }; DD79AADB303B0977986710BC00250C8A /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; DD7A713DBADAAC11AEAC9CBF5714CA91 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - DD7E913B7DB653BD1F8EC1EE6EA833D2 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - DD817D849DC1DFB842C35E2D40DA54F9 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - DD91A1964B13C90FCBCCC3DF2D81CEE1 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; - DDC00ACD3997FA1977D58A34104CAE78 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - DE03D9FE21418C384A041C003CF109E9 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; - DE419A1AC219E6427737E519E7ECEEF7 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - DE6FE26D414F8BD5462D9CFF5BBFF0B9 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + DD8B3DCF747704685F53248058BA7780 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + DDAC0636DE0F5CDA1FFFE08CFD103FFC /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + DDD9EFD6509FD88690B3F115B31DCA7D /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + DE13118767E25469F83CCEA5C667B83D /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + DE36BE3FEECB26B2EDCDBC30AD1652B4 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; DE9A3B6BFE9643DD7B8ACFFEAC71AF79 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - DEA3DC5671D5C877DAF7CA87B4425C02 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; DEB3142967DB480025141D11A7610924 /* GDTDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTDataFuture.m; path = GoogleDataTransport/GDTLibrary/GDTDataFuture.m; sourceTree = ""; }; - DF0632713CC245E229E56690F77293EF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - DF1383FCD6449764B031EF82ADA7DA94 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + DED1F39E97C9C5F368561A9264C0BB6E /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + DEE1069933A7D6C78A7768D91C83AB70 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + DF1EB58F6F34698245B14140006FCBA9 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; DF4CA748C792A657820465D46282135C /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; - DF598D7B902935C20BC99B640D5DCDDD /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTHTTPRequestHandler.h; sourceTree = ""; }; DF6A03876D41F9E85AD044DDB6F458A4 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; DF6AA8BE3AB1DA509A0AF060FAAF600C /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; - DF8C016F487ED18B1723493C7F9FF057 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - DF98FAFA4332F48AF619D2CC8DDF224D /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + DF70675D405738BB60B5633AA4B8714D /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + DF7411D39B4ADBA745E9C31C4C1BE962 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + DF75E75CC1437719AAB4DD31D1184246 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + DF819287D44495036E766BE5E0BCECE5 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; DF9EE2E07853F87422F1FE26C5625E59 /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; - DFABD9F606FFF0AAB42C508ECD90344F /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + DFBA9F9ED5017F9945DB97C43758654F /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; DFD54D567474AE55EB97F8845FAF3B7A /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - DFF4F28EA39916169E14C9E88A56D357 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + DFEBA51911EB725E6B74D649C099D4BA /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + E0188648DC0FEEB7A99E606541F32965 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; E023552C9F195B60B63937F4756FAEBF /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; + E032FFFB6A36FC427FD7D3E976D13D6D /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; E04976218228CC76EBC93B283373EC06 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - E06A14A91EE626A2467481BBA852C238 /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E0735CD2CC65F625513892D928AE4C66 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; E0940ADE07D8CBA6B2FC95ADF0740055 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - E0E6F6A9435D05558C1B18F21682D410 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - E10138594962EF536E3E74A60AB6378B /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - E1058A977B629F77554F824CCFE5942F /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + E0B62EDF318EFE428FE9040EC14DD4D3 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + E0D0CF437DDB1763F7575EC8AE7DDBCB /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + E0DAF39DAB7C2ECA8C91B6B7FE9018EF /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; E11189EAF698EAD899AB2AE3B2F02FE8 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - E12D4A3F4928D8B2EBEEEA5A728BDC11 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + E118E041F94B5E8A5F56738B9E2296C9 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; E13B19579CDE91472BF9A97468779498 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; E145567783E4BFD06811051A04D79B43 /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; - E14810F331D395659C0B8E79300C6FF2 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - E1A6EA2BA97A3280685E8170D63D4286 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + E15CF65609312FCFFB50C67E3859D45B /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + E176062037BABD7604F0ED249EE0DE62 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + E18CE3E014CE764ADF49FBB006DC7481 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; E1A7EE205F60BF435DB15650AA5B16EB /* FIRCoreDiagnosticsDateFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsDateFileStorage.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.h; sourceTree = ""; }; + E1AC14BB7878834437339910A0667121 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + E1C4FCE5BD55198441D53F1DD5E76C5C /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + E1D3F6AE70C836838DE24FB6FF0E5319 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; E1D7A0323DA5C7661F1AEE66960694ED /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; + E1DF3C0A408A5355E6973EBD51DDB377 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; E1FDB18215738E0DFF8669E469DFAFDD /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - E200A3DD1BAF6E8CA2B79929E80BD2D9 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2098ED15AADFAA96C8DAAF3458F4CFD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E225BF1A9FD04A4C2C0BB57A11862C9C /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; E2291D8D25BAC35D0DE563E75BE219B0 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - E2332CD7E54542E64BD8F81B0A828FC0 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - E290318D93487F59DE5C31910FE61D08 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; - E30928FD168DDA9B3A6A22B9E5BCB99B /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + E27AF257080FE85FD432B052D55A8A15 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + E28FAD0B2A61E0D1BB89C636FD8D6E2A /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; E31CEB7D87267B02F5519491B8045ECD /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - E3A3BA1AA2184CB88047A24ABDE6B7EB /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - E3BB2039CC665D62E0DE9B2D6EAC0F63 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - E4038569A3C373D47FA10F76EC869E8C /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - E41544450635104B71B52D6722B933D2 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + E326436BE27592F2DE15576F164B478F /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + E36AF35E5A5A6E823912944F985493FA /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + E3BDD9A33943CC2984F2184D6A64B123 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; + E43742D427125A54270E8CA1B82F9D0B /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + E4417D435F96602949BEB1360D9DC349 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; E445482A429BA90997690A15AD48D454 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - E463891540DFDF7794DBF0EF315A10A1 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - E4BE6D5F11E8147A1D317860401A4EC7 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNetworking.h; sourceTree = ""; }; - E4F8A5846F3BC476CE395C5E3F9A6BB3 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + E452EE71B0D65F04F03C121CE00B5402 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + E4B12A8F9B292B97026D15BD63673687 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + E4E38FB06AE0AB149E33DD46E7515C24 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; + E4E71B5B22CFDF5D7F07394422E1E362 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + E4E999EFD330156A1C4F56E3F07E6463 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E4F955CFBD57187BE53C9B28D12BCB5F /* UIColor+HexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+HexString.h"; path = "SDWebImage/Private/UIColor+HexString.h"; sourceTree = ""; }; + E50DED67BAFD9C52C33C3946003ECCE3 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; E52E0E9DB232F8BE40F074B56A453EF8 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - E55C69F29A2638E58545E47DB7888B7F /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - E55F7B3536044F2F9DEED24EDCEC22E2 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E57FE3A0A90D636D235CC17BA80C1381 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; E589B89DC6C6FCB4A178CD809A1586C0 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; + E593FD68DA7C2F1CF0AB6B6A9EA4CFF1 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + E5A4339381AA10A87EC7DB89EE3D6340 /* RTCVideoSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoSource.h; sourceTree = ""; }; + E5A55ACE2092C7D371CEE79D9B99867A /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + E5DAEED7D21C3CD3C680F45049759D63 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + E5E0A7BDB34F4D15B98E323AFD2FB279 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; E5F9BC99B025FF83A85BD63F3682C6D2 /* GDTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTPlatform.m; path = GoogleDataTransport/GDTLibrary/GDTPlatform.m; sourceTree = ""; }; E6155A2809622FBF0488834710F92202 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = Firebase/Core/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - E63A7FF44151A27C412CA09450D6810C /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; - E6502F442A2519C403F7B0C65B80CBC7 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - E66FE9B9AD5CD17C0E4862AFDCBCA61C /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E638DC4BD07E3A60899BC0122C39AD84 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; E688CAD13A81B50395BF1EF43A67DC37 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - E6A42FDB034E7A190F5DDDEA475D6CFC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - E7268B52FF6B632BEBF37CE9F88C0529 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E7282F298669CE9F5F6432FCFB604961 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - E73C0F43160E8CA395415C6B98A4315E /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + E68B6BBEDD5C5A8FB5F0F1534192D4D5 /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E6B6CDF564CD045EDF359B4653F86D83 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSettingsManager.h; sourceTree = ""; }; + E6D1A761F5B5B841EFCE9ADC6300685E /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + E6D99A57B91F9409EB057F21D5DC5A6B /* RTCVideoEncoderVP8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoEncoderVP8.h; sourceTree = ""; }; + E6DA1B87AA3918D701AEC19AE6C457AC /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + E6E5B648080413629931B5FF827C462F /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E70C4358D1AAF6D073CE5C82AA2DE2C9 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + E723D3596BFBC35A6289523AD2B53647 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; + E72420FA0BDE952F019653249E1236F8 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + E7347770CE02EA9D6290F06160A89555 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; E75B60E901ACD0428E5FC4F6F9FFD787 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; - E7C8F6FEE704A8BA53A3AAFA0CC3C896 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + E762ACAA057D617752F97B4278ACDD14 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + E7A674BAE61E1BEAA7AC93F46D06671F /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + E7C71B857759EE7566EC6B15359071CF /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + E7E6B40FEB6D36A4338FE6502EB1FC90 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + E831BBD5BE19C6F85ED197198C9EC8A0 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E84029E7046DCAB5249624A842FB1E7F /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + E847A89A58EBE844CEA300D1F3AD62B4 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + E8482DA36A3A6FB92A6B995FA7B5706C /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; E863253CD22A2DF5CB3D7E9F6FAB3584 /* GDTStorage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage_Private.h; sourceTree = ""; }; - E8F76157E29AEB6EAB0D38A989D21CEA /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - E91A7B752C7875A8E1092BF075AF19A8 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - E94C014C9B9AF186154A1360BF5178BA /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; - E979B20C047176EDDA8B0899B05CC85E /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - E9A9B491BDEE4CB38A769E0DD6767976 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - E9ADAAC88F6604E808795B9579A727CD /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + E873A37952E3161EF4AD69498DA6AD4E /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + E873DF86898B2DFAE083F10A3AF69E4B /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + E885CA4FB3886DFCCC251EE0553A5734 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + E8913AF98AB520A5438BB09A0B8C4ECB /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + E8F18903705103C212EDDA7E1F2E355C /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + E8FB760D99180F916F1F815ED956C082 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + E91D25925455BE8F62051DE4A82FEB60 /* JitsiMeet-Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JitsiMeet-Swift.h"; sourceTree = ""; }; + E927E8D865C0A52483431C4D118EE082 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + E92D5D88D01E7716C1D2C1A15C9A0EB6 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E948A283AF7354176E80AB7BC1487B91 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + E96A0F78486FC8B1B3EB1DB6D6BC96D2 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + E97A7813C393CA2F898BA2815F02A1A7 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + E996C00E6315F0A32105C5D96D26ACE4 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + E9AB247014F910F940E2A48039F21F8C /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationUtils.h; sourceTree = ""; }; + E9B1B21B1FEFB1B3293104C272351541 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E9C66AC9E6FA17B555C70A4A4F082BBF /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; E9CBA7B3D0EE3E20FDBB699DBBC46487 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - EA0D26BCC50CA0C4555A20BF13D4D289 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; EA1781D89FFA2BA60622D97169AAFD88 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; EA1CA2995BD4B69E64862FBC8B4A4419 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; EA1D083FEE448CFEB52F774D6EC6F005 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; EA23EDBB8449E1237AFF6A536AC09EBE /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; EA2C8B7803631E9D7E122F15A966F8C9 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - EA6877812ACC5E84E4F624F54913161A /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - EA72252935779996212AA0252AA8DD4F /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - EA90419E7771CBC09D034C6A4E7A6844 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - EAB3DB2E4C6DD54C66F3E22A8023ECF3 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - EAE5C9A7D4A27556BE6EF109062AAF49 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; - EB12E12128E6AC5273F7E81237F25905 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + EA3FC604640726E3BF2FBE98DAAE1456 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + EA9600C365D12902EADC970E290E609B /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + EAC8BB2D12EF30020371B6F5020F4D55 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + EADB2E0DCDD328B5CE981B5DABA26302 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + EADE67B6FB6A838B524DF151C409B18E /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; EB40941859B6BF085262A4AA891C2C82 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; EB66EC115E433A821451732BEAA034D0 /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - EB8C45C37E44E2F1173DBB06500A6943 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - EBE480FC736E0EA0FC66709D62498248 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; - EBE6285C1B5B8A3BC8533BC9402EE19A /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + EB77E5A413F54BB70EDDA67444BAE1C7 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + EBA569295521F9F51A1D1A40A71182C7 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + EBEDFE373E297B1C72D2D13E9E7A7792 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + EC012FC00DC7551F0DA7F42ACE24ABFC /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; EC0223AF3A58CDB188A3F953E17AF069 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - EC36C187BD36D94C49E6B9ED983A1453 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - EC3DD97AD69B3A7ED3FA8384D5B50C55 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - EC551D7444887AB475ED9BD699009840 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + EC0CDC403994915D1FED75B8FC2C7485 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EC22EBB12E0B6E021B23196B4859D2A3 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; + EC5A63CB0AE18EC0DF42B9220865D856 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; ECA90C12864EB009CD6E675F76E9A070 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - ECCC048F8FAC641504822CE72B3FFF55 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - ED17D141B6E83F16279E3667ADD94BFE /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + ECB0336293AC8AC7CFEE8A3696AAE425 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + ECE56D89AB9424CE89D13F130C51526F /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + ECED1B49038BCC0EC089ABCC4E12CC91 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + ED0943C000CBCE5C0CFE814B96293C8F /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + ED26C5F91999DD00D3AD9FCE68FD4D97 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; ED2BD888CFD64EC8DD95A19530AADD12 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - ED318455577ABB98B70809E5CB1015EE /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - ED70715DB4245A325FEE870DE50D9E42 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; - EDB7E26045B9E01953F9087BEAA048BA /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - EDCBD5DFF45B920A096B9FF295678D1E /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; - EDD5613930825E2439412B1AE9CF18FB /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - EDEC5484C56D63DEEB4E5DFD72871BC7 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - EE01FB5BBA7D8DE2402936C8A239449B /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; - EE0BB504FA420B24C4B402FDBE4F1CEC /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - EE1520050960C45BEBAAC3A3CAB5033F /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; - EE2C06D0C637154376A4692B0415596A /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + ED8198D0F273C141F6BD83DE593B502F /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Text.h"; sourceTree = ""; }; + EDEDD8177905AEA37E63317B46731C67 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + EDFA0D2123FEE81D06ED052FD0142B0F /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; EE44A3C4F294DCB4F009A3453413691C /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - EE7470AF65136D172D99EA7E8F474A54 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - EEBA9DEF8863FC6D30D7BF55AF784A75 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - EF26D7A613BF8BC7544507B47C7FA18B /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + EE5393F83E466902A9DB3804BFFB62CC /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + EEA297E5F6841413D43E16C4B55249F7 /* RTCLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCLogging.h; sourceTree = ""; }; + EF051C0F96F19A8D5A6EAA3C4283A1E7 /* RTCMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMetrics.h; sourceTree = ""; }; + EF12E9CA42CD267546880F103EB916FB /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; EF4EB9BC1AA0355FDFD7835B38C5896C /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - EF884F76A144C84E03A92EECE93EED99 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + EF4EF760B7F589A58BA45E717F0389C1 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; + EF53294520B6B0FA2510F4FFC5B95A1D /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + EF561979E4907ABC9E4F2881A7B6BE6B /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + EF763750AF778D7EE9F54536C64BB462 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFileRequestHandler.h; sourceTree = ""; }; EF99D7F00053860409719088A4DDA847 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; - EF9EECA6EFEACBD22887A88D6BD2FD05 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - EFAE338509D559B5CFC264BA55A04519 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - EFE2FD15BE5020AC4747EDF89CD765EA /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - EFF110D0FCD6E0223A45F939D34D4123 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; - F00BB4995590A35B96498DF60CA47F12 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; - F04B8FDE7FDB1D5E881C15C77ADD9C15 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + F017BA08D7BEABC19D1603947447626C /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; F055CCC2B72DCFB4E1090FA3AD861F91 /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; - F0578B824AB88A633E790769ED604AA8 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - F072DC7235026CF8B4BFBC2F86C25130 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F075E77D83FF1ED6152CDA525357F4E3 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + F06F77C11E1A305DC7E9A6EBDB4F4F80 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; F077345CFE65C76A10C340C50E4F83BD /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - F0844815AA610F1F3C9D810943921BE4 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; F0A146C93184CF066D0C6275B20D0EF6 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - F0B02143D1D7C74F38519538D30B45DA /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; - F0BD44BACA52F1E117C9965CC9A12D78 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + F0F3AE1E67D4C6DF6B00A3D1298E48A6 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + F0F9BB68898D056E029FAC27ABFA4A19 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; F0FADC95915A678FB195C2730B7CBF4E /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; F115E65B6C65D8C32616BEFF59183C6C /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; - F121EF6426EFA6448F715A80FA0A0B34 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - F12D2F227CE4F320514C26BA159836D1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F13ED8270A95A84F57083C807BFD0A38 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - F15869426D11B272A7275D1AB8717116 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - F16056412A25F3177090298E05FE0264 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; - F18B32911780BD620AC3DDA2688EDBD5 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - F18E429D2BBC48452039321DD6F823F7 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + F13F72D539112CA82BED601EEECFFA5A /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + F15C6C1B4BC29438848DCEAA767C7678 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + F16E8D91B41DD28E7F1B03EF16D55A42 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + F17F66195F90A22FEFDFA62750F5F7A9 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + F184751FD366B731549E57C170DD3397 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + F19252DC595314984880F8CA33B7C48B /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + F19A61D5EFA4D44061D331AB687A882B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F1AAE41A2F077404E26CB34BDE7A709F /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; - F1D7CCA60F3812FE710C404A3A1037B3 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; - F1DB238264B356DBCF97C556B17C2616 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; - F1E1CE6559521240BE00912D63F20604 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - F1E303DCCFF14E6650F61433548D0AD7 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - F2111A958F82B943AB20AD17FE937B5A /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - F23943A4867D3C2DB12516ADED14698B /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - F26FB1F96F46DEE91C9960E81F09A322 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F2801E4F38CE0E080B6A193CB4977B4D /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - F2DD3888391C01659627968DE1A6443D /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - F31AD7BF52A146E29E6BB9BDC4025CF6 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageStoreManager.h; sourceTree = ""; }; - F329FE8DE3D968083CEE1718D3764457 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - F33FE569D773A8C3C0FD6903E01CA41B /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; - F341FE17636745670AA079F49C5F2AB8 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - F3669661A845757A8517FA6D29D614C0 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageUtils.h; sourceTree = ""; }; - F382F201BA7F0C2FFADF75F3D6E25A1A /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - F39F24527C0BF619EC3D5693EC126D28 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; - F3C5076ADBAB787FE62AC09CB44B4A9C /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - F3C84519A110E8699404C4D6B59F05A8 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - F3D635F27EE7B95227B373C184006BFC /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + F1F090B8F521C0B01A40303D391D0659 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + F21E920ABF45D0B185C49B87B8E9DBE0 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + F21F1BE96FB0E9706A1425B369EE6878 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + F225A38F8353F4990DFADE593C41C9BC /* WebRTC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WebRTC.h; sourceTree = ""; }; + F22B84B0B2BE226BCD480BAF756DED0F /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + F2B211A6BFCEE89F0072358FF3D45A5C /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F2CCE841AF025B6C07DC6EAB37032236 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + F2ED6AC08A4C64FC1D70FCDD50D038E7 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F2F90A7EC9B268A42FCEE3A81CBADD7C /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + F2FA61B4732D7479B792379486BD21CF /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + F2FD8C660F36827E09952C3F55FA7319 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + F327AE834769AFC90C194BC9D417F05B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F32DA9E5A6E80D06922422B63DF7F91C /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + F338CAA02218407D14157B8C0C066883 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + F340112ECEB1A9258A2918559DCB596F /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + F344A662895CDF840CC12AAE2E16FB72 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActionSheetManager.h; sourceTree = ""; }; + F3A36FE38AB6D366B4E2D7EBE8164660 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + F3A7B051965DD33E6881F878A97E60E2 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + F3C19967C984D039E7A85431C2E801D0 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + F3E5689B93737152646F792BA69FF344 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; F3E5FA7017063441BC562E0F635EDCA7 /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - F3E7E34D7C3F5026C0C718A4EAF83F19 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; F3FB3E9F32323F9E92F2DBB8427B34FD /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; - F41595A5D529546CEB7EE05466E4B2F5 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - F417F46A3ED83BCAC4547B2810369C6B /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - F43F7B5C429A43C9AA37F0D856A44D9A /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - F4426C51A90A9B4E62507712FCBD0B94 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - F4569D972BB442379C3338AEAB89165B /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; F45C0F33507F57DFFAD844BE18EA83A5 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; F46F19ADD7D5E644B1C2C9288E4917C1 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - F4928DF82D05510E53AD9F1DFD6B83A9 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F4D7A27DE05376B88813A660E7C90241 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + F47035379E9C2FC97FB5B7B2D777AAE7 /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = fishhook.h; sourceTree = ""; }; + F483E250BB6DF8C47BF74C75EC3D17F4 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + F487ED953D0298D0605F1BBA11E6FF75 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + F499CEDC4AA4AEEFF7B11554EBD7221B /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + F4B58832064071ACBD7251BB2A6F5892 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + F4C444CCABA146BF723C03366E757D21 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; F4DB41E421719A4A01958C93D7A94464 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - F4EC1C5E6C7158781A07F2F3EC8A3E4E /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; - F4FABA72FA14891A6A3025D7376A965E /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - F5380D71214BC40A7BB2F2B6A1378F25 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + F513EFACFEF5CA937FF0AC2427277924 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; + F5170AD31FF8A4B719F95CBDB9B0C0D1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F54ABAF5EC48A86E45E71E8BDB6CA43F /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = QBImagePicker/en.lproj; sourceTree = ""; }; - F54D1612AD852E1D36FFF295131BC8B1 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - F54D4CD2861E51D3CBE468A3E4567985 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; F54F99957739819D9ABAAF28511A73B2 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - F59046A2A0F6AA546CFE2C080736E5DD /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; path = fishhook.c; sourceTree = ""; }; - F5C70C9D3443418C0E205C0ED1081513 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F5FE3D17B05BF505807A5F1BBA31E0C9 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; - F602AC10FF5085CD8E01D3BE9A16819E /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - F617B8F1DCA93C70CB9AD10E0F8FC0E5 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + F5D70D0331EB65009B790F8772D66A74 /* JitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetView.h; sourceTree = ""; }; + F5D915DBB4A7DF76983FAA17A75A6323 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F5E8AB734699B19C78718064ABA1FC2D /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; + F607B8AC88332569FA3AE05CD58EBF16 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; F6224014A074C7DF2407E5021DAF4B58 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - F63899B09DCE2845A92AE752D11B320E /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - F665A5DD37996A950BC4A82CCA6E9596 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; - F66FF0943D13F8471AA183C47A02DDDE /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F676F9FF6CFD72C3EA2B98E8FA84A113 /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F68FC3C95B1E5A044B6619F03AA0251C /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; - F6A0B1EAD067DFE68899B0E6794AD9B4 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + F630BF54CBCCA83E82084BBE87635A57 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + F697DE0B6919F1EFC1C138220D793285 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; F6ABD140F1AAFF23D08A1CFFECCE608C /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - F6D02AB598B2085E74D40F9401DC2592 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F6D4ED1945799618F2102E409ED274C1 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F7032B93FC0F173F751E7B144C25F67C /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - F732F2E885B57D371A925CE6F042B7F3 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; - F75FEAB11523335F43348DB90329CE1B /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; - F761CA6AB8625B55E071D2ACE220F4CA /* libreact-native-video.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-video.a"; path = "libreact-native-video.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F76D5060EA02A15F31CFDCE3EE6F1C74 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - F774DA39C63828A3C1C8FA279C384A16 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; - F779B73A57287E4D0934FB43928ABCFE /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - F78000E918313697EEC215285E6A040F /* React-DevSupport-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-DevSupport-prefix.pch"; sourceTree = ""; }; - F7A0936B932B49940D8FB589DA50BC71 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; - F7BCCCE4A93E3EB848BD5F8CDBD8E1F3 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - F7DBE2076D9DC52F717C98A24059CE96 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F7DC408E35B0EA1D63CF2CC4C0865E8B /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + F6EA592D8C983F3A820CAB3FF77A7BCB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F6F54A2F0A0E29211A21D353427C59DF /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + F70CE3B9D17581E8658EEADF09B4868D /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + F72D1F634FF05D78E09DEB789C29E648 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + F736E61E5A2ED76BE2DB1A8AAEA4609E /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + F75E5C9AE60131C0166782C15D69BB98 /* RTCMetricsSampleInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMetricsSampleInfo.h; sourceTree = ""; }; + F771788A70015D51AE7E8DC063415CDC /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F7BE267504219E08C2B3E97862E1A4A4 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + F7C75D36C71A28DD87A89EA552DA6191 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + F7C7E65B04A50F40F571FA49DEB4F6FF /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + F7CF0E506209618796C9750579F5680D /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + F7DF2337CA7EB4EE540AC9B179143C76 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; F80706831D9CA95145FCD5FECD21465E /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - F85FE059DC4E791351183FECCBF8B220 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - F88B74926B008347BDBEB34C37912AF0 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - F8B0DC69839F7955C4BA20F869AD92D3 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + F80B131E19A371E0D0B3CE5FED5DF94E /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + F80C2348DBBEA774AE3EAA4EFB9A13EA /* libReact-fishhook.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-fishhook.a"; path = "libReact-fishhook.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F81F6E5F778A38D830BF3018D912F519 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + F84E044A01FDFBC089870B38D42D57BE /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; + F89BE1EC7DD1BDD21694A3D0647ACFBF /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + F8BA357796A18BEA09244DCEC7ADF1B2 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; F8CAC4D13000BC5BC52ABBFBE92BAA54 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; - F94A3222B6DF99BB99D99A3AAFCC6075 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - F9740480210214F5412743F3E731F9B0 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - F998FD94FE72761C495E5BD961F0009F /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + F8CD56F6EA37F627887AFC8DD4B6C42F /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + F905905F83A465B4E96F7B199277348A /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; + F90E9B4BC7DCDAAEAF7AB5ED360C208B /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + F92DAC8DC9779886C671F52A564D5D03 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + F9460B9B54E64BDCE867AECA3386A814 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; + F9A79287D480B04EEA5D4AB507756F42 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; F9CE0D95CB30C7E29F8A50853A7ED744 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = Firebase/Core/Private/FIRErrors.h; sourceTree = ""; }; - F9DB1D3DA2A6C16CA3AAF05321F790E0 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - FA1A65C4F3C069781F69527ADEE2B376 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - FA29FDE86F696373A734937702705533 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - FA36649CF44FA59CD2B2320613591B6E /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - FA471AF8728317A5AA64BE4AFBCE4759 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - FA7752C20EE98703A82E410FC129630F /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + F9D1879CB5DE2D038FD3F2D5D194C572 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + F9DE193A532D823A2C5F2C9CFE092DAE /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + F9F7672D784A7BD2CD2673A2DC18F888 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F9F8D37AA2880F274679623642E65C2E /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + FA9B3CEF67577AC1D40A5CF12800B038 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + FABA93D99179070E8400B4DB0C17D637 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; FABE7D30D6268CDF239DBB659220F4E1 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; FABF62481064ABF2C11928A42592E1AF /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - FAD10C1EA83D76D659D1F3D1303D1142 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + FAD085E5418C438B0ACE5F8D211B7414 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; FAE603A0CD507D06532535671E545333 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + FAEC00366DEBFBF11082A1246409C065 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; FAEEB6A360EA4625E39886BB08902163 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; + FAFB3D0B4EE3F0E233FDA708A703184E /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; FB08E78DBDF9DB8282CFF0D8FEF7393C /* GDTEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEvent.h; sourceTree = ""; }; - FB298C8D213DD000DB7B31B7F28E9B92 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; FB2D86A108895FD798F3CB65A1BA97D7 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - FB5C668F1A4161C8DD532454FF4B45F8 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - FBB2198ED87D3EE2472FA4FFB6180289 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + FB43B72F52B0B1E31871CFD9E8B919AE /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + FB8494725B775BF5C7CF2B8F59044F5C /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + FB8572334F688D92312E1D462A7DBC36 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; FBB541E9B9A01EA3762BE29C5BCC124F /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; + FBB5C4AC114DF2B39C3C81394764AB71 /* RTCVideoEncoderVP9.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoEncoderVP9.h; sourceTree = ""; }; FBB72E8036204ABAACC2897F21840FE8 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - FBD11BE4B0DC960A0D764818A7B71B5A /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; - FBF31FFE5B439D875AB3F113C0215E4C /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - FC1D43E32E369D6434B314A3E9231302 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - FC2E84E8150CB61484C93DC8EA304FA5 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - FC795F13A1F4E1560E61F876EA232F06 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - FC808C66396154A13E2229F419D2FA78 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + FBDB3FF269BAFD11FAF17A33531897E0 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + FC020BDD1C997625A37C1F387E12474A /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + FC38D36766ACBC7BFE50EFB7F6F3D149 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + FC3ED84A72FE9DE5D6129A8D6A335505 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; FC8A3043A001A13BBC3A3945201C9504 /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - FC9CBC2B6CC5EBDAFC6BA6101E45C570 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + FCC2E608BC47E82A0F728FA5F0D83E2E /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + FCC841EDE195B07A39A754A1417386AE /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + FCD637179F3F5DB67508A56763846AE9 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + FCD7F989065C8FDA217E07D65AA536A6 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; FCDA51C6E6843CD4D0A0A47396F0DC84 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; FCE7F753D100418B4F0A16876E5708DE /* NSBezierPath+RoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+RoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.m"; sourceTree = ""; }; - FD0F73A1E828A4547B93C27CA2EB2304 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - FD180D0F446B0BE76D3052844D24B8C4 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - FD18C588BFB08F3AF0AC3DD577618787 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; - FD356547C14B8F29E0ED57C05BBBEB26 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - FD3DE3779262B81E17735B0A1B03A6AD /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; - FD427207EEBC7E128C148DB8DB36CA0A /* react-native-splash-screen.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-splash-screen.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FD497630792652514B55ED0688019276 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - FD4F829A504F4267C40CE4DA3ABBAFDF /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - FD519AB44E45C2BCF67D7913FFCDC88F /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - FD583F477D86AB6F44A447D6DFC2D786 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - FD9A6DAE6C6EAA3FDB9CB3220D6D5567 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FD076D4B3137FCA3E094689368E1DCBE /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FD27B0891FC98D280DFD2F6C5267B543 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FD4C8D93C477EF3746E33D4F3A030F6A /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + FD5A23DEE7D481FCC932B2DCD45FCAF4 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + FD6F8AFAE619981D366B26D261C9AB90 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + FD78F40A8B8660420B63703FC34E8CBC /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + FD8030763E90C6DF19EFAD9229DCC01F /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + FDB3FAF7EA7F668E1F21740EE7CAA6DA /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; FDBA5810537D87F2CA2984D6E884E860 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - FE4AF122A0F1F74C6FCA07D2E1213969 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - FE5FCF25E407FDBD1F637DA7E6D39779 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - FE7D5E3122E62E78BC0D5EA543988BCC /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + FE13FBF385238AD0E9516E1D2826CB0C /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + FE2860C10BB693BF87C92037E79DA848 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + FE3A05F84F7A2A4565AD2CEA17AA60CF /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + FE60DB5A92B5D13E85FDB6095867D586 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; FE7F64D90DC09D7E711A4F454299CDC2 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; - FE815C316944FC2C21F1C0403D74BE8B /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE859787F69DB1158BBD2F2FEB00EAE6 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; - FF1FF11AEC52441754ED6ACCB68EC620 /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FEAFB87107831290F5EFA9D4A2385FFD /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + FEBAA8C711D68435C6DFA7954D51F2D9 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + FEE1C0F3F1458A06888B9B780F0C12F6 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + FF1A7FD762176941FB81625CFCB9BB5B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; FF283621AE4C8DB2E3F7FBBB1BEE4F25 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; + FF37F127140A7FCD3B455BBD7A25A995 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; FF3B4A93336F5451E6D9396AB2776D0F /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - FF53E274187966389983BC8E40087444 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; - FF64EBC6D572AACBA733F22B80432E8E /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FF810FA16B38A4200C4D2DB7A371E41C /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - FFA2615B8D18D4F02FFC7CC6E5B6627A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FF8EAF33D5D5CC838E23A2C3898E9890 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; FFB5191F2A89F10A824157FCB2185413 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - FFB9C634C45FD9FDD3683F612AB13919 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + FFD23090FD42C004631F10B60419583F /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + FFD5944720427A8A79A2A9EED8046DC1 /* RTCCameraPreviewView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCameraPreviewView.h; sourceTree = ""; }; FFE8CD910E2FD570B0E627B1FFD50D30 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - FFFA28C7AB823EAEA12E3ED75183F782 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 00B20DF539608B1F301E0347722F5A99 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0438409E262620B0C499293599950EB5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5739,13 +5900,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 049D432CF7EB75C21F0293A30D683D77 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0D20D04B77AAACECAEC9F660A019736C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5767,14 +5921,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 10EA5C9F48937116E17D65E119B5FA33 /* Frameworks */ = { + 0F09CFF00CD137BA35642C43A44F0F35 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1272DDCDA275EB65E042040C606CBA7D /* Frameworks */ = { + 11892CDFFD05E275F11A5D453CA1BBD6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 13EE0A12C0EC12BF7DE241B489F941DC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1C8524A5A4298402270773703AAE011D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1F03EA41DA4B8EB680CA3A8593197BBB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5788,14 +5963,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2047B5B356A53AB331954D73ED911059 /* Frameworks */ = { + 228A9F9A2C09B61AF63A537083B1659D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 228A9F9A2C09B61AF63A537083B1659D /* Frameworks */ = { + 24E31DF928A033F083837840CD518D5C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 25B8C0799269F1B8F8D8525B371D0527 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5809,6 +5991,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2C5F188D89B600C106493921E8807E99 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2E44450BEA6B8CBCB8E9EF047BA1D554 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5816,7 +6005,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2ED36A18A6894BD375DD3F30419447EC /* Frameworks */ = { + 2E8958D501E659A3501025769153BD63 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5837,7 +6026,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4038F8255BCCBD9276A8DBB6851B411B /* Frameworks */ = { + 3F9CCE7E7B1BCBBBE3A0A8DFC4F1434D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5851,14 +6040,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4701AEC0BD325B958D6E9C0CEC75E6D6 /* Frameworks */ = { + 46FC7F9ACC55B1E14CC9089D37F16AA7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 48A2287D0E1455B53AF3F2757EB163A2 /* Frameworks */ = { + 47CC821AB1FE9F79D8A0B14E58EB1C37 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5872,6 +6061,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 53AB28723FB589AE1A2206AFBC0A3D0C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 53BF10005749D5F0D5D7841DE21038BF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 568EDF515487EF139B196A43B8293B18 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5900,13 +6103,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5EB24C043E397F64B38EB9746CD9295C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 62DF85C887F420F57A98CFD33E8A1AEE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5914,7 +6110,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6A34CC6488ED3BBF6E45C611EB46EC08 /* Frameworks */ = { + 6939C0AD72DDD0E09FE0679C67E4DF41 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5935,14 +6131,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7D5961F8827D0C2864985C4D63251C87 /* Frameworks */ = { + 71A4D6A99960B47762FC11FF07BA4CD6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7E1F836699028CF9FB9F6C4C32912E58 /* Frameworks */ = { + 7BBDA2F6E16B0EAD18929364769563AA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7D5961F8827D0C2864985C4D63251C87 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5963,7 +6166,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 891C357417C5B292999905A2141803D4 /* Frameworks */ = { + 8659A1A70B34EDBAD2E784FA069D068D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 89594AD8F662321AD7793B9C5525C1FD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8992EE11052F71A57DFEFD7F2962A65C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5977,7 +6194,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 94A83A461F6A335A67EAD18ACAD9C087 /* Frameworks */ = { + 9822C8E8A7DA82F31FC2E59965FC6440 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5991,6 +6208,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9A89D260F89E00633B62E259FD92C5AC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9CAAEBC5F620E83BD5CB56084AC45E09 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5998,27 +6222,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9D003A6F47A00A004A78D956DFC3A435 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A02DA4670B77FC177B76DF4A55CFB469 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A2D7661C5B64FBFB613680BBC9C56C8C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; A3044A76BB7DB25B126B27CEC50DC142 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6026,7 +6229,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A8EBADA0F595E536E8E3D6A632ABF8A5 /* Frameworks */ = { + A32231923EE2E5AF1DC7B9CDD08D6DDC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6040,7 +6243,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B51BC8F168BCD1F92D97D914874D43EC /* Frameworks */ = { + AD57E939D79E65FD10387BEE71430ED7 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B3377741C80C2FDD2E68F90B22C7E2EA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6054,27 +6264,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BAD5E9FC5FFA361DF22CE0DE85AF5B9B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BB2EC964F4183B16DF300FB3D0D91767 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BB9B9E4CCCBC0D6C84E1A99566D9E2E3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; BCC9DE3418B65029E89BAF388639B99B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6089,7 +6278,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C487442BC67E79C9A56068B219FA2FBE /* Frameworks */ = { + C15AB52217870D55C6E04B469DB34FF9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6103,7 +6292,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CDF8D74A763B18FABE05241B37792211 /* Frameworks */ = { + C8557BDBEDBB4A78A5FD31405F6B7FEC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6124,6 +6313,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D263C7FE05A2BFE1AE535D5D2A1A3F37 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D328D69A0F5205FBAEDF472B6D1CF225 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D3D18C5FE4AC8B8A2F86F2B75D610078 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6131,20 +6334,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D46BD416B83086B5A10E9251E78178C2 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D6657934E24FE643575256FEF594F27D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; D752D103DB89DC1C93E3166EA88C9AA5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6152,13 +6341,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DC3402B0C511DE98EC79ABB22A74C895 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; E8106569E98D8F2A6DFB2B93DDED4960 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6166,21 +6348,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E9BF6A96FE7284CAA2CFFBDB9E80A651 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F6C8E7DC315B69390370942E9458848E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FB6F3B2DFFE6DE6D82FDD25F2AD761EC /* Frameworks */ = { + F70E52EA70D54060C94184BFCBAFFFD1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6194,6 +6362,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FD786A886B79E28A1291DF19FE061B0D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ @@ -6206,26 +6381,13 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - 0122C4C3E04A79FC6BF94CD2B7F7F358 /* RCTCustomInputController */ = { + 012E7716D306E2571E9DB9C46A3C4982 /* fabric */ = { isa = PBXGroup; children = ( - 4047439D1B1C355741E5E13B770189C3 /* RCTCustomInputController.h */, - 7A2323C910C66D1116495C1BD2E8D396 /* RCTCustomInputController.m */, - 7C66C4757D9B1F33B8A7972396D8DCD5 /* RCTCustomKeyboardViewController.h */, - 52D4902256421157B71FC68FC0D4A2DA /* RCTCustomKeyboardViewController.m */, + 0FA3454C3E08C32177CA5DC2D8183207 /* crashlytics */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; - sourceTree = ""; - }; - 01FA314F7814858FD6E35BA4D3C67DEF /* Pod */ = { - isa = PBXGroup; - children = ( - CB736BF216D0BE5EEFE66D6092F89D0D /* LICENSE */, - 312E63F534CCC5A95081FFCF5E120F39 /* README.md */, - E7268B52FF6B632BEBF37CE9F88C0529 /* RNScreens.podspec */, - ); - name = Pod; + name = fabric; + path = RNFirebase/fabric; sourceTree = ""; }; 02A0FF690CBF277A340408713E1FE2ED /* Support Files */ = { @@ -6247,44 +6409,16 @@ path = SDWebImage; sourceTree = ""; }; - 0306F14D2F603949736801DF66C71E90 /* Pod */ = { + 0389F1A343E3B240B0208F54FE932029 /* EXWebBrowser */ = { isa = PBXGroup; children = ( - 4E3E6BC054015A601FAE38C64CC8EC2E /* UMConstantsInterface.podspec */, + 1D6777C36B1B42891C11983BC2FBD59C /* EXWebBrowser.h */, + 9CDA29D754112A7FF3C7CAEAE7DBAEF9 /* EXWebBrowser.m */, + C1B387E471E6DD7B5335251350168C1F /* Pod */, + A0A2CC79D7D6C6D6A235BD4ED047333E /* Support Files */, ); - name = Pod; - sourceTree = ""; - }; - 0387842D74C33A52CF5BB5A94406E7C8 /* Pod */ = { - isa = PBXGroup; - children = ( - 8A87D0BA421404167E2CF4853F608C03 /* yoga.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 04348BADAD9368671EFBB677C6608D19 /* UMTaskManagerInterface */ = { - isa = PBXGroup; - children = ( - BF3FD2A3935B7995B8CE5974818A2B9B /* UMTaskConsumerInterface.h */, - FFFA28C7AB823EAEA12E3ED75183F782 /* UMTaskInterface.h */, - 5566B3A2B9C002C2981AA596A5A587C5 /* UMTaskLaunchReason.h */, - 6078914FCF772F58293990ADFE5B4076 /* UMTaskManagerInterface.h */, - 620EF32D936C540EE496B4EA8A7BF65B /* UMTaskServiceInterface.h */, - 35B488EBB09208AC1A8AB43674EA9422 /* Pod */, - D5EF7F9C287FDF445AD22480906F5F36 /* Support Files */, - ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; - sourceTree = ""; - }; - 045168B46975CEB7D5E4CD372FA92AA8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0187A980721F3284C1FC1D348AC535AB /* UMCameraInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; 046EA2D147B9EDB25B696D3B185B41CC /* Support Files */ = { @@ -6297,28 +6431,6 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 0509013658CEFF138CFDE513F4BF3D58 /* RNAudio */ = { - isa = PBXGroup; - children = ( - 4424C3577D61E6ED424D94537483105C /* AudioRecorderManager.h */, - 2EF52270D8A6FFAE1F8A09E543E9D36F /* AudioRecorderManager.m */, - 32A5488144DC72EE3800F2783C688853 /* Pod */, - 4D4A9388AC46645A45F0D719A8EA28B3 /* Support Files */, - ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; - sourceTree = ""; - }; - 0527BE8B0824D3908D820FBEEB80A46C /* Interfaces */ = { - isa = PBXGroup; - children = ( - 26B2EC19590C89A9549C900942D0F08F /* EXAppLoaderInterface.h */, - 71E068C1DD38E2937CEF9E1E51D857C2 /* EXAppRecordInterface.h */, - ); - name = Interfaces; - path = EXAppLoaderProvider/Interfaces; - sourceTree = ""; - }; 0551BADF5AEC21292D5F1BFBB0AF3C80 /* Support Files */ = { isa = PBXGroup; children = ( @@ -6330,133 +6442,107 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - 05633C0C29B7A4FF64F340E5B6D3C21D /* Support Files */ = { + 061D1FBF99849AA13BEAB7A6672FEB78 /* RNAudio */ = { isa = PBXGroup; children = ( - 1035C2BE795A043B0B7A2E1BF812356C /* RNGestureHandler.xcconfig */, - 7D7280D3CC32E610F3B018CFB177F08C /* RNGestureHandler-dummy.m */, - 935A5C3CEA430ED86AE5F755D5F8FC43 /* RNGestureHandler-prefix.pch */, + DF1EB58F6F34698245B14140006FCBA9 /* AudioRecorderManager.h */, + 99A477AD9F5FE54652E31A7ECD230A6A /* AudioRecorderManager.m */, + 6A442035A77ABB054C3D843E39670947 /* Pod */, + 065C8C67F0A6309AF4BFEA82DE7DDF29 /* Support Files */, + ); + name = RNAudio; + path = "../../node_modules/react-native-audio"; + sourceTree = ""; + }; + 065C8C67F0A6309AF4BFEA82DE7DDF29 /* Support Files */ = { + isa = PBXGroup; + children = ( + 80DB0265FA24D1C64F5216C0D6E437ED /* RNAudio.xcconfig */, + FAD085E5418C438B0ACE5F8D211B7414 /* RNAudio-dummy.m */, + 949C6775937BA61A725E56A07C4CF14E /* RNAudio-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + path = "../../ios/Pods/Target Support Files/RNAudio"; sourceTree = ""; }; - 05AA20586F7A9697B5F61093EFC6CEBC /* rn-fetch-blob */ = { + 078B0141523AC759BD779B52312F3D6F /* Support Files */ = { isa = PBXGroup; children = ( - AEA2771FFDBF750AB8B87C609FD61536 /* IOS7Polyfill.h */, - 0F6B49EF727948F96ED21F137F120DC7 /* RNFetchBlobConst.h */, - 3804A8ACDD0179C51A480AABAA57BB15 /* RNFetchBlobConst.m */, - 679400ACE958F98409C874B5359A2445 /* RNFetchBlobFS.h */, - 520FF0A055EC8BF310DCBE6C50255CAC /* RNFetchBlobFS.m */, - FD3DE3779262B81E17735B0A1B03A6AD /* RNFetchBlobNetwork.h */, - 3ABBAB4779459D6EA7C2F31F57AD587B /* RNFetchBlobNetwork.m */, - 2E96A283FCDCA122F08478CBCD9B796B /* RNFetchBlobProgress.h */, - 45E3815A68BABAC236A080E04345B268 /* RNFetchBlobProgress.m */, - 41D37DD2013C63370E9457997045B36D /* RNFetchBlobReqBuilder.h */, - 1B1896AF0E247D8F22AF41F5D3301DEA /* RNFetchBlobReqBuilder.m */, - 8832B25858720CFECA7F8087D5A4E800 /* RNFetchBlobRequest.h */, - 9FED9412E36C7E2E335BDA2C0C694534 /* RNFetchBlobRequest.m */, - D554CCDA6C209DB3B9EF3CCEB870F9F0 /* Pod */, - FCA0EF519D10C22342314984D618951C /* RNFetchBlob */, - 14D1956704869C78D39F8D8A1C83F878 /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - 0648A9F9657542281D3DC3F9A6535B8B /* EXHaptics */ = { - isa = PBXGroup; - children = ( - 1C85AE5450B759E19C9116D4C03A86D3 /* EXHapticsModule.h */, - B21822126020627E92AD8B308A8B95D1 /* EXHapticsModule.m */, - E16962A0120AD625712256CB650DD767 /* Pod */, - 40BEF737C73F6B5C6681D351914BD53B /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; - }; - 064A2FD7D570E9F04AA89EBB20DF0501 /* Services */ = { - isa = PBXGroup; - children = ( - F341FE17636745670AA079F49C5F2AB8 /* UMLogManager.h */, - 43566688A2F6B2F8084C9A8DA9F22181 /* UMLogManager.m */, - ); - name = Services; - path = UMCore/Services; - sourceTree = ""; - }; - 06D60C769F7D115AFAD59B48B3198638 /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - C88EDD29BF2A48FD670F2B85B452AB84 /* Pods-RocketChatRN */, - FDA4FF407DB01D9E34F81999653B3E2E /* Pods-ShareRocketChatRN */, - ); - name = "Targets Support Files"; - sourceTree = ""; - }; - 0800DB7ADEB2262B13B3F5D7CBB6A5AF /* Support Files */ = { - isa = PBXGroup; - children = ( - CE064E4404A50B72546C86AA964CD8EF /* UMSensorsInterface.xcconfig */, + 0440E8CE3CCEED5D6617090A23EE5EA4 /* React-cxxreact.xcconfig */, + C8535D44C10E16DF311C84FA97A7D4E5 /* React-cxxreact-dummy.m */, + F4C444CCABA146BF723C03366E757D21 /* React-cxxreact-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - 0973A0FEE041486884B35291A1E9043F /* React-RCTLinking */ = { + 086D09E4ED946835CC1C62043DE65601 /* Pod */ = { isa = PBXGroup; children = ( - 6130F1B1405BAECDAFB5DE4E15A9C143 /* RCTLinkingManager.h */, - 57FC1D76B397708249A7B71A087FA21B /* RCTLinkingManager.m */, - E9B833B508C06113B8032F101F29AD39 /* Pod */, - 7F2DBEE4707F8504833868FBB7C7A8B6 /* Support Files */, - ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; - sourceTree = ""; - }; - 0A662265DB330252D5CD43000DD7C2D6 /* Pod */ = { - isa = PBXGroup; - children = ( - 49CCF9E4AADC9767285E3B9381E2EDF4 /* React-cxxreact.podspec */, + 7E9B4F01530AAE41F8D831C4FF68D37B /* LICENSE.md */, + 078FBB85B06D772CF2B5D3086B4EB7C9 /* react-native-document-picker.podspec */, + C53D9399B63217BD4CE14E8EFA4C6E2C /* README.md */, ); name = Pod; sourceTree = ""; }; - 0A9331E48457C3F8A437AC6A87689FB4 /* React-DevSupport */ = { + 0884C44E154A9CC88452272B7747FE1D /* firestore */ = { isa = PBXGroup; children = ( - 215A3419FAFFAABE3B2EC163BE9623F5 /* DevSupport */, - 775F6AAAE98C14679C0649BFD9251045 /* Inspector */, - B297303880B03F34448C70A033A2FC8D /* Pod */, - 406FF1E16728D8978D09FE142BFE2DD0 /* Support Files */, + 5EF4185644CA2A4A29896923EFC76E6C /* RNFirebaseFirestore.h */, + 30357DF7ABF3B014C79F65908867EBC9 /* RNFirebaseFirestore.m */, + 2F3DFC03A6CE159EE38DED045C0F8380 /* RNFirebaseFirestoreCollectionReference.h */, + 6279F9B7DC062C3DBF782826438EACED /* RNFirebaseFirestoreCollectionReference.m */, + 0740B19BB926E89476FFA1CE221106C1 /* RNFirebaseFirestoreDocumentReference.h */, + 1DB121501564B5FDFFB1425CD2246F91 /* RNFirebaseFirestoreDocumentReference.m */, ); - name = "React-DevSupport"; - path = "../../node_modules/react-native/React"; + name = firestore; + path = RNFirebase/firestore; sourceTree = ""; }; - 0A9B830671ADA83B9D67AA07C4CE2322 /* Support Files */ = { + 09551A3AFD1EFC7F905AA8CE0837D105 /* react-native-video */ = { isa = PBXGroup; children = ( - F75FEAB11523335F43348DB90329CE1B /* EXAppLoaderProvider.xcconfig */, - 9E36E7CC68C697BF67F49C6FA012D98C /* EXAppLoaderProvider-dummy.m */, - 664712B592D736AAEB3412716B1CA543 /* EXAppLoaderProvider-prefix.pch */, + B5890C73DF9A5F86F42E2EDF9D748943 /* Pod */, + 4EF3E4F1821E03F8D1B64ACF17239B6C /* Support Files */, + 9DEBF596F85F5A22E662BA05FA26FFEA /* Video */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; + name = "react-native-video"; + path = "../../node_modules/react-native-video"; sourceTree = ""; }; - 0C015DCF356B7323A0802C4C3B687386 /* Support Files */ = { + 0991ED5F5E9B8B2568724169D8CD681F /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 6A11436ACF363A8BBAD6DDAD84F45148 /* React-RCTWebSocket.xcconfig */, - 6E39601DC32AED5FA5C910CF76CD429F /* React-RCTWebSocket-dummy.m */, - 431D39B0C9B20FD54FE3DED0AFCAD858 /* React-RCTWebSocket-prefix.pch */, + 05FA10B03F7D2BE9D0451168E2A32B87 /* DeviceUID.h */, + FBDB3FF269BAFD11FAF17A33531897E0 /* DeviceUID.m */, + 2701A02BC7CD579B409FA59C0EA13D6E /* RNDeviceInfo.h */, + C494DC58EC950DD60D5622D8FFFC5BDD /* RNDeviceInfo.m */, + FB1A2350DB5C6F4A1D213B7808E6BA33 /* Pod */, + 8DF8BC2283368E86BDF82CBA91BFE3DB /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTWebSocket"; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + 09DE4EF3995072801A67F760CEF4D52E /* Pod */ = { + isa = PBXGroup; + children = ( + D9B2FB44369EA93B47812531AD7F47E3 /* EXFileSystem.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 0AD29234D328D1C3F03418512C1927CA /* Inspector */ = { + isa = PBXGroup; + children = ( + 8C68B468AABD01F1C885CA4D226FCF15 /* RCTInspector.h */, + 91D3B26269141BEE3316B00A2EBE514E /* RCTInspector.mm */, + DD8B3DCF747704685F53248058BA7780 /* RCTInspectorPackagerConnection.h */, + FDB3FAF7EA7F668E1F21740EE7CAA6DA /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = Inspector; sourceTree = ""; }; 0C7CDD6024B140CB36A76F30D6C16353 /* Folly */ = { @@ -6483,24 +6569,6 @@ path = Folly; sourceTree = ""; }; - 0C9CBE3EEABBF83DF447798685AE30C3 /* Profiler */ = { - isa = PBXGroup; - children = ( - AACE8442704D4B505A0A4220A137B8E4 /* RCTFPSGraph.h */, - 2AA5925531CE66C701D9F5BA354453F6 /* RCTFPSGraph.m */, - B67BA50C36A2F53B426CF2BD606C542C /* RCTMacros.h */, - C815A9457D1483145412D6E9A8A87165 /* RCTPerfMonitor.m */, - 9997662495C6C179E7B5EC9F3416B3A0 /* RCTProfile.h */, - 44BA8720DB56C1CD1817CA39452C55A3 /* RCTProfile.m */, - 9B7FB6823E93D02B9CFFF6C43BF4925A /* RCTProfileTrampoline-arm.S */, - D51E27FB2838AAFCE578FB8FAE54FEE1 /* RCTProfileTrampoline-arm64.S */, - AFCC463E37675F892EA9B5D0EDD548A7 /* RCTProfileTrampoline-i386.S */, - 8F73CD584410E55A4738D0C0967113CC /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = Profiler; - sourceTree = ""; - }; 0D17E7E061CC0CA90D2FB7F49DC91F36 /* Core */ = { isa = PBXGroup; children = ( @@ -6625,52 +6693,86 @@ name = Core; sourceTree = ""; }; - 0D93A9404D40C0FB1BA3034FD8B82D4E /* Support Files */ = { + 0DAA0C3D48B5020641F325BBA9C2BB4D /* Support Files */ = { isa = PBXGroup; children = ( - 91BA5B1704468E6FC5018E6F128D5E51 /* RNUserDefaults.xcconfig */, - FA7752C20EE98703A82E410FC129630F /* RNUserDefaults-dummy.m */, - 3B52CEEBBE65FFAF8F56911DE2E6E03B /* RNUserDefaults-prefix.pch */, + 7E79B514F8D9F9FDE9BA28A45CCA0685 /* UMImageLoaderInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - 0FA5F2D6B5B83597A6C43A1C6FE8CB37 /* UMConstantsInterface */ = { + 0E32B959F0C5F56EDEF3CABCD3F14011 /* SafeAreaView */ = { isa = PBXGroup; children = ( - FA29FDE86F696373A734937702705533 /* UMConstantsInterface.h */, - 0306F14D2F603949736801DF66C71E90 /* Pod */, - 19B2B6635FE9A1698246BF9E344872B9 /* Support Files */, + 2CB69376230978E503E51978FB90EBBB /* RCTSafeAreaShadowView.h */, + A9C3703C2057B7C7649A7885B80EFDD9 /* RCTSafeAreaShadowView.m */, + DE13118767E25469F83CCEA5C667B83D /* RCTSafeAreaView.h */, + 2F2FF01826C3011E28538B47A9B3A89F /* RCTSafeAreaView.m */, + 643AE58DFF783D6F5486B3A6D1A70196 /* RCTSafeAreaViewLocalData.h */, + 9EB36E6A39649D847AF77FD1A5239CF6 /* RCTSafeAreaViewLocalData.m */, + 2B9A2C2A8F69EA5DAB5D30F0C3EE6D1D /* RCTSafeAreaViewManager.h */, + B10C034DB724A15D796703BBC605A2F6 /* RCTSafeAreaViewManager.m */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; - 0FBE2109AB2122F5034B094A6E81706F /* Pod */ = { + 0E684CA21ACDDD5F0F329087C7CA4026 /* Pod */ = { isa = PBXGroup; children = ( - A0DFF0F4FBC18D6338BE25FFB81F7FB9 /* React-RCTImage.podspec */, + FF1A7FD762176941FB81625CFCB9BB5B /* LICENSE */, + BE5FACB45C5311E5113E127F403A9689 /* React.podspec */, + 7DB54CE0FD112F60FC25D72FF0C09B13 /* README.md */, ); name = Pod; sourceTree = ""; }; - 1039D8D4A0C261A2EBE4C04BF7DCEEFF /* EXWebBrowser */ = { + 0FA3454C3E08C32177CA5DC2D8183207 /* crashlytics */ = { isa = PBXGroup; children = ( - 94E2EC112E3F35DB957FAA52620CD689 /* EXWebBrowser.h */, - 27C712FA63BC9FEEBC37A5B3B0032671 /* EXWebBrowser.m */, - 24A07083A59163B7313E25718E5A325F /* Pod */, - 84974F9EC492A3E1FAF80A063B1B3FC5 /* Support Files */, + BE9685A51D6DC22212677826398D5A97 /* RNFirebaseCrashlytics.h */, + 5148E7D8AACD8EF66295E6D371040526 /* RNFirebaseCrashlytics.m */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = crashlytics; + path = crashlytics; sourceTree = ""; }; - 106BEE83D882736AA9B40E01AE483DE6 /* Pod */ = { + 101F9395BA6BBFE79CC54790DD18C36E /* React-RCTLinking */ = { isa = PBXGroup; children = ( - A3EAA5D73188E332170189A7944AA937 /* UMCameraInterface.podspec */, + 42142C98D83FB3FA719077E99E300D9A /* RCTLinkingManager.h */, + 7A38377FA27874F52E99A244496B7A7E /* RCTLinkingManager.m */, + A4F711D9AFB523F189C3171A8B0530C5 /* Pod */, + CCAC0910EC5CD4DEDB09F9773367099E /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + 102D3CBE8D7284AEF802D96B1CCFFF6B /* Pod */ = { + isa = PBXGroup; + children = ( + 5A5E2A1800DCD8F68FBFDB875DECCE63 /* yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1043F2901E10B84698E34D7F82EBBD31 /* KSCrash */ = { + isa = PBXGroup; + children = ( + F742DE45C86F814F50B804C37835DB37 /* Source */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 10A9198E6C9F5062A1063DE424A1C4E7 /* Pod */ = { + isa = PBXGroup; + children = ( + 7299F4AEBF5CC5CEF6255CABDD650066 /* LICENSE */, + AAE2DE2C1565696AAEA94D066C8AF6BB /* README.md */, + E92D5D88D01E7716C1D2C1A15C9A0EB6 /* RNReanimated.podspec */, ); name = Pod; sourceTree = ""; @@ -6684,85 +6786,71 @@ name = UserDefaults; sourceTree = ""; }; - 11ECDFD6D278DF5E69F0AA91D2B00D78 /* EXFileSystem */ = { + 125D685BCB1391216119E39311A62291 /* LNInterpolation */ = { isa = PBXGroup; children = ( - 8BBB1BDC8031F9FB5E40B884663909B6 /* EXDownloadDelegate.h */, - 13F3DFE4B4AEE84F28B26F241979B75E /* EXDownloadDelegate.m */, - A380BB44C05BD28C672F3AC9C260DEFD /* EXFilePermissionModule.h */, - 9FDF5577FC7B1C4F3035ABF1AF4E59B9 /* EXFilePermissionModule.m */, - 2589CAA08CC7CF1049BFA11AF93753C9 /* EXFileSystem.h */, - 530A3EE94F702B43BF529A5FE498B670 /* EXFileSystem.m */, - E30928FD168DDA9B3A6A22B9E5BCB99B /* EXFileSystemAssetLibraryHandler.h */, - 56748298AEFDEAC5A13A5E58FDE1B660 /* EXFileSystemAssetLibraryHandler.m */, - C2BE11440018581EBC4B0F3EC0831201 /* EXFileSystemLocalFileHandler.h */, - B607395F3DA8AC5AACC8754B8DCC2054 /* EXFileSystemLocalFileHandler.m */, - 3E416E51B95143261E6C6D959FE664A3 /* Pod */, - E7AFBE30521FD0128FBF79CA566D691C /* Support Files */, + 7BC9B95661CC3866C3E05B8C73203F4F /* Color+Interpolation.h */, + 4F00F820638BC4F291C06097E1409B2B /* Color+Interpolation.m */, + 66364A744C28DAB70F06227882B968D8 /* LNAnimator.h */, + 5DEF7ECAAD5F05450BAB832A516AC698 /* LNAnimator.m */, + 74DF9D42B9BB8EDD42E86C9D647D3A73 /* LNInterpolable.h */, + C7885AE2BF198BB4A5292028FB47DC7B /* LNInterpolable.m */, + 87F1B67B7D633BA2255822A9A9019DDA /* LNInterpolation.h */, + 9864C1F11521835633A4D768D92801CE /* NSValue+Interpolation.h */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = LNInterpolation; + path = lib/ios/LNInterpolation; sourceTree = ""; }; - 1258C2E0E84A23528C266E11B9C0D0DF /* Pod */ = { + 13D6C8B713623C48FA0536BEA1598F23 /* jsi */ = { isa = PBXGroup; children = ( - AD5982F8668509EC884595C7CF14C4BF /* React-jsinspector.podspec */, + E638DC4BD07E3A60899BC0122C39AD84 /* decorator.h */, + 4C5EA95BFD895411F657F623558D2AC8 /* instrumentation.h */, + 0A0B893362FEC54C2078D1AF61E7308E /* jsi.cpp */, + 14E01EC52611567014EE6602384FAF98 /* jsi.h */, + F017BA08D7BEABC19D1603947447626C /* jsi-inl.h */, + F3E5689B93737152646F792BA69FF344 /* JSIDynamic.cpp */, + 1CFD5AB092ECC5B7ABFD6F4966CAA021 /* JSIDynamic.h */, + 9B1EBA307329FF68FF4EA03FCE3D8591 /* jsilib.h */, + C460519E921BAAC282A0454F3854E475 /* jsilib-posix.cpp */, + E873DF86898B2DFAE083F10A3AF69E4B /* jsilib-windows.cpp */, + 1B9C4CFD173747A309E24626D368AA68 /* threadsafe.h */, ); - name = Pod; + name = jsi; + path = jsi; sourceTree = ""; }; - 1315B7355E74B82A8CADD69D92C4E795 /* CxxBridge */ = { + 143ED85F4A30DA962CD7D41F35F46ABD /* Recording */ = { isa = PBXGroup; children = ( - 0A98F6CDDEF90758CF5F3F9C32D9D628 /* JSCExecutorFactory.h */, - 61F704002BED4342EFA64854067A722D /* JSCExecutorFactory.mm */, - 461609907A1877410506E30B95C29227 /* NSDataBigString.h */, - F9DB1D3DA2A6C16CA3AAF05321F790E0 /* NSDataBigString.mm */, - 8F40ED4B8DB656E8E4D90E318F6EBCCC /* RCTCxxBridge.mm */, - F0844815AA610F1F3C9D810943921BE4 /* RCTCxxBridgeDelegate.h */, - 1933814A95A3BF25A22FAA0C3D6E0B51 /* RCTMessageThread.h */, - 3D33CC85AE118CE451FA72D54C1B852C /* RCTMessageThread.mm */, - 7099BD0A3465BBEA4CBF360565ED0B01 /* RCTObjcExecutor.h */, - 4176C6CF3ACEAF2DB8B96F889E048483 /* RCTObjcExecutor.mm */, + EDFA0D2123FEE81D06ED052FD0142B0F /* BSG_KSCrash.h */, + 98A39C024A609A721CBEC84F6B1AD409 /* BSG_KSCrash.m */, + 26E349AE1756060B134D880AC959F6BA /* BSG_KSCrashAdvanced.h */, + 0E0AB29145C2582910584995D55923DF /* BSG_KSCrashC.c */, + 0FA00B19D397828D581BED30DA3765EE /* BSG_KSCrashC.h */, + 633AF39CF5DC32F4D43A7608A2416A41 /* BSG_KSCrashContext.h */, + A8ED432DB44B6699275DE4A68D609845 /* BSG_KSCrashDoctor.h */, + DDAC0636DE0F5CDA1FFFE08CFD103FFC /* BSG_KSCrashDoctor.m */, + 09C7184CD0C32536609795EDDDF13582 /* BSG_KSCrashReport.c */, + B26D74B193D7F36867248A875A5825B6 /* BSG_KSCrashReport.h */, + 7A975BD70DEFB3E2F139B8492781733C /* BSG_KSCrashReportFields.h */, + DE36BE3FEECB26B2EDCDBC30AD1652B4 /* BSG_KSCrashReportStore.h */, + 67FD5BB8070EA7B5B950531791C3C78F /* BSG_KSCrashReportStore.m */, + A28DC1886F2C9C69BF8097754B5236F0 /* BSG_KSCrashReportVersion.h */, + C36EB0463D8B3C8F17F5DEE34B7DC70D /* BSG_KSCrashState.h */, + C68717C0B8103B307394F0CEB238A966 /* BSG_KSCrashState.m */, + E1C4FCE5BD55198441D53F1DD5E76C5C /* BSG_KSCrashType.c */, + 9FB6BF87AB22A53FEDB3B70E1E91A50E /* BSG_KSCrashType.h */, + 54FE949739715B45EBFF179A5AEBF1D8 /* BSG_KSSystemCapabilities.h */, + 83925503106211527CDD99FD710F58BC /* BSG_KSSystemInfo.h */, + 4CED1C82A9058D8FA12578B0C16339C0 /* BSG_KSSystemInfo.m */, + E0B62EDF318EFE428FE9040EC14DD4D3 /* BSG_KSSystemInfoC.h */, + C738539A7F723BCDD16EE83E7F2432B4 /* Sentry */, + 98CDB1B6BBB7A520522974F710810C69 /* Tools */, ); - name = CxxBridge; - path = CxxBridge; - sourceTree = ""; - }; - 132B5E9D3F3EA5BF7B4E96F3E530DD35 /* Pod */ = { - isa = PBXGroup; - children = ( - 17C3BAAE8DCAEE04C6E41EABC58E1FA3 /* React-RCTText.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 13AEFEFC7B4AFE0974B29EE25C8334D6 /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - 471FA1EDF6DFEE79ACAA43351E30EE1F /* RCTBlobCollector.h */, - 8716EB975BB8EBBD888170F145E9627B /* RCTBlobCollector.mm */, - 0904818E5B39571E02CCF7BBBF14FCC8 /* RCTBlobManager.h */, - 9FED9006C2EC21D5AE97724FA3F7C34C /* RCTBlobManager.mm */, - 891BE3261D0300908576300813D1D317 /* RCTFileReaderModule.h */, - D976D0CC5644602F4031677C5080B040 /* RCTFileReaderModule.m */, - 958C74C3A1906D2DBA2EFA298D913BE3 /* Pod */, - D2F49E1B629FD6EF9FC331EC0450CDD9 /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - 14185A5A3F8B0D9A8F0531274D7D1D75 /* Support Files */ = { - isa = PBXGroup; - children = ( - C678B79CB97B799981B8664C5406552A /* React-jsiexecutor.xcconfig */, - C51B0D1089B85084E864AF08ACA1B6BD /* React-jsiexecutor-dummy.m */, - 0DC4FD540A4301BBCE3C865E13BEC44C /* React-jsiexecutor-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + name = Recording; + path = Recording; sourceTree = ""; }; 149A968DAF05348101B44EF51197D52A /* Frameworks */ = { @@ -6773,25 +6861,6 @@ name = Frameworks; sourceTree = ""; }; - 14D1956704869C78D39F8D8A1C83F878 /* Support Files */ = { - isa = PBXGroup; - children = ( - 674E2248562C9240A2BE77013BEB138E /* rn-fetch-blob.xcconfig */, - 68F3227CA8D6EE005A0EEF320A6AB57C /* rn-fetch-blob-dummy.m */, - D92065500783754ED2FF58B22D3655EC /* rn-fetch-blob-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; - sourceTree = ""; - }; - 14FDF8691DC6C91699361780F66863FF /* Pod */ = { - isa = PBXGroup; - children = ( - 1ABCDC27BFF089006951232E428B65EB /* React-RCTWebSocket.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 151CB4126B4F149F6DF9945B5C23309D /* GoogleDataTransport */ = { isa = PBXGroup; children = ( @@ -6844,6 +6913,24 @@ path = GoogleDataTransport; sourceTree = ""; }; + 158D21E2CD08E2800E09F14066CFF205 /* React-RCTWebSocket */ = { + isa = PBXGroup; + children = ( + 257232E964025624FC1750793BFD757D /* RCTReconnectingWebSocket.h */, + 196DE05284809570408F85DFD2750E59 /* RCTReconnectingWebSocket.m */, + 2F907803C9855FCDE94218C03B7BD235 /* RCTSRWebSocket.h */, + 810E2876824AD7075F0486802BAD67DA /* RCTSRWebSocket.m */, + AE16E0BF1D1DB866AE18CD43899CE756 /* RCTWebSocketExecutor.h */, + 1A6F6EE07F65041ECE330E7A1A8C23FF /* RCTWebSocketExecutor.m */, + 89A8777ABEE4E5BB0DF6AE3190A447A9 /* RCTWebSocketModule.h */, + 8E34809AC93341B5E64018153B2840EB /* RCTWebSocketModule.m */, + DDEE02DEE5380926FF3B46B274086E01 /* Pod */, + CD1E7BEA90435E237E5DD315EC135E9B /* Support Files */, + ); + name = "React-RCTWebSocket"; + path = "../../node_modules/react-native/Libraries/WebSocket"; + sourceTree = ""; + }; 159AC952DE10A77259A56FC520873C36 /* DoubleConversion */ = { isa = PBXGroup; children = ( @@ -6871,6 +6958,65 @@ path = DoubleConversion; sourceTree = ""; }; + 15F6FD85B9FDA38E59173EA09C6F0E6B /* Source */ = { + isa = PBXGroup; + children = ( + B8792CD56706412C9A40FFB8B8569DA2 /* BSG_KSCrashReportWriter.h */, + C2D3CCA10AAB146BC367549B4DB206D2 /* BSGConnectivity.h */, + 2527200E25960FC494E4A6EE4F49D34B /* BSGConnectivity.m */, + 96E095031802DC9A4A67D7BF1BB0D531 /* BSGOutOfMemoryWatchdog.h */, + 20D397DBF640D2713BAEAADB9FB664BB /* BSGOutOfMemoryWatchdog.m */, + B2AA7C7FE094946BF3612BF110A6CB16 /* BSGSerialization.h */, + 3981FE3492BC1794A682382B972427BD /* BSGSerialization.m */, + 1383E8156F38969277013E939EB71108 /* Bugsnag.h */, + 3184C463BD172316D1AD748B487819F4 /* Bugsnag.m */, + CF7194D6DCC55275CE397D70EA634090 /* BugsnagApiClient.h */, + C6180EF9B46ED864B7F128BE4DD7A7D0 /* BugsnagApiClient.m */, + 0159067FB4524E5A8D025AF4700C652C /* BugsnagBreadcrumb.h */, + 4D970391548295373C5BE1BB1A61816F /* BugsnagBreadcrumb.m */, + C2E4655DB8C2E772AB15B978AEF92691 /* BugsnagCollections.h */, + 11E03D57F66EB501256F836C2D395629 /* BugsnagCollections.m */, + 28054218ABA4FC67F1D8B34062B38B33 /* BugsnagConfiguration.h */, + BA1BCD15C886115848BAF1A732DCF3F4 /* BugsnagConfiguration.m */, + E6DA1B87AA3918D701AEC19AE6C457AC /* BugsnagCrashReport.h */, + 8E6921CE1E7727803E278E95BF050496 /* BugsnagCrashReport.m */, + BD2F2FB3028C140B85969CD78214FCF8 /* BugsnagCrashSentry.h */, + 53A154975B4D4ACC4517EF50F7D90D78 /* BugsnagCrashSentry.m */, + 7F0EA9C36D5474A3046885E58291BC6E /* BugsnagErrorReportApiClient.h */, + 9FF7DF68007747195DD27948CAB699D9 /* BugsnagErrorReportApiClient.m */, + F2CCE841AF025B6C07DC6EAB37032236 /* BugsnagFileStore.h */, + 35BF9A3B2D41865C2DCC677B1B7D4C11 /* BugsnagFileStore.m */, + 0015424B4C2B24ED10E15274B1AC32BE /* BugsnagHandledState.h */, + 3C5B5C42F8458B9CEF0F6E93BC0B9E22 /* BugsnagHandledState.m */, + EF12E9CA42CD267546880F103EB916FB /* BugsnagKeys.h */, + F630BF54CBCCA83E82084BBE87635A57 /* BugsnagKSCrashSysInfoParser.h */, + EF561979E4907ABC9E4F2881A7B6BE6B /* BugsnagKSCrashSysInfoParser.m */, + 85EC32CA0F2936DEFAB47A5047289621 /* BugsnagLogger.h */, + 911213EDD482FE9C8576221ABC018F9E /* BugsnagMetaData.h */, + BFB7B598863766DD3772025FB9D2BC8C /* BugsnagMetaData.m */, + E5A55ACE2092C7D371CEE79D9B99867A /* BugsnagNotifier.h */, + 38E830C3866F78F3031D31ED26822112 /* BugsnagNotifier.m */, + E762ACAA057D617752F97B4278ACDD14 /* BugsnagSession.h */, + 2184E6611EC1772F7C0A3ACDEDE225E6 /* BugsnagSession.m */, + 0E4E2895C9C8CFD463F3C0D699EE9081 /* BugsnagSessionFileStore.h */, + 1332348EBBB4BA24363969F8323722FA /* BugsnagSessionFileStore.m */, + 2E7830BDCC9FB0191639E0CD7BB25B59 /* BugsnagSessionTracker.h */, + E97A7813C393CA2F898BA2815F02A1A7 /* BugsnagSessionTracker.m */, + B14288A1A50D20954A300339DC72378B /* BugsnagSessionTrackingApiClient.h */, + B0CA6D93AD942CC49C6551B0D6CF8069 /* BugsnagSessionTrackingApiClient.m */, + D1746A3E6192D0D04873F0C1EEC5909F /* BugsnagSessionTrackingPayload.h */, + 8A9053F178D814237EFD404ACBAFEE85 /* BugsnagSessionTrackingPayload.m */, + 37EDC5DF511C5E1918227BE35DCC17A1 /* BugsnagSink.h */, + 2A950A006FBDCFE6AD93E0A0D0E55CE4 /* BugsnagSink.m */, + D4159BA1E2CE3E5C3B3F61DB4941E910 /* BugsnagUser.h */, + 2B002C83B3DDF45D51AD0B8F31279909 /* BugsnagUser.m */, + 40C02CCDD7E0A359F3DC6F4EFE39D145 /* Private.h */, + 1043F2901E10B84698E34D7F82EBBD31 /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; 161AB55B1EF30F6ED53C86D1A631253D /* Support Files */ = { isa = PBXGroup; children = ( @@ -6881,48 +7027,40 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 16A8900C04B80A7A4D7D6184F70F2FF8 /* Core */ = { + 1728CBAFA28070A0EC27649C08FC9BD3 /* UMCore */ = { isa = PBXGroup; children = ( + C23C2A95564A98A69E8D83F674F178C9 /* UMAppDelegateWrapper.h */, + 96A2AF9116E730040A2CCCF06BB65CC3 /* UMAppDelegateWrapper.m */, + 313BBBF4CD1F3CE1EA8EE05DB994557C /* UMDefines.h */, + F0F3AE1E67D4C6DF6B00A3D1298E48A6 /* UMExportedModule.h */, + 916F52DD2324550C670F776E6565C90E /* UMExportedModule.m */, + 41A3CCA896AD5C431BEF13C0A0A8F5E1 /* UMSingletonModule.h */, + 7325391FE1E0B780FBC44614BEBCFED7 /* UMSingletonModule.m */, + EA9600C365D12902EADC970E290E609B /* UMUtilities.h */, + BF5862C159E8FFA7B28C316BF00AD010 /* UMUtilities.m */, + AFEA8EF3D28B8368A352D296AEA4834B /* UMViewManager.h */, + B771755AD058E5E1AAC7215FB1179E4F /* UMViewManager.m */, + 8DC49EBB0002C604651555FE70EFD0C0 /* Pod */, + FB92CDFAC10D62F1923FCA7A5CB1D679 /* Protocols */, + 4347A2C24CE96F006B1BE51EA159EAE3 /* Services */, + 716E920BB0FFAE51BEF67AF51C3700B4 /* Support Files */, + C796387BDA99174AFE7754EA2CF28AD1 /* UMModuleRegistry */, + B0E3BEA2A836F7C16779ADB3C402D5A9 /* UMModuleRegistryProvider */, ); - name = Core; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; - 17D103A931B54C52E06AB9F99422C2CB /* Pod */ = { + 1A44E1DC4A3C74108B74ACE5062F719E /* Support Files */ = { isa = PBXGroup; children = ( - DC85BF8A5511BEAB1E4B1D26220B0DE4 /* EXAppLoaderProvider.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 192393196C89B77EA479C1AE99DE69B5 /* React-jsinspector */ = { - isa = PBXGroup; - children = ( - 37C6E695D617F57F11346E53F8ED8EA4 /* InspectorInterfaces.cpp */, - 8F40523B25A3023E6FFAF01D4CE7A210 /* InspectorInterfaces.h */, - 1258C2E0E84A23528C266E11B9C0D0DF /* Pod */, - D885017881790ADBD6AB484BE3065CA0 /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; - 1973F269B49A810C263945A559E9B311 /* Pod */ = { - isa = PBXGroup; - children = ( - 50571D14DE17E8C4D71FE098BE1935BD /* UMFileSystemInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 19B2B6635FE9A1698246BF9E344872B9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 67619511CA0BB191FE2A5FB9D03E0C67 /* UMConstantsInterface.xcconfig */, + 05F4B4868CB7B7DF12D2442ABC2F6522 /* EXHaptics.xcconfig */, + AB5BCF059C100E0E5524933922D16B0A /* EXHaptics-dummy.m */, + 91F05101145E032C26E95D720C856D6B /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; 1A71A1B73A0CD13956EF0D3115B847E8 /* Fabric */ = { @@ -6937,6 +7075,47 @@ path = Fabric; sourceTree = ""; }; + 1AD924C6909485A32991393605EA47DB /* RawText */ = { + isa = PBXGroup; + children = ( + 2FE51D81149677127B01BCC43E25DB77 /* RCTRawTextShadowView.h */, + 06CA3C0C0DB3C3E5BFDC317B45DF1100 /* RCTRawTextShadowView.m */, + 00A73BB738B25FE19BF1D28C42804984 /* RCTRawTextViewManager.h */, + 3AF5FAD5DEF8F8FA2EB49C9BF18DDCDB /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = RawText; + sourceTree = ""; + }; + 1B6804F8ABF8515AF770BD8FD50B8C6E /* Profiler */ = { + isa = PBXGroup; + children = ( + 217485D701D285E3FE8398A213851E2A /* RCTFPSGraph.h */, + 2CC1275D5D40721F833EB331DFE7A512 /* RCTFPSGraph.m */, + F607B8AC88332569FA3AE05CD58EBF16 /* RCTMacros.h */, + 9817A80EE67CF7C3E1225D109EF7D8C4 /* RCTPerfMonitor.m */, + 1A4F317DB724BD81A70C8240E6FC7210 /* RCTProfile.h */, + DB4DDAC7A9323A31E17883165FBEFBF8 /* RCTProfile.m */, + 77C4C2D64A9AC391CB3E4E60E9CDB565 /* RCTProfileTrampoline-arm.S */, + 55C552C757D667652918548D83650C25 /* RCTProfileTrampoline-arm64.S */, + BEC4B45AF54E0F6C10960634D5E8010D /* RCTProfileTrampoline-i386.S */, + DA29A8EB31EB1EEB5F9205381F8ED317 /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = Profiler; + sourceTree = ""; + }; + 1B750405458C22E303231177E115FA1B /* Support Files */ = { + isa = PBXGroup; + children = ( + 04150410C97351ED83FFA36169E6394C /* react-native-background-timer.xcconfig */, + FEBAA8C711D68435C6DFA7954D51F2D9 /* react-native-background-timer-dummy.m */, + 4D60EAA237DFE59F3591370907DF0B9D /* react-native-background-timer-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + sourceTree = ""; + }; 1B77A34818B5552438E7A510FBDDEC5E /* Frameworks */ = { isa = PBXGroup; children = ( @@ -6945,326 +7124,300 @@ name = Frameworks; sourceTree = ""; }; - 1C4843B16F4E195D56C5867CB3883481 /* UMBarCodeScannerInterface */ = { + 1BD037587616E17FE3D0967EEA7CD419 /* Nodes */ = { isa = PBXGroup; children = ( - 0567D6A591998852278E3C18F7A35931 /* UMBarCodeScannerInterface.h */, - AD801EEEDA7A7A4CD82E85A9261E98B5 /* UMBarCodeScannerProviderInterface.h */, - DFB6F25B3A5038562ABED5FA44D49AA7 /* Pod */, - 58B8ED22D02D894557A2750CC8030E2F /* Support Files */, + BD040FDE573C21F19D9967DCFC11E36A /* REAAlwaysNode.h */, + 0D8F0749B4F9072239C6BF1C4527BFF0 /* REAAlwaysNode.m */, + 194C05C6652F7AC6E377ED0C7091335A /* REABezierNode.h */, + 7A6077DDE95CCE5BAAA92982BB97AEAB /* REABezierNode.m */, + C534987EA7AE4E220C03775356333912 /* REABlockNode.h */, + E7E6B40FEB6D36A4338FE6502EB1FC90 /* REABlockNode.m */, + A4C42E6AF56C67AA2218776FECF6FE9B /* REAClockNodes.h */, + 5ADECAE14B0864E549BAAE281998957E /* REAClockNodes.m */, + 6D999367F894FF26DA24E3C769F4A379 /* REAConcatNode.h */, + 015BBB460B3EFCEE96D5CDB876322B8D /* REAConcatNode.m */, + BE563DC36C241642DCAE3C66BBE960ED /* REACondNode.h */, + CE48895561295B1873810AF292127B47 /* REACondNode.m */, + D9356783DFAB60412E4A95FDA1D32D7E /* READebugNode.h */, + CAFA2752C18924C8CC5D9ADDC0963E7D /* READebugNode.m */, + 183E9BB4BB85EC42E515F6C865135F00 /* REAEventNode.h */, + 4935E19EBD256BF18F96A1DBEA8444E1 /* REAEventNode.m */, + 5156F0C4F87723F264F525A835C8FD7C /* REAJSCallNode.h */, + CAE6DAD24C9CCB2372F25805CE5500A8 /* REAJSCallNode.m */, + CA9F9461DE2A7C9CC4FC3834A10B4017 /* REANode.h */, + 217F81D49069C659AA0F4E74ED8E4D21 /* REANode.m */, + C2678BBDCCBBF362C0480D5C65ACDDED /* REAOperatorNode.h */, + 089A0ED2E4DD0E3B5D877862C2C6F4B7 /* REAOperatorNode.m */, + B27E618D827CB6BB235CDEAF4A3A1EB7 /* REAPropsNode.h */, + CF95B1C0F946AD48D73E33DA6D128B16 /* REAPropsNode.m */, + B23B72E3E9635ED6CAC46AD3E9F26B79 /* REASetNode.h */, + F8CD56F6EA37F627887AFC8DD4B6C42F /* REASetNode.m */, + 87AF817B6584DB271B9714A678DC1CEE /* REAStyleNode.h */, + A1BEC438D22A7DF98D295831A856D62E /* REAStyleNode.m */, + BC3608D088678AD75DB5AC70084361F2 /* REATransformNode.h */, + 2F6EE4FD07A09E1E591925394F3F37AC /* REATransformNode.m */, + 4535412137C67A162B7B8C204F21C292 /* REAValueNode.h */, + ED0943C000CBCE5C0CFE814B96293C8F /* REAValueNode.m */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = Nodes; + path = ios/Nodes; sourceTree = ""; }; - 1C493173E227549E9DA6CECE5CBF33FE /* React-RCTVibration */ = { + 1C1B365BA755C3E44ECB0840A35F8E19 /* Pod */ = { isa = PBXGroup; children = ( - DAE4124440BD9CCEBD07774F0B2B6A77 /* RCTVibration.h */, - 73F59970BF0D5933336F54D3DEA38CC3 /* RCTVibration.m */, - 445A13798BFEBC39E6CF698D94B8F34E /* Pod */, - 6084A63AAA1BA64A537BF706B009558A /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - 1E9B5277CD2278880C7B1B0372090F69 /* EXPermissions */ = { - isa = PBXGroup; - children = ( - 33544A0943E76F42E35EA60471DA58AE /* EXAudioRecordingPermissionRequester.h */, - A1B1A1858D317B5B19BA45B5A24B8124 /* EXAudioRecordingPermissionRequester.m */, - 3F0B6E9E295CEEE2F5553D3A44C9E5BC /* EXCalendarRequester.h */, - 3A9B825D5894FC47609BB2CDADD60C21 /* EXCalendarRequester.m */, - 128BB4D76E8C2B3A3215B57805BF7899 /* EXCameraPermissionRequester.h */, - 1CA4598C6E21A817589710691F319F0B /* EXCameraPermissionRequester.m */, - 01C4A59C4F599178735D04CF0D73BF81 /* EXCameraRollRequester.h */, - 1FD08A546373D8DA8229FC9E333763C4 /* EXCameraRollRequester.m */, - 49C30D27A3C6093539EDD9027961C225 /* EXContactsRequester.h */, - 24ABA99D582D5807D35D659070E02CF2 /* EXContactsRequester.m */, - F1D7CCA60F3812FE710C404A3A1037B3 /* EXLocationRequester.h */, - 439A4B82C552FD6B1A9C12ABF96D3164 /* EXLocationRequester.m */, - C7C820567FB5E7201671DF9C5A4611EE /* EXPermissions.h */, - 52A41A09B5C123AC7E1D25A7572213D7 /* EXPermissions.m */, - 8C88ECFF02A0656BB3350D4BE97B9915 /* EXReactNativeUserNotificationCenterProxy.h */, - F329FE8DE3D968083CEE1718D3764457 /* EXReactNativeUserNotificationCenterProxy.m */, - 79211B30E895C1C103D5D6CC54885837 /* EXRemindersRequester.h */, - 54619319C6280924DF9C1E088E23CF84 /* EXRemindersRequester.m */, - F075E77D83FF1ED6152CDA525357F4E3 /* EXRemoteNotificationRequester.h */, - 9E91655710FCE7211802B85F7D60C056 /* EXRemoteNotificationRequester.m */, - 040F9C574AAF1898B2DB9F81411F4183 /* EXSystemBrightnessRequester.h */, - 226EC76186784160590B63A5DFF80A52 /* EXSystemBrightnessRequester.m */, - C6B2A7473598E2FBA07F8695F32FAFA1 /* EXUserNotificationRequester.h */, - 44600E6B2185270621A456725F7F8206 /* EXUserNotificationRequester.m */, - 457088F265621E2370131408D7AE6C3D /* Pod */, - 4937EAE9AE43360BA2AF8701BD92D172 /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - 1ECBCD50C4279E51ECC6930831000853 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8A02CABBC0F331E64A1355DF0D601070 /* RNFirebase.xcconfig */, - 45227E27EE6C20BA67A270BB42CFBFB0 /* RNFirebase-dummy.m */, - 0028E51BE3BC43B7D057AE8CFCC845AD /* RNFirebase-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; - sourceTree = ""; - }; - 208B0FEAF4A3383E6A48C49BB0B22A85 /* Sentry */ = { - isa = PBXGroup; - children = ( - A85E2CC8F87F8CEE18EFBFE6D4A70C60 /* BSG_KSCrashSentry.c */, - 8665487808600C6FF9CBE629B159900F /* BSG_KSCrashSentry.h */, - 8318223C8A35F75E96F9829DF56DED97 /* BSG_KSCrashSentry_CPPException.h */, - 3FFDA552B1986DC6555609F57592BB8A /* BSG_KSCrashSentry_CPPException.mm */, - 7CA99DC15BB04F7EA888482B8E4932C8 /* BSG_KSCrashSentry_MachException.c */, - DD91A1964B13C90FCBCCC3DF2D81CEE1 /* BSG_KSCrashSentry_MachException.h */, - F18B32911780BD620AC3DDA2688EDBD5 /* BSG_KSCrashSentry_NSException.h */, - EBE480FC736E0EA0FC66709D62498248 /* BSG_KSCrashSentry_NSException.m */, - 66F4FF98E9FFF492AACAE02CFFBB2DF0 /* BSG_KSCrashSentry_Private.h */, - 8B738F4714318AD83C2F8E180A38C687 /* BSG_KSCrashSentry_Signal.c */, - FB298C8D213DD000DB7B31B7F28E9B92 /* BSG_KSCrashSentry_Signal.h */, - D4B6E11CFADDB69572387C7786561E3A /* BSG_KSCrashSentry_User.c */, - 9B0F7056E659D32F16D88D84E7D41C2C /* BSG_KSCrashSentry_User.h */, - ); - name = Sentry; - path = Sentry; - sourceTree = ""; - }; - 21082DA5FF96D15432851A8C054FBB6B /* Support Files */ = { - isa = PBXGroup; - children = ( - 2398050823277AB4E2D9D3FD20D0736B /* UMFontInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; - sourceTree = ""; - }; - 215A3419FAFFAABE3B2EC163BE9623F5 /* DevSupport */ = { - isa = PBXGroup; - children = ( - 70E89A478F50BA040045349B1DC0B001 /* RCTDevLoadingView.h */, - 09B98F4761DD1F7E774BD5A13681F5FA /* RCTDevLoadingView.m */, - 2180E93BE23C4D41D3003768F5B74EDE /* RCTDevMenu.h */, - 2A4842132B0D8B8B1C2520D1DD113369 /* RCTDevMenu.m */, - A86BC95DDA09EC345F79F711EA380285 /* RCTInspectorDevServerHelper.h */, - C2D1EA1A3771BF9AF1D5DBCA15A0B1EB /* RCTInspectorDevServerHelper.mm */, - 832F33BB9356CE8887733816F8D458BA /* RCTPackagerClient.h */, - 161026034B58803B83E2A3180D0267ED /* RCTPackagerClient.m */, - 6173877910D5D01A04CE6640ED9ED472 /* RCTPackagerConnection.h */, - 9CBEC06DB43A4C8854CC0CEB060D657A /* RCTPackagerConnection.mm */, - ); - name = DevSupport; - path = DevSupport; - sourceTree = ""; - }; - 2302BED7540DF0AF97DC4587C3F4ED9D /* Pod */ = { - isa = PBXGroup; - children = ( - 6ED5202DD4CC64B4AF6FF954028B77CA /* React-jsiexecutor.podspec */, + 0CADAA7CD985923F91BD423B6CA05EAE /* EXConstants.podspec */, ); name = Pod; sourceTree = ""; }; - 2329B5A8F6DE83E006301A644A0909C9 /* RNVectorIcons */ = { + 1EA17E47E37666307C4C25A7DF8A9CB7 /* Support Files */ = { isa = PBXGroup; children = ( - 0B143EC844DAD9173E200E0AA98C6122 /* RNVectorIconsManager.h */, - B4C17265845D3D788017B88D99315E6C /* RNVectorIconsManager.m */, - 64637E9BE662613936F6783336219A44 /* Pod */, - 487DB8A477E847FE0EB23EF9226FB13C /* Resources */, - 3F40077B83CB0C8EE7B5DA6E9CC5342F /* Support Files */, + 971AC3B6D311A190C6234E4CBAAB871D /* react-native-document-picker.xcconfig */, + 6E2A8F94F10258B9CB15C9511A909B02 /* react-native-document-picker-dummy.m */, + 3FD209DA7BCB571974AB71AAD6EF43D9 /* react-native-document-picker-prefix.pch */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - 23F82683F938B461DB6867B6A8DFF27B /* KSCrash */ = { + 211617C4A1EB3DB9DF1CB4520230D922 /* Pod */ = { isa = PBXGroup; children = ( - 3F97C1327D0F2F7B2FC95D4F08517594 /* Source */, + 9EF729E9B246F17665AAC4D524901C52 /* LICENSE */, + 31C10E1570F38850B8A2852EC9F2016E /* README.md */, + A6194FA41D274770C0D983A409E4AFB4 /* RNUserDefaults.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 214E3EDD7EB02C13DCBBCEF36A3105B8 /* Pod */ = { + isa = PBXGroup; + children = ( + 7A17A79FC0E28E30CB4BDDBCD128468F /* EXHaptics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 2191C74FA06634D487E5C1B63222D2F6 /* UMCameraInterface */ = { + isa = PBXGroup; + children = ( + C662315C9B4C42165130F325702BED65 /* UMCameraInterface.h */, + 45574022627553E973DEC229EBA2458E /* Pod */, + CC5F4AC6243C175E8B5C9549498380F8 /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = ""; + }; + 232E9A88E6C2BE81B6BE7BD3ADFF8521 /* EXAV */ = { + isa = PBXGroup; + children = ( + F3C19967C984D039E7A85431C2E801D0 /* EXAudioSessionManager.h */, + 0F8F16088905DE9473D846FBE74F9157 /* EXAudioSessionManager.m */, + E0D0CF437DDB1763F7575EC8AE7DDBCB /* EXAV.h */, + C68D33698B1A57DABB40F4BADBA907EA /* EXAV.m */, + A6FD1319634506666ACAD648469BA25E /* EXAVObject.h */, + 7DB7811676DA11C00165A3B5482998F2 /* EXAVPlayerData.h */, + A6E10D9F4B6683407DA4456218459A3D /* EXAVPlayerData.m */, + CAEEDA2952F932216CC8A3184C467C93 /* Pod */, + 97805B4F9527BA4EC3AA7D110981C13B /* Support Files */, + 3BAC17971D3E54E0C43F88A9CEE629F0 /* Video */, + ); + name = EXAV; + path = "../../node_modules/expo-av/ios"; + sourceTree = ""; + }; + 23DD9B1773DCD203FA7C863CCD290FDD /* KSCrash */ = { + isa = PBXGroup; + children = ( + 143ED85F4A30DA962CD7D41F35F46ABD /* Recording */, + C3B995609C54F6393F98AF1E9A6F2EBE /* Reporting */, ); name = KSCrash; path = KSCrash; sourceTree = ""; }; - 24A07083A59163B7313E25718E5A325F /* Pod */ = { + 23DFB3BB79073000473ADE47881F1FAC /* Modules */ = { isa = PBXGroup; children = ( - C15D478EC8532554E9C3A82F883AFFE7 /* EXWebBrowser.podspec */, + 49BB2E12539F31E896CC296068B5744C /* RCTAccessibilityManager.h */, + EE5393F83E466902A9DB3804BFFB62CC /* RCTAccessibilityManager.m */, + FE13FBF385238AD0E9516E1D2826CB0C /* RCTAlertManager.h */, + E326436BE27592F2DE15576F164B478F /* RCTAlertManager.m */, + B7862ECC9EC85533D6E2FA04C81F2F6D /* RCTAppState.h */, + C03100E86D528B30ECF9693439BA5477 /* RCTAppState.m */, + 3F640EA131E097ADDCECC4F5DAB55547 /* RCTAsyncLocalStorage.h */, + 5973698F85A9B2944AF7A3EBCA20CD7D /* RCTAsyncLocalStorage.m */, + 536FDA7D29F9A2FDBD445C44C7D3BE01 /* RCTClipboard.h */, + 1AB9F3245B3E912EE3213D66428560DC /* RCTClipboard.m */, + F8BA357796A18BEA09244DCEC7ADF1B2 /* RCTDeviceInfo.h */, + 333DF5C8901C0CA3FA13054B53911849 /* RCTDeviceInfo.m */, + 9265163EE10B58CAE865D36CE6BC8652 /* RCTDevSettings.h */, + 2B498F27CC09F6C300D96B6D78B1C90D /* RCTDevSettings.mm */, + 6171D5067F5D89D772A3929E0CCD4E45 /* RCTEventEmitter.h */, + 54705F3ACBB1A6D61D7A07DE0010EF10 /* RCTEventEmitter.m */, + BE8E5EB8162219682F0123568FD00B6E /* RCTExceptionsManager.h */, + F905905F83A465B4E96F7B199277348A /* RCTExceptionsManager.m */, + F9A79287D480B04EEA5D4AB507756F42 /* RCTI18nManager.h */, + C91D02140B8942812D252A5AFA0A34ED /* RCTI18nManager.m */, + ACD28F442E05624658203DAF3448EB2B /* RCTI18nUtil.h */, + 8A81AAD9F4E3D6AC840E8EF02F51943E /* RCTI18nUtil.m */, + CC53B09C7BBFDB1DA17A24E62AD6FA97 /* RCTKeyboardObserver.h */, + 7D9D8B4A1F3F4EB26B330B988D740ADC /* RCTKeyboardObserver.m */, + 8525A03F760DE87350A4A005CB7E6057 /* RCTLayoutAnimation.h */, + 4C95C352DA802B3BB59B579F0C452227 /* RCTLayoutAnimation.m */, + 393528B515519041E4DD57AFAB7E116E /* RCTLayoutAnimationGroup.h */, + 0468905266580A523CABF441C1BB2A9F /* RCTLayoutAnimationGroup.m */, + 4742D70E80DA5AFC9C2AEB589B88215B /* RCTRedBox.h */, + 418AAAE033F91FF1AAAA168A66CB5CDB /* RCTRedBox.m */, + 9B273F518C0660AB15FFA70B031473A9 /* RCTRedBoxExtraDataViewController.h */, + 8D42ED4D9515AA8A9DD1656BB0335045 /* RCTRedBoxExtraDataViewController.m */, + 2A508EE9E7198040C37BCABC23E5F4A7 /* RCTSourceCode.h */, + 51671392270A0741A3FD360EED79EF20 /* RCTSourceCode.m */, + BF214941C7C1BBF2E7A415B015998579 /* RCTStatusBarManager.h */, + 5CC2D8A41EFF8C5CE700D98B9E71F2F2 /* RCTStatusBarManager.m */, + 2A5E230E475FD65202751138A8418DD8 /* RCTSurfacePresenterStub.h */, + 78D1DB0EA93E1DB29C0ADF3FF0097706 /* RCTSurfacePresenterStub.m */, + 6FA5D3CC034DFF3C1776F1B1D54273F1 /* RCTTiming.h */, + 92DB2CFFA16F6021485BE098EFE927E7 /* RCTTiming.m */, + 13C94E57B0F77AD0C3CF71A0DFC6E6C5 /* RCTUIManager.h */, + CD5AA3AEB73FFB5731BBE3E5999020C9 /* RCTUIManager.m */, + 312A4336B92E83B4443F8D3E67A2DFA9 /* RCTUIManagerObserverCoordinator.h */, + CCD14ECEAD3C5FA298E8BE0D14BFFB94 /* RCTUIManagerObserverCoordinator.mm */, + 6723AF942CA689A3C3BD7FBF7226E97C /* RCTUIManagerUtils.h */, + 4C99284298F3AC9BDAC2BFCE0CA151F0 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = Modules; + sourceTree = ""; + }; + 250A7F0250FFEFCC83A26D8242695F68 /* Pod */ = { + isa = PBXGroup; + children = ( + 3D1F49F66EC99FD93D741D2F5913A303 /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 25F5C030AE7A0D0659EAF02F366DE1C9 /* Support Files */ = { + 26E3A0263B5FF8C6393517A05DE8F3E1 /* Support Files */ = { isa = PBXGroup; children = ( - 72BDF6A87AFB7D7C47BC11B79D56E1FD /* EXConstants.xcconfig */, - 8851D3968D423E0E68D99147BAF75DC7 /* EXConstants-dummy.m */, - 3EE46604DFA553F20F83A6700C8F6E6A /* EXConstants-prefix.pch */, + 36D564D5DE5EDEE645A65BAB86FBC19C /* RNReanimated.xcconfig */, + EADE67B6FB6A838B524DF151C409B18E /* RNReanimated-dummy.m */, + A33FFA196107E6D83AFC13EEBB548416 /* RNReanimated-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; - 27A14A3B1E2D8364BF00A95C0B5D445D /* Support Files */ = { + 283CD9FCEA1233F7F47636CB3D13106A /* Support Files */ = { isa = PBXGroup; children = ( - DA16AB71853B8548F47605009FD76347 /* yoga.xcconfig */, - A708B941708437F7363670F3F348DB76 /* yoga-dummy.m */, - 1EB09F976E3C379A8CF34FA3A4B7D72A /* yoga-prefix.pch */, + F2FA61B4732D7479B792379486BD21CF /* react-native-notifications.xcconfig */, + 77E4C5951ECEC2E4547C486F21911516 /* react-native-notifications-dummy.m */, + 2388C481BE400195170154F70EFFBA52 /* react-native-notifications-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/yoga"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = ""; }; - 2860D5B365F14315F4D4A1FEEE7F09A9 /* Views */ = { + 2946C01FFFF618156D52F5341F0FC4CD /* Pod */ = { isa = PBXGroup; children = ( - 2E5985FE783F85BAEA2EBE769BE16011 /* RCTActivityIndicatorView.h */, - 8A6EEDA73A17B95FA26ACB3C428EF25A /* RCTActivityIndicatorView.m */, - AC8B3C09B5FE45443FA32DE24D44519F /* RCTActivityIndicatorViewManager.h */, - 20A5C2EA56B98E369D96973CAA29F1FE /* RCTActivityIndicatorViewManager.m */, - 82EB86A394648666FE20A10B79C6485C /* RCTAnimationType.h */, - 0602FEEF04A711D3F8A2AE3BB3493E81 /* RCTAutoInsetsProtocol.h */, - 734D82D1AE54474DFF845C409CE25850 /* RCTBorderDrawing.h */, - 7274CF47C3282B42D216D8239BF6B9B3 /* RCTBorderDrawing.m */, - E6502F442A2519C403F7B0C65B80CBC7 /* RCTBorderStyle.h */, - 1058B1882DE680F36CB9CADC629BE5B9 /* RCTComponent.h */, - 9EAD81636BDDE142E30562BD036867AC /* RCTComponentData.h */, - 34231E785B8EE1A10D7C90AF0E309E0E /* RCTComponentData.m */, - A7210D185BB792BE776701E26E31D9F3 /* RCTConvert+CoreLocation.h */, - E7C8F6FEE704A8BA53A3AAFA0CC3C896 /* RCTConvert+CoreLocation.m */, - 12DDAAF374CD7A23E52FA2B93C43FE5C /* RCTConvert+Transform.h */, - 9AA60E8177A038BA389D3D5308F2268C /* RCTConvert+Transform.m */, - 30F4C860FD823C1FF4E8D7FC0D66A507 /* RCTDatePicker.h */, - F2DD3888391C01659627968DE1A6443D /* RCTDatePicker.m */, - 2D0E10AFD9B16663DF59E786D100868D /* RCTDatePickerManager.h */, - DC25B090F79C11554B08DEAC03D9FD84 /* RCTDatePickerManager.m */, - D867DC56B14D7F9127E526D29AA6E9C1 /* RCTFont.h */, - 12F136F7FC0B8310A93DD64396C0789F /* RCTFont.mm */, - 96C8294332E762640A343292C9A88D4E /* RCTLayout.h */, - 94845D049083BF66942C66362AFBB586 /* RCTLayout.m */, - 3901A8A69B13951CDE4DFE263A071E26 /* RCTMaskedView.h */, - D1112F03EA48DB9D976CBBC2A3F41D63 /* RCTMaskedView.m */, - ADB97F10149B7978AD361724416A1172 /* RCTMaskedViewManager.h */, - 8C9258BC4069B152066F3DE151BA82F5 /* RCTMaskedViewManager.m */, - 1A5B1030AA9714F68B4E5842F8250538 /* RCTModalHostView.h */, - 3CE94CA2B694C389FBA13758A135E71B /* RCTModalHostView.m */, - B8199841CEAAA11C8A691472B30E3875 /* RCTModalHostViewController.h */, - 8B03B0F011C6418C760A3B1B2B5B7040 /* RCTModalHostViewController.m */, - FA36649CF44FA59CD2B2320613591B6E /* RCTModalHostViewManager.h */, - 5297A2E8743907EDDD47CB94AE4378B5 /* RCTModalHostViewManager.m */, - 05295698655499A8BE5D1A5AE87C28FE /* RCTModalManager.h */, - 902D0F0E4E7501D88B438963A7041152 /* RCTModalManager.m */, - 52BA1C7C25BABF825877C2B9035615A1 /* RCTPicker.h */, - D1BC3B8EA59881FE1DBEE594195E2B7B /* RCTPicker.m */, - 2DDCEFC7882E2098FAE48DA8ABB0B78A /* RCTPickerManager.h */, - DD4915475ED94EC1DC813403E89620D2 /* RCTPickerManager.m */, - B630FF2DC31E86AC40045C8704D097F6 /* RCTPointerEvents.h */, - 292BFCE23E8348EA7808657FA43DA053 /* RCTProgressViewManager.h */, - F3E7E34D7C3F5026C0C718A4EAF83F19 /* RCTProgressViewManager.m */, - 496BE24B5C97257D682A8ACCDCCBF9DB /* RCTRefreshControl.h */, - 4FD29D0CAC629DD94B999810B589DB4D /* RCTRefreshControl.m */, - 73E98C45D3FF69B3C893D539796D4B95 /* RCTRefreshControlManager.h */, - 4CA34214ADBCCAA8212B15FAFBDA59E8 /* RCTRefreshControlManager.m */, - 73745FEEA820397EA66F5CB941C7136D /* RCTRootShadowView.h */, - 53342E2A1EF652A24451E5D8A22D4202 /* RCTRootShadowView.m */, - F4569D972BB442379C3338AEAB89165B /* RCTSegmentedControl.h */, - 21B262D1D12C460BDE15CDEC413324ED /* RCTSegmentedControl.m */, - 41EEF29D6FFF8724DAE263CD99B93C03 /* RCTSegmentedControlManager.h */, - 915316678B38224E163F5599D891943E /* RCTSegmentedControlManager.m */, - DC0E53FE669B93BA215EC345B3D5C67C /* RCTShadowView.h */, - 19AF958D2186A57F451EB55740B61714 /* RCTShadowView.m */, - FD519AB44E45C2BCF67D7913FFCDC88F /* RCTShadowView+Internal.h */, - F54D1612AD852E1D36FFF295131BC8B1 /* RCTShadowView+Internal.m */, - 3E37747181D09241DBB681FED86A15B5 /* RCTShadowView+Layout.h */, - 20B3E8897FE4D5B4AD06435D42A25DBA /* RCTShadowView+Layout.m */, - 93AB37B889693A63104E31B2C9DAA2D8 /* RCTSlider.h */, - 83ED315E90D744642D619BEB6EB21AA4 /* RCTSlider.m */, - 3012AA5494957D83BA41715E529F1900 /* RCTSliderManager.h */, - 476EA94692D543A7EB2CF88846EEF69B /* RCTSliderManager.m */, - 3BB5F9180B71069B72F9C17E8F4BF405 /* RCTSwitch.h */, - 06559694AABD8E83371082788A8DB3E7 /* RCTSwitch.m */, - 3193063BB2B500F05483DDCB2F6C092B /* RCTSwitchManager.h */, - AD020B08F433B2A45F6135BB3CD31AA8 /* RCTSwitchManager.m */, - 3476280344337B12715F107BA879563A /* RCTTextDecorationLineType.h */, - AC13C2E4ED73D7B988B996E0A0B98A48 /* RCTView.h */, - D9E51E831EF828138C136D449123FC59 /* RCTView.m */, - BFC349D8BE14864173F046B8F2C12790 /* RCTViewManager.h */, - 2B7031F528ADBDCF68BBCB2A104DB7E5 /* RCTViewManager.m */, - DF1383FCD6449764B031EF82ADA7DA94 /* RCTWrapperViewController.h */, - 8BD6EB8559B246A0B3FECE41DEBA914F /* RCTWrapperViewController.m */, - 70B5AB6131167160065F1997493417DF /* UIView+Private.h */, - 28AE5609321AA47365DC1F5784DDC047 /* UIView+React.h */, - 7FEFD0FDC377ED57ED928168199EF70D /* UIView+React.m */, - 48001D4FD48A3B0F76BA39695424E245 /* SafeAreaView */, - FF2AFBD3B118B285CAF04F404ACFCBBD /* ScrollView */, + 4981564A7F7628CECB5898FAD352FCF0 /* UMTaskManagerInterface.podspec */, ); - name = Views; - path = Views; + name = Pod; sourceTree = ""; }; - 29165008AEF96EABF40153BFA3B39D8A /* KSCrash */ = { + 29C0ED5A574C54AF4173217619A31B54 /* Singleline */ = { isa = PBXGroup; children = ( - A2238D3F01C712771850559B3309F2C5 /* Recording */, - 2A958A763764F8563B092E08443A8659 /* Reporting */, + E28FAD0B2A61E0D1BB89C636FD8D6E2A /* RCTSinglelineTextInputView.h */, + 437DF619A56EA18D24CADBA5CEFF64F4 /* RCTSinglelineTextInputView.m */, + 9030F149B08259FB5EDB32EA856DE568 /* RCTSinglelineTextInputViewManager.h */, + ADBAEE769E4BA3C105CB21A876E15FC6 /* RCTSinglelineTextInputViewManager.m */, + CFF51A116DCA3FD9BD63C566B1D55800 /* RCTUITextField.h */, + 02DA69C36C144CDD0C55986ED9157604 /* RCTUITextField.m */, ); - name = KSCrash; - path = KSCrash; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 2A958A763764F8563B092E08443A8659 /* Reporting */ = { + 29E20F3916703FEC3B017A2AD4196D49 /* EXAppLoaderProvider */ = { isa = PBXGroup; children = ( - D6051A86994C04F238B09F997E203405 /* Filters */, - ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; - 2BA9E56F365C105437D6A4631C6B9EE2 /* Video */ = { - isa = PBXGroup; - children = ( - 2431FCC8C857C1BA1A2CFA4D958A2208 /* EXVideoManager.h */, - B282C04BB478AA75490E878C95DED62B /* EXVideoManager.m */, - AC083CFE513DE197F238FC97D5768181 /* EXVideoPlayerViewController.h */, - C6A96B0469A1CCBA8377B116CDBB2E4A /* EXVideoPlayerViewController.m */, - 61ACB4FC6EF337400DD4D56201E77582 /* EXVideoPlayerViewControllerDelegate.h */, - A5ED683DD3F2747D4AEA6BEC69F69897 /* EXVideoView.h */, - F7032B93FC0F173F751E7B144C25F67C /* EXVideoView.m */, - ); - name = Video; - path = EXAV/Video; - sourceTree = ""; - }; - 2CC473FCF87F681B1EB37EA0AC38668F /* EXAppLoaderProvider */ = { - isa = PBXGroup; - children = ( - 85E5122C9D21ADEB6FB946F998FB812A /* EXAppLoaderProvider.h */, - B99020A66A49A6C5B6075FF6A1FA6185 /* EXAppLoaderProvider.m */, - 0527BE8B0824D3908D820FBEEB80A46C /* Interfaces */, - 17D103A931B54C52E06AB9F99422C2CB /* Pod */, - 0A9B830671ADA83B9D67AA07C4CE2322 /* Support Files */, + 12B10515C97546B76D126CFD17416038 /* EXAppLoaderProvider.h */, + B5E5E98A9BC00D13BC425491B3FAECB2 /* EXAppLoaderProvider.m */, + E828AE6CF229CB321F619611B397E232 /* Interfaces */, + A346B208D139CA7924100FE902535D52 /* Pod */, + 94C3045AF093E8DEE507FB2DEA67D192 /* Support Files */, ); name = EXAppLoaderProvider; path = "../../node_modules/expo-app-loader-provider/ios"; sourceTree = ""; }; - 2D4B79527BB006A1165DBE66645EBB75 /* Support Files */ = { + 2A4F68CA7BD54C1DC76D3D8057C8DB3D /* admob */ = { isa = PBXGroup; children = ( - E290318D93487F59DE5C31910FE61D08 /* react-native-keyboard-tracking-view.xcconfig */, - 395B14AFCAB77323B9CF0B090F8000BB /* react-native-keyboard-tracking-view-dummy.m */, - B2262DA36BDD89C80BBD8B44439EFD4A /* react-native-keyboard-tracking-view-prefix.pch */, + 02266FF05B74056727211D8833DE9E31 /* BannerComponent.h */, + 4C92798D2D1D5FB1EF9CAA74494509B8 /* BannerComponent.m */, + 5D9E56BDE5C5FF39A2FE1F0AAE0D7D2B /* NativeExpressComponent.h */, + FC3ED84A72FE9DE5D6129A8D6A335505 /* NativeExpressComponent.m */, + EBA569295521F9F51A1D1A40A71182C7 /* RNFirebaseAdMob.h */, + 25E8ED55FF13DA927D69901025E03F16 /* RNFirebaseAdMob.m */, + D8EF7B97B2525B9BD9B1D3B530FF70F7 /* RNFirebaseAdMobBannerManager.h */, + 1D6DCAABF437A05889988D68463D3CC8 /* RNFirebaseAdMobBannerManager.m */, + 581F2D86DC66595A5704E34AD02E3F52 /* RNFirebaseAdMobInterstitial.h */, + F697DE0B6919F1EFC1C138220D793285 /* RNFirebaseAdMobInterstitial.m */, + 06EFE3F82058AFC6C88B2322CC4AF11F /* RNFirebaseAdMobNativeExpressManager.h */, + 90B665C26F8748E5148893D113953F93 /* RNFirebaseAdMobNativeExpressManager.m */, + AE96EAD463BCAD2A502D43556C729D79 /* RNFirebaseAdMobRewardedVideo.h */, + C95661ACED4E496A223D7B9A3B85501B /* RNFirebaseAdMobRewardedVideo.m */, + ); + name = admob; + path = RNFirebase/admob; + sourceTree = ""; + }; + 2B41C58DA66CC9E193982E6B92513DE9 /* React-RCTText */ = { + isa = PBXGroup; + children = ( + ED8198D0F273C141F6BD83DE593B502F /* RCTConvert+Text.h */, + 527730EAA6F1800DF3DEC2D8DAD638F3 /* RCTConvert+Text.m */, + 5A7A38165C820864E1383943E18904FB /* RCTTextAttributes.h */, + D12EEF3FE003C43E722F9104827007F8 /* RCTTextAttributes.m */, + 2F315BB023F013A055A42A46D895E975 /* RCTTextTransform.h */, + 660CA6D677AF3CDE99B5CC244E8D30DA /* BaseText */, + F8FD90B8E98DA1949843718FF1016118 /* Pod */, + 1AD924C6909485A32991393605EA47DB /* RawText */, + 4E03B43FDD014B8A9CC1AA4E12A572C3 /* Support Files */, + D584010BAD2C31800E503C288B135F5F /* Text */, + D4996714D6938994133350FDC45E9585 /* TextInput */, + 53C950DA2A543D2B3E91C79B723F9F7D /* VirtualText */, + ); + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = ""; + }; + 2BBAB8922EE3BFBEC826CD5E2C6AF9A7 /* Pod */ = { + isa = PBXGroup; + children = ( + 3E7FF38617E92F8FF066DEFD379E72CA /* React-RCTNetwork.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 2BC83E9E391A5EEA21CFCD84AD562D3A /* Support Files */ = { + isa = PBXGroup; + children = ( + D25D9149BE6DFA8BC723C813E68DC3B6 /* RNGestureHandler.xcconfig */, + 47C91112BAFF2349CD154E89B5A14061 /* RNGestureHandler-dummy.m */, + EF53294520B6B0FA2510F4FFC5B95A1D /* RNGestureHandler-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; 2D5E1728E679DF199A53C1223BB832FC /* GoogleUtilities */ = { @@ -7284,151 +7437,82 @@ path = GoogleUtilities; sourceTree = ""; }; - 2F6722076D8D35554707A3808D8AFE80 /* Support Files */ = { + 2D5EDF0829FC7E6AAA4B0051EC37EF3F /* vendor */ = { isa = PBXGroup; children = ( - AD5A2DEEABA693EEA1369A43A115AE28 /* React-RCTImage.xcconfig */, - A52828CB51B71F5076031A02DD04D628 /* React-RCTImage-dummy.m */, - 6829EB38740D7D3F61F45E588C53DC5B /* React-RCTImage-prefix.pch */, + 6347EA2ABAED7DE88EC05EC485784288 /* bugsnag-cocoa */, + ); + name = vendor; + path = cocoa/vendor; + sourceTree = ""; + }; + 2DAA0622C257C86953C2F7A35CC12DA2 /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 7AC189011E2D6AB4ECA6572B7AAB25D3 /* EXHapticsModule.h */, + 82CA8723A487FAD385ED9DFDDBAAC373 /* EXHapticsModule.m */, + 214E3EDD7EB02C13DCBBCEF36A3105B8 /* Pod */, + 1A44E1DC4A3C74108B74ACE5062F719E /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; + 310CCA9AD404E919D541FB295AD7BFD4 /* React-RCTVibration */ = { + isa = PBXGroup; + children = ( + 6AFA1A74525A190F680FCB7143F7DBA2 /* RCTVibration.h */, + C12B504A2411E97FBF31A198FEE2624F /* RCTVibration.m */, + D88426A9D81B72E5B6FE6F7520642CDA /* Pod */, + 6FC8D68DC6369C6105000C018288ACC7 /* Support Files */, + ); + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; + sourceTree = ""; + }; + 31CAA0F7A8152E8A942F303957B82F28 /* database */ = { + isa = PBXGroup; + children = ( + 1FC5C8A513E491D4D7D8F415EC66CFF6 /* RNFirebaseDatabase.h */, + E3BDD9A33943CC2984F2184D6A64B123 /* RNFirebaseDatabase.m */, + 77581CAD88B4DC303F4AC21BB7AB2E46 /* RNFirebaseDatabaseReference.h */, + BE08227E965D9B47E01FCDEE53FC6C55 /* RNFirebaseDatabaseReference.m */, + ); + name = database; + path = RNFirebase/database; + sourceTree = ""; + }; + 32AE4E452A30E7F67CBDAF01B0D0FBFC /* Support Files */ = { + isa = PBXGroup; + children = ( + D07C0F47608ABC69DF4310AE3BDE5E17 /* React-RCTImage.xcconfig */, + AA93954BF32AB7978AF08366B26FA3A8 /* React-RCTImage-dummy.m */, + 2093499FB5A0D1DB65E3EE2C5B869CBA /* React-RCTImage-prefix.pch */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; - 30288CEEFFFE0488B222534836B28DC4 /* Products */ = { + 333D762DE0FF4BD41FE8E89796A1CAB2 /* Pod */ = { isa = PBXGroup; children = ( - 45C6372A5B49E2E1FF06FEEA2155BDD7 /* libBugsnagReactNative.a */, - 39CFCEDC32E2765981B7FB6164C92798 /* libDoubleConversion.a */, - 3CA734D088EA41A71296AB0E0673B8DE /* libEXAppLoaderProvider.a */, - BB16AD3467F0E21091B9565CD95A5069 /* libEXAV.a */, - EDB7E26045B9E01953F9087BEAA048BA /* libEXConstants.a */, - 5B30A4E7EA86416087D9194ABC6F4CC7 /* libEXFileSystem.a */, - 4536FDCE294E22E73DB5B40D37BA54EC /* libEXHaptics.a */, - 5264B826F320534F554663C69EEF5F0A /* libEXPermissions.a */, - E200A3DD1BAF6E8CA2B79929E80BD2D9 /* libEXWebBrowser.a */, - 7DE78E9DAE2CE047D5546F3DF3332493 /* libFirebaseCore.a */, - 68AC2C6E48332E1DDA285292468A15D7 /* libFirebaseCoreDiagnostics.a */, - 9E834A5A86831FC24177563ABD042646 /* libFirebaseInstanceID.a */, - 8E39CE103F4AA045776C24714D709766 /* libFolly.a */, - F26FB1F96F46DEE91C9960E81F09A322 /* libglog.a */, - 56E72A33A710EB333F582CCB48F632EB /* libGoogleDataTransport.a */, - 99D6D871001EAF342588EB92E5782AE7 /* libGoogleDataTransportCCTSupport.a */, - 927791E238A7883664064AB862E193D8 /* libGoogleUtilities.a */, - 6E44F7F1754D0B03CF9FDCD48BAF91F8 /* liblibwebp.a */, - 4B628604D7A3FEBB879E0FB704118CED /* libnanopb.a */, - 7385482D9FB9C7E491C9936350A35B0E /* libPods-RocketChatRN.a */, - 4B6CEAEC26EF43D22FCBC5C170785890 /* libPods-ShareRocketChatRN.a */, - 0DBE935D2FFB86EEF4268BE44E73B029 /* libQBImagePickerController.a */, - 3C8404ECC73751262F66E4C0F15D5FBE /* libReact-Core.a */, - 5E89011EA3CC1136B327544F240FBF41 /* libReact-cxxreact.a */, - AB8913D1E2AE163AFEA868AF6A1687BC /* libReact-DevSupport.a */, - 09E27F90EDB7E9031A6BA3FA48043D29 /* libReact-fishhook.a */, - 42735D69D041D4BE85EC91405E02FF09 /* libReact-jsi.a */, - 623663F979020A275D4F2FC5C5DDE563 /* libReact-jsiexecutor.a */, - 0BE5449AE70E2DEE65E6F13ABC1B5065 /* libReact-jsinspector.a */, - C5DB08D8CA1F9F072AC9FA7A22F5C1F3 /* libreact-native-background-timer.a */, - B63E9E520BC97C3140F6BD11026AF0F7 /* libreact-native-document-picker.a */, - 9BC5C63657EAAA3C3C9CE341DD5ACADC /* libreact-native-keyboard-input.a */, - 7EB3B9232B7CF7F5EC6393048610AE3F /* libreact-native-keyboard-tracking-view.a */, - C4C60D4739FC5FECF14C85AB27887528 /* libreact-native-notifications.a */, - 7EDA7CF3E29C21A3CB30A9EB9A1E9CD0 /* libreact-native-orientation-locker.a */, - 794E5FE51CD438EDD0931C6A49297F5B /* libreact-native-splash-screen.a */, - F761CA6AB8625B55E071D2ACE220F4CA /* libreact-native-video.a */, - 6BE9580D33DCF58EBA49CBCE4D2C3792 /* libreact-native-webview.a */, - BB661AC855B783E42DE358E7EEB846B0 /* libReact-RCTActionSheet.a */, - A968DFCE0D3C0072B51F974402D57D53 /* libReact-RCTAnimation.a */, - C36EEA33AC428D316780A5588CB86FEE /* libReact-RCTBlob.a */, - 63C1E934AB2989D7A11AC9B284CCFC8C /* libReact-RCTImage.a */, - 10EB5C3180661E16E403A4F436FEA309 /* libReact-RCTLinking.a */, - A96DACD6D7B837517DF7C6024FBE4D86 /* libReact-RCTNetwork.a */, - 5DDE738BFC172477E1469DA768C12F41 /* libReact-RCTSettings.a */, - 0B8EBE128B0CFDCF3C9C01B400CDC636 /* libReact-RCTText.a */, - 390AC4EEBE54FA80FCB9B359E00E92B4 /* libReact-RCTVibration.a */, - 21EF974020D2DBBD3B5149575B06BB71 /* libReact-RCTWebSocket.a */, - CE33456DF539F1F494639FC9340C2BBA /* librn-extensions-share.a */, - 7D1DB3B67FD724782F3C374A5EFB2611 /* librn-fetch-blob.a */, - 2630A39F0C6B2519A28DE0043DFF17DF /* libRNAudio.a */, - DA82BF518BA12487583FB7096644F4A5 /* libRNDeviceInfo.a */, - 07712C9FD703B832FCFA4645436E57D3 /* libRNFastImage.a */, - 5346E81D903AF245D60C679DFB544861 /* libRNFirebase.a */, - 2B9BBD28914A9A13EEBBCA8F183D1711 /* libRNGestureHandler.a */, - 0855744B2E95CB5AA0BAFC261839BD57 /* libRNImageCropPicker.a */, - FF1FF11AEC52441754ED6ACCB68EC620 /* libRNLocalize.a */, - 979B2C3C80CED748F58A24ABA26F16A7 /* libRNReanimated.a */, - E55F7B3536044F2F9DEED24EDCEC22E2 /* libRNScreens.a */, - 8B2007C47066DC5C18F752EBDA8A316A /* libRNUserDefaults.a */, - BAC046E27CCB11E2FB8B51D678B0B91B /* libRNVectorIcons.a */, - 5CC7B28E5375132F8CF2F7842AB08D68 /* libRSKImageCropper.a */, - 329CE658ED52FC4351E0175DAF9F15A4 /* libSDWebImage.a */, - BEBCD404D4A51D256B1D7B953B80E6F2 /* libSDWebImageWebPCoder.a */, - 542BFC98A38CE1BDD075868FF6AB1B24 /* libUMCore.a */, - 768D0474C387997CB2E6B2B8BA54C7BF /* libUMReactNativeAdapter.a */, - F66FF0943D13F8471AA183C47A02DDDE /* libyoga.a */, - FE815C316944FC2C21F1C0403D74BE8B /* QBImagePicker.bundle */, - ); - name = Products; - sourceTree = ""; - }; - 30ECC9BC69D57051DB8A0180938F4584 /* UMPermissionsInterface */ = { - isa = PBXGroup; - children = ( - EC36C187BD36D94C49E6B9ED983A1453 /* UMPermissionsInterface.h */, - 8E0157181E7D27F8EDE483AE711A8D62 /* UMUserNotificationCenterProxyInterface.h */, - 8646221003D21A8D807B931542B7FF3E /* Pod */, - 33C85115DBEE1A6CF2DCAC57437092C9 /* Support Files */, - ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; - sourceTree = ""; - }; - 32A5488144DC72EE3800F2783C688853 /* Pod */ = { - isa = PBXGroup; - children = ( - B50CE2D7F1CBADD1DFB02F81F351B014 /* LICENSE */, - 509DBC6F4554CE9568DF6954A6F4AB77 /* README.md */, - F072DC7235026CF8B4BFBC2F86C25130 /* RNAudio.podspec */, + 92A4E4D06224CAEC3C41CD6A4F52E1DA /* LICENSE */, + 51A40489CAC55939F20EBAFF06E3C0CA /* react-native-splash-screen.podspec */, + 91D98A11F19547A82FB836C3FCAC259B /* README.md */, ); name = Pod; sourceTree = ""; }; - 3314145D42F34F346EE6A8D12682A637 /* Support Files */ = { + 3341B463C7AAB08F22F0B5389371DF43 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 846B61E33897257C71D97E561AF1E959 /* React-RCTText.xcconfig */, - 55BBBF34499E018DC92B25F1D593B47B /* React-RCTText-dummy.m */, - 84014BDBB1D894CF960CFBB268EA3B4A /* React-RCTText-prefix.pch */, + 6A6583286B1E5BEC06DD4BF715369E5F /* UMBarCodeScannerInterface.h */, + 78DA1710EBF157C3CECB6463099B4E03 /* UMBarCodeScannerProviderInterface.h */, + EF4558F87714830ED1E6B7D384F347CD /* Pod */, + 6878A8423943AFD9B75D7FB2DFB969AF /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; - 3321055FFFFEEA87525640633882BC87 /* jsi */ = { - isa = PBXGroup; - children = ( - D98E740D6A2CA4C8275A415F9C2C6005 /* decorator.h */, - DFF4F28EA39916169E14C9E88A56D357 /* instrumentation.h */, - 0DCFEAAD08A70E9F3C3EF14F9F66F0F9 /* jsi.cpp */, - 517F50C1FEB36263CFFE0B05FB717754 /* jsi.h */, - F417F46A3ED83BCAC4547B2810369C6B /* jsi-inl.h */, - 753CAC4F5312CF5C4CF9765EF017232F /* JSIDynamic.cpp */, - D1EE20B6B030AE36ACF8263B79B368E9 /* JSIDynamic.h */, - A7877F2D3CF70BB8D9DED1DBAB1FD501 /* jsilib.h */, - 267700F59E586BC2481C9D46D493B6AA /* jsilib-posix.cpp */, - 7B70D1CB144A80FF7B2ABCE1175D6910 /* jsilib-windows.cpp */, - 1EB6D8CBE957C8E1105C4C1E9E489D8E /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - 33C85115DBEE1A6CF2DCAC57437092C9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6AC231C91232C2774C79AC28F94242CF /* UMPermissionsInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; 33C9409F639F73DC93A67940BDF8D840 /* Pods */ = { @@ -7460,30 +7544,38 @@ name = Pods; sourceTree = ""; }; - 35B488EBB09208AC1A8AB43674EA9422 /* Pod */ = { + 350C2D510D4D821B60D400C10E190038 /* React-RCTImage */ = { isa = PBXGroup; children = ( - 586F8B6882FB64BC86BF9DEB9D58BF8D /* UMTaskManagerInterface.podspec */, + 3A2241DD02FE8DE56CF995B78DCE250A /* RCTGIFImageDecoder.h */, + 9D8064289D118AF34F2F7BDA82A65CE0 /* RCTGIFImageDecoder.m */, + 81499CE04A4EEA96E9240440FDFD1D45 /* RCTImageBlurUtils.h */, + 85570C95F3FD301AA7E78D97C2FBE793 /* RCTImageBlurUtils.m */, + 74DDF8185B2EEA7DF9C4B3F079D608A3 /* RCTImageCache.h */, + 19231630FAEE81DCCC5421C449A86AED /* RCTImageCache.m */, + 81C2C018C22B72F14CB5E4440B4E0717 /* RCTImageEditingManager.h */, + F513EFACFEF5CA937FF0AC2427277924 /* RCTImageEditingManager.m */, + 6BC889F14636CBC952EE2E086D4A3361 /* RCTImageLoader.h */, + 2A1659414A724C865858B812CEA7E5D9 /* RCTImageLoader.m */, + 00830E3155C2A8ABAEE574A7A123A50C /* RCTImageShadowView.h */, + 0C47C8084A0742D3EC19084618D5A944 /* RCTImageShadowView.m */, + 0C5235669CD1912692A6B1F780504AFD /* RCTImageStoreManager.h */, + 25EC550698814DC7DF33F0ACACD03B8B /* RCTImageStoreManager.m */, + DD47A722EF91DCF7B1735AB023587EDD /* RCTImageUtils.h */, + 38D2FEF51ABFB258F9CA4B9F7530CBDD /* RCTImageUtils.m */, + 53C97244F03E5FFF4AA21A33AB0783EB /* RCTImageView.h */, + A640EA4E85693D5A0E22CFB0046E061D /* RCTImageView.m */, + 1DC27DB9DC5CBAFEAC0E96C80C266AEF /* RCTImageViewManager.h */, + 283500765B564383F6DE2F0B4402046D /* RCTImageViewManager.m */, + A0DB7296CDD0CD90CA0CDBDFD4AA0704 /* RCTLocalAssetImageLoader.h */, + CCE146BB2005C90D36EB0566356F965F /* RCTLocalAssetImageLoader.m */, + 2EED36E8F5441F344FED466E5AA34306 /* RCTResizeMode.h */, + 15306F6FD4ED468D98B5C51F933C3C1A /* RCTResizeMode.m */, + DA7ACF7B35F364569D3A656FCA540E97 /* Pod */, + 32AE4E452A30E7F67CBDAF01B0D0FBFC /* Support Files */, ); - name = Pod; - sourceTree = ""; - }; - 360AE6927602FD58291A669CE38321AD /* Pod */ = { - isa = PBXGroup; - children = ( - AC062FA60F2C0C47759E06A01C2CF70D /* LICENSE */, - 8A40D56CA52D159E9D6845B811B67400 /* README.md */, - F7DBE2076D9DC52F717C98A24059CE96 /* RNGestureHandler.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 37724332DD826D6EDF2210B68B5DB746 /* Pod */ = { - isa = PBXGroup; - children = ( - 20B0EEE430486B8EB912DD10666CD832 /* UMImageLoaderInterface.podspec */, - ); - name = Pod; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; 37B60BEB98A505FC3939E0E1280F2679 /* Support Files */ = { @@ -7496,14 +7588,54 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 39403AC8A876FD9576839D147E1CB1BB /* instanceid */ = { + 37F8234912A45040223D42F693EC1B6D /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 33BEDDE0314218C66E40B3D6D29732E0 /* RNFirebaseInstanceId.h */, - 07466C5F9572AAA6BF61E6000AFC5B11 /* RNFirebaseInstanceId.m */, + CBD4A64C0CB98B39A3D41D73AD9124C7 /* UMFaceDetectorManager.h */, + 4F511A3168E3A07586ADDAF286B53C38 /* UMFaceDetectorManagerProvider.h */, + 7A661707C4624C2B3A0590F370BF808D /* Pod */, + CC0428366C8AE2959E7E6469AA07F49C /* Support Files */, ); - name = instanceid; - path = RNFirebase/instanceid; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + 38E047C75E0730E70A746A89A82F4DB0 /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 65AF7CA0A44A052FABA3C47DD869742E /* RCTConvert+RNNotifications.h */, + 1619F6A005B57B9AE7F4F37AFCF390DA /* RCTConvert+RNNotifications.m */, + FEE1C0F3F1458A06888B9B780F0C12F6 /* RNBridgeModule.h */, + AD8C953CF7A28B957A85C011702E4B24 /* RNBridgeModule.m */, + ECB0336293AC8AC7CFEE8A3696AAE425 /* RNCommandsHandler.h */, + 372AB064334408A4505FF1EB3D6740F5 /* RNCommandsHandler.m */, + F184751FD366B731549E57C170DD3397 /* RNEventEmitter.h */, + 328BBE5126BD51C38C72885E74CECC6C /* RNEventEmitter.m */, + 7CDC54313B60DB124E822F965D0B5944 /* RNNotificationCenter.h */, + 96F379997337EEF73B309A58D0DAE568 /* RNNotificationCenter.m */, + A5FCC6DF3B0426A53DBAF6CD2F0B5A38 /* RNNotificationCenterListener.h */, + BDF37D91DBBBB9AA693725A86C6D4A96 /* RNNotificationCenterListener.m */, + 44B62C15CF4A2A52E3565E5BFC105E3F /* RNNotificationEventHandler.h */, + 1ACD1AD8B6BA4EBFBA76D60177201025 /* RNNotificationEventHandler.m */, + AF00D0D625436F5B3775308395AFAE47 /* RNNotificationParser.h */, + ECED1B49038BCC0EC089ABCC4E12CC91 /* RNNotificationParser.m */, + 775D0B1E232EA49373E8F5B42E714770 /* RNNotifications.h */, + 3C72D0A8A1F3408AF7367132D13E90B1 /* RNNotifications.m */, + FFD23090FD42C004631F10B60419583F /* RNNotificationsStore.h */, + 27E1A0E2ED1633F5BA5D969D00EC6437 /* RNNotificationsStore.m */, + F06F77C11E1A305DC7E9A6EBDB4F4F80 /* RNNotificationUtils.h */, + 380CCB205AD58D38D896D39336307311 /* RNNotificationUtils.m */, + 44C2EDB401C1AB4FD4B66BE4ED480C3A /* RNPushKit.h */, + 88F4995F768B92CB4CCD72E30CD874F0 /* RNPushKit.m */, + F2F90A7EC9B268A42FCEE3A81CBADD7C /* RNPushKitEventHandler.h */, + 807E8500471F60CA515BC2A50F9BFC35 /* RNPushKitEventHandler.m */, + 71B1BC4520D3E182C3FB3746546C6D19 /* RNPushKitEventListener.h */, + E118E041F94B5E8A5F56738B9E2296C9 /* RNPushKitEventListener.m */, + 5346283990CC4E7C3AD2AA3FC9D6AA58 /* Pod */, + 283CD9FCEA1233F7F47636CB3D13106A /* Support Files */, + ); + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; 39758F17E3A072D9209D1E8E08C41D2D /* FirebaseCoreDiagnostics */ = { @@ -7520,45 +7652,15 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 3A4FDCD8E6A15E84AD53D626F81055BF /* Support Files */ = { + 3AD1C42C45F2076215A0C318AEDEABA6 /* Support Files */ = { isa = PBXGroup; children = ( - 29BA34328BF0E8648F5516CD167430DA /* React.xcconfig */, + 68A84FAF1789DF09E36A7CF9631D38A7 /* React.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - 3B1834C637A4175F3BCFD22B5F753AFC /* EXAV */ = { - isa = PBXGroup; - children = ( - FD356547C14B8F29E0ED57C05BBBEB26 /* EXAudioSessionManager.h */, - 0AA0E0CC92D7B19BED1C60376C15F5B9 /* EXAudioSessionManager.m */, - 35261FDBE3E56F6EA599B8A3C36E2A26 /* EXAV.h */, - C1A8047590B65DA51F1E4F29EEAF6299 /* EXAV.m */, - 8790CAD9655A22DC201E783B49C2B829 /* EXAVObject.h */, - 6659A6A7C9CE77D75C5C758E52482F53 /* EXAVPlayerData.h */, - F5FE3D17B05BF505807A5F1BBA31E0C9 /* EXAVPlayerData.m */, - D75A2D6942544ADA7D8582110A2BB22E /* Pod */, - 72B71BEFB61541F181A6D883CB3274CB /* Support Files */, - 2BA9E56F365C105437D6A4631C6B9EE2 /* Video */, - ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; - sourceTree = ""; - }; - 3B205CA01BD4D0FBCFF66161E7706536 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 2692AC287AD187B5479A0E10AC4A9264 /* RCTVirtualTextShadowView.h */, - C4AF7890C9B054C452D81767DB2C25CB /* RCTVirtualTextShadowView.m */, - CC9A2F78A2BFF013DBF0E729EE452491 /* RCTVirtualTextViewManager.h */, - 22BF24E49354F10B2BFAA176AA89AA5A /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; - sourceTree = ""; - }; 3B4886A6B66CD4B93511D2C859F866E3 /* nanopb */ = { isa = PBXGroup; children = ( @@ -7577,113 +7679,185 @@ path = nanopb; sourceTree = ""; }; - 3C4869053C1C4850D3F29B781BC51065 /* Pod */ = { + 3B89E1A3A19F372EE8FB10F05F1A1213 /* RNScreens */ = { isa = PBXGroup; children = ( - AA5F67BB38B41ABA6E4F55475B29B804 /* EXConstants.podspec */, + 6A95EFA15BE9FD78A959B4B6DAA72113 /* RNSScreen.h */, + 8EA09E15C4C86D4FF128B953F1193ED1 /* RNSScreen.m */, + 28FD59BEACF23E97DAA493C4C13EEA62 /* RNSScreenContainer.h */, + 0E589582FEE02117FC9758AC0DEBD00F /* RNSScreenContainer.m */, + 3B77D2A8D8C6766652C0F147D7489383 /* RNSScreenStack.h */, + 69681350441B2A06CC6804C52BA2873F /* RNSScreenStack.m */, + 9BEA1A42F6A035EF2AFB42C094DAD538 /* RNSScreenStackHeaderConfig.h */, + DCE868B2DD2A2397AE9CDB09C640B3D7 /* RNSScreenStackHeaderConfig.m */, + 7452515B0599BDD4F00230E314AFA2F2 /* Pod */, + D8F041844728D35735FAD785DBB301BC /* Support Files */, ); - name = Pod; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - 3E416E51B95143261E6C6D959FE664A3 /* Pod */ = { + 3BAC17971D3E54E0C43F88A9CEE629F0 /* Video */ = { isa = PBXGroup; children = ( - BCC388D85E62188E33D791D341BA20E5 /* EXFileSystem.podspec */, + 336C078A7B98B53A4C922812FE46E0CE /* EXVideoManager.h */, + 0B99C2B3085E765A7DFC79EDB5788608 /* EXVideoManager.m */, + CCD9C348D4133723950810542392BECE /* EXVideoPlayerViewController.h */, + 162009AFE68F8454A95737615759E87F /* EXVideoPlayerViewController.m */, + 55E6F0E2607799B0AFA92D955FEF2C41 /* EXVideoPlayerViewControllerDelegate.h */, + A04D324EC31FB81E40C495BF4D1A95A7 /* EXVideoView.h */, + BD3408A59D6FC71E782C3DC62EEBEB51 /* EXVideoView.m */, ); - name = Pod; + name = Video; + path = EXAV/Video; sourceTree = ""; }; - 3F40077B83CB0C8EE7B5DA6E9CC5342F /* Support Files */ = { + 3E79B625954E0DBCC096167454334468 /* messaging */ = { isa = PBXGroup; children = ( - 82F942876525889EA4EFA2D8290FE707 /* RNVectorIcons.xcconfig */, - AAFEC1DA9172DA1E820CCB9A6025C1B6 /* RNVectorIcons-dummy.m */, - AB7FC6010DE52354C3C59CAF0E93331A /* RNVectorIcons-prefix.pch */, + 2192791BAD79F9D3A64499F158FA66FB /* RNFirebaseMessaging.h */, + D0402B22E068B37EBC11F3CBC625397D /* RNFirebaseMessaging.m */, + ); + name = messaging; + path = RNFirebase/messaging; + sourceTree = ""; + }; + 4307FB445AC0C17636AA7CE5879E46C2 /* UMPermissionsInterface */ = { + isa = PBXGroup; + children = ( + 83088738ECDAF84F256DFC3CF390D7BE /* UMPermissionsInterface.h */, + 5C6E407BD8D86B2F8B0DA2DD577E29BE /* UMUserNotificationCenterProxyInterface.h */, + 46E7F142E302503CC33916D97435336F /* Pod */, + F834B078E2A833C024CD19B86C2AD527 /* Support Files */, + ); + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; + sourceTree = ""; + }; + 4347A2C24CE96F006B1BE51EA159EAE3 /* Services */ = { + isa = PBXGroup; + children = ( + 1593030F22AE2BFCE51AF99F036580EF /* UMLogManager.h */, + A52F81A3EA60D1B996E23D393D914A38 /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; + sourceTree = ""; + }; + 4414ADB633F702FD3804619DFA56B8CC /* Headers */ = { + isa = PBXGroup; + children = ( + 4D28BF6FF0EABE68CA3A8AB6343B5624 /* JitsiMeet.h */, + E91D25925455BE8F62051DE4A82FEB60 /* JitsiMeet-Swift.h */, + 8563FB24C3BE544C6A8D77CC2707962B /* JitsiMeetConferenceOptions.h */, + F5D70D0331EB65009B790F8772D66A74 /* JitsiMeetView.h */, + 3BEFDAAC8A49E5ED54A5D89285CA462F /* JitsiMeetViewDelegate.h */, + ); + name = Headers; + path = Headers; + sourceTree = ""; + }; + 448869B7EE6DF4749CEE1881109FE296 /* Support Files */ = { + isa = PBXGroup; + children = ( + 434244749BC458AFB264A6381417A25B /* RNUserDefaults.xcconfig */, + B5107C6780B01E836B2E16DCD00F2428 /* RNUserDefaults-dummy.m */, + F340112ECEB1A9258A2918559DCB596F /* RNUserDefaults-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = ""; }; - 3F97C1327D0F2F7B2FC95D4F08517594 /* Source */ = { + 4493616524B0F5132FD6983AE93D69B4 /* links */ = { isa = PBXGroup; children = ( - 29165008AEF96EABF40153BFA3B39D8A /* KSCrash */, + 87D9D56B13ED6ABE9A79C06687374A08 /* RNFirebaseLinks.h */, + 07618BCE42BAAF60ACA8D512673C99AE /* RNFirebaseLinks.m */, ); - name = Source; - path = Source; + name = links; + path = RNFirebase/links; sourceTree = ""; }; - 401E5480D54D453D559A9D839BCD335B /* Pod */ = { + 44CCE5EF97064805C575B5E1E3085393 /* Base */ = { isa = PBXGroup; children = ( - A96E30556795B2F8E0CA42B67311BD53 /* LICENSE */, - 5A474E979B4DF15232A6D3AB4AC02148 /* README.md */, - F676F9FF6CFD72C3EA2B98E8FA84A113 /* rn-extensions-share.podspec */, + CE0ACE19D1CB1121ADBB32865822FC86 /* RCTAssert.h */, + A7D1FD034B94E4A71369F3DFCBEA95A2 /* RCTAssert.m */, + 1A2941941374CFBB82FAC3F79784B689 /* RCTBridge.h */, + 974254BEAF43EFBF0ACA66D36931D556 /* RCTBridge.m */, + CE963A9E8C500CE91A57773153CAB7E0 /* RCTBridge+Private.h */, + FE60DB5A92B5D13E85FDB6095867D586 /* RCTBridgeDelegate.h */, + DAEE787CF33D79EC8078B8A152606812 /* RCTBridgeMethod.h */, + 3956C34D8C4BA22ED3459FE8D97D297A /* RCTBridgeModule.h */, + 9805DE1690B14DB41F359C5E7D935C9C /* RCTBundleURLProvider.h */, + 238014B21C439A1C3199050625D98013 /* RCTBundleURLProvider.m */, + 69C6BA2C11389F5EE6489A7256CD67A4 /* RCTComponentEvent.h */, + 32BA8626C355E3F583E2B5DA2914EDBC /* RCTComponentEvent.m */, + 18F625F56277BFE80C718D8DA375FA6B /* RCTConvert.h */, + 9FDA5EAD04DABB16FA40C9A37736DF95 /* RCTConvert.m */, + 9E63EA5FFBF1BB5DE38DD26C6CB2FB73 /* RCTCxxConvert.h */, + 71D517984FADABD99BFC731A006426A1 /* RCTCxxConvert.m */, + 62BF52A7FDCA670C0663EEA64E78F333 /* RCTDefines.h */, + 9A61D35C37C8AD0E66BDCB06DA7D2800 /* RCTDisplayLink.h */, + 47BF8824F14E5D7F7AD17F3AFD032E6F /* RCTDisplayLink.m */, + 7C4223DA1E1F3D92448EC0BE8ED002D4 /* RCTErrorCustomizer.h */, + B6A2E29D46AC0211DEE039F98A5180B8 /* RCTErrorInfo.h */, + 582507E561AD360A80FA735EF50BB2BD /* RCTErrorInfo.m */, + 91216EBAACD768904799F983D40ABF43 /* RCTEventDispatcher.h */, + 63C8A1FC0E44E0A2337E9F0FEAFC2A3F /* RCTEventDispatcher.m */, + 1ADEFFF57857F236212EB280D89E3628 /* RCTFrameUpdate.h */, + AD3733C7249A87D4E7256B044DB69FA1 /* RCTFrameUpdate.m */, + 93B917336C8F7FC127EAD9E347AECBA7 /* RCTImageSource.h */, + BB1DB74387B878569D617A5FF7896725 /* RCTImageSource.m */, + B94897D23C06C54D06D16DF4CA4F8842 /* RCTInvalidating.h */, + B09883C0F386F535493F7806BA1F20C4 /* RCTJavaScriptExecutor.h */, + 456518C68EA541639430AD19FD27AB1D /* RCTJavaScriptLoader.h */, + FCD637179F3F5DB67508A56763846AE9 /* RCTJavaScriptLoader.mm */, + A8FF34683E5CE2E206D55106B4680A02 /* RCTJSStackFrame.h */, + 19F4728744093AC4EB67D22D9F3C42ED /* RCTJSStackFrame.m */, + C0E2F68F013470EF6536DAD9C697D7C6 /* RCTKeyCommands.h */, + E885CA4FB3886DFCCC251EE0553A5734 /* RCTKeyCommands.m */, + 3768B1EF49AF63ECC0ACDE8E85C78DC2 /* RCTLog.h */, + 795202CE3C06B97109C450876F8C4F81 /* RCTLog.mm */, + 03DDD640D25B43CB250341BC78B5A54F /* RCTManagedPointer.h */, + 20C59FB31AD3429F83959DDA43D3B3CD /* RCTManagedPointer.mm */, + E6D1A761F5B5B841EFCE9ADC6300685E /* RCTModuleData.h */, + E7C71B857759EE7566EC6B15359071CF /* RCTModuleData.mm */, + 4F5ACB0D2A69038D4236075BD23C802F /* RCTModuleMethod.h */, + 22269C7ADEEA055CD6EAB94C885D38BD /* RCTModuleMethod.mm */, + 1496791F7875988245696D34C6F6983A /* RCTMultipartDataTask.h */, + 498D4A62328D5A0D2EB1953FCA9D35B7 /* RCTMultipartDataTask.m */, + 75F6D391ACBA89A9C14AB36C15309C46 /* RCTMultipartStreamReader.h */, + 9CF4C24CFFE7E566E48EFD73E27708EF /* RCTMultipartStreamReader.m */, + 9242D0A20A446340F0873A4A80421BFE /* RCTNullability.h */, + 3B6D7A7052F4379E8962018996E0909B /* RCTParserUtils.h */, + A9536CFF1A5C4C2C6D673C9DB61891C8 /* RCTParserUtils.m */, + 7D12394645BC1050EAA8A5A968259371 /* RCTPerformanceLogger.h */, + 04F5BD961E0034B524E7D83684CAD68A /* RCTPerformanceLogger.m */, + 24A230210D123B60E0266F793E604D52 /* RCTPlatform.h */, + F9460B9B54E64BDCE867AECA3386A814 /* RCTPlatform.m */, + C104113B235CF12A38F65BF3259A6E88 /* RCTReloadCommand.h */, + 14FD9EE8DEA94E51D6A6AE92728BD720 /* RCTReloadCommand.m */, + 5192E192FA2FDB1BCB8F6B7C773C1F81 /* RCTRootContentView.h */, + 2E8F009B087EA10C0AEFFDD2FDADE176 /* RCTRootContentView.m */, + EBEDFE373E297B1C72D2D13E9E7A7792 /* RCTRootView.h */, + DCB3FB1F1C86A08540A6A052D7FB42BA /* RCTRootView.m */, + 4329C88B160FB25E747B65E341A2F1BF /* RCTRootViewDelegate.h */, + 86DAE5FFAACE6FB0F3CA4FB0AA6A768F /* RCTRootViewInternal.h */, + 06D5956913309B8AC74599643DDB5CFA /* RCTTouchEvent.h */, + C8B14D0CCACAF6FC03AF00F35B77D6FC /* RCTTouchEvent.m */, + B42C447FF7C028E6520D83F7C6C21C41 /* RCTTouchHandler.h */, + 963CA6931CF10CA5752B949FB38CE477 /* RCTTouchHandler.m */, + D6A974826D08DE12A6C8DDF0C74DAD47 /* RCTURLRequestDelegate.h */, + 66290E4FEB92BBA08B4364BED2D01DB1 /* RCTURLRequestHandler.h */, + E43742D427125A54270E8CA1B82F9D0B /* RCTUtils.h */, + 3F5DF676496EE5904C71145919DA9ABF /* RCTUtils.m */, + 70CB2BD39B2EE815B011E6AE54CA7C30 /* RCTVersion.h */, + 6850FFDB65420927730207155E0F858E /* RCTVersion.m */, + DAA1BF0F83F78517EF438D1D21554D29 /* Surface */, ); - name = Pod; - sourceTree = ""; - }; - 406FF1E16728D8978D09FE142BFE2DD0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8C2CD7B403F1A6BE50FF43DD9FD6D900 /* React-DevSupport.xcconfig */, - 74A1643AB61EBFE5CAC925CCC999FE69 /* React-DevSupport-dummy.m */, - F78000E918313697EEC215285E6A040F /* React-DevSupport-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/React-DevSupport"; - sourceTree = ""; - }; - 40BEF737C73F6B5C6681D351914BD53B /* Support Files */ = { - isa = PBXGroup; - children = ( - 7F6D805506141A7A985903CE9EA0CFA4 /* EXHaptics.xcconfig */, - BC415E5931A27F687D96D46F6D0EF635 /* EXHaptics-dummy.m */, - 8F7BB31198185B0FB10F2E7DB9AC7D0A /* EXHaptics-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; - sourceTree = ""; - }; - 42A7FA81CC72A0D99C1955FDC8E15B4F /* UMFileSystemInterface */ = { - isa = PBXGroup; - children = ( - EEBA9DEF8863FC6D30D7BF55AF784A75 /* UMFilePermissionModuleInterface.h */, - AB53CF67A02752A29252E5157518ACB5 /* UMFileSystemInterface.h */, - 1973F269B49A810C263945A559E9B311 /* Pod */, - BA2001B742CE6E42C19D537598050616 /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = ""; - }; - 430794830A982B978190F13A283E4808 /* Pod */ = { - isa = PBXGroup; - children = ( - F12D2F227CE4F320514C26BA159836D1 /* LICENSE */, - F6D02AB598B2085E74D40F9401DC2592 /* README.md */, - 0ED0D26B134E0466E9291E7BCACBD7AB /* RNUserDefaults.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 443B25FB1952A6961719E83D9690B35F /* react-native-video */ = { - isa = PBXGroup; - children = ( - E9D1DA7C33DA575B5C22682C4F077D0D /* Pod */, - 680E5F4F055688F4213F1AE4A3008830 /* Support Files */, - 5B6EE371AC0C1353B13337034361A595 /* Video */, - ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; - sourceTree = ""; - }; - 445A13798BFEBC39E6CF698D94B8F34E /* Pod */ = { - isa = PBXGroup; - children = ( - 3EE39B31FB98E11FCF307DD82F1BCC98 /* React-RCTVibration.podspec */, - ); - name = Pod; + name = Base; + path = Base; sourceTree = ""; }; 44E7703E8FC90E0EAA54ACF6DFB7588A /* Support Files */ = { @@ -7695,138 +7869,78 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 457088F265621E2370131408D7AE6C3D /* Pod */ = { + 45574022627553E973DEC229EBA2458E /* Pod */ = { isa = PBXGroup; children = ( - FD9A6DAE6C6EAA3FDB9CB3220D6D5567 /* EXPermissions.podspec */, + FD076D4B3137FCA3E094689368E1DCBE /* UMCameraInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 47FE6F6E7CC8082C34C77479FDA12169 /* Nodes */ = { + 46E7F142E302503CC33916D97435336F /* Pod */ = { isa = PBXGroup; children = ( - 785CF522439113A8560DB78775B9473E /* REAAlwaysNode.h */, - 4C6A3A1962CEE764D3B25BCA186B34E3 /* REAAlwaysNode.m */, - DCC5ACAA6C1406984C773E1B77568AE4 /* REABezierNode.h */, - E14810F331D395659C0B8E79300C6FF2 /* REABezierNode.m */, - 3D37ED9655C0AC612D334C2CB60EC0FE /* REABlockNode.h */, - F3C84519A110E8699404C4D6B59F05A8 /* REABlockNode.m */, - 7948EDEE4271ACB553E2672BF5B9F95B /* REAClockNodes.h */, - A029DEE8FCE2B8CD5EBD093B13332AC5 /* REAClockNodes.m */, - 75DE36372A79B62FC7ADD1CBD543774B /* REAConcatNode.h */, - 963E891BF725D7AF4DCE75FEFE9BCB3B /* REAConcatNode.m */, - A700C5421150747BB65E8019F7C613B4 /* REACondNode.h */, - 2E01DDCB374A2337590199437BFC9A08 /* REACondNode.m */, - A699D19AD671A866430BBFFF9BF81558 /* READebugNode.h */, - E0735CD2CC65F625513892D928AE4C66 /* READebugNode.m */, - 82753617E233EAE24E2C6803B824ECCF /* REAEventNode.h */, - 9CDB6E5572CF9F77A2F31C0518188160 /* REAEventNode.m */, - FE5FCF25E407FDBD1F637DA7E6D39779 /* REAJSCallNode.h */, - 3320D4B37DE3C86CE3C1F4AFCAF5A616 /* REAJSCallNode.m */, - E0E6F6A9435D05558C1B18F21682D410 /* REANode.h */, - B3AAC7E59E011EE7F86741FA653983BF /* REANode.m */, - 4D402537EE668AD4750481F17036C19E /* REAOperatorNode.h */, - 23925EC963EFD0F90E5802D86A55362D /* REAOperatorNode.m */, - C0E24D38ADB9E29404E790E090BDA445 /* REAPropsNode.h */, - 20D33CD7E9BF14C9CCC07D97E0DD63D1 /* REAPropsNode.m */, - 6FD621D580B39574416E769A4378EFCC /* REASetNode.h */, - D1C737F3442C503F0B7EC38BC7B803D9 /* REASetNode.m */, - D9004ADE4F483A5DDBABBA78328A24AF /* REAStyleNode.h */, - F00BB4995590A35B96498DF60CA47F12 /* REAStyleNode.m */, - 156E4D24CC7171A92173EBAF45D28EC6 /* REATransformNode.h */, - 425CC23D047156D34C777C563EF240C8 /* REATransformNode.m */, - 441C288FC0F7C3B684CD3D568C937A6D /* REAValueNode.h */, - 57F7E304891552DD191194CEC340AC8C /* REAValueNode.m */, + 03AAAF92BC5EFA132EDEC15F48D44C6C /* UMPermissionsInterface.podspec */, ); - name = Nodes; - path = ios/Nodes; + name = Pod; sourceTree = ""; }; - 48001D4FD48A3B0F76BA39695424E245 /* SafeAreaView */ = { + 46F93ACCF95CC25327AE1E3C4533AF60 /* Support Files */ = { isa = PBXGroup; children = ( - 55F10AB43C1B7496F6A2C2869C8F2D17 /* RCTSafeAreaShadowView.h */, - 8A3591B2B8C31CDF6EB6024BA2479614 /* RCTSafeAreaShadowView.m */, - 050BB1C4DBF503133093EDCB8E588378 /* RCTSafeAreaView.h */, - 2583468779239F77E58A8A9D59FBFAAA /* RCTSafeAreaView.m */, - 0A24BB253288051A987EF3A18BCE2650 /* RCTSafeAreaViewLocalData.h */, - 92E5EFA2BF6CB4C04D42A2D3E85441C4 /* RCTSafeAreaViewLocalData.m */, - 07DC8E1AF4B914628D830EF9C951EEE8 /* RCTSafeAreaViewManager.h */, - 980BA187310E4AA093939AA3E53D5584 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 487DB8A477E847FE0EB23EF9226FB13C /* Resources */ = { - isa = PBXGroup; - children = ( - B9B3D67ACFF92533F0F623AB3F912627 /* AntDesign.ttf */, - D8EA1A72FCF227A25C31E74AF4A51DEB /* Entypo.ttf */, - C493846DA82089F44CC062E511F63BDD /* EvilIcons.ttf */, - 33B535A3855FA08AD42DF5E230A14D3D /* Feather.ttf */, - 86BDB42799F62781690365C4AE4D58E6 /* FontAwesome.ttf */, - E1058A977B629F77554F824CCFE5942F /* FontAwesome5_Brands.ttf */, - 430D8C2FE06F2CC7B8C16AF0EBADD28F /* FontAwesome5_Regular.ttf */, - 51E86FB4685128F38C089AA581D4CB52 /* FontAwesome5_Solid.ttf */, - 270104B540A738BC27A9A514F39B31B6 /* Fontisto.ttf */, - 75CE041A5ECBBA9BA6CBFA903CE7A0CB /* Foundation.ttf */, - D6022968E56E73C04F3FB3C9FF938C3E /* Ionicons.ttf */, - 6235E3CB7F1DBD970C1613DCCA6FD3B9 /* MaterialCommunityIcons.ttf */, - 9C96A0774CD7FE9D280B7D0667C7F656 /* MaterialIcons.ttf */, - 44209D76FC667348BA5B0A54EFB64459 /* Octicons.ttf */, - 6F279E8DDD0482EAB1E5B14906535B90 /* SimpleLineIcons.ttf */, - 7BFEAAA5D01D9BCEB829DB1B8A46121E /* Zocial.ttf */, - ); - name = Resources; - sourceTree = ""; - }; - 4937EAE9AE43360BA2AF8701BD92D172 /* Support Files */ = { - isa = PBXGroup; - children = ( - C545735810BCDE8E4DAA5F060FE6F679 /* EXPermissions.xcconfig */, - ED17D141B6E83F16279E3667ADD94BFE /* EXPermissions-dummy.m */, - 604718BCF2D466A75169D57745BFC047 /* EXPermissions-prefix.pch */, + DF70675D405738BB60B5633AA4B8714D /* rn-fetch-blob.xcconfig */, + A9773738343A838AB060E5A45C2550E7 /* rn-fetch-blob-dummy.m */, + C531B29DBE2698E109A9691004E57881 /* rn-fetch-blob-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = ""; }; - 49532062DA1229C43ECE3DAEE7AF3D7B /* perf */ = { + 474CDE21DE6A2B016D78B186F455E180 /* React-jsi */ = { isa = PBXGroup; children = ( - 23F7A61198D347EA32E1B1EA49667E0C /* RNFirebasePerformance.h */, - 15044948BD6369E56987DBA4C4AFDC95 /* RNFirebasePerformance.m */, + 86EA310B6923A839B93B51A993A791D5 /* JSCRuntime.cpp */, + DEE1069933A7D6C78A7768D91C83AB70 /* JSCRuntime.h */, + 13D6C8B713623C48FA0536BEA1598F23 /* jsi */, + 929DC90E96545ED1B059EE1ED41B19DB /* Pod */, + 9677A4FCE957D0BFF5C5485E797215AF /* Support Files */, ); - name = perf; - path = RNFirebase/perf; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; - 49A4129617C56155090A31EF42DC738A /* react-native-background-timer */ = { + 4C13FB61A7C585F30907164B3C3A4A21 /* Support Files */ = { isa = PBXGroup; children = ( - 02A484E930F713F09A3EB1F58B7F2302 /* RNBackgroundTimer.h */, - D721167690A62B806919C4060524F1A4 /* RNBackgroundTimer.m */, - EF2F81FFCAEB06AE39461AF58C21733F /* Pod */, - 943F591EBC42491ABF577183F7A58103 /* Support Files */, + AF1BCA314238149BFE80E23DCAF8D959 /* react-native-splash-screen.xcconfig */, + 11167AFE1757DD2A3735A87D15321186 /* react-native-splash-screen-dummy.m */, + 9041690456A698CE5F6773D2509EC5D2 /* react-native-splash-screen-prefix.pch */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; sourceTree = ""; }; - 4C7E6D902369D6CE1A9A34C6329AFB5D /* UMFontInterface */ = { + 4C313246C451FF0D8E5BBCFE790C6830 /* react-native-document-picker */ = { isa = PBXGroup; children = ( - 561658D6DCE6C96CBDF51437D09BB039 /* UMFontManagerInterface.h */, - 3E2B57281220CCAAD33A506549A892A8 /* UMFontProcessorInterface.h */, - 57C30D0C83A00ADDE026FCF6BF3140A9 /* UMFontScalerInterface.h */, - 2759281DC2B5078CF7E6185199F43441 /* UMFontScalersManagerInterface.h */, - FC211C1C956605584E5740331A545CB2 /* Pod */, - 21082DA5FF96D15432851A8C054FBB6B /* Support Files */, + A5E4D0A95D645D6EEE043EF41795908E /* RNDocumentPicker.h */, + 635583FD771B1F8A601CFC718C9E6D1D /* RNDocumentPicker.m */, + 086D09E4ED946835CC1C62043DE65601 /* Pod */, + 1EA17E47E37666307C4C25A7DF8A9CB7 /* Support Files */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; + 4C664952461D3B3184430E82D448DD8C /* Support Files */ = { + isa = PBXGroup; + children = ( + 1E29F6466E30ECFA65A6C1228F8F1C0B /* React-RCTAnimation.xcconfig */, + D3CA35E11B829049A1453A7190CA318A /* React-RCTAnimation-dummy.m */, + 94B6EBBE61CD9EB64D7A1BD8A02F851C /* React-RCTAnimation-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; 4C88BC9A9C28EC7959F001EE769ACA4C /* SDWebImageWebPCoder */ = { @@ -7843,112 +7957,49 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 4CA81756079E8B97CD316A6DC6C3D52D /* RNUserDefaults */ = { + 4E03B43FDD014B8A9CC1AA4E12A572C3 /* Support Files */ = { isa = PBXGroup; children = ( - B30AA69C2809E9542846F8C923C0914F /* RNUserDefaults.h */, - CA5242E1C6FAC645A1ED6B8A320B7F80 /* RNUserDefaults.m */, - 430794830A982B978190F13A283E4808 /* Pod */, - 0D93A9404D40C0FB1BA3034FD8B82D4E /* Support Files */, - ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; - sourceTree = ""; - }; - 4D0E8DB4FFFE9AA02707EEAB19B56D49 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9CDB8351DE03FD8580AC11757D164382 /* BugsnagReactNative.xcconfig */, - 2DDC72260A2A6E242E46DF2169DB416B /* BugsnagReactNative-dummy.m */, - DF98FAFA4332F48AF619D2CC8DDF224D /* BugsnagReactNative-prefix.pch */, + ABFE44D10BC96227DDE760CDA55459E1 /* React-RCTText.xcconfig */, + 511C13AB1368E84392E76E2C090D0B44 /* React-RCTText-dummy.m */, + 25FDA356CC49DB2801FE0667635AB9D2 /* React-RCTText-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - 4D4A9388AC46645A45F0D719A8EA28B3 /* Support Files */ = { + 4EF3E4F1821E03F8D1B64ACF17239B6C /* Support Files */ = { isa = PBXGroup; children = ( - 44E0238B51B8FA5E394347513EEB7564 /* RNAudio.xcconfig */, - 499F079B5DA2D74497540222B92B7657 /* RNAudio-dummy.m */, - E12D4A3F4928D8B2EBEEEA5A728BDC11 /* RNAudio-prefix.pch */, + 33992860045FCB2FD0DD2AE312747C65 /* react-native-video.xcconfig */, + 71C79F374395DF0DBF873D9BDF60BEA0 /* react-native-video-dummy.m */, + 25B460690D85F29E715D404D98DB7B21 /* react-native-video-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; + path = "../../ios/Pods/Target Support Files/react-native-video"; sourceTree = ""; }; - 4DA2E41230386A2A6AF73E4A27973D33 /* React-cxxreact */ = { + 50A16967671452AED7DF539756F44182 /* Support Files */ = { isa = PBXGroup; children = ( - 161DDC8E9818F478D03193D302EEFC1E /* CxxModule.h */, - 0762FF5E65B8B48396AE51968E7A41F1 /* CxxNativeModule.cpp */, - DD7E913B7DB653BD1F8EC1EE6EA833D2 /* CxxNativeModule.h */, - 6BD49563A0BA117D4E7F798DBE0AA567 /* Instance.cpp */, - 28E1337B043E1B3D5A881C5D44E43501 /* Instance.h */, - C85E49B3AD193189638DDD1A4C81661F /* JsArgumentHelpers.h */, - 6AAF2ACE3FE7E2DD86ED5D32E5150F27 /* JsArgumentHelpers-inl.h */, - C7CEB7B2105C3E35CBC1BE7223ADD903 /* JSBigString.cpp */, - 64C2699511ECB924FE3116A301B06E6F /* JSBigString.h */, - 66DF2465DCC11C7377F2264B2F92598D /* JSBundleType.cpp */, - 20A42E113DEBC0CA926C24D67F0ABF36 /* JSBundleType.h */, - 8B832F1861533347054057F4F575CF1B /* JSDeltaBundleClient.cpp */, - EE0BB504FA420B24C4B402FDBE4F1CEC /* JSDeltaBundleClient.h */, - 9541EC8EEFA485E6751EEADBF3A47171 /* JSExecutor.cpp */, - F54D4CD2861E51D3CBE468A3E4567985 /* JSExecutor.h */, - F7DC408E35B0EA1D63CF2CC4C0865E8B /* JSIndexedRAMBundle.cpp */, - 03088DFE62EB625D5B8B896975494B2F /* JSIndexedRAMBundle.h */, - 6E68310F4814224DCA12EC072527D655 /* JSModulesUnbundle.h */, - 21C54A272638C9D1C6AD8A996EFF4159 /* MessageQueueThread.h */, - 1FB8C6E58748FB238B435661F40A2F42 /* MethodCall.cpp */, - 5E4642A040666803E8013DB341BCE195 /* MethodCall.h */, - C7BF8889AE3768AD15C05E0376FF5A58 /* ModuleRegistry.cpp */, - A62630B597A616F406D5BC138E897E05 /* ModuleRegistry.h */, - F16056412A25F3177090298E05FE0264 /* NativeModule.h */, - B80DC6A89DF0B9BE110A30A79C936850 /* NativeToJsBridge.cpp */, - 79A661571C8BB75BF54632AE2599CC2E /* NativeToJsBridge.h */, - 6F4A63248ED7A2E95B7AC4BD8DDB5C27 /* RAMBundleRegistry.cpp */, - 16C1FEE866B0BBA4529C87B3D5EDC258 /* RAMBundleRegistry.h */, - 84F9F714D8FA69FD1D5D9C6795333F31 /* ReactMarker.cpp */, - 6CCDFB44F38DA8AA0C63558163E79218 /* ReactMarker.h */, - CB09CF769EC49B1D96E7A5FDA8D49939 /* RecoverableError.h */, - 5DBA79567BFC8570CA5FCCF2CA4E0CBE /* SharedProxyCxxModule.h */, - FD497630792652514B55ED0688019276 /* SystraceSection.h */, - 0A662265DB330252D5CD43000DD7C2D6 /* Pod */, - 6179AFBEEDAE50798919D957A9A0A34F /* Support Files */, + 8F512DD440E67929D7F4EF7DC55707B9 /* react-native-orientation-locker.xcconfig */, + 9EA2E75DC4A1F7259216E29FD996F251 /* react-native-orientation-locker-dummy.m */, + 26DC102DF6538FC5718376E0D0F42A5A /* react-native-orientation-locker-prefix.pch */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; - 4E1C442FC43AA05C5681EB6510F8B262 /* React-fishhook */ = { + 50B66B999F989BBC5318C0C910236BC0 /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - F59046A2A0F6AA546CFE2C080736E5DD /* fishhook.c */, - BA4F7994E5270B6C156D70227978DBFE /* fishhook.h */, - ADA820DD2C27A4835668C85978008ACB /* Pod */, - 702506DF3744EE5413E4CADCD47B8B25 /* Support Files */, + 84A8D32ED22D4F14977BDA352AE3CF31 /* Orientation.h */, + 0A5C36E7B1FC34C9FB805F85698FE08A /* Orientation.m */, + D22387F6959A46A913E40F7B3C04CD41 /* Pod */, + 50A16967671452AED7DF539756F44182 /* Support Files */, ); - name = "React-fishhook"; - path = "../../node_modules/react-native/Libraries/fishhook"; - sourceTree = ""; - }; - 5131D483526C51599A2E2A34DDAB2388 /* Protocols */ = { - isa = PBXGroup; - children = ( - ACBDE845D1259E146B4DC835F57286A9 /* UMAppLifecycleListener.h */, - FB5C668F1A4161C8DD532454FF4B45F8 /* UMAppLifecycleService.h */, - FD180D0F446B0BE76D3052844D24B8C4 /* UMEventEmitter.h */, - 053E7A37FE6132038EE3F612568E575D /* UMEventEmitterService.h */, - E9ADAAC88F6604E808795B9579A727CD /* UMInternalModule.h */, - 3835ACF70A6CE9C3B96F58B25FEB9603 /* UMJavaScriptContextProvider.h */, - EB8C45C37E44E2F1173DBB06500A6943 /* UMKernelService.h */, - 3AC76B2B26BF4483305C2ED328BE89ED /* UMLogHandler.h */, - 8DD91A307BDFF4FD45F84AA09F6EA9BD /* UMModuleRegistryConsumer.h */, - 50DEF2587B4EF77A9EB0C92043D9805C /* UMUIManager.h */, - 42F26386EFD752B77424A80EF7CC5BFB /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; 51B0C4AD72A949EDD79168F06F9C0E85 /* AppDelegateSwizzler */ = { @@ -7963,54 +8014,137 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 52BB17B2A2EDC4A993118BA5F48A6828 /* Support Files */ = { + 51D3C4BCC0C2E95672EC8F60975AB56C /* react-native-webview */ = { isa = PBXGroup; children = ( - 371674DF59BF4D8C2E4FA2F9F98BAA03 /* react-native-notifications.xcconfig */, - C4E3CEE675180CB55CB871F9C7D82811 /* react-native-notifications-dummy.m */, - BB0562477B2F88C9FD275B125681E33F /* react-native-notifications-prefix.pch */, + 8FF6BF28011503F3CB733E8CEA8A02B8 /* RNCUIWebView.h */, + 71F8FE0BDDD32900C2C20BEA4846A123 /* RNCUIWebView.m */, + 521EEF0EA5C39DE2420E67CEA6A856CA /* RNCUIWebViewManager.h */, + DBF631D95CE9659649674B49EA5E8ABF /* RNCUIWebViewManager.m */, + A7F770313525A6CCEA0860D039863F99 /* RNCWKProcessPoolManager.h */, + C871A964EFAF5A7E82BF98AE2B5847C7 /* RNCWKProcessPoolManager.m */, + F84E044A01FDFBC089870B38D42D57BE /* RNCWKWebView.h */, + 0BA0BB909E728AE9D3243F615AF4FA77 /* RNCWKWebView.m */, + 25C73E3EA5483EF8F6BAF43585D19AB5 /* RNCWKWebViewManager.h */, + 59DECA80C4EE932F2FC1BEC18996D01D /* RNCWKWebViewManager.m */, + D3CB4D98C8CBE16E41C674EDFDF65DEC /* Pod */, + DF59181FB2AB24A6891B9E50B0F3FF50 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + 5346283990CC4E7C3AD2AA3FC9D6AA58 /* Pod */ = { + isa = PBXGroup; + children = ( + F338CAA02218407D14157B8C0C066883 /* advancedIos.md */, + E5E0A7BDB34F4D15B98E323AFD2FB279 /* installation.md */, + F5170AD31FF8A4B719F95CBDB9B0C0D1 /* LICENSE */, + D657301D987FAEE0D9A69E422EA25B4E /* localNotifications.md */, + CE6C3EF04D244B79F4ED776629E6507D /* notificationsEvents.md */, + 15F469D239E3986755FF439EB43EC486 /* react-native-notifications.podspec */, + BECBC00B5BA6BE7D5060DFEBB853F5A9 /* README.md */, + A8D2DF6877363067B846964E79008C95 /* subscription.md */, + ); + name = Pod; + sourceTree = ""; + }; + 53B54A1B24A76BE51BEA026F2A6C6128 /* react-native-keyboard-tracking-view */ = { + isa = PBXGroup; + children = ( + B0B07B2CA13B4B5B848AD88AA1B2888A /* KeyboardTrackingViewManager.h */, + FC38D36766ACBC7BFE50EFB7F6F3D149 /* KeyboardTrackingViewManager.m */, + 5AFA056E391AA7A19B7E6B74C5130B47 /* ObservingInputAccessoryView.h */, + D1DFFED3C5B16186D336844AF417F2B4 /* ObservingInputAccessoryView.m */, + 47C74627B91DA291B298A63A8C900A47 /* UIResponder+FirstResponder.h */, + CA4D663A4ED65B8292786EACA86D117A /* UIResponder+FirstResponder.m */, + A43C6EDF6FA7C2CE15E7FE6AB6647C69 /* Pod */, + 91EF2C357539C6ADBB79C4BF7AC91A4E /* Support Files */, + ); + name = "react-native-keyboard-tracking-view"; + path = "../../node_modules/react-native-keyboard-tracking-view"; + sourceTree = ""; + }; + 53C950DA2A543D2B3E91C79B723F9F7D /* VirtualText */ = { + isa = PBXGroup; + children = ( + FABA93D99179070E8400B4DB0C17D637 /* RCTVirtualTextShadowView.h */, + B5451638C37FF180AE6320A16C731855 /* RCTVirtualTextShadowView.m */, + 278D7B535C493D8E3FB6C0E407CBFD32 /* RCTVirtualTextViewManager.h */, + A97616B7F0C1E36EEACBECE0ADBD16DB /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = VirtualText; + sourceTree = ""; + }; + 53F1F8E8FD2743E4D23D1255D8DA1DB0 /* UMImageLoaderInterface */ = { + isa = PBXGroup; + children = ( + 5E42845AC8E2AD21C90B304E53D76E43 /* UMImageLoaderInterface.h */, + D9E1DF859894BE5BA13A0049341254A9 /* Pod */, + 0DAA0C3D48B5020641F325BBA9C2BB4D /* Support Files */, + ); + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; + sourceTree = ""; + }; + 5534D3484931FCDAB1F8A5305519E7B4 /* CxxBridge */ = { + isa = PBXGroup; + children = ( + F70CE3B9D17581E8658EEADF09B4868D /* JSCExecutorFactory.h */, + 57297CAB9BDE786F11339BDB0D2F5E82 /* JSCExecutorFactory.mm */, + 767DC0CF17388C57F01DF92F3E6D8868 /* NSDataBigString.h */, + 72C9BBF114539864724A8E898EC59A31 /* NSDataBigString.mm */, + 2E6339AF8D32C284615ABD60F19D6843 /* RCTCxxBridge.mm */, + 86B6EA39ABD61E9912083281842835B8 /* RCTCxxBridgeDelegate.h */, + 8C6A84CE3700CC7751C0FD60097537BF /* RCTMessageThread.h */, + 2E5114A5293B72E5A9BCB1310F1B84C1 /* RCTMessageThread.mm */, + CC66E982455364D614DF401B94602E8F /* RCTObjcExecutor.h */, + C88F8FD28B8A36C342F510140396AC4B /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = CxxBridge; + sourceTree = ""; + }; + 564FD8E78616A8AC8F6BEAE3A7288B5B /* Support Files */ = { + isa = PBXGroup; + children = ( + FEAFB87107831290F5EFA9D4A2385FFD /* React-RCTActionSheet.xcconfig */, + C96DC7C141C998BBCD388D03E5B5DD26 /* React-RCTActionSheet-dummy.m */, + FD5A23DEE7D481FCC932B2DCD45FCAF4 /* React-RCTActionSheet-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 539998BC8D67400B54ED95ACD12109CD /* React-RCTText */ = { + 57048C43182F7F593598B090E3404BEC /* react-native-keyboard-input */ = { isa = PBXGroup; children = ( - D9E7535A608FB06AF8E9E8CA4D43391A /* RCTConvert+Text.h */, - 15BE8E11BC039F481D83B22F89DD57E1 /* RCTConvert+Text.m */, - 9ED8F47BB05C6724F22C460E6ADECB06 /* RCTTextAttributes.h */, - D52E950083CE13D1370CCEB4CFD1A165 /* RCTTextAttributes.m */, - 2FA8A7CB6E09B8F35D8A922D772308CA /* RCTTextTransform.h */, - BE490D7A1D9688C0BE4BD2C20DE10083 /* BaseText */, - 132B5E9D3F3EA5BF7B4E96F3E530DD35 /* Pod */, - D45B6A60C8EB2941E07DBF127B7820FB /* RawText */, - 3314145D42F34F346EE6A8D12682A637 /* Support Files */, - 7E01CAB304FAC12B7C8515B82AB0B3B1 /* Text */, - 67F582519794E6B332C7EE655BB30E87 /* TextInput */, - 3B205CA01BD4D0FBCFF66161E7706536 /* VirtualText */, + 125D685BCB1391216119E39311A62291 /* LNInterpolation */, + 941857206C9273DEA7A1334576A787A8 /* Pod */, + ED543A9292B9C3C50638B426CC064542 /* RCTCustomInputController */, + ADCF47B83A3862A400A9D2356C82A5D9 /* Support Files */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = "react-native-keyboard-input"; + path = "../../node_modules/react-native-keyboard-input"; sourceTree = ""; }; - 55A9E7BF941EECE32F643228EAD58A57 /* UMModuleRegistryProvider */ = { + 58BBDF14D194535ECF4FBC88EC9D6B9E /* DevSupport */ = { isa = PBXGroup; children = ( - AC84951035D72C1A26D9A6E65F9543BC /* UMModuleRegistryProvider.h */, - 82F37BD13BD7F4976D1153BD80C59939 /* UMModuleRegistryProvider.m */, + E4E38FB06AE0AB149E33DD46E7515C24 /* RCTDevLoadingView.h */, + A79693CAD457A7347DA72F62C698437F /* RCTDevLoadingView.m */, + 24055B7862CDE08FD4C2B1C7B2FF1D6E /* RCTDevMenu.h */, + 404244D3A8D555D5D4E96BB69B4B9DB7 /* RCTDevMenu.m */, + A9224D2AECB42676905A56B9A541410C /* RCTInspectorDevServerHelper.h */, + AAEE24316DC8FAEFE3396F1CC9AFB935 /* RCTInspectorDevServerHelper.mm */, + 179E0F504449D617B1E490EC257603D5 /* RCTPackagerClient.h */, + B565F3F58DB6CA7CF8D1B9CF42E0D60A /* RCTPackagerClient.m */, + 3EA891633FEDEC311D9EACCF97876BA6 /* RCTPackagerConnection.h */, + B240714C009A7083197074E629FCB611 /* RCTPackagerConnection.mm */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; - sourceTree = ""; - }; - 58B8ED22D02D894557A2750CC8030E2F /* Support Files */ = { - isa = PBXGroup; - children = ( - A95AF02CBA1CED11C1C7B9BB935F90CB /* UMBarCodeScannerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + name = DevSupport; + path = DevSupport; sourceTree = ""; }; 58D0E744162FDBF26B97C52BC03FF0A8 /* Support Files */ = { @@ -8022,48 +8156,29 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 58DB761F9623F366C85181151B7C5E5E /* Singleline */ = { + 5CDB6E7C6FF3A774E2CDEC31240D6EEB /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 15AC6CB4B7E1F40F37318783CE47D1F5 /* RCTSinglelineTextInputView.h */, - 6A3288D3CDB1CDF50FA4B8AF91569A68 /* RCTSinglelineTextInputView.m */, - E463891540DFDF7794DBF0EF315A10A1 /* RCTSinglelineTextInputViewManager.h */, - 4D9C6341FDAC19E5535D035C9903CE34 /* RCTSinglelineTextInputViewManager.m */, - 1EA6361228A7002B6EF6CB1771EFB562 /* RCTUITextField.h */, - 17CB7012BC40063FF7C3A6F42053877F /* RCTUITextField.m */, + 1750132758DAA705EF1D97893747F807 /* RNJitsiMeetView.h */, + ACF039C83C437FD5D98726E40470D559 /* RNJitsiMeetView.m */, + 170C0B92D8030F072BDA907F631BDB0D /* RNJitsiMeetViewManager.h */, + B75C5F07F0B5EAE4031F252CEB5B7AF0 /* RNJitsiMeetViewManager.m */, + E4718F97ABDB6ABE92C249C60245F177 /* Frameworks */, + E01DCB8A2E828A03829201157A8B53F3 /* JitsiMeet.framework */, + EB09405C7D91A3242BF70E08A8FF79D2 /* Pod */, + E0A38BA86493F3B76C35683E8273DE24 /* Support Files */, + B10471D4715800E69FB9CFDC2C63BC0B /* WebRTC.framework */, ); - name = Singleline; - path = Singleline; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; - 58EE62DC77289DC6606DA3D1E847CE41 /* SurfaceHostingView */ = { + 5E34ADA07D7BDA63AEB98443DC5D23FC /* Pod */ = { isa = PBXGroup; children = ( - 68E24046689842F7A82BBF175B7B4B89 /* RCTSurfaceHostingProxyRootView.h */, - 3C45645B442ABB0BE358A84C461CC1B1 /* RCTSurfaceHostingProxyRootView.mm */, - 436F250586F71C1E0ACD295CF676BC8C /* RCTSurfaceHostingView.h */, - 86CEA8506D2252EAF94502762FBE331F /* RCTSurfaceHostingView.mm */, - E7282F298669CE9F5F6432FCFB604961 /* RCTSurfaceSizeMeasureMode.h */, - A010434FA9A6A97D0A7AB37C1E34F258 /* RCTSurfaceSizeMeasureMode.mm */, + D4B0BD6A8A65E962083A3EAC58ACA16B /* React-DevSupport.podspec */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; - sourceTree = ""; - }; - 5B6EE371AC0C1353B13337034361A595 /* Video */ = { - isa = PBXGroup; - children = ( - 4389CE451A27C75AA838DB5D66747AAD /* RCTVideo.h */, - 0BD25A97840A330D0437C703F4639F26 /* RCTVideo.m */, - 2FE61E0CD030365ABEA6646B226AAD8E /* RCTVideoManager.h */, - 9AC024D8FF2A106AFE66E3AE0C33EC29 /* RCTVideoManager.m */, - 4CD6096ADF83502C482B4CB291EAAA44 /* RCTVideoPlayerViewController.h */, - 35E9912AA4787FB7820E69B86B7A5180 /* RCTVideoPlayerViewController.m */, - C1FA18B6B6F1BB855E3F2F74FC02D1C3 /* RCTVideoPlayerViewControllerDelegate.h */, - F33FE569D773A8C3C0FD6903E01CA41B /* UIView+FindUIViewController.h */, - EE1520050960C45BEBAAC3A3CAB5033F /* UIView+FindUIViewController.m */, - ); - name = Video; + name = Pod; sourceTree = ""; }; 5EAC08F91E8376EBE7C1426FDA586990 /* Support Files */ = { @@ -8075,24 +8190,6 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - 5F0F94E7B237DA9B5FA7CECDF4712DFF /* RNScreens */ = { - isa = PBXGroup; - children = ( - B363D1981C56815FD302BDBADF3538EF /* RNSScreen.h */, - 547D4BD65F5EABB7DAE0E723E8192480 /* RNSScreen.m */, - FFB9C634C45FD9FDD3683F612AB13919 /* RNSScreenContainer.h */, - 39BD66D976BF106158EE3E0DCCE9233E /* RNSScreenContainer.m */, - 35E5B4F1DC5C89F0238898EBB3BEB431 /* RNSScreenStack.h */, - FE4AF122A0F1F74C6FCA07D2E1213969 /* RNSScreenStack.m */, - 25F42F431BB0E90988DFCE445EA0D7DC /* RNSScreenStackHeaderConfig.h */, - D64055DE1F0E50879AD816AEE3EA54FC /* RNSScreenStackHeaderConfig.m */, - 01FA314F7814858FD6E35BA4D3C67DEF /* Pod */, - A5F342E41B2B9EC40110C93DA0B1AAA9 /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; 5F2B9B03CBA050096C64BCA169256E2F /* Reachability */ = { isa = PBXGroup; children = ( @@ -8104,64 +8201,69 @@ name = Reachability; sourceTree = ""; }; - 6084A63AAA1BA64A537BF706B009558A /* Support Files */ = { + 60EED86BED90286499A6CCE72D482406 /* react-native-background-timer */ = { isa = PBXGroup; children = ( - 2119F559418EE297D7B8C21D6135C4E7 /* React-RCTVibration.xcconfig */, - 37E4A75866F5A17B9C02E9D166ECA7B3 /* React-RCTVibration-dummy.m */, - 91706BC18AC0EC9283D51EC961794300 /* React-RCTVibration-prefix.pch */, + 2058DBA2C8EF3BFC9BE65BA4184E8B24 /* RNBackgroundTimer.h */, + FCC2E608BC47E82A0F728FA5F0D83E2E /* RNBackgroundTimer.m */, + EDFD06CCE0EAE88DD8665EB0D5345828 /* Pod */, + 1B750405458C22E303231177E115FA1B /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - 60B4034346656FF01382D222862727D2 /* React-jsiexecutor */ = { + 61287D14C556957A1880258EC8EE912E /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - A58CF9900C98E30470CA191878D8E52E /* JSIExecutor.cpp */, - 3F418E0FFC892AB2EB5898201E89CB31 /* JSIExecutor.h */, - 4820FB40463901FD7E7A334DE02FDCA4 /* JSINativeModules.cpp */, - 5A77999B1B54617733A5E6BAEF4FE6D9 /* JSINativeModules.h */, - 2302BED7540DF0AF97DC4587C3F4ED9D /* Pod */, - 14185A5A3F8B0D9A8F0531274D7D1D75 /* Support Files */, + FD8030763E90C6DF19EFAD9229DCC01F /* UMConstantsInterface.h */, + BB00D86353F02BA311C4CA90B1548431 /* Pod */, + E4FF7B9B71F99081B79C287D5D51C4D9 /* Support Files */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; - 6179AFBEEDAE50798919D957A9A0A34F /* Support Files */ = { + 6175BC5582134E5F650E11ECC94A696B /* Pod */ = { isa = PBXGroup; children = ( - 69EEFE2BAAE4E324CAEF3BB83636450C /* React-cxxreact.xcconfig */, - 2FDB4254FD3D8874D64792500CB63343 /* React-cxxreact-dummy.m */, - 2A4C307FFBDC6D348C092A4A210875D0 /* React-cxxreact-prefix.pch */, + 62B7661887DE18D22205A3DA41E318F8 /* BugsnagReactNative.podspec */, + 3A96FC1B62F94E5E3B20127A8B413E82 /* LICENSE.txt */, + C8A3EFB299DF06FE7D8142E0155827CD /* README.md */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = Pod; sourceTree = ""; }; - 623C50ADF3CF1EACAE5CC3C3DD60D90C /* firestore */ = { + 632519FE39CFF33ADAAC8EA611063E2B /* Resources */ = { isa = PBXGroup; children = ( - 24F5A62A722065FFC58EE542D1BE7C7C /* RNFirebaseFirestore.h */, - 1F41DAE0722B98B6226FFB79FAE1A934 /* RNFirebaseFirestore.m */, - 204B0C4E015C3E2CB00659FFCFF5C8E5 /* RNFirebaseFirestoreCollectionReference.h */, - DCC6DFE4B3EF8E8479E00C24847F70BC /* RNFirebaseFirestoreCollectionReference.m */, - 00D7219B1A9804E26254A0B3B1005A6E /* RNFirebaseFirestoreDocumentReference.h */, - 8E916431247262D1835594A3479EC1E5 /* RNFirebaseFirestoreDocumentReference.m */, + 0AF0C95B81B52983B9E0867BC4562372 /* AntDesign.ttf */, + 0CC4C68423A984FC30D0960D9D0CBA89 /* Entypo.ttf */, + 0BB9701F7406AD427D72F6A9F0C05087 /* EvilIcons.ttf */, + 2925C1EF036BEB210767A14C6E187F2C /* Feather.ttf */, + BAFF720E491BE37D82072E2AFFC52793 /* FontAwesome.ttf */, + F7C75D36C71A28DD87A89EA552DA6191 /* FontAwesome5_Brands.ttf */, + 40462C1A2F1D4A15AA4409724DE139B4 /* FontAwesome5_Regular.ttf */, + A3C69448A607FE3B258D9E852733D0C5 /* FontAwesome5_Solid.ttf */, + D5E04F264CA104360DCAE9309F75C247 /* Fontisto.ttf */, + 2D3E71704373663D305B6718DAF2D87B /* Foundation.ttf */, + 22FC48F3F9D76C92ABC6BFEA02058B48 /* Ionicons.ttf */, + 2C2223CD67012CB82F648B35DED3A7E4 /* MaterialCommunityIcons.ttf */, + 14CB84643D7C419D2B36227A1C6B97A8 /* MaterialIcons.ttf */, + DF75E75CC1437719AAB4DD31D1184246 /* Octicons.ttf */, + 8301E3F4061E709EDF93C277234CF49C /* SimpleLineIcons.ttf */, + 11DAD1DDCD74FD6BCD88131D745507CC /* Zocial.ttf */, ); - name = firestore; - path = RNFirebase/firestore; + name = Resources; sourceTree = ""; }; - 63430E82E56573FB2FD49C7849135699 /* crashlytics */ = { + 6347EA2ABAED7DE88EC05EC485784288 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - D4A723CEBD6A5B3FA35733DBA5955321 /* RNFirebaseCrashlytics.h */, - E1A6EA2BA97A3280685E8170D63D4286 /* RNFirebaseCrashlytics.m */, + 15F6FD85B9FDA38E59173EA09C6F0E6B /* Source */, ); - name = crashlytics; - path = crashlytics; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = ""; }; 6365CFDB7BC3B559FDC904527FA87B40 /* webp */ = { @@ -8319,38 +8421,14 @@ name = webp; sourceTree = ""; }; - 6366BD88859832F97BFB50D7B9F841A9 /* Handlers */ = { + 645A33D1CC6CBF709615E9722C5DD0E0 /* functions */ = { isa = PBXGroup; children = ( - 26F4D4ED48B0ECB914113D1E20CCB8BC /* RNFlingHandler.h */, - 0364AAF38ECE349E21C35BDE1B1EC6EB /* RNFlingHandler.m */, - F18E429D2BBC48452039321DD6F823F7 /* RNForceTouchHandler.h */, - EDD5613930825E2439412B1AE9CF18FB /* RNForceTouchHandler.m */, - 049B965D1C5FB067AB021E008F84B5E8 /* RNLongPressHandler.h */, - 15D5E0C896CADCA68ECA816366ED25E0 /* RNLongPressHandler.m */, - A2A16B5C1895E6D4C8BB5FE324FB98DB /* RNNativeViewHandler.h */, - A97BA26BB02BA9B6283731F3214547D7 /* RNNativeViewHandler.m */, - 95AB4C65269D3FFB0474273A9AA14D56 /* RNPanHandler.h */, - C5AD1883555BBBED3AA7A2E0266BAFB8 /* RNPanHandler.m */, - 263A89A7B3E463A823F9F4BF330CCFEC /* RNPinchHandler.h */, - 6A933ACB6FD67F0F0EE6E1B17D9D8104 /* RNPinchHandler.m */, - 01244B1DB2104334E0DDDCA95D73D45F /* RNRotationHandler.h */, - F1E1CE6559521240BE00912D63F20604 /* RNRotationHandler.m */, - 25AD6DFEAC6474763E002C8BE5695ACF /* RNTapHandler.h */, - EC3DD97AD69B3A7ED3FA8384D5B50C55 /* RNTapHandler.m */, + DED1F39E97C9C5F368561A9264C0BB6E /* RNFirebaseFunctions.h */, + 5E83D400CAFE9FB8E89E9898191BFC31 /* RNFirebaseFunctions.m */, ); - name = Handlers; - path = ios/Handlers; - sourceTree = ""; - }; - 64637E9BE662613936F6783336219A44 /* Pod */ = { - isa = PBXGroup; - children = ( - E6A42FDB034E7A190F5DDDEA475D6CFC /* LICENSE */, - D72AB6ED59216E95110BC9F7DD356AC5 /* README.md */, - ECCC048F8FAC641504822CE72B3FFF55 /* RNVectorIcons.podspec */, - ); - name = Pod; + name = functions; + path = RNFirebase/functions; sourceTree = ""; }; 65C5E7376A713AF21A6A08261DDCB326 /* Support Files */ = { @@ -8364,91 +8442,39 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 66A6F55D1059066503C9FB7B042A28E4 /* react-native-notifications */ = { + 660CA6D677AF3CDE99B5CC244E8D30DA /* BaseText */ = { isa = PBXGroup; children = ( - 703D8C482D12522BACB42147D5E7D12C /* RCTConvert+RNNotifications.h */, - 0CA3DC2486F7CA82B6A886AC4BDCF388 /* RCTConvert+RNNotifications.m */, - 17E63AABE884B350F60DF90525392EB0 /* RNBridgeModule.h */, - CB95CCCD171AEF95EEDAB112D11698C8 /* RNBridgeModule.m */, - 33B9739D66D2E280DEBA2944F9DF3BD2 /* RNCommandsHandler.h */, - A3665A1FBF0A6E0077C3867E53D095E6 /* RNCommandsHandler.m */, - E4F8A5846F3BC476CE395C5E3F9A6BB3 /* RNEventEmitter.h */, - 055D9D04754BD0BC2ECD80872CE33440 /* RNEventEmitter.m */, - 96D9A5D68AC14F577F6F879F70D11309 /* RNNotificationCenter.h */, - 0E68FD0E5F7E3828C99F9C8C7499AA66 /* RNNotificationCenter.m */, - 0E38ADA686820922176D076F36DBD56B /* RNNotificationCenterListener.h */, - 3AEF2B042F084C4086FD9B65ACC7FFFA /* RNNotificationCenterListener.m */, - 0A518693137C483ACB6FC57A33EE613B /* RNNotificationEventHandler.h */, - 8280CCE224295CF5C584683E92542089 /* RNNotificationEventHandler.m */, - AEF6B7BDAE4BED0A9CD4FA64625B0751 /* RNNotificationParser.h */, - 78FB885385284D83BAAA1A867EFB0AE0 /* RNNotificationParser.m */, - 22B1FA7F3CFE61D7686E0135176FA950 /* RNNotifications.h */, - 13F548B11707C09BDFB004B71638F141 /* RNNotifications.m */, - 96BC2F2CD4C9FF5B6078C384252D42CC /* RNNotificationsStore.h */, - 3A35075C5AA64CF7A4B370A4C0588AE8 /* RNNotificationsStore.m */, - 45E4F5B5270DE0FC81332131F1DE0F85 /* RNNotificationUtils.h */, - 0A3466D4A8CCE80310EC86B2E39C80F6 /* RNNotificationUtils.m */, - 963B266607287EAA109E6F29F36F1296 /* RNPushKit.h */, - A6AF7065F6F423FD8BE3725E49887293 /* RNPushKit.m */, - 1679E5BE8868596CF47C6A0FC2C4FE43 /* RNPushKitEventHandler.h */, - 1562EABF3CCC4705315B8043543E207E /* RNPushKitEventHandler.m */, - 5A80A433C1DD5901C0B8651463363298 /* RNPushKitEventListener.h */, - 3CCA2939DD0176D257CAA9014D238A1F /* RNPushKitEventListener.m */, - C2EBC4F707236924F704767627E2F877 /* Pod */, - 52BB17B2A2EDC4A993118BA5F48A6828 /* Support Files */, + A507BB59A2B27F21A3AD91CEF482B5E1 /* RCTBaseTextShadowView.h */, + F6F54A2F0A0E29211A21D353427C59DF /* RCTBaseTextShadowView.m */, + 4AB95C45B4D52F822E712B34073E57B1 /* RCTBaseTextViewManager.h */, + 884CFEB9E4D549B09F36682459626D10 /* RCTBaseTextViewManager.m */, ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = BaseText; + path = BaseText; sourceTree = ""; }; - 6707DF4DFD3C861F5F68CF1ED410C8DA /* Pod */ = { + 6797B7A25E0298E4F4B21C545C6D2ED7 /* Pods-ShareRocketChatRN */ = { isa = PBXGroup; children = ( - 61A3665D7AA499A81B6F028D51999646 /* React-RCTActionSheet.podspec */, + 5854841CAB4CD463DE3F4F1DFBE088B8 /* Pods-ShareRocketChatRN-acknowledgements.markdown */, + 37F5F4EABC6487EF44A15062C2473B8E /* Pods-ShareRocketChatRN-acknowledgements.plist */, + 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */, + F5E8AB734699B19C78718064ABA1FC2D /* Pods-ShareRocketChatRN-resources.sh */, + D04FDD6B4AC745C08223B4D304F993AA /* Pods-ShareRocketChatRN.debug.xcconfig */, + 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */, ); - name = Pod; + name = "Pods-ShareRocketChatRN"; + path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - 67F582519794E6B332C7EE655BB30E87 /* TextInput */ = { + 6878A8423943AFD9B75D7FB2DFB969AF /* Support Files */ = { isa = PBXGroup; children = ( - 6D3EB049A701CA5F84DC2CB0208787F0 /* RCTBackedTextInputDelegate.h */, - F4426C51A90A9B4E62507712FCBD0B94 /* RCTBackedTextInputDelegateAdapter.h */, - 102F57C4D6E06B0C4A3D77CE2E0E06A9 /* RCTBackedTextInputDelegateAdapter.m */, - AD839FB7717A659FB15B1922965E29AC /* RCTBackedTextInputViewProtocol.h */, - 1A85651BE2CA192EAD3B3E07C2CC717B /* RCTBaseTextInputShadowView.h */, - 4AEF18248488CCDC798B2516DA90D5BC /* RCTBaseTextInputShadowView.m */, - 7F0593DD9793C228358400913632E671 /* RCTBaseTextInputView.h */, - DFABD9F606FFF0AAB42C508ECD90344F /* RCTBaseTextInputView.m */, - 5151FEA6594F5FFA08E776734F13A89D /* RCTBaseTextInputViewManager.h */, - 91EBEA5772BA6ABE9649A535656386EE /* RCTBaseTextInputViewManager.m */, - 8A9CF7E513EFB12816CCD45BC8DD4AA1 /* RCTInputAccessoryShadowView.h */, - 84B2DC252C8DD4AD33F8D3C78C631406 /* RCTInputAccessoryShadowView.m */, - 03A856521349E6A76552B44F0D4A9861 /* RCTInputAccessoryView.h */, - 57494E30E50D5837D8DAA330CB6BBA32 /* RCTInputAccessoryView.m */, - E73C0F43160E8CA395415C6B98A4315E /* RCTInputAccessoryViewContent.h */, - 04B843A89A8D365F2A5E6FCD789AA573 /* RCTInputAccessoryViewContent.m */, - 2144C4CC6B346F0FBBA634BA82F92173 /* RCTInputAccessoryViewManager.h */, - B8AB01D3D17B7632E4081FA869D788FC /* RCTInputAccessoryViewManager.m */, - 4EBA0F5B4D69D46F4AB358ADC9E76D3B /* RCTTextSelection.h */, - 8EFE2AD04B9582D3714BFD298B16A78D /* RCTTextSelection.m */, - D610938F9B912B294C33EF7A82C5E8CF /* Multiline */, - 58DB761F9623F366C85181151B7C5E5E /* Singleline */, - ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - 680E5F4F055688F4213F1AE4A3008830 /* Support Files */ = { - isa = PBXGroup; - children = ( - 47A1FBCB4AA74BDA0C9EE869E95E12B2 /* react-native-video.xcconfig */, - 386FAEFAAF857FCE9BCBE455D79BB0DB /* react-native-video-dummy.m */, - 63BDC69A9266467B6A572421CF1BE84B /* react-native-video-prefix.pch */, + 90B6FAC077C3745634A7B05D249DF3D1 /* UMBarCodeScannerInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-video"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; 688DDD863F7C9037BBCEE553986F5231 /* RSKImageCropper */ = { @@ -8477,163 +8503,128 @@ path = RSKImageCropper; sourceTree = ""; }; - 68A217F6753A35AA94F5A183E34A789E /* Support Files */ = { + 68A44E3B21D9172B46E3B1DA276419E0 /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - 1921053468A32E19E83EC2F76588C0EE /* react-native-orientation-locker.xcconfig */, - C98D12E9C86B87D74FC3BFB0A1A3E2C5 /* react-native-orientation-locker-dummy.m */, - 5FF7EABBB1DC55B97E644B29D1329288 /* react-native-orientation-locker-prefix.pch */, + 50015392CED4F429DFA7A43DB188668C /* IOS7Polyfill.h */, + 0867AEFFCCD84ED4DC89D579DF8B0EA9 /* RNFetchBlobConst.h */, + 6F320C8CD9E349059A5D937FE095B659 /* RNFetchBlobConst.m */, + 7836DABD581422073EEF11E485D1E52B /* RNFetchBlobFS.h */, + A0D9433DBCB75EB69C1FCBA82F630EF9 /* RNFetchBlobFS.m */, + F22B84B0B2BE226BCD480BAF756DED0F /* RNFetchBlobNetwork.h */, + 5B5258AEBECE823E2C2C75AD3A6FD70D /* RNFetchBlobNetwork.m */, + D82E6144F3F8BB0919C6487481C0E34E /* RNFetchBlobProgress.h */, + D74D79A21F2BA3836B6CB5FCEF6F89A3 /* RNFetchBlobProgress.m */, + AC8758183BC877AB68D7A46210E21282 /* RNFetchBlobReqBuilder.h */, + D6C963FFB4653B60D8F6BB798F4479C2 /* RNFetchBlobReqBuilder.m */, + BEF7F9BEFF85E6EC05C2C65A82D0E4E6 /* RNFetchBlobRequest.h */, + AD55E5B123DBC81389C6597157A1D61A /* RNFetchBlobRequest.m */, + 82C13BCB138AF1F8AD40CA5EECE2DD88 /* Pod */, + 94437383C7702B41701CBE6B2B94C202 /* RNFetchBlob */, + 46F93ACCF95CC25327AE1E3C4533AF60 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - 68B12407823AB391149C3ABA391FF809 /* Modules */ = { + 6A442035A77ABB054C3D843E39670947 /* Pod */ = { isa = PBXGroup; children = ( - 660ED2C13AFBB7DD553D728EE6C227AE /* RCTAccessibilityManager.h */, - EF26D7A613BF8BC7544507B47C7FA18B /* RCTAccessibilityManager.m */, - 68B8A5BF371C0114C6937ED75D230CFF /* RCTAlertManager.h */, - 163923AE90A5A8C1E8BFEDB38E4381E4 /* RCTAlertManager.m */, - 032948A2025B58EA7A5F94BB62D1FAFA /* RCTAppState.h */, - B092A5C8DB0E1B75CD09D351AC7AF52A /* RCTAppState.m */, - 7D0C10A035BE8DE9C9F7A2F9E13F28CC /* RCTAsyncLocalStorage.h */, - BBCF8786AAA5F34013AE1B494BB51696 /* RCTAsyncLocalStorage.m */, - 4B6E296AE37FB7F2EBD15BCE44A70CD7 /* RCTClipboard.h */, - 6645C65EFDB2A4DBDDC73110D983039E /* RCTClipboard.m */, - 0326054DCEED7481889C793E117EF794 /* RCTDeviceInfo.h */, - 7F114A780B3D3C069081D0BA8E7D03EB /* RCTDeviceInfo.m */, - 9195975470445C6530343CC3C15FF4B4 /* RCTDevSettings.h */, - 22810B0DC47B5CD0A2369B1E59C533FB /* RCTDevSettings.mm */, - 242E9C6023E4AD0B24DA5981A5041E3A /* RCTEventEmitter.h */, - 92593ABEB9F9E1656871BD318804B339 /* RCTEventEmitter.m */, - 4DFD8CCF44096F822716524A528636CA /* RCTExceptionsManager.h */, - ADD512EC5E92F7D43E8255D8EF753916 /* RCTExceptionsManager.m */, - A364D2E650BCAB24869D1CB46AA63BE6 /* RCTI18nManager.h */, - F3D635F27EE7B95227B373C184006BFC /* RCTI18nManager.m */, - 786A54A94A3E7EAE58E0A909970D8D8C /* RCTI18nUtil.h */, - 05979852EE2F81061DA8756F3A633656 /* RCTI18nUtil.m */, - 62B6F046023DB90309CEF63307ADD86F /* RCTKeyboardObserver.h */, - CD2E395927B92ADF560A3ADB1E8A8E2C /* RCTKeyboardObserver.m */, - 071BEAF212AD9EEB04241948A15638C9 /* RCTLayoutAnimation.h */, - 16EB02BC73457919ECB8685001CAB565 /* RCTLayoutAnimation.m */, - F779B73A57287E4D0934FB43928ABCFE /* RCTLayoutAnimationGroup.h */, - C0FBC604721548C84878705E36BCCA07 /* RCTLayoutAnimationGroup.m */, - 6ADF6B204DBF9253431D5AAB0291C1B1 /* RCTRedBox.h */, - 14D4B5810339E99B72028CC6C198D142 /* RCTRedBox.m */, - 44B9203ECA367EDB18E3C0F4B51A4D58 /* RCTRedBoxExtraDataViewController.h */, - 258E46EFE4F5B0D1C95E7989DCA6E9C5 /* RCTRedBoxExtraDataViewController.m */, - B0FA0BE11882C38182774343719A06E2 /* RCTSourceCode.h */, - D069BCC7C93C674100AF63E3894FC7C4 /* RCTSourceCode.m */, - 074A87793A428761FB7589564CD11D95 /* RCTStatusBarManager.h */, - BE42ED26790753292BFA72C2CA78BDA0 /* RCTStatusBarManager.m */, - 42EB3BA6DBFAF30441E914755CE66739 /* RCTSurfacePresenterStub.h */, - 53497E63A971D6E2F6A477B7CB25200B /* RCTSurfacePresenterStub.m */, - 94EC4676D746CEBAC2B3D1B47E8FA399 /* RCTTiming.h */, - 9E8F8D194A4EC0F55D2BB439A63A9D89 /* RCTTiming.m */, - 427AA6F00532C4BCCA70E1AEE24B51BB /* RCTUIManager.h */, - 2C2153130A1DCD2B3B7599744746016F /* RCTUIManager.m */, - 0A83D24F1DFB06D832B5EA64D663D792 /* RCTUIManagerObserverCoordinator.h */, - EC551D7444887AB475ED9BD699009840 /* RCTUIManagerObserverCoordinator.mm */, - DCC2428E07CAEA5773D4EDDCA723E8D9 /* RCTUIManagerUtils.h */, - A32302F4F43BE748E6C2ECD407D6C480 /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = Modules; - sourceTree = ""; - }; - 68BC29199EBB823C8455CA532F5E0A98 /* Pod */ = { - isa = PBXGroup; - children = ( - 0EFDF72FBAD7B0DFA015F577AD983BC5 /* README.md */, - E66FE9B9AD5CD17C0E4862AFDCBCA61C /* RNLocalize.podspec */, + 0DECEF2CC304A8507E6BB1F52A42A4A5 /* LICENSE */, + EC0CDC403994915D1FED75B8FC2C7485 /* README.md */, + 1AEFC3359483613134435A760C89184A /* RNAudio.podspec */, ); name = Pod; sourceTree = ""; }; - 6C1EAFC54A5DFC2E4767FC82FA55CE40 /* Support Files */ = { + 6DA38BF0648B359649FA02C61DE4D3D7 /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - CD38ABEF16475EF38D017FEB6EE314C4 /* react-native-keyboard-input.xcconfig */, - B88C41FE8A7C445F9EEF3672DFA1A03E /* react-native-keyboard-input-dummy.m */, - F774DA39C63828A3C1C8FA279C384A16 /* react-native-keyboard-input-prefix.pch */, + 493DA36EF27F0AC1662EB0FC06A91074 /* UMModuleRegistryAdapter.h */, + 417F72D77D57E80979FC1FE895B37C28 /* UMModuleRegistryAdapter.m */, + 0B4FB3ED0253F5F787ACA8738434A05F /* UMViewManagerAdapterClassesRegistry.h */, + 0D5919ECE26F1C5F31770D44C3D29895 /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + 6DC66470FF5388725370BC234E258897 /* Support Files */ = { + isa = PBXGroup; + children = ( + 19AE973E6A93A34E9E6C31688D116A0F /* RNFastImage.xcconfig */, + C6D5E4F782F63058FE1BA25181C1F014 /* RNFastImage-dummy.m */, + FB43B72F52B0B1E31871CFD9E8B919AE /* RNFastImage-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - 6C7ADB160D8DF8F8C730BE1E8872E915 /* React-RCTSettings */ = { + 6E4CF2ECB519F3D215B21DAC578D663C /* Headers */ = { isa = PBXGroup; children = ( - B1EABD9705F9ACC25AD24648B3B5DDB9 /* RCTSettingsManager.h */, - F617B8F1DCA93C70CB9AD10E0F8FC0E5 /* RCTSettingsManager.m */, - 9946836C77C683875D3B2B6C5797E7DB /* Pod */, - FE5FBA77D5B00FEB3A8DAFF017FD4728 /* Support Files */, + 247C346B7E4E644BD3DB737F46BE9698 /* RTCAudioSession.h */, + 48C193AB505E7D73550B8309D80B6436 /* RTCAudioSessionConfiguration.h */, + 3994176AE319D8D998091943A8588364 /* RTCAudioSource.h */, + A880A5517A83F35F30E97307591CD1A5 /* RTCAudioTrack.h */, + 7AAFDDFA74D6B997BF73363C5D3CD0C5 /* RTCCallbackLogger.h */, + FFD5944720427A8A79A2A9EED8046DC1 /* RTCCameraPreviewView.h */, + AE7881A35121120CEB01805E5ED37765 /* RTCCameraVideoCapturer.h */, + 3257D61539C445D5D465A2675E33DC7F /* RTCConfiguration.h */, + 7A247210D5BDAD13D0C29737C0227412 /* RTCDataChannel.h */, + DC284C1FAB96AB619F94D93F431DA459 /* RTCDataChannelConfiguration.h */, + 8AA1905B5AB801F66698FA96C524A93E /* RTCDispatcher.h */, + D0B7FE131152D449361609A10104F2F9 /* RTCDtmfSender.h */, + B9ECC66D488DE7886D4825BBA1140BDB /* RTCEAGLVideoView.h */, + B9FB3532848E9B7CE75741192C4A2FD2 /* RTCFieldTrials.h */, + AB5D895479D8756BE0CCBCCC0A6FC03F /* RTCFileLogger.h */, + 9CD567A804B736A32DE85AA951B83FCE /* RTCFileVideoCapturer.h */, + 34B382897FF1C7E4442CD9DB771113D0 /* RTCIceCandidate.h */, + BE5BF2B0A81227D2E095E11601D90D64 /* RTCIceServer.h */, + 154FF1974291CB613F271FEDEA3E95F6 /* RTCIntervalRange.h */, + AA382979BE64E8344B083E4219CC44EE /* RTCLegacyStatsReport.h */, + EEA297E5F6841413D43E16C4B55249F7 /* RTCLogging.h */, + 460B74A5C0A48EDD1D0BC2AB02A16BFC /* RTCMacros.h */, + 9D24A165C4123CC70909C0572AE7E980 /* RTCMediaConstraints.h */, + 3F8EB5B8A279F66BD3F7BCEBE25D0BBF /* RTCMediaSource.h */, + B772EAE60EF6D37DEF61CBFA5458E247 /* RTCMediaStream.h */, + B2F66F5DD04189A99F8F216E0B896022 /* RTCMediaStreamTrack.h */, + EF051C0F96F19A8D5A6EAA3C4283A1E7 /* RTCMetrics.h */, + F75E5C9AE60131C0166782C15D69BB98 /* RTCMetricsSampleInfo.h */, + 75120C73BACFA17BECE17FBC02294736 /* RTCMTLVideoView.h */, + 20B87E6A7526EEF7FA07B06DA611D350 /* RTCPeerConnection.h */, + 5ADE0BE6D3B650C64B1DA7E8ABDB6B49 /* RTCPeerConnectionFactory.h */, + 70D925ED280E4497A978083010496B92 /* RTCPeerConnectionFactoryOptions.h */, + 7708661F19EAC6B9B9809E6F2E79A5D9 /* RTCRtcpParameters.h */, + 7846727DF52BC694F51DED5B879D7C5C /* RTCRtpCodecParameters.h */, + 8DCAD8EFF2850D407895A7833EEF71D1 /* RTCRtpEncodingParameters.h */, + 7798173C3D80863355C48B8CD077BD75 /* RTCRtpHeaderExtension.h */, + A3FF8A2D1F37C073965EC979900E9E48 /* RTCRtpParameters.h */, + 1AFE20BEB5B1B356205A490AD8880F1A /* RTCRtpReceiver.h */, + BC370954C40FE4F91E54FA2D4F451EDA /* RTCRtpSender.h */, + 0602D10BE882C53F5A0DADADC98430C9 /* RTCRtpTransceiver.h */, + BBFA2A3F03E3E00D5EDD4D06C6A56955 /* RTCSessionDescription.h */, + 748055E8B7891875D576515B3559CD71 /* RTCSSLAdapter.h */, + 8E8536EDC4DF2903E3258FDEB16AC622 /* RTCTracing.h */, + 2D1B2877E06081006E5D690ECAA95949 /* RTCVideoCapturer.h */, + D00609DB8D2AED96E1CD27059D9C495E /* RTCVideoCodec.h */, + 664EB23A215D72FC386F71B8B23C74F1 /* RTCVideoCodecFactory.h */, + 251D21ADF6756B97FC6BE61E1630499C /* RTCVideoCodecH264.h */, + 94827F74D8E1D40CD7E4413D73B5CB37 /* RTCVideoDecoderVP8.h */, + B6831DBF363EE17255553F98E138F8E2 /* RTCVideoDecoderVP9.h */, + E6D99A57B91F9409EB057F21D5DC5A6B /* RTCVideoEncoderVP8.h */, + FBB5C4AC114DF2B39C3C81394764AB71 /* RTCVideoEncoderVP9.h */, + 0DE3F4A7156D4AFBA38FB70FE8A9D7BD /* RTCVideoFrame.h */, + 40DAAD6C33D844CC2B374D9587D8841A /* RTCVideoFrameBuffer.h */, + 8CD041905A49C68BC590B8ED8ADDE347 /* RTCVideoRenderer.h */, + E5A4339381AA10A87EC7DB89EE3D6340 /* RTCVideoSource.h */, + C52200328B125F9ACE61C37168E46C00 /* RTCVideoTrack.h */, + DB13E1315E2DDB9966666EEBA42A599A /* RTCVideoViewShading.h */, + 162F30647909F8B46C0B09DF152E54FE /* UIDevice+RTCDevice.h */, + F225A38F8353F4990DFADE593C41C9BC /* WebRTC.h */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; - sourceTree = ""; - }; - 6D103672E547616A8275986DEC0FD4FB /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - 968A9D81DE13F4D10473B1AA30276F2D /* DeviceUID.h */, - DE419A1AC219E6427737E519E7ECEEF7 /* DeviceUID.m */, - 96842932481E884A292EDE4AB2760567 /* RNDeviceInfo.h */, - CCDBA249BE21C51D4C8C9BD22813CBCC /* RNDeviceInfo.m */, - FE0D0CC2C447BBB33A1FDEA1E65B7A8D /* Pod */, - F73AF622F5903ED5A86E7F9D1996C1ED /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; - sourceTree = ""; - }; - 6D2470F179D830D83119834904BFA477 /* Pod */ = { - isa = PBXGroup; - children = ( - 882B674503FB91F8EED26196C8F92C53 /* LICENSE */, - E06A14A91EE626A2467481BBA852C238 /* react-native-webview.podspec */, - F5C70C9D3443418C0E205C0ED1081513 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 6DD907519E9F3EEC53FF276E5B07409A /* yoga */ = { - isa = PBXGroup; - children = ( - 56FD53C48C09DBCCF50541498A0D5A6C /* CompactValue.h */, - 96B57BB0986E2BA3AE66FF48D8895C8D /* instrumentation.h */, - 17EA647C95FCD3EFFF9B3F55155AD675 /* log.cpp */, - FC2E84E8150CB61484C93DC8EA304FA5 /* log.h */, - 187B3211C7DBEE6316BB3C7AC114FCD4 /* Utils.cpp */, - 1B490AC25D7269468DA651E072EB682C /* Utils.h */, - B7F313564C6C62F9D8C4B2C50B7BBF08 /* YGConfig.cpp */, - 954237FD3402958590B19357C5ED017C /* YGConfig.h */, - 010AA7681963D37D6A8105E5CC3F6465 /* YGEnums.cpp */, - 93B244A2ED94A246A69964F8755029A3 /* YGEnums.h */, - 28FBECF22F52ABDC91B2DFAA93A71252 /* YGFloatOptional.h */, - 4F740C461439EE44356AACADB21CE2CB /* YGLayout.cpp */, - 3823108F714B4BE450785361710C8853 /* YGLayout.h */, - 63CB012032E08EC9F3AC7C1DE73671A9 /* YGMacros.h */, - 995B81C327656708EE8D725DD6B446BB /* YGMarker.cpp */, - BB830A5595A1DE6714426189002D6F3D /* YGMarker.h */, - 98BCFF3928889420799F7E6B6679CF75 /* YGNode.cpp */, - 7E3EDF9ADFC74EA285D9D71BF1AA221C /* YGNode.h */, - 07D2888B0638A9DB46C03214D6473009 /* YGNodePrint.cpp */, - D7780C0EFBFE669B1E26443CC344A69E /* YGNodePrint.h */, - 2D7E20A05A096F6E31B89FE40BB28C70 /* YGStyle.cpp */, - 82AB5EDC8A0B36A8FE4163BD10439066 /* YGStyle.h */, - 43DAA951C66CC7C457F38D7FCD5B0049 /* YGValue.cpp */, - 140125BD9A3EB868CAC20EE327021E2F /* YGValue.h */, - 38EF904F5756CA741FBA66E2E53C262B /* Yoga.cpp */, - C4CC4FCA89F1F6953E6D39BA6E5D6FB1 /* Yoga.h */, - B845870464F200FB55113E01901A34F1 /* Yoga-internal.h */, - C4B523A9810C764F8993532B9FF5ED67 /* event */, - 0387842D74C33A52CF5BB5A94406E7C8 /* Pod */, - 27A14A3B1E2D8364BF00A95C0B5D445D /* Support Files */, - ); - name = yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = Headers; + path = Headers; sourceTree = ""; }; 6E685B78477838C811DA9B2C583947D4 /* glog */ = { @@ -8657,16 +8648,6 @@ path = glog; sourceTree = ""; }; - 6EAD86597408E30EED4947BE5719EBE7 /* Pod */ = { - isa = PBXGroup; - children = ( - 86834D13936A026206D66E01F0E9444C /* LICENSE */, - 1043D39E20E4315F941ACE628EB43593 /* README.md */, - 842F6B6EE5D61CFA934DBE586C774171 /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 6F21D8227CB5318BA0CB5F92E4ABBDCB /* Network */ = { isa = PBXGroup; children = ( @@ -8701,71 +8682,54 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 701D5C9F9491B80CE0814B6E8C16F8F4 /* React-Core */ = { + 6FC8D68DC6369C6105000C018288ACC7 /* Support Files */ = { isa = PBXGroup; children = ( - 8D988A1BAB13426215BBF3C2388E3DDC /* Base */, - 1315B7355E74B82A8CADD69D92C4E795 /* CxxBridge */, - 74DFE45C1AF75DA24819A8A83BD6B185 /* CxxModule */, - 74740E1DE5CCA6682FFADBF465963851 /* CxxUtils */, - 68B12407823AB391149C3ABA391FF809 /* Modules */, - 9C1DFD6C8279E2C8C8ABFF843F418500 /* Pod */, - 0C9CBE3EEABBF83DF447798685AE30C3 /* Profiler */, - F5F4400FA32086F7110D988A19443247 /* Support Files */, - 9FBA5AFFA2C1EA944241055F47A6EB9C /* UIUtils */, - 2860D5B365F14315F4D4A1FEEE7F09A9 /* Views */, - ); - name = "React-Core"; - path = "../../node_modules/react-native/React"; - sourceTree = ""; - }; - 702506DF3744EE5413E4CADCD47B8B25 /* Support Files */ = { - isa = PBXGroup; - children = ( - 54597076F8586D36ACFB291640533A1D /* React-fishhook.xcconfig */, - 1BCF7884C8A9C4D99E5E2BF1DFB9E05E /* React-fishhook-dummy.m */, - DAFEDCA6511829295BB6BA87BA7DF02D /* React-fishhook-prefix.pch */, + 6467636F6C0199E64C6A79899EC14FC8 /* React-RCTVibration.xcconfig */, + 9C97772F11722772EC508D94A267F785 /* React-RCTVibration-dummy.m */, + 376BDC5CB4EA5246CCF721ED6D100A73 /* React-RCTVibration-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-fishhook"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 707884B97D5D600C7BEFAB5E7F864263 /* bugsnag-cocoa */ = { + 70CABA8C2234C2BCC0F66E560BF02110 /* Pod */ = { isa = PBXGroup; children = ( - F072A490C57E93562265047A820EA6C3 /* Source */, - ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; - sourceTree = ""; - }; - 72B71BEFB61541F181A6D883CB3274CB /* Support Files */ = { - isa = PBXGroup; - children = ( - 8E09A758E68C42F689D709786EFDCADD /* EXAV.xcconfig */, - 5D89BF18E71E72263E8A5D1A12E272A5 /* EXAV-dummy.m */, - EF9EECA6EFEACBD22887A88D6BD2FD05 /* EXAV-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; - sourceTree = ""; - }; - 74205F2AA424B3C8BC0F752A86BAFB08 /* Pod */ = { - isa = PBXGroup; - children = ( - 4D737FFC728496F3A684464D914CE2B0 /* UMFaceDetectorInterface.podspec */, + E831BBD5BE19C6F85ED197198C9EC8A0 /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = ""; }; - 74740E1DE5CCA6682FFADBF465963851 /* CxxUtils */ = { + 716E920BB0FFAE51BEF67AF51C3700B4 /* Support Files */ = { isa = PBXGroup; children = ( - 3F57A8D2F3D76B8DF5B306BB77E540A2 /* RCTFollyConvert.h */, - BA658F64A92CFB739F79AC95D27E2371 /* RCTFollyConvert.mm */, + B19BFB70C36EAB835DCB038B02FFAF33 /* UMCore.xcconfig */, + D750066A0F718750887440D72C8D36BA /* UMCore-dummy.m */, + 3E4636D974A866F68E6CCD7400348349 /* UMCore-prefix.pch */, ); - name = CxxUtils; - path = CxxUtils; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; + sourceTree = ""; + }; + 73058C26B11D8E1A21E8187EA208CCF9 /* analytics */ = { + isa = PBXGroup; + children = ( + ACFE10F216169F111B1509D4BC64F1C0 /* RNFirebaseAnalytics.h */, + 51048B88163DB56478612CB2E0D18977 /* RNFirebaseAnalytics.m */, + ); + name = analytics; + path = RNFirebase/analytics; + sourceTree = ""; + }; + 7452515B0599BDD4F00230E314AFA2F2 /* Pod */ = { + isa = PBXGroup; + children = ( + F6EA592D8C983F3A820CAB3FF77A7BCB /* LICENSE */, + 57B618701E6E1DFB2D6766554EC897DC /* README.md */, + 5F5BE4D148D557D39BF287DB9EE55ABE /* RNScreens.podspec */, + ); + name = Pod; sourceTree = ""; }; 74CE1FEEE134A6EA34F1456002F78100 /* decode */ = { @@ -8775,44 +8739,53 @@ name = decode; sourceTree = ""; }; - 74DFE45C1AF75DA24819A8A83BD6B185 /* CxxModule */ = { + 7662B32DEFA7B5321E7F2B641542C29F /* CxxModule */ = { isa = PBXGroup; children = ( - 67472DF8B4B211AA18158D6EB435AE4B /* DispatchMessageQueueThread.h */, - B5EF2623E822A8E441B33CF9B19C0CF7 /* RCTCxxMethod.h */, - 3B809079383D97B2C4BDE53446F051E3 /* RCTCxxMethod.mm */, - 1B44CDC656C60B22F0775C5CC9045CC1 /* RCTCxxModule.h */, - 92D18C848CFE795CF783D5A53ED04374 /* RCTCxxModule.mm */, - 8748A9FBADB55CD2D03E6092DB1CF150 /* RCTCxxUtils.h */, - 720906B469BC61831C3C51281F18C5FE /* RCTCxxUtils.mm */, - 748C6B26247F46986812F9A2D7E58E7D /* RCTNativeModule.h */, - E41544450635104B71B52D6722B933D2 /* RCTNativeModule.mm */, + F1F090B8F521C0B01A40303D391D0659 /* DispatchMessageQueueThread.h */, + 024D3CD508484911E6F593F0017ABDB6 /* RCTCxxMethod.h */, + 60D86E3836ABFD4FA2C3C4D26123D40D /* RCTCxxMethod.mm */, + 3C005841C0FCA76E6455CB29A76BA798 /* RCTCxxModule.h */, + D726F638517DE896CE8A5AC756AFFA42 /* RCTCxxModule.mm */, + F7C7E65B04A50F40F571FA49DEB4F6FF /* RCTCxxUtils.h */, + 79E5A34F52A4DDB094DDF08A04A9BE57 /* RCTCxxUtils.mm */, + 6BF8CC7DBA564115FD733324D74A7CB9 /* RCTNativeModule.h */, + 7630837DF9EF6FE84E755706209BD3A5 /* RCTNativeModule.mm */, ); name = CxxModule; path = CxxModule; sourceTree = ""; }; - 7659F4905A4A0A68C4A91C4BA6B63B6F /* Support Files */ = { + 77751F5804C03F1457D66FC1F0FE6D18 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - 8448A4C474D063232512F1EED8F721B6 /* UMCore.xcconfig */, - C98BEC84CDDCE3D256E28A4572E00EF5 /* UMCore-dummy.m */, - BB92AD8B652014D76A351931A114FFAB /* UMCore-prefix.pch */, + 1023B75FD36E217E9F76D168FDBF8B78 /* UMViewManagerAdapter.h */, + 4FC82B5B1A0236F69A69409D79C1E958 /* UMViewManagerAdapter.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - 775F6AAAE98C14679C0649BFD9251045 /* Inspector */ = { + 783220D2D8AFAF54F5FAFAA1C7DF7620 /* Support Files */ = { isa = PBXGroup; children = ( - 35BC20407CDBBEA1988558AE41841E7B /* RCTInspector.h */, - D63F824472DAA137E92CC76B727981D0 /* RCTInspector.mm */, - D74B7B08D104146F9CBC9076F20BF49D /* RCTInspectorPackagerConnection.h */, - 70E67C3B013B2E5212021BACE75DBA0C /* RCTInspectorPackagerConnection.m */, + DBAD3F6269AD912F0C5E9FB5407F4611 /* React-fishhook.xcconfig */, + 94A36DFB5F1A47939DD65A932816CB18 /* React-fishhook-dummy.m */, + 0E2FB51F1BEAFA38FD37CAD014450E45 /* React-fishhook-prefix.pch */, ); - name = Inspector; - path = Inspector; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-fishhook"; + sourceTree = ""; + }; + 7869F110BC428BC123DAFE30C2F33062 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3E095BFA72745BB4B2699EA642F07B49 /* React-RCTNetwork.xcconfig */, + 9E0A534DC600C706E236F3E790306C61 /* React-RCTNetwork-dummy.m */, + 5F600EF1C15E8A39041C80B031FD7D3E /* React-RCTNetwork-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; 787CA6FB1E2414DEDEF75E1011BC60C2 /* Support Files */ = { @@ -8826,17 +8799,44 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 788624DBAD939D8942E3794226905DC5 /* React-jsi */ = { + 789751945E85A7295382F210BAB90EC9 /* CxxUtils */ = { isa = PBXGroup; children = ( - F85FE059DC4E791351183FECCBF8B220 /* JSCRuntime.cpp */, - 09E737630548B58883E4967319C26C05 /* JSCRuntime.h */, - 3321055FFFFEEA87525640633882BC87 /* jsi */, - C2A317A33422EA8701E33F42718778CA /* Pod */, - A17A99CDF620CB6770B7628196B2862C /* Support Files */, + 28B0BD4070FBB6E605992207B7050DD6 /* RCTFollyConvert.h */, + 9CA946CFADCD1833BC17CD8018C0EB55 /* RCTFollyConvert.mm */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = CxxUtils; + path = CxxUtils; + sourceTree = ""; + }; + 7A408313C268ED73781D96F40D8C1929 /* Support Files */ = { + isa = PBXGroup; + children = ( + B44606B3799D248F8595252180862355 /* RNLocalize.xcconfig */, + 506F7D6F7DAF97534C89FE3850C53DC9 /* RNLocalize-dummy.m */, + 7C022D947D33C353F0FAF4FBE204C562 /* RNLocalize-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; + sourceTree = ""; + }; + 7A5B7F2BD2E4FCC185D3F0F7739FF5B8 /* Support Files */ = { + isa = PBXGroup; + children = ( + A9B59CC2DC7B4DA4D5CFA97A575365A9 /* BugsnagReactNative.xcconfig */, + D88B45F809EB474C8EDE7E56663F1210 /* BugsnagReactNative-dummy.m */, + 70CBE444DA7A9D34C5D705BC3E0E8317 /* BugsnagReactNative-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + sourceTree = ""; + }; + 7A661707C4624C2B3A0590F370BF808D /* Pod */ = { + isa = PBXGroup; + children = ( + 0AB9615934FFBF28F8E2C834775F6BBF /* UMFaceDetectorInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; 7A83CB14D0BEC3190F624AB14B944A6E /* Support Files */ = { @@ -8860,56 +8860,29 @@ name = demux; sourceTree = ""; }; - 7B4AF27543BC17CB43DC14D6EE41FABB /* functions */ = { + 7D0E53166BECC4E114DD715C94A4BACF /* Support Files */ = { isa = PBXGroup; children = ( - F998FD94FE72761C495E5BD961F0009F /* RNFirebaseFunctions.h */, - 987532EC498D90D10ECCEEBFD9EF456B /* RNFirebaseFunctions.m */, + CAC7A52B5EF0CFDEA2A8482D1657718B /* UMFontInterface.xcconfig */, ); - name = functions; - path = RNFirebase/functions; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - 7B9874A578D18792791AC7451A83E7C9 /* RNImageCropPicker */ = { + 7D2004DD592D16580DA74412CA9D4F35 /* RNReanimated */ = { isa = PBXGroup; children = ( - F602AC10FF5085CD8E01D3BE9A16819E /* Compression.h */, - BA23BC21765015EC45A51BDA2B601FD5 /* Compression.m */, - 69FFFB727F7FBE9732D19330D56CEF1E /* ImageCropPicker.h */, - 1EB10955623773BCA472F70756DFB853 /* ImageCropPicker.m */, - 9EA81026186E4433C8D58C2CA8868837 /* UIImage+Resize.h */, - CB7E229418479A836A9B5B44E402E61F /* UIImage+Resize.m */, - 6EAD86597408E30EED4947BE5719EBE7 /* Pod */, - 844503F22CBB51BB55DB5F8C8EFF12F4 /* Support Files */, + 81EF1859DAE2E4E630F3D32A7A6E77B9 /* REAModule.h */, + A0B99299CD4E6CAD2BE62176783DD9CB /* REAModule.m */, + 88D27A21584BC6B0F5FB196078221E49 /* REANodesManager.h */, + FB8572334F688D92312E1D462A7DBC36 /* REANodesManager.m */, + 1BD037587616E17FE3D0967EEA7CD419 /* Nodes */, + 10A9198E6C9F5062A1063DE424A1C4E7 /* Pod */, + 26E3A0263B5FF8C6393517A05DE8F3E1 /* Support Files */, + 8C4DC45F60CA54019A0E3D173F3E5169 /* Transitioning */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; - sourceTree = ""; - }; - 7BB4B7749768A172DF7202DC14B21F0D /* Pod */ = { - isa = PBXGroup; - children = ( - 0ADB19858AE99EB0EF2227FBA5655486 /* React-RCTAnimation.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7E01CAB304FAC12B7C8515B82AB0B3B1 /* Text */ = { - isa = PBXGroup; - children = ( - 568AD2C7E24FB8E9F91AB5392B5732FD /* NSTextStorage+FontScaling.h */, - 214ADBA008C6F467CC7E0BFB6053DB95 /* NSTextStorage+FontScaling.m */, - 8535F83857F2BD3F77C18AE6E3B5DC6F /* RCTTextRenderer.h */, - 2C947C63EB7921E2ACBA351099EC3C7C /* RCTTextRenderer.m */, - 47ABEC27B4EDA29C63B4EBC64B5BA4B5 /* RCTTextShadowView.h */, - 43AB39358F24B51E7FAED99A4FE105C3 /* RCTTextShadowView.m */, - 2A3DE8D8339226C9D911B3051375CAB2 /* RCTTextView.h */, - 72C531C6966A7B8091BB3084C1D1174A /* RCTTextView.m */, - B8569579C559AD253F170AEE7A85F788 /* RCTTextViewManager.h */, - AC6C24293B5AF90747506CCA2A364A27 /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; sourceTree = ""; }; 7E495B68F11DF3905F5074AE99C88D1A /* Support Files */ = { @@ -8921,35 +8894,82 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 7F2DBEE4707F8504833868FBB7C7A8B6 /* Support Files */ = { + 812ED6C140E5DB171545B442C3D12CCA /* Support Files */ = { isa = PBXGroup; children = ( - 842909DD359C276BF1C81241DE9BC410 /* React-RCTLinking.xcconfig */, - ED318455577ABB98B70809E5CB1015EE /* React-RCTLinking-dummy.m */, - 1A40CB7BE8E99476CA4E50BD5B9C5C64 /* React-RCTLinking-prefix.pch */, + 276D82CCDA6AA238DEA838C835D316B9 /* RNVectorIcons.xcconfig */, + 53BB7D6F0EEEAC3E41B04BA7FF236BFB /* RNVectorIcons-dummy.m */, + 80E5779F0BD9D258A7B8FB9F0A8EEDBF /* RNVectorIcons-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - 7FEB99B6D271DC84221C41D1058D9FD2 /* Transitioning */ = { + 81453A5CCCB4BC24F7D8BBC1E3FD0DE6 /* Support Files */ = { isa = PBXGroup; children = ( - 7559D3BB06AD2A7D1DA9585FD6CC9A53 /* RCTConvert+REATransition.h */, - B641B14936C36FC7020029884447AA12 /* RCTConvert+REATransition.m */, - 74C03D7AE0766E7780C4CE3248E79900 /* REAAllTransitions.h */, - F39F24527C0BF619EC3D5693EC126D28 /* REAAllTransitions.m */, - 3D48761960C687A4054FAFC604810775 /* REATransition.h */, - 21E6053C49A19DC1C3C72FA302830870 /* REATransition.m */, - 6E888C5EC01D49518884B47E96ED3154 /* REATransitionAnimation.h */, - BE04677D8B0CC715F53B3D0CA62584AE /* REATransitionAnimation.m */, - EE7470AF65136D172D99EA7E8F474A54 /* REATransitionManager.h */, - 2B4E8E90A13B5E22E61FE9E1F954C032 /* REATransitionManager.m */, - 2A13922827E0FB27A6DBBD0AED67F1BE /* REATransitionValues.h */, - 3C0E9EDD098A4D02DF3CB6D72A0973CA /* REATransitionValues.m */, + 4CFC24095D62611CEC3E3EE24D91CD0C /* React-jsiexecutor.xcconfig */, + 3137D223DB236E50711878670D1B760C /* React-jsiexecutor-dummy.m */, + DB9AD4A6FE1E3CA4A1F14B79226832F0 /* React-jsiexecutor-prefix.pch */, ); - name = Transitioning; - path = ios/Transitioning; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + sourceTree = ""; + }; + 816504149B520FFE82B54F80BDCAB2A0 /* Support Files */ = { + isa = PBXGroup; + children = ( + D03C8415FA4550FD730BE0939D8F5137 /* RNImageCropPicker.xcconfig */, + 7B6402D50DCFBFD141A3F3317654803D /* RNImageCropPicker-dummy.m */, + 42EC890E62525DE3B408442912AB1079 /* RNImageCropPicker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + sourceTree = ""; + }; + 8178D51B5E4B2A268BA30050AFE9F60A /* EXConstants */ = { + isa = PBXGroup; + children = ( + A497D72857CB1DEECA6A83DF2F0356C0 /* EXConstants.h */, + 7983417FE781FCF91F8AD926EE5A0C97 /* EXConstants.m */, + FD6F8AFAE619981D366B26D261C9AB90 /* EXConstantsService.h */, + 28484CD16E3E3800D0174E9A6EAD9F4C /* EXConstantsService.m */, + 1C1B365BA755C3E44ECB0840A35F8E19 /* Pod */, + FEB9B1CB77A0CA94B0209CE06573CC8A /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = ""; + }; + 82C13BCB138AF1F8AD40CA5EECE2DD88 /* Pod */ = { + isa = PBXGroup; + children = ( + F9F7672D784A7BD2CD2673A2DC18F888 /* LICENSE */, + 2FE126B3EE7A4E236F5154B2B85B5ABB /* README.md */, + 9EAE68EB1895C8497AC2724021774743 /* rn-fetch-blob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 83CC5DDD7DF1EC8D24D705F59EE8A20B /* perf */ = { + isa = PBXGroup; + children = ( + F9DE193A532D823A2C5F2C9CFE092DAE /* RNFirebasePerformance.h */, + 698C7C6CA8A623FB3A465C8FA0B65DB8 /* RNFirebasePerformance.m */, + ); + name = perf; + path = RNFirebase/perf; + sourceTree = ""; + }; + 83F9104F9971A5E681C92DE442218753 /* Support Files */ = { + isa = PBXGroup; + children = ( + A28BAC373C876446EC9228F5C92E988A /* EXPermissions.xcconfig */, + BE944973011F45968E9D5109C976856F /* EXPermissions-dummy.m */, + 58D7F3210969F6AEB00C5D20B282135C /* EXPermissions-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; 84252C1F0ED5A063B0DFCDD63986FA8F /* Support Files */ = { @@ -8963,26 +8983,31 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - 844503F22CBB51BB55DB5F8C8EFF12F4 /* Support Files */ = { + 84679B6B626EF79AFB1198C4C189A0CD /* RNGestureHandler */ = { isa = PBXGroup; children = ( - 60512C253821640C58CC1929B5D15C6C /* RNImageCropPicker.xcconfig */, - 1323265EED4CA08F2278F56F0E5587EF /* RNImageCropPicker-dummy.m */, - F43F7B5C429A43C9AA37F0D856A44D9A /* RNImageCropPicker-prefix.pch */, + D34BF3EABC235B18C1DFC631914DB54A /* RNGestureHandler.h */, + 8059F2AB6D8AD8683CDEA58D342E7080 /* RNGestureHandler.m */, + 31313F08922AA436F56F130588C34DF2 /* RNGestureHandlerButton.h */, + FCC841EDE195B07A39A754A1417386AE /* RNGestureHandlerButton.m */, + 7B84DE2B24887A92B132B30A86B03A52 /* RNGestureHandlerDirection.h */, + B3EBC87084BF08F730D22A6808C1F91D /* RNGestureHandlerEvents.h */, + EB77E5A413F54BB70EDDA67444BAE1C7 /* RNGestureHandlerEvents.m */, + 3DF90D72D6E71920208B8AE8BDD6F721 /* RNGestureHandlerManager.h */, + 1BE022D7A4B4470D1FB71A8C88B654CC /* RNGestureHandlerManager.m */, + BF84187B927E6587B1AB9337C53C71A1 /* RNGestureHandlerModule.h */, + 6313C0E61D9004DCF8F6292C1F425FA5 /* RNGestureHandlerModule.m */, + F7CF0E506209618796C9750579F5680D /* RNGestureHandlerRegistry.h */, + 94BA45F1F7EA57DB1EB0BE882DF0E3A6 /* RNGestureHandlerRegistry.m */, + 134E69F4E1EE7F097EFF2A9560C12F0B /* RNGestureHandlerState.h */, + 676C9BD02F9A83AE28758C0480D94D5C /* RNRootViewGestureRecognizer.h */, + 32413BB7323EFB9783D21A67686E925E /* RNRootViewGestureRecognizer.m */, + FE4D2A155E76A2C98D0F010A721CB2DA /* Handlers */, + C20AFD0572CE51E264BDBCFE8997580E /* Pod */, + 2BC83E9E391A5EEA21CFCD84AD562D3A /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; - sourceTree = ""; - }; - 84974F9EC492A3E1FAF80A063B1B3FC5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 153D0D323854AC8FACDFA0774D1E9380 /* EXWebBrowser.xcconfig */, - C9E239E8900F889252E2C855CB84CC65 /* EXWebBrowser-dummy.m */, - FF53E274187966389983BC8E40087444 /* EXWebBrowser-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; 8604995A427D8571384BE1DF33DEAB20 /* Support Files */ = { @@ -8996,34 +9021,14 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 8605D8BBCACFFA67B051CD31F67B54A3 /* Support Files */ = { + 86FCAD44BD735EDEB0748DB361210520 /* Pod */ = { isa = PBXGroup; children = ( - F76D5060EA02A15F31CFDCE3EE6F1C74 /* UMImageLoaderInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; - sourceTree = ""; - }; - 8646221003D21A8D807B931542B7FF3E /* Pod */ = { - isa = PBXGroup; - children = ( - 6BFC2A90C723180E6C1E4BC75D02DB65 /* UMPermissionsInterface.podspec */, + 24CE1ABC7A4D3EBEE9C5BE748CDD34EA /* React-RCTActionSheet.podspec */, ); name = Pod; sourceTree = ""; }; - 87262BC8C801F27B6E9E2DEAFC79C903 /* UMImageLoaderInterface */ = { - isa = PBXGroup; - children = ( - DD817D849DC1DFB842C35E2D40DA54F9 /* UMImageLoaderInterface.h */, - 37724332DD826D6EDF2210B68B5DB746 /* Pod */, - 8605D8BBCACFFA67B051CD31F67B54A3 /* Support Files */, - ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; - sourceTree = ""; - }; 88161288E651ADFA386D29C1DD35472B /* Support Files */ = { isa = PBXGroup; children = ( @@ -9033,134 +9038,138 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 88505CD74B781E85F4E01C14C8EC1AD4 /* Support Files */ = { + 881870AA36D3169995B0A0A53B2B5CDA /* Support Files */ = { isa = PBXGroup; children = ( - 1DCFEE894E9642749E85585155815804 /* react-native-splash-screen.xcconfig */, - 36B7055D00B6746B8F34281BC16BD73E /* react-native-splash-screen-dummy.m */, - 785B94139F1B394788527B8CD586D2FE /* react-native-splash-screen-prefix.pch */, + 1A220E229E2837D14F7625C22E7D6EE0 /* RNFirebase.xcconfig */, + E176062037BABD7604F0ED249EE0DE62 /* RNFirebase-dummy.m */, + 1DC01376555BEC4EE4CC37C3AF516955 /* RNFirebase-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; sourceTree = ""; }; - 8C4A680F2FC0BAC9B27679184743BCC5 /* RNFastImage */ = { + 887097E1791931F879F3B7B6CCE6CED0 /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - CB71DDE5E028E8703A03029F71565637 /* FFFastImageSource.h */, - C45960864EA6614E94C4C8C5BD3E9FEE /* FFFastImageSource.m */, - 05C564DD58B5A3A8DAB1D267FDC5038D /* FFFastImageView.h */, - 758582F60EC711CCB0124EF5DD1DBECD /* FFFastImageView.m */, - D62B596E3D791EBE46A558B57739B450 /* FFFastImageViewManager.h */, - E979B20C047176EDDA8B0899B05CC85E /* FFFastImageViewManager.m */, - 21618336E6854492D5570E4FF8692E3F /* RCTConvert+FFFastImage.h */, - 2210D12E523B8DC979F9E0C783A4B7BD /* RCTConvert+FFFastImage.m */, - B86CBFAF8F6E730FFACBCDF3E9B3D1FA /* Pod */, - F56AE7C442939EE1A8DA91A3D680F2DA /* Support Files */, + E9AB247014F910F940E2A48039F21F8C /* RCTAnimationUtils.h */, + 249785BBD90C5395F00C97066B1762F0 /* RCTAnimationUtils.m */, + CC085F88801A65C82817D397B81B0922 /* RCTNativeAnimatedModule.h */, + A73FB727E98DC69639C199573680DEAC /* RCTNativeAnimatedModule.m */, + 2E4471C949DC5E2E9C16EB41A2D4BFF2 /* RCTNativeAnimatedNodesManager.h */, + C9706AC004C9425464D86E16CDC32601 /* RCTNativeAnimatedNodesManager.m */, + C1A35C9176DABF7D8D5DCE521B4E5C3C /* Drivers */, + D402EB162B0E3788409C7DB9190C3D75 /* Nodes */, + A13376B86D514636DC92ACADD5A251B6 /* Pod */, + 4C664952461D3B3184430E82D448DD8C /* Support Files */, ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; - 8D988A1BAB13426215BBF3C2388E3DDC /* Base */ = { + 88A916EDD3628A2E83EFF9534CCB655D /* react-native-splash-screen */ = { isa = PBXGroup; children = ( - A373EAAD3DD5F938A177DBFA6F14B104 /* RCTAssert.h */, - FD0F73A1E828A4547B93C27CA2EB2304 /* RCTAssert.m */, - BDEFF9C58110B2293B28CAABECC90179 /* RCTBridge.h */, - 0F9BE910DBBF9C31507CE0AFFEB2CAC0 /* RCTBridge.m */, - 1CFCA2B826181926957ACF088B29EFF8 /* RCTBridge+Private.h */, - D8870C69C62D830AEC01CF4F4266AADF /* RCTBridgeDelegate.h */, - 7C794A227DAEABAE98A4D07D22F2EBD2 /* RCTBridgeMethod.h */, - D1C76CE8D6F56411966FFE5CE1C6B3C3 /* RCTBridgeModule.h */, - C3C6C1591A3499751B8C8746A5647529 /* RCTBundleURLProvider.h */, - FD583F477D86AB6F44A447D6DFC2D786 /* RCTBundleURLProvider.m */, - F63899B09DCE2845A92AE752D11B320E /* RCTComponentEvent.h */, - 02C8AA20583BA21452FEA287AF738202 /* RCTComponentEvent.m */, - 1623CC1317A4C934D6B1D1FA6371BC5F /* RCTConvert.h */, - E10138594962EF536E3E74A60AB6378B /* RCTConvert.m */, - A786DC1349F49EBB898FE347676FCDD8 /* RCTCxxConvert.h */, - 2ED91456FAD7A371AC870ED4E9E6ABDD /* RCTCxxConvert.m */, - 92BE47053C59D6C72CA8358F8B660F1C /* RCTDefines.h */, - F7BCCCE4A93E3EB848BD5F8CDBD8E1F3 /* RCTDisplayLink.h */, - 06A48044E785201D34AC8A2F447F4EFF /* RCTDisplayLink.m */, - 5097D6979E30EE25A2698929E9306AC5 /* RCTErrorCustomizer.h */, - 37D1E62B7D254BEEA42DE0A8C46EB77F /* RCTErrorInfo.h */, - 98EFC789EFD8CD126815B4E0CCDBA285 /* RCTErrorInfo.m */, - EAB3DB2E4C6DD54C66F3E22A8023ECF3 /* RCTEventDispatcher.h */, - EFAE338509D559B5CFC264BA55A04519 /* RCTEventDispatcher.m */, - A6F99FAF769F0ACD2A2B182711F4F76E /* RCTFrameUpdate.h */, - 41911965DDE207F1B002F4CF8B6317F4 /* RCTFrameUpdate.m */, - 9ABF1C45E3B917DA6FB90AECC87E5FB6 /* RCTImageSource.h */, - A9525C9F89E728A090883B2317AACADD /* RCTImageSource.m */, - D695A2E409B9EAF290A6B51AFDBF6B93 /* RCTInvalidating.h */, - FD4F829A504F4267C40CE4DA3ABBAFDF /* RCTJavaScriptExecutor.h */, - 4224B07DA506BC860001A680740B75A2 /* RCTJavaScriptLoader.h */, - AD0F68B646F72E6968C9F108BDED0624 /* RCTJavaScriptLoader.mm */, - C6D89889724D01F027B90E56CF346FF4 /* RCTJSStackFrame.h */, - AE9CE3CB663482A892F27575A515878D /* RCTJSStackFrame.m */, - D0E6733F7D74F752DFF20DC887FA70A8 /* RCTKeyCommands.h */, - 92F77528D2E3975C5B9619D2C1AE0A68 /* RCTKeyCommands.m */, - 7AF976F355D5E0823B514A3BE0608A1F /* RCTLog.h */, - E8F76157E29AEB6EAB0D38A989D21CEA /* RCTLog.mm */, - 97A18B5D9697C5FA14C5D1EE9C8CB0C0 /* RCTManagedPointer.h */, - F88B74926B008347BDBEB34C37912AF0 /* RCTManagedPointer.mm */, - A22F1995E1A4C9767FFEC42EBDC87120 /* RCTModuleData.h */, - 416DB4138D5F2BE3EC1BAF1FE6BFF9B0 /* RCTModuleData.mm */, - FC808C66396154A13E2229F419D2FA78 /* RCTModuleMethod.h */, - 3F1E6F2DF676DC3C64AF73781B4D6FFD /* RCTModuleMethod.mm */, - 02FABC0EE02F564574C15A0CDCF20191 /* RCTMultipartDataTask.h */, - A71908ED27A84394A93747AC3C6BE223 /* RCTMultipartDataTask.m */, - FC1D43E32E369D6434B314A3E9231302 /* RCTMultipartStreamReader.h */, - 98AC5D5D6A36A6C5F03ED9487E121BA0 /* RCTMultipartStreamReader.m */, - 06922E1EC9866CD490540644333BBE86 /* RCTNullability.h */, - F23943A4867D3C2DB12516ADED14698B /* RCTParserUtils.h */, - A2AABC796CD9FF5735F14BE9BF4B151C /* RCTParserUtils.m */, - 38F86CF6326F0EF472CDB99BA636B7C4 /* RCTPerformanceLogger.h */, - 44EF683DBE153D64045DABF91DF618E1 /* RCTPerformanceLogger.m */, - 81FA5B0D5D83E7F786C081EE77DC8BF6 /* RCTPlatform.h */, - F4EC1C5E6C7158781A07F2F3EC8A3E4E /* RCTPlatform.m */, - 25A8F98E96DFDF3357A115885DC44468 /* RCTReloadCommand.h */, - 5AA0D00F9D3532DE1FA7A50427C1686C /* RCTReloadCommand.m */, - 8C019BE8CA64FD24A59F5D23D1FBC8ED /* RCTRootContentView.h */, - 11CD407022ADFFFE83A433E38A3EF04A /* RCTRootContentView.m */, - 7AE6A66C3E15E35F11B46084320F1290 /* RCTRootView.h */, - 76B021FDB4469EF4DB9DD5DBFCAF5C57 /* RCTRootView.m */, - D170C08AFFCA380D1172C16EA6BA1EF4 /* RCTRootViewDelegate.h */, - 1B7A4721094DC22A2134C2B034FAA1CF /* RCTRootViewInternal.h */, - 2AC45F33A027841E07A79A2CF7C9621D /* RCTTouchEvent.h */, - 29AD1BBEB2C4D9860135FC766A35293F /* RCTTouchEvent.m */, - B8EA8A3F3D68D86D8D2ED6BB7F4FCCA8 /* RCTTouchHandler.h */, - 9AD1DC369DB6469D7CD4943CD9D7A148 /* RCTTouchHandler.m */, - 35884DAE6E417A457FA36C8BD33FDACA /* RCTURLRequestDelegate.h */, - 57FD56D95DE62855D410B3E09C1A647B /* RCTURLRequestHandler.h */, - 88C982B467057441DE3297A02E89BBDE /* RCTUtils.h */, - 27759C8A5584B75F06B24243917E8C69 /* RCTUtils.m */, - F0578B824AB88A633E790769ED604AA8 /* RCTVersion.h */, - A8357007FEC3306B6FBE0C1E7109D6E6 /* RCTVersion.m */, - F912A7826EF44BF9C161952868208E1C /* Surface */, + A5D7E9E1C2555F42F76C7E9D1C371F2E /* RNSplashScreen.h */, + 1663562AA81606F537154F2BE0E1492C /* RNSplashScreen.m */, + 333D762DE0FF4BD41FE8E89796A1CAB2 /* Pod */, + 4C13FB61A7C585F30907164B3C3A4A21 /* Support Files */, ); - name = Base; - path = Base; + name = "react-native-splash-screen"; + path = "../../node_modules/react-native-splash-screen"; sourceTree = ""; }; - 8DC6B2A645F77385A3AC16F381937C8A /* Pod */ = { + 88AEB73307FFB01BFF8511D421E62B55 /* storage */ = { isa = PBXGroup; children = ( - 816854AAE422461167A17A39397B76E5 /* RNFirebase.podspec */, + A19C1A37B688D9DD773BDC435F1A03A3 /* RNFirebaseStorage.h */, + 9239F7934F0262AC40BC68B8AF087DDF /* RNFirebaseStorage.m */, + ); + name = storage; + path = RNFirebase/storage; + sourceTree = ""; + }; + 89C3863304096025674EBEF5760215BA /* EXFileSystem */ = { + isa = PBXGroup; + children = ( + D6848E08FDA7AF8EF86D06D2DEFE1A11 /* EXDownloadDelegate.h */, + 8C5C0410CD4152BBD8519A3656C0FCD7 /* EXDownloadDelegate.m */, + CA5493399B2CD2BAD56C41D041C2AF5D /* EXFilePermissionModule.h */, + DB97C0E542AC5BE5C05B0E8848099851 /* EXFilePermissionModule.m */, + 929663746CF9C0F031968CE08611C870 /* EXFileSystem.h */, + 26A84A765E3BB0B344722D902B510081 /* EXFileSystem.m */, + 2C4D29FB5361710DD1DB881AF1BE0353 /* EXFileSystemAssetLibraryHandler.h */, + A9461706030CB674B1750262BC8E9A50 /* EXFileSystemAssetLibraryHandler.m */, + C953EE43D675E7E4F2A524D7E8569C43 /* EXFileSystemLocalFileHandler.h */, + D947C3DE31525BAD97767A58A3C736EF /* EXFileSystemLocalFileHandler.m */, + 09DE4EF3995072801A67F760CEF4D52E /* Pod */, + AE98183091B21053DACF00144C4B1D9A /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = ""; + }; + 8C4DC45F60CA54019A0E3D173F3E5169 /* Transitioning */ = { + isa = PBXGroup; + children = ( + F80B131E19A371E0D0B3CE5FED5DF94E /* RCTConvert+REATransition.h */, + 9CE33BF817C0622B5A31829C31EAFE0C /* RCTConvert+REATransition.m */, + FC020BDD1C997625A37C1F387E12474A /* REAAllTransitions.h */, + 28411B9EA5D945421681F294A1BD05C7 /* REAAllTransitions.m */, + 8C8B75786DCB410AE975F0A9F1004DED /* REATransition.h */, + DB3D3DE524550989F65EEFF314A794EC /* REATransition.m */, + E8F18903705103C212EDDA7E1F2E355C /* REATransitionAnimation.h */, + 2C2E95ADEC93134427F1FEB31CC8EAA3 /* REATransitionAnimation.m */, + 311BE0342173A0C9FEFE803A861A3072 /* REATransitionManager.h */, + AE020CE980797590A8FD394C36A65021 /* REATransitionManager.m */, + E847A89A58EBE844CEA300D1F3AD62B4 /* REATransitionValues.h */, + BC5C8B6E43D82909012606B2C27B6425 /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + 8D2D29B7061DEAC86E6BA1E59AC20AEF /* BugsnagReactNative */ = { + isa = PBXGroup; + children = ( + 2551DC0D5E53978B8450B44961CD6151 /* BugsnagReactNative.h */, + BB150F479DB4BA90109A2FE65154AF71 /* BugsnagReactNative.m */, + AE7F3FD74A8A3CCF2631680AD5F7664C /* Core */, + 6175BC5582134E5F650E11ECC94A696B /* Pod */, + 7A5B7F2BD2E4FCC185D3F0F7739FF5B8 /* Support Files */, + 2D5EDF0829FC7E6AAA4B0051EC37EF3F /* vendor */, + ); + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; + sourceTree = ""; + }; + 8DC49EBB0002C604651555FE70EFD0C0 /* Pod */ = { + isa = PBXGroup; + children = ( + 91C45CA57EA6767676FBC094F184DC56 /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - 8EC0FAF2B8AA5F8995C681EDD7E31ACD /* Support Files */ = { + 8DF8BC2283368E86BDF82CBA91BFE3DB /* Support Files */ = { isa = PBXGroup; children = ( - B3FF9EE5CE7E7356D81DD5DAA7DCFC52 /* react-native-webview.xcconfig */, - A6E57B284963F6AE796C7031D492AFA2 /* react-native-webview-dummy.m */, - DB6B9BB62AD6D5EF7A4987B22547CD56 /* react-native-webview-prefix.pch */, + 21FCEE22A42237A257DAF8C61299F01A /* RNDeviceInfo.xcconfig */, + 7A6DD973E46FAB266D85B6430C3F7769 /* RNDeviceInfo-dummy.m */, + BAB1B93D3BDC791EFDF762035259C14D /* RNDeviceInfo-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + sourceTree = ""; + }; + 9049929BE641639C0FCB8BD563D6F1E4 /* notifications */ = { + isa = PBXGroup; + children = ( + 7AB6D372A5F52156679B3E5965338FAA /* RNFirebaseNotifications.h */, + C10F32D01C7DDA0733BFF3A3F0ABD595 /* RNFirebaseNotifications.m */, + ); + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; 905F72DE967C9D9AA1DC5B4F0851572E /* QBImagePickerController */ = { @@ -9191,80 +9200,269 @@ path = QBImagePickerController; sourceTree = ""; }; - 90DDEEF93B895DA141479B59A52FC575 /* auth */ = { + 908D00B39A85ED602478564578D56854 /* UMFontInterface */ = { isa = PBXGroup; children = ( - 10AFFF9394AF47A9F43EB06DF49919E2 /* RNFirebaseAuth.h */, - 053ADBB70D4ED7FA2589576BA37E2980 /* RNFirebaseAuth.m */, + 7F1E32C1D4A460D0A0ACAC39E3075FA3 /* UMFontManagerInterface.h */, + 981054BCADBA03BE957273D3053FD0A6 /* UMFontProcessorInterface.h */, + F487ED953D0298D0605F1BBA11E6FF75 /* UMFontScalerInterface.h */, + 1688A7691E39FB917A701850C7595B64 /* UMFontScalersManagerInterface.h */, + 250A7F0250FFEFCC83A26D8242695F68 /* Pod */, + 7D0E53166BECC4E114DD715C94A4BACF /* Support Files */, ); - name = auth; - path = RNFirebase/auth; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - 9308277D1BB5B9F713E76AFE55BFF3EA /* RNLocalize */ = { + 91EF2C357539C6ADBB79C4BF7AC91A4E /* Support Files */ = { isa = PBXGroup; children = ( - 96DF7D0F2790F9FD27E8711D21521731 /* RNLocalize.h */, - 2ED77732AEB2AD592ED3044DFC4DBF81 /* RNLocalize.m */, - 68BC29199EBB823C8455CA532F5E0A98 /* Pod */, - DDB376C1270B5CCAE60AA7B3973594A0 /* Support Files */, - ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; - sourceTree = ""; - }; - 943F591EBC42491ABF577183F7A58103 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3DE007E20FA8C78A0948986C51865DDC /* react-native-background-timer.xcconfig */, - 76B155448642B140C12D060D248DC3DA /* react-native-background-timer-dummy.m */, - C40B6B4B213D438A36541A77531DC729 /* react-native-background-timer-prefix.pch */, + BCFC653E636506E7DCC03D463B5CE0CF /* react-native-keyboard-tracking-view.xcconfig */, + CFFDF8045CBA6085499624A8162268B0 /* react-native-keyboard-tracking-view-dummy.m */, + 20F9C00A09954A3C4DF7243057ECA968 /* react-native-keyboard-tracking-view-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; sourceTree = ""; }; - 958C74C3A1906D2DBA2EFA298D913BE3 /* Pod */ = { + 929DC90E96545ED1B059EE1ED41B19DB /* Pod */ = { isa = PBXGroup; children = ( - 9874F9ABC962A7071571BCDBC72640CA /* React-RCTBlob.podspec */, + 567C968BBBA6E8A3948D136C7A820568 /* React-jsi.podspec */, ); name = Pod; sourceTree = ""; }; - 972E9E51E0D2F1AFDBBEF7E5977CD755 /* Support Files */ = { + 941857206C9273DEA7A1334576A787A8 /* Pod */ = { isa = PBXGroup; children = ( - 397813083C03D24C146FD71D85A0BB36 /* React-RCTActionSheet.xcconfig */, - 72B99EC665EF34C1A2E7018E47792340 /* React-RCTActionSheet-dummy.m */, - FD18C588BFB08F3AF0AC3DD577618787 /* React-RCTActionSheet-prefix.pch */, + 25470A3049F646F7A43D85724FE5752E /* LICENSE */, + 1FED883E970A8E3DAA48FC7C158CE8A3 /* react-native-keyboard-input.podspec */, + 9070CD0BE32933D4EBF3524C41B6E36E /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 94437383C7702B41701CBE6B2B94C202 /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + 33801C7B0C94887B9DF660A737E3A1D7 /* RNFetchBlob.h */, + FE2860C10BB693BF87C92037E79DA848 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; + 94C3045AF093E8DEE507FB2DEA67D192 /* Support Files */ = { + isa = PBXGroup; + children = ( + D641EC74A759144A3FC05385DA4F222D /* EXAppLoaderProvider.xcconfig */, + 783790B1956322D4BD8815FDC2E2E385 /* EXAppLoaderProvider-dummy.m */, + 1C8716474105874BB23C7D65EABA7AEA /* EXAppLoaderProvider-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; - 98CDA20859761817BD6DD47C6C2CB2D3 /* Pod */ = { + 95E6109A5100BE607D2661A2BFF9CF6E /* Support Files */ = { isa = PBXGroup; children = ( - DF0632713CC245E229E56690F77293EF /* LICENSE */, - AAD97CC12122A5B5746F3AFB4ECD5A42 /* README.md */, - A2B1998212FB87F212D2B48A87437173 /* RNReanimated.podspec */, + FE3A05F84F7A2A4565AD2CEA17AA60CF /* UMSensorsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + sourceTree = ""; + }; + 9677A4FCE957D0BFF5C5485E797215AF /* Support Files */ = { + isa = PBXGroup; + children = ( + EAC8BB2D12EF30020371B6F5020F4D55 /* React-jsi.xcconfig */, + 927AD92A359690F9CDF6058497278F69 /* React-jsi-dummy.m */, + C11F482D038BEFA9B8D038298650C688 /* React-jsi-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; + sourceTree = ""; + }; + 968AE98EF9F957E5B35BF74889841DC5 /* React */ = { + isa = PBXGroup; + children = ( + 0E684CA21ACDDD5F0F329087C7CA4026 /* Pod */, + 3AD1C42C45F2076215A0C318AEDEABA6 /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 97805B4F9527BA4EC3AA7D110981C13B /* Support Files */ = { + isa = PBXGroup; + children = ( + D0E0D454CD65A5A55B90B4773CE2C624 /* EXAV.xcconfig */, + 91B2087F0E78F9895A64C325B5151BE3 /* EXAV-dummy.m */, + 037B04B278E559109FE0D515CAB939D4 /* EXAV-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; + sourceTree = ""; + }; + 98CDB1B6BBB7A520522974F710810C69 /* Tools */ = { + isa = PBXGroup; + children = ( + B7D2C12903A2D6625DA763475473FEFF /* BSG_KSArchSpecific.h */, + 1C34C70B945C16DEEB4BF17134782780 /* BSG_KSBacktrace.c */, + 534D7ACB0893DE48DB96946D0824C62B /* BSG_KSBacktrace.h */, + 0EF9629FD6625D183A0EAF00AE1F14DA /* BSG_KSBacktrace_Private.h */, + 5C41C5AFAF0D69FDC21FA299665F6F16 /* BSG_KSCrashCallCompletion.h */, + E0188648DC0FEEB7A99E606541F32965 /* BSG_KSCrashCallCompletion.m */, + F16E8D91B41DD28E7F1B03EF16D55A42 /* BSG_KSDynamicLinker.c */, + 75CFB638C231C8B7D41B28548186BE05 /* BSG_KSDynamicLinker.h */, + 0906D6AB8471CD5111DD78C8B9A7EABC /* BSG_KSFileUtils.c */, + 0A7EF10CE970ACC1B584A8EE284ABCDC /* BSG_KSFileUtils.h */, + 2D0214EE22CECD5905E3885165E137A0 /* BSG_KSJSONCodec.c */, + 5CBA0727ECCEADB1C9369F8BD6ABB189 /* BSG_KSJSONCodec.h */, + 8B42BA4F40AC8207444CA0D6C61F7131 /* BSG_KSJSONCodecObjC.h */, + 11881CDE3F4D45AD418EE4956F3BF4BA /* BSG_KSJSONCodecObjC.m */, + B811FB2F2E622C6E7F75E53239362FCB /* BSG_KSLogger.h */, + 27B7FFC3846F19EB3FB254BFC9462554 /* BSG_KSLogger.m */, + B0D526E64BB8D35243A7AE962F308165 /* BSG_KSMach.c */, + F9F8D37AA2880F274679623642E65C2E /* BSG_KSMach.h */, + 2685BA09B2A6F53B3A58C8A868C0503C /* BSG_KSMach_Arm.c */, + F90E9B4BC7DCDAAEAF7AB5ED360C208B /* BSG_KSMach_Arm64.c */, + E7A674BAE61E1BEAA7AC93F46D06671F /* BSG_KSMach_x86_32.c */, + 2FE5515F93459BF4867381E736FD2BBB /* BSG_KSMach_x86_64.c */, + 30E38F565AC36FCAB8F8B58A16782FC2 /* BSG_KSMachApple.h */, + 96E3B33969B55503B0A19EC90C6A37B5 /* BSG_KSObjC.c */, + 443C6147350CAF89ABC861B9462F6B68 /* BSG_KSObjC.h */, + 038B52F5524A296C2C2D47058DBD628C /* BSG_KSObjCApple.h */, + D98E36729B93ACD25428350A9BACE568 /* BSG_KSSignalInfo.c */, + 84CF84C3996F5690CDA695C6D94C72D0 /* BSG_KSSignalInfo.h */, + 6CD6E8EFA6ED3633E440D95B011839CE /* BSG_KSSingleton.h */, + CEAD334EEDEFC63ECB5062B271B01CCC /* BSG_KSString.c */, + C84539085B098599201722CFB82B8B20 /* BSG_KSString.h */, + C0435DD43CDEE93F9B0B79AECFC63E4D /* BSG_KSSysCtl.c */, + DF819287D44495036E766BE5E0BCECE5 /* BSG_KSSysCtl.h */, + 70543A27205EACEC84D6FB71FA341B7B /* BSG_RFC3339DateTool.h */, + DBADF308753226D1136A139DDBFF022B /* BSG_RFC3339DateTool.m */, + 9FC3292BB7F4F09DFCA8F2E1EED92A76 /* NSError+BSG_SimpleConstructor.h */, + D0AC147EB003EF9D71A7B2104F9B7683 /* NSError+BSG_SimpleConstructor.m */, + ); + name = Tools; + path = Tools; + sourceTree = ""; + }; + 99844CC91F94D40BAB9580E44011A908 /* Pod */ = { + isa = PBXGroup; + children = ( + BEF5D28A5C98A6F12FC015AA2C5834F5 /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; }; - 9946836C77C683875D3B2B6C5797E7DB /* Pod */ = { + 99AB89F67490DB2C16299F020D76090F /* Products */ = { isa = PBXGroup; children = ( - 72E021EA78BA43C4E169AA976AF69340 /* React-RCTSettings.podspec */, + 35726B6A07A73B507FEE651DEC60F73E /* libBugsnagReactNative.a */, + DB5A8E142AFEBC1CC08E9291253FB6E1 /* libDoubleConversion.a */, + 097E8741FE64C3A1001FCFD793FD02C3 /* libEXAppLoaderProvider.a */, + 8BE27FFBE8E35AE9DE06E929E38B1727 /* libEXAV.a */, + 2C5612F44EF9E0416D7F58DF50ACF273 /* libEXConstants.a */, + E18CE3E014CE764ADF49FBB006DC7481 /* libEXFileSystem.a */, + 8FC655DAD6D3F09FE88672E63A716D73 /* libEXHaptics.a */, + F2B211A6BFCEE89F0072358FF3D45A5C /* libEXPermissions.a */, + 9DA9DD48C0CD8D64076EBF2A83628DCF /* libEXWebBrowser.a */, + A71946781760342C927A6D31AD36CCF9 /* libFirebaseCore.a */, + 920C51CD87C794BF5A3A528981F10789 /* libFirebaseCoreDiagnostics.a */, + 20E9F192E1E005DE8EF4B53018A062E8 /* libFirebaseInstanceID.a */, + 9BA07ED6B9BFD472FCC0F93524F5DAD3 /* libFolly.a */, + 951A634B3B788E67260CBD9260916089 /* libglog.a */, + 669B6C6155B1B2999DA7BC703DB0C0BE /* libGoogleDataTransport.a */, + 27A989DB5B60BB93DD9560D6B2EFCDE8 /* libGoogleDataTransportCCTSupport.a */, + D475C3C2BD0007BA095EB822060A0DA7 /* libGoogleUtilities.a */, + C3502944BABFF624E0A4C1718B867501 /* liblibwebp.a */, + 7E51DDCE886985A22CBCA7CAB3F6CD06 /* libnanopb.a */, + 6BF3815488757C28A9DA933604BC6B8D /* libPods-RocketChatRN.a */, + 232253A5693301FCAB478EB3190DD536 /* libPods-ShareRocketChatRN.a */, + AC3449896238B5701AF3BF73CF742930 /* libQBImagePickerController.a */, + 87FBE541B7D8C022CF1D613E41CE1CCB /* libReact-Core.a */, + 1CA32F6F2FEE76EBB39D4B7EACDE6BBC /* libReact-cxxreact.a */, + 206EA7C3801A2B30922F8B13DEEB0531 /* libReact-DevSupport.a */, + F80C2348DBBEA774AE3EAA4EFB9A13EA /* libReact-fishhook.a */, + 831E69476115AB40A6233D799D442929 /* libReact-jsi.a */, + C4FF853BC24533BFCF976A3D4044C385 /* libReact-jsiexecutor.a */, + 3B1620774B29656AC3E1A71D3FDA84D7 /* libReact-jsinspector.a */, + F771788A70015D51AE7E8DC063415CDC /* libreact-native-background-timer.a */, + B5C379D69648E4C64C7EE6B4A00F093E /* libreact-native-document-picker.a */, + AA8FBA102FB1166DF7FB0802B5BF7728 /* libreact-native-jitsi-meet.a */, + 5802E78F7C7F16E97574BD9A75E4E7E1 /* libreact-native-keyboard-input.a */, + 5ED08A6047D33ECDE0B47256700F85DB /* libreact-native-keyboard-tracking-view.a */, + 5C14D076CF909BE6AFB2E905796323AE /* libreact-native-notifications.a */, + 4C7232FFB86D212C9DD1B39A2060DF18 /* libreact-native-orientation-locker.a */, + 8E556D50C611244E3F0B51690348DBCE /* libreact-native-splash-screen.a */, + 39929E6CBE422DE78275127B70818286 /* libreact-native-video.a */, + D5E50576A3610C371DA73A1A2799B6DA /* libreact-native-webview.a */, + 8E2449A00CA36D6F08B925F41ECCB907 /* libReact-RCTActionSheet.a */, + D56D04C4E20011BE676A3E027F899C40 /* libReact-RCTAnimation.a */, + CCBBB8DAC7A5C7FEAB45788345976867 /* libReact-RCTBlob.a */, + 71AD97E8645BD5964346358C87FCA6C5 /* libReact-RCTImage.a */, + 4BDDBEF28482CFF061E51C62955961B2 /* libReact-RCTLinking.a */, + 666E5990AE8745387C6565AA91A697A1 /* libReact-RCTNetwork.a */, + 23CBFED2EC4B1CB34288E9A1BF552159 /* libReact-RCTSettings.a */, + 0B344C0FEA82A3294EE08D774696B89F /* libReact-RCTText.a */, + 58E11D269DC47DBC88C7826F0545CFFA /* libReact-RCTVibration.a */, + AE671F9A1A26B5C284532EBFC3358B61 /* libReact-RCTWebSocket.a */, + 86001C4B72248B557A28816A91D2A204 /* librn-extensions-share.a */, + D9218A842A6D6DF83A57076B1E90EFC8 /* librn-fetch-blob.a */, + 6F138BE14C5937ECCF54388B1992E147 /* libRNAudio.a */, + 57AA2A2E9AA631CE79A1AECF85CD0244 /* libRNDeviceInfo.a */, + F2ED6AC08A4C64FC1D70FCDD50D038E7 /* libRNFastImage.a */, + 9AAD67F6ED0B439D241094FD54A6C498 /* libRNFirebase.a */, + 4254115BFCD2C5451FF94075FE2340CA /* libRNGestureHandler.a */, + 84CCA4315BC9508FC44F32EDB6A81E96 /* libRNImageCropPicker.a */, + 6E580D2FF81B40FF03C160CBC2D9745B /* libRNLocalize.a */, + 892A647BE840B1C3C30821670F26D24F /* libRNReanimated.a */, + 36BD82CCC46004B73463CCC60F5EE804 /* libRNScreens.a */, + 010052220B5BF3C99C8E67886EA7669C /* libRNUserDefaults.a */, + AABACC731535E862A53D4154431593E3 /* libRNVectorIcons.a */, + 08995AD1F15F113CECC233E30D35ED18 /* libRSKImageCropper.a */, + 9D0F181D9C95BA7A06261015D0600A94 /* libSDWebImage.a */, + 42F69A1751A67EB85E542EAF2FD6758D /* libSDWebImageWebPCoder.a */, + 8FBB53B6B7A25D12B48532FD5D6D46CE /* libUMCore.a */, + C3A92446F28383992A77DC8411BE2322 /* libUMReactNativeAdapter.a */, + 1B61320147E67E457CB0208C65E33999 /* libyoga.a */, + C00E29D40328FD90B8D0F3FA63D470A5 /* QBImagePicker.bundle */, + ); + name = Products; + sourceTree = ""; + }; + 99E77EDDB8BF9E4B476AA4E6FF856A62 /* Pods-RocketChatRN */ = { + isa = PBXGroup; + children = ( + 9727CD897DFC665EB18524FC2FC165E1 /* Pods-RocketChatRN-acknowledgements.markdown */, + 0E53343736419C5A995C15A45C838245 /* Pods-RocketChatRN-acknowledgements.plist */, + 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */, + 828D100FC563955FC0662EF5B712FBA9 /* Pods-RocketChatRN-frameworks.sh */, + E723D3596BFBC35A6289523AD2B53647 /* Pods-RocketChatRN-resources.sh */, + 0094D08DC648CCF30D4F8C66575F20B7 /* Pods-RocketChatRN.debug.xcconfig */, + 46A54367025ACCCB32096FA0B124098C /* Pods-RocketChatRN.release.xcconfig */, + ); + name = "Pods-RocketChatRN"; + path = "Target Support Files/Pods-RocketChatRN"; + sourceTree = ""; + }; + 9B6FDB2D772615D41320B93C08B6F882 /* Pod */ = { + isa = PBXGroup; + children = ( + 20A4083B05BCB977F381FAB9FE2DBE53 /* EXPermissions.podspec */, ); name = Pod; sourceTree = ""; }; - 9C1DFD6C8279E2C8C8ABFF843F418500 /* Pod */ = { + 9CAF49B1A81BCC96E45AB4294E906D6F /* Pod */ = { isa = PBXGroup; children = ( - 35E2A69C9F995E00D6C486A93B202A6F /* React-Core.podspec */, + 2875910CC22409A22EC63C5012E1ABBB /* LICENSE */, + 58536C19039F1FED7A93DB2A085EE753 /* README.md */, + 75A9595FDD5A212446BC533AC66A8C8A /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; @@ -9282,40 +9480,30 @@ name = Resources; sourceTree = ""; }; - 9DC3AC1A82E59CFC20381E15D6E674B1 /* Support Files */ = { + 9DEBF596F85F5A22E662BA05FA26FFEA /* Video */ = { isa = PBXGroup; children = ( - 89F9BB3C6633EF936F81979F8BFCDC38 /* React-RCTAnimation.xcconfig */, - 6FC70FF5C9FE0209DCA316B2C28D6E16 /* React-RCTAnimation-dummy.m */, - 1BB0F79397C05807851DC23AE4F404E7 /* React-RCTAnimation-prefix.pch */, + 3EB28381573490FDCA535EC23E01F503 /* RCTVideo.h */, + 765B85406931C5082E98556AF4521218 /* RCTVideo.m */, + 213DF63C939D5004F0F549DFD51A9FBF /* RCTVideoManager.h */, + FCD7F989065C8FDA217E07D65AA536A6 /* RCTVideoManager.m */, + 4ED70F9394E98E77BFD97373B58EDC92 /* RCTVideoPlayerViewController.h */, + FD4C8D93C477EF3746E33D4F3A030F6A /* RCTVideoPlayerViewController.m */, + F17F66195F90A22FEFDFA62750F5F7A9 /* RCTVideoPlayerViewControllerDelegate.h */, + 7856438996BF1E5DF536EAAB0EA7BBD2 /* UIView+FindUIViewController.h */, + 54C91E0DEC1D7C7AAA50A225F1D2D48A /* UIView+FindUIViewController.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = Video; sourceTree = ""; }; - 9E1C5D242F0DBE52C8E4560F21001479 /* UMCore */ = { + 9EA2D12F46C3327F07226B736125B630 /* auth */ = { isa = PBXGroup; children = ( - D04253913042A09F52B8B2B73E422408 /* UMAppDelegateWrapper.h */, - FBB2198ED87D3EE2472FA4FFB6180289 /* UMAppDelegateWrapper.m */, - 4D2D8D5F5EB97A290F064C371CD32EA8 /* UMDefines.h */, - F382F201BA7F0C2FFADF75F3D6E25A1A /* UMExportedModule.h */, - 17B080C1BBE18D573840429AB5DD98A5 /* UMExportedModule.m */, - 0807CED9EE4C3EAA07C6FA00B87CDDD1 /* UMSingletonModule.h */, - 7940731E3A76F795D49A137EE12DBCAC /* UMSingletonModule.m */, - 6F170CEDB89733511DAE42B07464938E /* UMUtilities.h */, - FC795F13A1F4E1560E61F876EA232F06 /* UMUtilities.m */, - 144AF412BF03B8797DCA6B75F0087BD5 /* UMViewManager.h */, - 5A488B1D7FC3E575BFF154BA1426F770 /* UMViewManager.m */, - D7BE05574A6AD7A2F6BD599DA595ED25 /* Pod */, - 5131D483526C51599A2E2A34DDAB2388 /* Protocols */, - 064A2FD7D570E9F04AA89EBB20DF0501 /* Services */, - 7659F4905A4A0A68C4A91C4BA6B63B6F /* Support Files */, - A8577A89345668234F4A160741AFFEFA /* UMModuleRegistry */, - 55A9E7BF941EECE32F643228EAD58A57 /* UMModuleRegistryProvider */, + BCF339FC7F13314A8980D9F2882017AE /* RNFirebaseAuth.h */, + B7CE3A08266E82E5793DB0FEC7DD7CCB /* RNFirebaseAuth.m */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = auth; + path = RNFirebase/auth; sourceTree = ""; }; 9F325055A8E77E056AC63A92E2CFC530 /* Crashlytics */ = { @@ -9335,34 +9523,15 @@ path = Crashlytics; sourceTree = ""; }; - 9FBA5AFFA2C1EA944241055F47A6EB9C /* UIUtils */ = { + A0A2CC79D7D6C6D6A235BD4ED047333E /* Support Files */ = { isa = PBXGroup; children = ( - 5A1F9B7A6504D551D8E43049A7F011E5 /* RCTUIUtils.h */, - BBB63FE3E96BF6FE03A2879DD0ECB1B1 /* RCTUIUtils.m */, + 945E4BED7CE5F4EFA859A013503B1D1E /* EXWebBrowser.xcconfig */, + CD182B7D3029972B154EA2CF58646810 /* EXWebBrowser-dummy.m */, + F19252DC595314984880F8CA33B7C48B /* EXWebBrowser-prefix.pch */, ); - name = UIUtils; - path = UIUtils; - sourceTree = ""; - }; - 9FBA636396673092C8127E822A871859 /* react-native-webview */ = { - isa = PBXGroup; - children = ( - F68FC3C95B1E5A044B6619F03AA0251C /* RNCUIWebView.h */, - 55F9E9C29B4DE14CFD4D20440F9D47A8 /* RNCUIWebView.m */, - D8DBAB665D67A4A1DBFC02B0AB4ABD36 /* RNCUIWebViewManager.h */, - CC455D7D51BD95A969F1ABFF55228E96 /* RNCUIWebViewManager.m */, - EDCBD5DFF45B920A096B9FF295678D1E /* RNCWKProcessPoolManager.h */, - 0647D0871C78CED22B6423453FFE60B9 /* RNCWKProcessPoolManager.m */, - 28E6749E05B1D2A0F0CB925540E0BE6E /* RNCWKWebView.h */, - 0261BCCDF2648D1A43E5D1F36B9B7604 /* RNCWKWebView.m */, - 260E2F5BAD367E98EC136C7DB4BC2598 /* RNCWKWebViewManager.h */, - 558AD8A2E3ED8C86D8302AB46DD0F3A2 /* RNCWKWebViewManager.m */, - 6D2470F179D830D83119834904BFA477 /* Pod */, - 8EC0FAF2B8AA5F8995C681EDD7E31ACD /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = ""; }; A0C21B7AFB42BA5D0927771793FDBCBB /* Support Files */ = { @@ -9375,78 +9544,41 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - A17A99CDF620CB6770B7628196B2862C /* Support Files */ = { + A13376B86D514636DC92ACADD5A251B6 /* Pod */ = { isa = PBXGroup; children = ( - 584906AE95C9BBDA7D0B29721858CCA2 /* React-jsi.xcconfig */, - F4D7A27DE05376B88813A660E7C90241 /* React-jsi-dummy.m */, - B10D82362A372C4BF93505BE0D5FC549 /* React-jsi-prefix.pch */, + 62B8CE518ECBCCC532E8198A63929FDE /* React-RCTAnimation.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A21ECF30D1A85F24D5A16589A46FB07C /* Support Files */ = { + isa = PBXGroup; + children = ( + 268495A169C2E34E1FAFB7A056526021 /* React-Core.xcconfig */, + E84029E7046DCAB5249624A842FB1E7F /* React-Core-dummy.m */, + 37243F9091F90AE0B46FB892009A6CD2 /* React-Core-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + path = "../../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; - A2238D3F01C712771850559B3309F2C5 /* Recording */ = { + A346B208D139CA7924100FE902535D52 /* Pod */ = { isa = PBXGroup; children = ( - 702C9E014B1B136A736B1B3F00B91B1A /* BSG_KSCrash.h */, - F732F2E885B57D371A925CE6F042B7F3 /* BSG_KSCrash.m */, - 06C9F5A11594D3F0FB6CC6FEC6C931C9 /* BSG_KSCrashAdvanced.h */, - BDFC76302DB768F2BE79BB5C30362043 /* BSG_KSCrashC.c */, - E3BB2039CC665D62E0DE9B2D6EAC0F63 /* BSG_KSCrashC.h */, - 74C10C345193C4FAE67D12793A6E6AE6 /* BSG_KSCrashContext.h */, - 48E65172060C29140E087D4C009FB17E /* BSG_KSCrashDoctor.h */, - 10F68CA9DCBC690C63964DECCD314B22 /* BSG_KSCrashDoctor.m */, - 3BC0EBEE3AB86A5AF225D774F7AA7EA8 /* BSG_KSCrashReport.c */, - AEA4B69A46529ECEC30F727789756B1C /* BSG_KSCrashReport.h */, - FE859787F69DB1158BBD2F2FEB00EAE6 /* BSG_KSCrashReportFields.h */, - 3D1075DE43CDB5C7CB5E41A434FC56DA /* BSG_KSCrashReportStore.h */, - 53AF0403E5F73506EF6E553FB417335F /* BSG_KSCrashReportStore.m */, - DBDFEA882CD8D83E46CA103863F67E19 /* BSG_KSCrashReportVersion.h */, - 93597116FF65E74E5A812096C5E499DE /* BSG_KSCrashState.h */, - 8507E6531BEA7B7FE5CF9148EF8DF150 /* BSG_KSCrashState.m */, - 324EC9A48993622C5693242CCE7E870C /* BSG_KSCrashType.c */, - 3FFBB81B304B4AF910353864745EB168 /* BSG_KSCrashType.h */, - D7A11216E6EE4E7C0343B477383B033A /* BSG_KSSystemCapabilities.h */, - 8C5D57898BC951E346ED0DC7B86BA6FA /* BSG_KSSystemInfo.h */, - 894EB08A053D7C6452445489BA754F2A /* BSG_KSSystemInfo.m */, - 3FF4CFB59F6279E2DA79ACAE79937C16 /* BSG_KSSystemInfoC.h */, - 208B0FEAF4A3383E6A48C49BB0B22A85 /* Sentry */, - C3061C09D07D70807BEF5EAE44CCA850 /* Tools */, + 6603F90B3CB7C86F5A1E8BF524DEFE68 /* EXAppLoaderProvider.podspec */, ); - name = Recording; - path = Recording; + name = Pod; sourceTree = ""; }; - A3AAD9756C5451B71B8347625D8101CB /* react-native-keyboard-tracking-view */ = { + A43C6EDF6FA7C2CE15E7FE6AB6647C69 /* Pod */ = { isa = PBXGroup; children = ( - 74AE6495FF9F3C087CCD3050E88EBE8D /* KeyboardTrackingViewManager.h */, - 4A0B3D1FABF28666E78CD69FD13BE8F1 /* KeyboardTrackingViewManager.m */, - 9B2D2370970EF5AF373A5DDC91D5C4A8 /* ObservingInputAccessoryView.h */, - 7D2D689A649E31074B500124819F6B82 /* ObservingInputAccessoryView.m */, - 1BC904A65F81717DC1CD333CCB25B240 /* UIResponder+FirstResponder.h */, - 4CE3867CA3D639A6CDF955E16ECC4E1A /* UIResponder+FirstResponder.m */, - F57123F21AAD5FEC6ECF1C6252FBF749 /* Pod */, - 2D4B79527BB006A1165DBE66645EBB75 /* Support Files */, + AF51F6E751008277E08D864CF38C9CCA /* LICENSE */, + 2EA55863C831AACD54436A75E17E0A07 /* react-native-keyboard-tracking-view.podspec */, + CDD51648DF4E0DF81954C937383B7561 /* README.md */, ); - name = "react-native-keyboard-tracking-view"; - path = "../../node_modules/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - A469610D47D816A2697292B2D6E6F2F0 /* UMReactNativeAdapter */ = { - isa = PBXGroup; - children = ( - 16EC7FFCCD260E58EFD7D18F4F300F68 /* UMBridgeModule.h */, - D858739DC1CFBD76A1750C7BDF6A8294 /* Pod */, - CAF354E9AA3B88ACEEE6FB9BD5973318 /* Services */, - B997AFC99BAF0FF8FC1581DC2A8A85F8 /* Support Files */, - D1A291329FBF5B30ECBC2F3427CFEEF2 /* UMModuleRegistryAdapter */, - B4A7142B39EAB96E55C8AC0061811D1B /* UMNativeModulesProxy */, - F8946BD0B5A4206F1F823B3F48A05C2E /* UMViewManagerAdapter */, - ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = Pod; sourceTree = ""; }; A49BF6B4CB4A5CA26F83DB75554EF5BF /* mux */ = { @@ -9463,82 +9595,57 @@ name = mux; sourceTree = ""; }; - A5F342E41B2B9EC40110C93DA0B1AAA9 /* Support Files */ = { + A4F711D9AFB523F189C3171A8B0530C5 /* Pod */ = { isa = PBXGroup; children = ( - 4196A7AB8F9939C9ED867CD59972DD67 /* RNScreens.xcconfig */, - F2111A958F82B943AB20AD17FE937B5A /* RNScreens-dummy.m */, - EE2C06D0C637154376A4692B0415596A /* RNScreens-prefix.pch */, + 09B69E0BBD9026297BB11D97A8136F80 /* React-RCTLinking.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = Pod; sourceTree = ""; }; - A77F55AFC8E3DDB9A0E86D40B58F316D /* Nodes */ = { + A5A75E940AEE30E42E28BF6F852EA6B1 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - E4038569A3C373D47FA10F76EC869E8C /* RCTAdditionAnimatedNode.h */, - D98947153E3073506DB17E03C33BE7C4 /* RCTAdditionAnimatedNode.m */, - 29536746E495BAED8B33D16495C0F774 /* RCTAnimatedNode.h */, - 4A7BBCE8C4BD6F6AD850EC71FACF6DFC /* RCTAnimatedNode.m */, - 31E624D63EFD34F88E903C85CFC595CD /* RCTDiffClampAnimatedNode.h */, - 0149675F0F21F3EABF4D592ACFB96604 /* RCTDiffClampAnimatedNode.m */, - 8D12F3DE529AB6013B3CF4D7ABFE0C78 /* RCTDivisionAnimatedNode.h */, - 6214EFC1D385FD8CC6147253FAE18861 /* RCTDivisionAnimatedNode.m */, - 19FC1EFF13BF8A45DAA1F52574EA0E71 /* RCTInterpolationAnimatedNode.h */, - 094C54A4188D81D41667C78BA6135F78 /* RCTInterpolationAnimatedNode.m */, - FE7D5E3122E62E78BC0D5EA543988BCC /* RCTModuloAnimatedNode.h */, - 21050EF2BD74AC70BAF6B476AE19938C /* RCTModuloAnimatedNode.m */, - 41FED27F378AF79713779DA43921EA2F /* RCTMultiplicationAnimatedNode.h */, - 9C78B6949BAD6F74209708D6BC3BB77B /* RCTMultiplicationAnimatedNode.m */, - D4E9D9900348932901C544FB243605CB /* RCTPropsAnimatedNode.h */, - 09E3A9A226EE181D5A085C0312C7E130 /* RCTPropsAnimatedNode.m */, - 74F089722C65606B6E7305A8086286B4 /* RCTStyleAnimatedNode.h */, - 567FBAE3B48C58EFD5F894C3340CD38E /* RCTStyleAnimatedNode.m */, - 2EEE78D2A71F6AD48134D8B7A4FBB45E /* RCTSubtractionAnimatedNode.h */, - 0E7937432A474CCEC42405E6975C1D81 /* RCTSubtractionAnimatedNode.m */, - EDEC5484C56D63DEEB4E5DFD72871BC7 /* RCTTrackingAnimatedNode.h */, - 97BA38C5D133CD6A543A169356D2E463 /* RCTTrackingAnimatedNode.m */, - F13ED8270A95A84F57083C807BFD0A38 /* RCTTransformAnimatedNode.h */, - 0F49B740C9BE6DA0A3BB1B68BFAD54A1 /* RCTTransformAnimatedNode.m */, - 41DC749D2C9DF562AB454EDABD926FB6 /* RCTValueAnimatedNode.h */, - 6614F90F95753C60B90AEADB62A7F1BE /* RCTValueAnimatedNode.m */, + D340534F23FD3A765547F2C6110B07D9 /* RCTSurfaceHostingProxyRootView.h */, + 0AEA92BE8A1C050899CCC34B6AF15A06 /* RCTSurfaceHostingProxyRootView.mm */, + 2D8D9875012EF94FB3B366AEF1E6FB24 /* RCTSurfaceHostingView.h */, + D2EC694F312D47738BAB2199D15ED4E0 /* RCTSurfaceHostingView.mm */, + CAC66B3AADFB8C8623C691E009396936 /* RCTSurfaceSizeMeasureMode.h */, + 046B20A2B48F6279C48F2BB20DB1ADCF /* RCTSurfaceSizeMeasureMode.mm */, ); - name = Nodes; - path = Nodes; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; - A8573E43CA8B185FB4FF16E8EE17858F /* admob */ = { + A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { isa = PBXGroup; children = ( - 18CC333CFF6B3F92573425FAD58D5BE8 /* BannerComponent.h */, - 0517002F4A881FF10994D2EA35EBD9B6 /* BannerComponent.m */, - 143641E635A9FD9398C57432E010D8F3 /* NativeExpressComponent.h */, - 5186014C1CA77744BDA142E44E744535 /* NativeExpressComponent.m */, - A9406FAA2A308A063232101F846A0755 /* RNFirebaseAdMob.h */, - 1BB43C6952EF68D5E3156432840DFEE8 /* RNFirebaseAdMob.m */, - 2528C40DABD8EC42F62BEED4A1C3B890 /* RNFirebaseAdMobBannerManager.h */, - F8B0DC69839F7955C4BA20F869AD92D3 /* RNFirebaseAdMobBannerManager.m */, - 22BA98A5B60F82ED1A0BEF877B5FA8E8 /* RNFirebaseAdMobInterstitial.h */, - 6AD40251501E1C7E14BF28223BEE7919 /* RNFirebaseAdMobInterstitial.m */, - A10BB0C93993448C44B113561E7B5D21 /* RNFirebaseAdMobNativeExpressManager.h */, - 2F04D40C834DD098055F62CC27680124 /* RNFirebaseAdMobNativeExpressManager.m */, - 441556D7A9CF8E81DE09D36CA7967F5B /* RNFirebaseAdMobRewardedVideo.h */, - EFF110D0FCD6E0223A45F939D34D4123 /* RNFirebaseAdMobRewardedVideo.m */, + 99E77EDDB8BF9E4B476AA4E6FF856A62 /* Pods-RocketChatRN */, + 6797B7A25E0298E4F4B21C545C6D2ED7 /* Pods-ShareRocketChatRN */, ); - name = admob; - path = RNFirebase/admob; + name = "Targets Support Files"; sourceTree = ""; }; - A8577A89345668234F4A160741AFFEFA /* UMModuleRegistry */ = { + A6D76F2D00E7D60E2F32A4A6287F0115 /* Filters */ = { isa = PBXGroup; children = ( - A7A3D32B07E6867105DD76AA8F940ED4 /* UMModuleRegistry.h */, - 69E190643271A3BDFFB8250E0FDD6832 /* UMModuleRegistry.m */, - 756FC505BAD21C7CA268DEB80D48AE8E /* UMModuleRegistryDelegate.h */, + 9D2D50FF32EEBB560B7AE64F6A5F7A7E /* BSG_KSCrashReportFilter.h */, + D168B9567CBB186333C5B16B6CEC8CF2 /* BSG_KSCrashReportFilterCompletion.h */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = Filters; + path = Filters; + sourceTree = ""; + }; + A8A6D76EFACB6F1C5E1D69CE146FD8BF /* React-RCTSettings */ = { + isa = PBXGroup; + children = ( + E6B6CDF564CD045EDF359B4653F86D83 /* RCTSettingsManager.h */, + 14B9317D9BE65232E6F83AA8B2C7B44B /* RCTSettingsManager.m */, + C452F40EA54EF5B91E684AE5ECD361BF /* Pod */, + B813E5FE18FF8B6A66B1BFE95A0385AB /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; A9CEBF818C3F749EC133B3C2AA41C1E0 /* boost-for-react-native */ = { @@ -9550,53 +9657,116 @@ path = "boost-for-react-native"; sourceTree = ""; }; - AA783CBEFC2207BB9C51A7F79A61F88A /* fabric */ = { + AACB6D3B4B5E35BC554E9D777805457D /* Support Files */ = { isa = PBXGroup; children = ( - 63430E82E56573FB2FD49C7849135699 /* crashlytics */, + C9F0C31A769D053FF8300D615339570D /* rn-extensions-share.xcconfig */, + C011322D1E9F0F83594E269A1249A9D3 /* rn-extensions-share-dummy.m */, + 6290A14C92EE61380CE53E6460449DF7 /* rn-extensions-share-prefix.pch */, ); - name = fabric; - path = RNFirebase/fabric; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; - AC8BBAF4F03AA256FF10BF4ED9F0068B /* Pod */ = { + AD69CA9AAD07C028794C292D4552E265 /* React-Core */ = { isa = PBXGroup; children = ( - 5296C906F87F61CE96F23FBBDC164811 /* LICENSE */, - 4C110A8E4900DF59E675984EB90690B9 /* react-native-orientation-locker.podspec */, - B847369D6982DC7922416A3069B7B411 /* README.md */, + 44CCE5EF97064805C575B5E1E3085393 /* Base */, + 5534D3484931FCDAB1F8A5305519E7B4 /* CxxBridge */, + 7662B32DEFA7B5321E7F2B641542C29F /* CxxModule */, + 789751945E85A7295382F210BAB90EC9 /* CxxUtils */, + 23DFB3BB79073000473ADE47881F1FAC /* Modules */, + F7D9CB224E9960AA398E6B3FE48EE54C /* Pod */, + 1B6804F8ABF8515AF770BD8FD50B8C6E /* Profiler */, + A21ECF30D1A85F24D5A16589A46FB07C /* Support Files */, + BCC435BF0A742B4079927710F491758F /* UIUtils */, + D49849E17C5182572413E6F52B9300AD /* Views */, ); - name = Pod; + name = "React-Core"; + path = "../../node_modules/react-native/React"; sourceTree = ""; }; - ADA820DD2C27A4835668C85978008ACB /* Pod */ = { + ADCF47B83A3862A400A9D2356C82A5D9 /* Support Files */ = { isa = PBXGroup; children = ( - 7ED51579B9DA69528E7C5AF1F00903A0 /* LICENSE */, - 85205F2656F1E3C68D7B89527FE71711 /* React-fishhook.podspec */, - 980857BF2351A587CAFD45AF24E7D342 /* README.md */, + 50304151A42A116EF5ABB4185C9285FB /* react-native-keyboard-input.xcconfig */, + 7AE59787DE2A1F4227CEA02F657673BA /* react-native-keyboard-input-dummy.m */, + 3F1AE4CEE24B3064F810CD6716F50691 /* react-native-keyboard-input-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; sourceTree = ""; }; - B24556259192125FFE1115F84A08D661 /* EXConstants */ = { + AE7F3FD74A8A3CCF2631680AD5F7664C /* Core */ = { isa = PBXGroup; children = ( - AF5D70AE0BBACE08B9D14D76F6CC638D /* EXConstants.h */, - 27B62CD3D697760E85B72408EBF6E835 /* EXConstants.m */, - DF8C016F487ED18B1723493C7F9FF057 /* EXConstantsService.h */, - ADA349097F758AE829DEEDCC24123880 /* EXConstantsService.m */, - 3C4869053C1C4850D3F29B781BC51065 /* Pod */, - 25F5C030AE7A0D0659EAF02F366DE1C9 /* Support Files */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = Core; sourceTree = ""; }; - B297303880B03F34448C70A033A2FC8D /* Pod */ = { + AE98183091B21053DACF00144C4B1D9A /* Support Files */ = { isa = PBXGroup; children = ( - 1BF963B67576AB4E0EA8E26FA194565B /* React-DevSupport.podspec */, + 6455A175DEBF2D9CDEF577076EE70D5A /* EXFileSystem.xcconfig */, + 3FF0E349C9F11E17F62B6C7C11391ADB /* EXFileSystem-dummy.m */, + C2E84685336EA27889ED308BE44FA437 /* EXFileSystem-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + sourceTree = ""; + }; + B0B90FB38707173E5648E8F9C532A11E /* Support Files */ = { + isa = PBXGroup; + children = ( + D8B6B7FA0B93A56E44C963046301ABC0 /* React-DevSupport.xcconfig */, + 26ACF13A7FFA34BEC22DB41679162E1A /* React-DevSupport-dummy.m */, + 27B3D8DEB9F0F1930A1A56F3048472B8 /* React-DevSupport-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/React-DevSupport"; + sourceTree = ""; + }; + B0E3BEA2A836F7C16779ADB3C402D5A9 /* UMModuleRegistryProvider */ = { + isa = PBXGroup; + children = ( + 0AACEE473EABB3E7BAE6A0DCA59D72BA /* UMModuleRegistryProvider.h */, + 9C4A8CEB69CF7F073BFF76879220236F /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + B10471D4715800E69FB9CFDC2C63BC0B /* WebRTC.framework */ = { + isa = PBXGroup; + children = ( + 6E4CF2ECB519F3D215B21DAC578D663C /* Headers */, + ); + name = WebRTC.framework; + path = ios/WebRTC.framework; + sourceTree = ""; + }; + B16F98C4D8B53BEA40ACD0FA3CCA3460 /* UMSensorsInterface */ = { + isa = PBXGroup; + children = ( + 904404A3C543A9A576DD99AF2E9E13C7 /* UMAccelerometerInterface.h */, + 41BAC99F94375BA8725F1EDF55D76F5B /* UMBarometerInterface.h */, + BFD8ED78C1C37D65A608ACBD487CD207 /* UMDeviceMotionInterface.h */, + 681F67F6D572C42798D74454873C530F /* UMGyroscopeInterface.h */, + EA3FC604640726E3BF2FBE98DAAE1456 /* UMMagnetometerInterface.h */, + A6B3F9A60E5DD3BCD8621E49250C9DC4 /* UMMagnetometerUncalibratedInterface.h */, + E2C675047E307EA9370F86B66A8E5E38 /* Pod */, + 95E6109A5100BE607D2661A2BFF9CF6E /* Support Files */, + ); + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; + sourceTree = ""; + }; + B255A8193E4298E407EFDF23C3E729AF /* Pod */ = { + isa = PBXGroup; + children = ( + 0A3EFCE446D9C81F034A7BA9F816BB38 /* LICENSE */, + BD547426D56D340222DD530246169860 /* README.md */, + 01AD170FFF93BB8E54CA5C0DE97A64F0 /* RNImageCropPicker.podspec */, ); name = Pod; sourceTree = ""; @@ -9674,24 +9844,20 @@ path = FirebaseInstanceID; sourceTree = ""; }; - B473EF9BE0974B6AF1278D2B233ACD47 /* messaging */ = { + B38AC948FD4420C6AD236B34978A11E7 /* Services */ = { isa = PBXGroup; children = ( - 7EE6DF4613CB057920348EDBFDCEF4EF /* RNFirebaseMessaging.h */, - DC5143AF7BB4FE28E5CFA20C2778547D /* RNFirebaseMessaging.m */, + DFEBA51911EB725E6B74D649C099D4BA /* UMReactFontManager.h */, + 52CB7F9FEF65585EA2043D80B281806A /* UMReactFontManager.m */, + F32DA9E5A6E80D06922422B63DF7F91C /* UMReactLogHandler.h */, + 67E4A304656CD956CFF27C72818BEA17 /* UMReactLogHandler.m */, + 34E6B863B3AC076AE6776A7745989DD2 /* UMReactNativeAdapter.h */, + 5375A66F588B12C7FFC3D4096C9121B5 /* UMReactNativeAdapter.m */, + 5B3993C4101B711681D6F9FDA64D67AC /* UMReactNativeEventEmitter.h */, + 77C5D531014D942E361F9325AD560C62 /* UMReactNativeEventEmitter.m */, ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; - B4A7142B39EAB96E55C8AC0061811D1B /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - 90DEA33D505EAE6CC2FE9DCD399BE765 /* UMNativeModulesProxy.h */, - 14F46F521449474D9AAE65EC6D1BAD63 /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; B5101A61EEA16AEAEF6B56377301714F /* libwebp */ = { @@ -9706,15 +9872,14 @@ path = libwebp; sourceTree = ""; }; - B54FF33114E5BB127807E80359130972 /* Support Files */ = { + B5890C73DF9A5F86F42E2EDF9D748943 /* Pod */ = { isa = PBXGroup; children = ( - 568452C2C96D11263A167AC93E048422 /* React-RCTNetwork.xcconfig */, - DDC00ACD3997FA1977D58A34104CAE78 /* React-RCTNetwork-dummy.m */, - 04065AC8E9C6D7B1F00AB46C91DF67C6 /* React-RCTNetwork-prefix.pch */, + 1761D7D2978809F3D0C3D50150AA9182 /* LICENSE */, + 1CC032CE4D36E6ACC3C2247EC1DA16E3 /* react-native-video.podspec */, + AD2BD30BCEF9199E3FAD0B438AE2D6C1 /* README.md */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + name = Pod; sourceTree = ""; }; B62C2A6441EFDDBFF9EECD4F4A128262 /* Resources */ = { @@ -9725,16 +9890,6 @@ name = Resources; sourceTree = ""; }; - B6518200BC1EE7A2A2AC139641F391F9 /* Pod */ = { - isa = PBXGroup; - children = ( - 2E9C5AF3B8B0B2FAD7FCB49B999AD88A /* LICENSE */, - FD427207EEBC7E128C148DB8DB36CA0A /* react-native-splash-screen.podspec */, - B7AF93DCB30558D8039E90B6C8B284FF /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; B67D6920FF96DE1E8ED0B5A4E9CC9F89 /* Support Files */ = { isa = PBXGroup; children = ( @@ -9746,59 +9901,78 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - B7BDB4505CF5A70B94E08858C09B3B6E /* UMFaceDetectorInterface */ = { + B69F95A6A41C302AA1C4C04B3CAD6B30 /* converters */ = { isa = PBXGroup; children = ( - 45FF082256F72E6F374174A00005B4EF /* UMFaceDetectorManager.h */, - 732DBD8D9B9DE28C0145A8B946E3809F /* UMFaceDetectorManagerProvider.h */, - 74205F2AA424B3C8BC0F752A86BAFB08 /* Pod */, - EB92A9DA8BB27E36FDEB851682CC1233 /* Support Files */, + C20AA83D8E3C884BF6BA173803CA3159 /* RCTConvert+UIBackgroundFetchResult.h */, + 852B9047FE97D3805DF016D9AC2CA991 /* RCTConvert+UIBackgroundFetchResult.m */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = converters; + path = RNFirebase/converters; sourceTree = ""; }; - B86CBFAF8F6E730FFACBCDF3E9B3D1FA /* Pod */ = { + B813E5FE18FF8B6A66B1BFE95A0385AB /* Support Files */ = { isa = PBXGroup; children = ( - FA1A65C4F3C069781F69527ADEE2B376 /* LICENSE */, - A7374D25AEBECB070840EF48E56B89D9 /* README.md */, - 8B77714A5B085438CDABD59AFC616867 /* RNFastImage.podspec */, + 2D128EC9C661C9123DB9482456EFF500 /* React-RCTSettings.xcconfig */, + 514471170F50C4E5FD985EFFAB396A06 /* React-RCTSettings-dummy.m */, + 2CE908E17D34B70B36F2401ABF27BB0B /* React-RCTSettings-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + sourceTree = ""; + }; + B89301F0E0E97C57AEB1005F2F607758 /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + 395A0BFFF15889718930EA127ADA554B /* CxxModule.h */, + AD25FB34758FB51DC7E27302E4E33607 /* CxxNativeModule.cpp */, + E996C00E6315F0A32105C5D96D26ACE4 /* CxxNativeModule.h */, + EF4EF760B7F589A58BA45E717F0389C1 /* Instance.cpp */, + 247C6C4D3C37FFC9F240FD5593F80342 /* Instance.h */, + 45EF310376CE49CB4AA45FCBFA430D37 /* JsArgumentHelpers.h */, + C4ED939680B988B1822284F02D238B80 /* JsArgumentHelpers-inl.h */, + EADB2E0DCDD328B5CE981B5DABA26302 /* JSBigString.cpp */, + F13F72D539112CA82BED601EEECFFA5A /* JSBigString.h */, + 1656A74DA866762D5C0D465B7EEBF82B /* JSBundleType.cpp */, + 213CE0DD0D1FB97BDFA3016971DA078E /* JSBundleType.h */, + 74F10490F42380830676DB14B93E0911 /* JSDeltaBundleClient.cpp */, + AEA2E6893FE4EA8CA4FDC62E3876D337 /* JSDeltaBundleClient.h */, + 3116F1693D8BE11B18B431341D42AC86 /* JSExecutor.cpp */, + E927E8D865C0A52483431C4D118EE082 /* JSExecutor.h */, + 32BECF54AA22568F6715375280CD41A9 /* JSIndexedRAMBundle.cpp */, + 608C14642DC08E74C948D5497FB382CD /* JSIndexedRAMBundle.h */, + 6ECF7A2C8172A21A5C79757DBF8F282A /* JSModulesUnbundle.h */, + C216A397325D711052ACD7E6779F231A /* MessageQueueThread.h */, + 4E2F94448BD62A7D8BDCF0E561A5CADF /* MethodCall.cpp */, + 23A68E6734213B3A19BC166F35CC8579 /* MethodCall.h */, + 5EE3632A2415579DB2FB4E89C89EAD1A /* ModuleRegistry.cpp */, + 47D3261B2052D59359A491D485573B3D /* ModuleRegistry.h */, + 6EB4AE68FF70F8661D38D4D6E479330D /* NativeModule.h */, + 037A5FADC5696DEC177A2C5DBD6A31E7 /* NativeToJsBridge.cpp */, + F483E250BB6DF8C47BF74C75EC3D17F4 /* NativeToJsBridge.h */, + B8C90022B498754AC293996FC03C9D2F /* RAMBundleRegistry.cpp */, + EC012FC00DC7551F0DA7F42ACE24ABFC /* RAMBundleRegistry.h */, + 19ACAF5A33A1AE265395DF8C9337A1BD /* ReactMarker.cpp */, + 50318ABCA6A5C8070198468ED503814E /* ReactMarker.h */, + 9491AF948F3FA874F54067CE881ADA15 /* RecoverableError.h */, + CEA6929DD4698DED8181AD050A4A4E0E /* SharedProxyCxxModule.h */, + E27AF257080FE85FD432B052D55A8A15 /* SystraceSection.h */, + B8AC53634A53CDFDF7A5676394BACF9A /* Pod */, + 078B0141523AC759BD779B52312F3D6F /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; + sourceTree = ""; + }; + B8AC53634A53CDFDF7A5676394BACF9A /* Pod */ = { + isa = PBXGroup; + children = ( + F5D915DBB4A7DF76983FAA17A75A6323 /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; - B997AFC99BAF0FF8FC1581DC2A8A85F8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 699C1B32668455A01B0F755AF0C6FAE0 /* UMReactNativeAdapter.xcconfig */, - D584630DFB8EE9BB52F716EA22343A8A /* UMReactNativeAdapter-dummy.m */, - B991C1699FAE71C6FBC84B87F788004A /* UMReactNativeAdapter-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; - sourceTree = ""; - }; - B9FE4BECF44554988830FB63ACAC2E01 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3A9B8F98A954C6D4ACC59140948DA04F /* RNReanimated.xcconfig */, - F41595A5D529546CEB7EE05466E4B2F5 /* RNReanimated-dummy.m */, - C5B490404C36F1023A63BC8E0F8F285C /* RNReanimated-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; - sourceTree = ""; - }; - BA2001B742CE6E42C19D537598050616 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9BE6C950D5BB483CC324D666974AF5A1 /* UMFileSystemInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; - sourceTree = ""; - }; BA4A261C9A963D3C54CD06369F2D8D2B /* Support Files */ = { isa = PBXGroup; children = ( @@ -9810,86 +9984,115 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - BB569C6E88B0C0874ED3E4D48869E54D /* React-RCTAnimation */ = { + BB00D86353F02BA311C4CA90B1548431 /* Pod */ = { isa = PBXGroup; children = ( - C0AE4B613F41033248DB894783269471 /* RCTAnimationUtils.h */, - 8834C7BEF27342CAC8A41BFFC2F92D5A /* RCTAnimationUtils.m */, - 653D8C3BC42EEEA598A7FC54997D2EC7 /* RCTNativeAnimatedModule.h */, - 42509991680C6FDDD10FFE22F9903C50 /* RCTNativeAnimatedModule.m */, - 92FF03A70E1A66B48FCEF58B949DB94C /* RCTNativeAnimatedNodesManager.h */, - 1DC773DB1F440F7828ADD2BC4466D0F3 /* RCTNativeAnimatedNodesManager.m */, - E0B7ECCCC75045D96CC1FEA5CB400631 /* Drivers */, - A77F55AFC8E3DDB9A0E86D40B58F316D /* Nodes */, - 7BB4B7749768A172DF7202DC14B21F0D /* Pod */, - 9DC3AC1A82E59CFC20381E15D6E674B1 /* Support Files */, + C6C862E6728AF11811F916FC759DF788 /* UMConstantsInterface.podspec */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = Pod; sourceTree = ""; }; - BC1E31890E5614B914F3423B79C8832D /* RNFirebase */ = { + BCC360CDA8724203B408A4928EBF9828 /* RNLocalize */ = { isa = PBXGroup; children = ( - 10D7CED947ED85FBC0D69B96B1BD617E /* RNFirebase.h */, - 619BDE74FD22826933F5C8695DD5F452 /* RNFirebase.m */, - EE01FB5BBA7D8DE2402936C8A239449B /* RNFirebaseEvents.h */, - 4142A9D57093AD7A146D02A4B8A203FF /* RNFirebaseUtil.h */, - 698EADE76C455030194FC3A8AE4C4F04 /* RNFirebaseUtil.m */, - A8573E43CA8B185FB4FF16E8EE17858F /* admob */, - C6ADFD8D141177E5AF2DA0239B204EC8 /* analytics */, - 90DDEEF93B895DA141479B59A52FC575 /* auth */, - D0CC5202A351ACFB8539D7338BA5D901 /* config */, - F6729FCDB5DD6EE82372E9A258F00D2D /* converters */, - E8CAEC2C251643D38E0CD99B870211BB /* database */, - AA783CBEFC2207BB9C51A7F79A61F88A /* fabric */, - 623C50ADF3CF1EACAE5CC3C3DD60D90C /* firestore */, - 7B4AF27543BC17CB43DC14D6EE41FABB /* functions */, - 39403AC8A876FD9576839D147E1CB1BB /* instanceid */, - F8A4ABE579F48F0F3F7743B1E4DE2888 /* links */, - B473EF9BE0974B6AF1278D2B233ACD47 /* messaging */, - BDB7DA54C9D8465568ECF0099657D7A9 /* notifications */, - 49532062DA1229C43ECE3DAEE7AF3D7B /* perf */, - 8DC6B2A645F77385A3AC16F381937C8A /* Pod */, - CA1A0B077484A5E99F3EBE5D9D7222DC /* storage */, - 1ECBCD50C4279E51ECC6930831000853 /* Support Files */, + 9F8C7CEFAB40BE85AF65E496A17F3F9C /* RNLocalize.h */, + CB7AF9F34117C8D3E25E9B39E8EE4E08 /* RNLocalize.m */, + F68207727D0E563DBA586845C7B4BCF7 /* Pod */, + 7A408313C268ED73781D96F40D8C1929 /* Support Files */, ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - BD1242F39F4F49DACD5D8C7A807A0B58 /* react-native-document-picker */ = { + BCC435BF0A742B4079927710F491758F /* UIUtils */ = { isa = PBXGroup; children = ( - 764F6BC98EFEF9A12BD84A50019ABE7E /* RNDocumentPicker.h */, - 7D43F7FE38952B8387A308DA61A406AD /* RNDocumentPicker.m */, - D311174B7581C6D984DAA3699B5CB70C /* Pod */, - F9405A22AD37DD275AFDAA8D759A0F80 /* Support Files */, + 225B23BC7E09A57BB81DC7223CC033A7 /* RCTUIUtils.h */, + 2D9B5517DD456E91CE66FB7D42617486 /* RCTUIUtils.m */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = UIUtils; + path = UIUtils; sourceTree = ""; }; - BDB7DA54C9D8465568ECF0099657D7A9 /* notifications */ = { + BCC5F4B4F56E376CF3BEC1F05DC097D5 /* React-DevSupport */ = { isa = PBXGroup; children = ( - 3A2B325A4C80364F2BD4BF28F6F5E273 /* RNFirebaseNotifications.h */, - C4E5197AA72D3F0C5C99A8AB9572F10E /* RNFirebaseNotifications.m */, + 58BBDF14D194535ECF4FBC88EC9D6B9E /* DevSupport */, + 0AD29234D328D1C3F03418512C1927CA /* Inspector */, + 5E34ADA07D7BDA63AEB98443DC5D23FC /* Pod */, + B0B90FB38707173E5648E8F9C532A11E /* Support Files */, ); - name = notifications; - path = RNFirebase/notifications; + name = "React-DevSupport"; + path = "../../node_modules/react-native/React"; sourceTree = ""; }; - BE490D7A1D9688C0BE4BD2C20DE10083 /* BaseText */ = { + BE94C555533125878604E288001FD1B7 /* Development Pods */ = { isa = PBXGroup; children = ( - 9F4DA4810CDBA63DD3257BA2566B4B9F /* RCTBaseTextShadowView.h */, - 33DB261DD6E39B8C103A5CA33F90D5E7 /* RCTBaseTextShadowView.m */, - 6126CB937F3D420A8BA73CFEB130797B /* RCTBaseTextViewManager.h */, - 7314C58F5832505AE7285471BCAD3654 /* RCTBaseTextViewManager.m */, + 8D2D29B7061DEAC86E6BA1E59AC20AEF /* BugsnagReactNative */, + 29E20F3916703FEC3B017A2AD4196D49 /* EXAppLoaderProvider */, + 232E9A88E6C2BE81B6BE7BD3ADFF8521 /* EXAV */, + 8178D51B5E4B2A268BA30050AFE9F60A /* EXConstants */, + 89C3863304096025674EBEF5760215BA /* EXFileSystem */, + 2DAA0622C257C86953C2F7A35CC12DA2 /* EXHaptics */, + F0493C0BC60D7428F4C80279EF68C574 /* EXPermissions */, + 0389F1A343E3B240B0208F54FE932029 /* EXWebBrowser */, + 968AE98EF9F957E5B35BF74889841DC5 /* React */, + AD69CA9AAD07C028794C292D4552E265 /* React-Core */, + B89301F0E0E97C57AEB1005F2F607758 /* React-cxxreact */, + BCC5F4B4F56E376CF3BEC1F05DC097D5 /* React-DevSupport */, + E7D419CB664331C04B6CC17030B2EE2D /* React-fishhook */, + 474CDE21DE6A2B016D78B186F455E180 /* React-jsi */, + C3C0EA2BFE80A77562BB4E651C090DBC /* React-jsiexecutor */, + D2E2DD44487B6B0D39C4299AECCDAB36 /* React-jsinspector */, + 60EED86BED90286499A6CCE72D482406 /* react-native-background-timer */, + 4C313246C451FF0D8E5BBCFE790C6830 /* react-native-document-picker */, + 5CDB6E7C6FF3A774E2CDEC31240D6EEB /* react-native-jitsi-meet */, + 57048C43182F7F593598B090E3404BEC /* react-native-keyboard-input */, + 53B54A1B24A76BE51BEA026F2A6C6128 /* react-native-keyboard-tracking-view */, + 38E047C75E0730E70A746A89A82F4DB0 /* react-native-notifications */, + 50B66B999F989BBC5318C0C910236BC0 /* react-native-orientation-locker */, + 88A916EDD3628A2E83EFF9534CCB655D /* react-native-splash-screen */, + 09551A3AFD1EFC7F905AA8CE0837D105 /* react-native-video */, + 51D3C4BCC0C2E95672EC8F60975AB56C /* react-native-webview */, + F21BA719F353FE6F2923F723DEAC473B /* React-RCTActionSheet */, + 887097E1791931F879F3B7B6CCE6CED0 /* React-RCTAnimation */, + FE91880DEDB8C57D14ABA87C373146CF /* React-RCTBlob */, + 350C2D510D4D821B60D400C10E190038 /* React-RCTImage */, + 101F9395BA6BBFE79CC54790DD18C36E /* React-RCTLinking */, + C7E78A311C2DFE1AEFDCE141158A2085 /* React-RCTNetwork */, + A8A6D76EFACB6F1C5E1D69CE146FD8BF /* React-RCTSettings */, + 2B41C58DA66CC9E193982E6B92513DE9 /* React-RCTText */, + 310CCA9AD404E919D541FB295AD7BFD4 /* React-RCTVibration */, + 158D21E2CD08E2800E09F14066CFF205 /* React-RCTWebSocket */, + ED73B6E5846A5D5FC86F18B29D5F81F6 /* rn-extensions-share */, + 68A44E3B21D9172B46E3B1DA276419E0 /* rn-fetch-blob */, + 061D1FBF99849AA13BEAB7A6672FEB78 /* RNAudio */, + 0991ED5F5E9B8B2568724169D8CD681F /* RNDeviceInfo */, + EFA9810F36C2FAD7B04D7E08B574FA72 /* RNFastImage */, + C747AD8CB9B72CFC91AA1306B829B3DC /* RNFirebase */, + 84679B6B626EF79AFB1198C4C189A0CD /* RNGestureHandler */, + EC75F54A36E42CB84968D59C7BE86B57 /* RNImageCropPicker */, + BCC360CDA8724203B408A4928EBF9828 /* RNLocalize */, + 7D2004DD592D16580DA74412CA9D4F35 /* RNReanimated */, + 3B89E1A3A19F372EE8FB10F05F1A1213 /* RNScreens */, + E93FF8F3CBCB4876500670DE785D6848 /* RNUserDefaults */, + FDEF9171A8743E7B53FC306ED08C1FFC /* RNVectorIcons */, + 3341B463C7AAB08F22F0B5389371DF43 /* UMBarCodeScannerInterface */, + 2191C74FA06634D487E5C1B63222D2F6 /* UMCameraInterface */, + 61287D14C556957A1880258EC8EE912E /* UMConstantsInterface */, + 1728CBAFA28070A0EC27649C08FC9BD3 /* UMCore */, + 37F8234912A45040223D42F693EC1B6D /* UMFaceDetectorInterface */, + CD48B149D9972E0125776A2E5A527B93 /* UMFileSystemInterface */, + 908D00B39A85ED602478564578D56854 /* UMFontInterface */, + 53F1F8E8FD2743E4D23D1255D8DA1DB0 /* UMImageLoaderInterface */, + 4307FB445AC0C17636AA7CE5879E46C2 /* UMPermissionsInterface */, + C223034CBE2B0C2C5902450772556182 /* UMReactNativeAdapter */, + B16F98C4D8B53BEA40ACD0FA3CCA3460 /* UMSensorsInterface */, + E25FD91E2EB975ADD22B778B601BBF8E /* UMTaskManagerInterface */, + D457ABAE04CAD64D37D65DD8786F986D /* yoga */, ); - name = BaseText; - path = BaseText; + name = "Development Pods"; sourceTree = ""; }; BEBBC7C90685EDCDEF2ED87E920884AC /* Firebase */ = { @@ -9902,94 +10105,101 @@ path = Firebase; sourceTree = ""; }; - BFFD8D97BE0D6DD2C1BC54EA4C12E4FE /* Pod */ = { + C0BAA9B77D0C5AC02ADDDF267CD93AC1 /* Multiline */ = { isa = PBXGroup; children = ( - FFA2615B8D18D4F02FFC7CC6E5B6627A /* LICENSE */, - 4083FFBE543F29BB03F3DDDA79273211 /* react-native-keyboard-input.podspec */, - D42482BCB582EC7B4ED4BF719CFF66B7 /* README.md */, + 941AF3DE8220D538FEFF4A0F824B2144 /* RCTMultilineTextInputView.h */, + 59FF9F743F83CEF089453F45ED782049 /* RCTMultilineTextInputView.m */, + AFF4BBE84511E470DA5AD69A14ECFDC6 /* RCTMultilineTextInputViewManager.h */, + C2896209A87724CEBFCBB3F31231DED5 /* RCTMultilineTextInputViewManager.m */, + FF37F127140A7FCD3B455BBD7A25A995 /* RCTUITextView.h */, + 508E12F1266054D661107D8E9C5B880D /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + C1A35C9176DABF7D8D5DCE521B4E5C3C /* Drivers */ = { + isa = PBXGroup; + children = ( + 687463618A2B560BAD5BB220756865F6 /* RCTAnimationDriver.h */, + 251DFC07BB02967486AF483D8E7039A9 /* RCTDecayAnimation.h */, + BB3EFEE1ADC779954C4623DE47E26783 /* RCTDecayAnimation.m */, + 92D5878FBCE5856B10322F4AB5E94A3C /* RCTEventAnimation.h */, + 422BACE03FD8BEA099D67A3084258ECE /* RCTEventAnimation.m */, + BE12ADD9ACF7EA325D21BC1C2E570606 /* RCTFrameAnimation.h */, + E4B12A8F9B292B97026D15BD63673687 /* RCTFrameAnimation.m */, + 415106B84BE8B3B374D54B9A254C6B55 /* RCTSpringAnimation.h */, + 9122224A67C7AF0701DBA9ADC88E3FDB /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + C1B387E471E6DD7B5335251350168C1F /* Pod */ = { + isa = PBXGroup; + children = ( + E9B1B21B1FEFB1B3293104C272351541 /* EXWebBrowser.podspec */, ); name = Pod; sourceTree = ""; }; - C2A317A33422EA8701E33F42718778CA /* Pod */ = { + C20AFD0572CE51E264BDBCFE8997580E /* Pod */ = { isa = PBXGroup; children = ( - 29ECBD992F48F807347DE2FF205FE26B /* React-jsi.podspec */, + 0FFE991C2193C651FAD761F4CE356136 /* LICENSE */, + 97BC3D796B6349E51B907E484144DD10 /* README.md */, + FD27B0891FC98D280DFD2F6C5267B543 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; }; - C2EBC4F707236924F704767627E2F877 /* Pod */ = { + C223034CBE2B0C2C5902450772556182 /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 3DAA212488FC35AB487CF1B683188AC1 /* advancedIos.md */, - ED70715DB4245A325FEE870DE50D9E42 /* installation.md */, - B508130F7FEFAB0E9FBD378D5828A4DD /* LICENSE */, - D8A92AC900C8EE2ACE985E552194AF9A /* localNotifications.md */, - 12230AE2D331D89188F39C3207835F7C /* notificationsEvents.md */, - C0FAEFFCC0C2258E88AF2ED638620158 /* react-native-notifications.podspec */, - 4C7883822072852E66EF6E3DC54D7A18 /* README.md */, - 2CFBE6BE9382F618DD04EA920A6BFE71 /* subscription.md */, + 41D1B0B8DAC1756964B592DB957E3B9C /* UMBridgeModule.h */, + 70CABA8C2234C2BCC0F66E560BF02110 /* Pod */, + B38AC948FD4420C6AD236B34978A11E7 /* Services */, + DCD8982632EBFD9544C4CAD34AEFBBD6 /* Support Files */, + 6DA38BF0648B359649FA02C61DE4D3D7 /* UMModuleRegistryAdapter */, + F0F8D1130261BA9A7D528360D54A829B /* UMNativeModulesProxy */, + 77751F5804C03F1457D66FC1F0FE6D18 /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + C3B995609C54F6393F98AF1E9A6F2EBE /* Reporting */ = { + isa = PBXGroup; + children = ( + A6D76F2D00E7D60E2F32A4A6287F0115 /* Filters */, + ); + name = Reporting; + path = Reporting; + sourceTree = ""; + }; + C3C0EA2BFE80A77562BB4E651C090DBC /* React-jsiexecutor */ = { + isa = PBXGroup; + children = ( + E8482DA36A3A6FB92A6B995FA7B5706C /* JSIExecutor.cpp */, + F3A36FE38AB6D366B4E2D7EBE8164660 /* JSIExecutor.h */, + 79D2D699B515D1A6161300A4102B73F2 /* JSINativeModules.cpp */, + B682050CB644B8EC3AB810BE6299787E /* JSINativeModules.h */, + 99844CC91F94D40BAB9580E44011A908 /* Pod */, + 81453A5CCCB4BC24F7D8BBC1E3FD0DE6 /* Support Files */, + ); + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + sourceTree = ""; + }; + C452F40EA54EF5B91E684AE5ECD361BF /* Pod */ = { + isa = PBXGroup; + children = ( + 19344F4BEA829CC16C242C22476F0C71 /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = ""; }; - C3061C09D07D70807BEF5EAE44CCA850 /* Tools */ = { - isa = PBXGroup; - children = ( - 982B1952DA9B1F43AAFEF3D3910FFA2A /* BSG_KSArchSpecific.h */, - B1DB15BB39EC55E9BE9ABA32FBE3BC9F /* BSG_KSBacktrace.c */, - 8846E321D64283AA8C5EEF8EE8946F4C /* BSG_KSBacktrace.h */, - FBF31FFE5B439D875AB3F113C0215E4C /* BSG_KSBacktrace_Private.h */, - 14B7415D8E7A28C61DA723E7FCCCFA3D /* BSG_KSCrashCallCompletion.h */, - 63DD64F26BCD0E6C32AD797E6DD5B53B /* BSG_KSCrashCallCompletion.m */, - 5B89B1D14136A7CA2628804BE9C56486 /* BSG_KSDynamicLinker.c */, - 4A40CFBCB4C54B5CE74D2BDAD70A3DB4 /* BSG_KSDynamicLinker.h */, - 75D70BF36B34FD199F67FC23C4B6994D /* BSG_KSFileUtils.c */, - E9A9B491BDEE4CB38A769E0DD6767976 /* BSG_KSFileUtils.h */, - 791A6B231A6E238C7F7ABBE6533B332D /* BSG_KSJSONCodec.c */, - A2AE548ACF39D12A7A53F40B6CC1D872 /* BSG_KSJSONCodec.h */, - 54E9EEB32B05D38D26FFC86255E22111 /* BSG_KSJSONCodecObjC.h */, - 7D17E791A9C3CB12EA886E8CD8E3BAA4 /* BSG_KSJSONCodecObjC.m */, - 931C7727C13AA2007E3DE043B5818309 /* BSG_KSLogger.h */, - 1B5250520068FC5103D996162252BC81 /* BSG_KSLogger.m */, - 597A092C9AADE755D202F8DEDA4F09A9 /* BSG_KSMach.c */, - 332993F348D811E714AE62A7A56CA335 /* BSG_KSMach.h */, - 2C30E17EA12ACB8B6F5C443D2316DD47 /* BSG_KSMach_Arm.c */, - A4AA3740063FC210165FEFFFD556F536 /* BSG_KSMach_Arm64.c */, - D551633C61DEDAE1E3344A9ECE6F793F /* BSG_KSMach_x86_32.c */, - A2D5C5DF3E1D6324CEC904F0169FF0BF /* BSG_KSMach_x86_64.c */, - EA0D26BCC50CA0C4555A20BF13D4D289 /* BSG_KSMachApple.h */, - A29721BB2C019164742577C5A3B5D834 /* BSG_KSObjC.c */, - 2ED59E162A1DCFDB2E12C589CCC8468F /* BSG_KSObjC.h */, - 9A827F42A30BA8D2731F1CC960D38119 /* BSG_KSObjCApple.h */, - EF884F76A144C84E03A92EECE93EED99 /* BSG_KSSignalInfo.c */, - F5380D71214BC40A7BB2F2B6A1378F25 /* BSG_KSSignalInfo.h */, - 622447CE5B364B130ABF79AFE5A2542F /* BSG_KSSingleton.h */, - 1CAB77C66A90FFCF732F5BA30DA664EA /* BSG_KSString.c */, - A1365AA21636B434C7B1D5D85D82B361 /* BSG_KSString.h */, - 4DD5931CE4B3A6347501D2A2BC95B0F0 /* BSG_KSSysCtl.c */, - A5E862A6FB290418396AD70B448B38AF /* BSG_KSSysCtl.h */, - 2D900897C65B4848883E1685FFDBB206 /* BSG_RFC3339DateTool.h */, - 01540262B7BE60B5BDA737C324E7A811 /* BSG_RFC3339DateTool.m */, - 45E43B0DF9CA11B47CACF6EDC361606D /* NSError+BSG_SimpleConstructor.h */, - F1DB238264B356DBCF97C556B17C2616 /* NSError+BSG_SimpleConstructor.m */, - ); - name = Tools; - path = Tools; - sourceTree = ""; - }; - C4B523A9810C764F8993532B9FF5ED67 /* event */ = { - isa = PBXGroup; - children = ( - 920F81FF3145EDF910F5032F97DE0180 /* event.cpp */, - A130F40E25443B64CCA4DACF74DFCFAD /* event.h */, - ); - name = event; - path = yoga/event; - sourceTree = ""; - }; C583B66EEA8DFB10208A0D1AAE9CFD4E /* encode */ = { isa = PBXGroup; children = ( @@ -10006,16 +10216,6 @@ name = Frameworks; sourceTree = ""; }; - C6ADFD8D141177E5AF2DA0239B204EC8 /* analytics */ = { - isa = PBXGroup; - children = ( - 501DA347A5F15080B7D877AA7572C3EA /* RNFirebaseAnalytics.h */, - CC63BCF403D3C98F6670A4F7FAA83EDF /* RNFirebaseAnalytics.m */, - ); - name = analytics; - path = RNFirebase/analytics; - sourceTree = ""; - }; C6B6295D141A8B0B368F6EE6E4381EDD /* Support Files */ = { isa = PBXGroup; children = ( @@ -10026,18 +10226,107 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - C88EDD29BF2A48FD670F2B85B452AB84 /* Pods-RocketChatRN */ = { + C738539A7F723BCDD16EE83E7F2432B4 /* Sentry */ = { isa = PBXGroup; children = ( - EA6877812ACC5E84E4F624F54913161A /* Pods-RocketChatRN-acknowledgements.markdown */, - F3C5076ADBAB787FE62AC09CB44B4A9C /* Pods-RocketChatRN-acknowledgements.plist */, - 133D81C69EE4A8C014E0D2D3D6ADBDC6 /* Pods-RocketChatRN-dummy.m */, - 28EC3C01032D02EAFE02322B0CB3FC71 /* Pods-RocketChatRN-resources.sh */, - 7C6A7F35A722F51724595F8DFE814079 /* Pods-RocketChatRN.debug.xcconfig */, - 1B6AF5E20CB5B9563AC579F8BDD184D5 /* Pods-RocketChatRN.release.xcconfig */, + 499D27264EF29DC10DA9F2C47227627A /* BSG_KSCrashSentry.c */, + F81F6E5F778A38D830BF3018D912F519 /* BSG_KSCrashSentry.h */, + B2E6E90D013EE6988A88B9AB64CFAD28 /* BSG_KSCrashSentry_CPPException.h */, + 32D22A609AD24CD438DE5B86E343B199 /* BSG_KSCrashSentry_CPPException.mm */, + 7506AD2E9B83A6BF1F161BCF2DB51B97 /* BSG_KSCrashSentry_MachException.c */, + BB609D11B4B6606C1AF8C43D93758476 /* BSG_KSCrashSentry_MachException.h */, + 14491EE39D97F484A441EFF26F372928 /* BSG_KSCrashSentry_NSException.h */, + 0A43456D7886D8B44C8FE665CDD1CE84 /* BSG_KSCrashSentry_NSException.m */, + 98C28768FFCC38D5C0BCD109E6F85619 /* BSG_KSCrashSentry_Private.h */, + 3F8D0A17FC7CBE3B7CC5ECA0B8F25E27 /* BSG_KSCrashSentry_Signal.c */, + 3A9BCD8378FF46659F9EFFDCBECCE1B7 /* BSG_KSCrashSentry_Signal.h */, + EC22EBB12E0B6E021B23196B4859D2A3 /* BSG_KSCrashSentry_User.c */, + 60934FE549C8F5591B988B0A80CA3BD1 /* BSG_KSCrashSentry_User.h */, ); - name = "Pods-RocketChatRN"; - path = "Target Support Files/Pods-RocketChatRN"; + name = Sentry; + path = Sentry; + sourceTree = ""; + }; + C747AD8CB9B72CFC91AA1306B829B3DC /* RNFirebase */ = { + isa = PBXGroup; + children = ( + C47DDEED9B1A3F93884682943889FC1B /* RNFirebase.h */, + 8AC1E4B12462B72D713A36AEA3E12AC1 /* RNFirebase.m */, + B2FCB87EB44E1F15BE76EC4FDED9BC12 /* RNFirebaseEvents.h */, + 19BCE5B8A3DEDC45656C07663920AC26 /* RNFirebaseUtil.h */, + F2FD8C660F36827E09952C3F55FA7319 /* RNFirebaseUtil.m */, + 2A4F68CA7BD54C1DC76D3D8057C8DB3D /* admob */, + 73058C26B11D8E1A21E8187EA208CCF9 /* analytics */, + 9EA2D12F46C3327F07226B736125B630 /* auth */, + FB5467310CAB2204A2C4B655A819437A /* config */, + B69F95A6A41C302AA1C4C04B3CAD6B30 /* converters */, + 31CAA0F7A8152E8A942F303957B82F28 /* database */, + 012E7716D306E2571E9DB9C46A3C4982 /* fabric */, + 0884C44E154A9CC88452272B7747FE1D /* firestore */, + 645A33D1CC6CBF709615E9722C5DD0E0 /* functions */, + FBFC8E99B3755B8758A0CA878A86022A /* instanceid */, + 4493616524B0F5132FD6983AE93D69B4 /* links */, + 3E79B625954E0DBCC096167454334468 /* messaging */, + 9049929BE641639C0FCB8BD563D6F1E4 /* notifications */, + 83CC5DDD7DF1EC8D24D705F59EE8A20B /* perf */, + F19284502EDDE6522651C5AC73A30436 /* Pod */, + 88AEB73307FFB01BFF8511D421E62B55 /* storage */, + 881870AA36D3169995B0A0A53B2B5CDA /* Support Files */, + ); + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; + sourceTree = ""; + }; + C796387BDA99174AFE7754EA2CF28AD1 /* UMModuleRegistry */ = { + isa = PBXGroup; + children = ( + 697630C007DF85B31C9DFEB788311FB2 /* UMModuleRegistry.h */, + C7862FBB7BBD683B4C08C8F937779A58 /* UMModuleRegistry.m */, + E0DAF39DAB7C2ECA8C91B6B7FE9018EF /* UMModuleRegistryDelegate.h */, + ); + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; + sourceTree = ""; + }; + C7E78A311C2DFE1AEFDCE141158A2085 /* React-RCTNetwork */ = { + isa = PBXGroup; + children = ( + 30AC1D39D7B7700493542DFE95B13B43 /* RCTDataRequestHandler.h */, + 9A10BAB773E05B8D2043F607334C37BF /* RCTDataRequestHandler.m */, + EF763750AF778D7EE9F54536C64BB462 /* RCTFileRequestHandler.h */, + 29EA2CDD8CFD0AF7275BE306600DF214 /* RCTFileRequestHandler.m */, + CA8AB657CF9F990F230F790DB4363685 /* RCTHTTPRequestHandler.h */, + 53452575AB7F2DC8DA4C08DF45827CD7 /* RCTHTTPRequestHandler.mm */, + 9F609AAEA9F899181439682595E51378 /* RCTNetInfo.h */, + 9148899A1C48889C61F22524C7F50005 /* RCTNetInfo.m */, + DA8EE343D625B06EA1359870A66259D3 /* RCTNetworking.h */, + E70C4358D1AAF6D073CE5C82AA2DE2C9 /* RCTNetworking.mm */, + AE305BBA4B4D5D9726E7CC223C084137 /* RCTNetworkTask.h */, + C498FB493BEE96977D34DFE02F30FFB3 /* RCTNetworkTask.m */, + 2BBAB8922EE3BFBEC826CD5E2C6AF9A7 /* Pod */, + 7869F110BC428BC123DAFE30C2F33062 /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + C80341A06339FB189F00E7F946112F03 /* Support Files */ = { + isa = PBXGroup; + children = ( + 729F00B4AE6BE50E6FFAA94DD7D03BA9 /* UMFileSystemInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + sourceTree = ""; + }; + C8EA1E851C92B3752DD521488027936C /* Pod */ = { + isa = PBXGroup; + children = ( + 2045BF999D43E1474FCCCF1E3765A3C3 /* LICENSE */, + 5AC309036911C708E5779FB6FB6BE88B /* README.md */, + 6B024A3A6395910ED00711DC5F7A095D /* RNFastImage.podspec */, + ); + name = Pod; sourceTree = ""; }; C999D80ACEB1C4A286BD9D195D4ADB09 /* FirebaseCoreDiagnosticsInterop */ = { @@ -10059,30 +10348,12 @@ name = Frameworks; sourceTree = ""; }; - CA1A0B077484A5E99F3EBE5D9D7222DC /* storage */ = { + CAEEDA2952F932216CC8A3184C467C93 /* Pod */ = { isa = PBXGroup; children = ( - BDDBDAF6207AA1DBE3B3466D2F6E0BC1 /* RNFirebaseStorage.h */, - 0D839DDD908D5A35E945C2D2C1C01642 /* RNFirebaseStorage.m */, + D1DB022E784A396954AF9BCA82930E67 /* EXAV.podspec */, ); - name = storage; - path = RNFirebase/storage; - sourceTree = ""; - }; - CAF354E9AA3B88ACEEE6FB9BD5973318 /* Services */ = { - isa = PBXGroup; - children = ( - 4BFF973C124E8B4565E4200E1D8C576C /* UMReactFontManager.h */, - 14F859B7957DD7546A15A1F25F252699 /* UMReactFontManager.m */, - 1E091D581070158B0DC9427D4CEE20C1 /* UMReactLogHandler.h */, - A22904A6B607BB3328CA81EA8BA06B04 /* UMReactLogHandler.m */, - 2A6B67A7E1B245CD408B9447AFDE7E9E /* UMReactNativeAdapter.h */, - 7AC6E015E77D9CCA0F136E7CFFBADDF1 /* UMReactNativeAdapter.m */, - B84D2982DEAEA03D530758B19372E573 /* UMReactNativeEventEmitter.h */, - E2332CD7E54542E64BD8F81B0A828FC0 /* UMReactNativeEventEmitter.m */, - ); - name = Services; - path = UMReactNativeAdapter/Services; + name = Pod; sourceTree = ""; }; CB9AB95A7270461AFF98F2B913F50089 /* Environment */ = { @@ -10094,60 +10365,77 @@ name = Environment; sourceTree = ""; }; - CD829569FB8ADE8A92CC7CBB60EEF27B /* React-RCTNetwork */ = { + CBAFDC32AF776EEC1C09B32468DD4410 /* Support Files */ = { isa = PBXGroup; children = ( - 022CFCD0C8B28302982523E1354EF66E /* RCTDataRequestHandler.h */, - 231D2C064C5F9EF7D93CE133E632ABB1 /* RCTDataRequestHandler.m */, - AFB2B3C562A4DD0E0A06A2587567AA1A /* RCTFileRequestHandler.h */, - C7E715E22E69D4EE2459C743522B9C7D /* RCTFileRequestHandler.m */, - DF598D7B902935C20BC99B640D5DCDDD /* RCTHTTPRequestHandler.h */, - 49DBD2947B82EAF484EF348C380C212A /* RCTHTTPRequestHandler.mm */, - 0AA9730B7989374CA918AD32D3CD21C0 /* RCTNetInfo.h */, - 30FEAD4E0D7A410C4D7FED571C4FCF6D /* RCTNetInfo.m */, - E4BE6D5F11E8147A1D317860401A4EC7 /* RCTNetworking.h */, - 90406E98007D839481A26DC833A3A655 /* RCTNetworking.mm */, - 77A09B1089939BEDA67A9A2897A6F521 /* RCTNetworkTask.h */, - C526D4C020A0B5F63BEF6CA55982F818 /* RCTNetworkTask.m */, - F54F921AE4E82439AC59A109CA43744A /* Pod */, - B54FF33114E5BB127807E80359130972 /* Support Files */, + 168BC584847C8AA9E4E4EF4D89EFC6A4 /* yoga.xcconfig */, + D7C3A66C114C883258850DF55F4C5441 /* yoga-dummy.m */, + 9779FDF054553597E0F44A328B9082F5 /* yoga-prefix.pch */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/yoga"; sourceTree = ""; }; - CE2FBB15036E816BA4A9D28D31F09550 /* React-RCTImage */ = { + CC01ABCF0C3AC82DA89AA5C8DFEB256C /* event */ = { isa = PBXGroup; children = ( - 3ADC7F0E3D366BF82C463A156BC27FE7 /* RCTGIFImageDecoder.h */, - 132D66808B8719CCF13044D3C81AE38C /* RCTGIFImageDecoder.m */, - 7F886F2C3D77AACC13926EF61016B900 /* RCTImageBlurUtils.h */, - 420C0C04F3AD35F2F48B537FA82DB6CA /* RCTImageBlurUtils.m */, - 49958BCC063FE3B129EDDB0730E71D3E /* RCTImageCache.h */, - AB2FB23EDDE166E0FEBFA4C23BD219B7 /* RCTImageCache.m */, - AA2FE4B436059D99702DF34C9DC7631A /* RCTImageEditingManager.h */, - 2E99A247FF362A3036165E3EA86CA31C /* RCTImageEditingManager.m */, - 619240AFCDA7BD6823699E7938D676C6 /* RCTImageLoader.h */, - C81F4BC5C38691605234C6277B7564BF /* RCTImageLoader.m */, - C68332FB6B755785B62085DB326634DD /* RCTImageShadowView.h */, - 6E182239D2346FAEEABD8411EECD84CC /* RCTImageShadowView.m */, - F31AD7BF52A146E29E6BB9BDC4025CF6 /* RCTImageStoreManager.h */, - C5B4DDE044870DB60696054BAC58F466 /* RCTImageStoreManager.m */, - F3669661A845757A8517FA6D29D614C0 /* RCTImageUtils.h */, - 3DF59EDC13D03C66AD48DF06A86E0C86 /* RCTImageUtils.m */, - 3E02A24E0E1DB031AD667AAF4F45AF40 /* RCTImageView.h */, - 4A4CAD0EFE35D1A9FA2CD6373FDEA1FB /* RCTImageView.m */, - 031F4624FACA06DEC3862B303A0FA5B1 /* RCTImageViewManager.h */, - 32D3029877A397EEA448612A552EEB10 /* RCTImageViewManager.m */, - 5B64A04FE13450C5B8900B608418D8FB /* RCTLocalAssetImageLoader.h */, - 2E9737B186AF79F41EBB06228EEE1CBB /* RCTLocalAssetImageLoader.m */, - 64ABA3879AB446D6747F4DC018C6103B /* RCTResizeMode.h */, - 7FA14F40717D8B8385C1136FD2491099 /* RCTResizeMode.m */, - 0FBE2109AB2122F5034B094A6E81706F /* Pod */, - 2F6722076D8D35554707A3808D8AFE80 /* Support Files */, + D80C016928E74B72A4E015DB46C8714A /* event.cpp */, + D485F8551EF24A8C30597F66D9C6EE45 /* event.h */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = event; + path = yoga/event; + sourceTree = ""; + }; + CC0428366C8AE2959E7E6469AA07F49C /* Support Files */ = { + isa = PBXGroup; + children = ( + 264627E3CA89FF063B3D63B1E87F5CBD /* UMFaceDetectorInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + sourceTree = ""; + }; + CC5F4AC6243C175E8B5C9549498380F8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 28047A71A7C8EAD479869C5F7CF5A930 /* UMCameraInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + CCAC0910EC5CD4DEDB09F9773367099E /* Support Files */ = { + isa = PBXGroup; + children = ( + 51BEE34DA24C1ED0427C0897FC68DCAC /* React-RCTLinking.xcconfig */, + 5C27057AF391381E4DE51869FA94A731 /* React-RCTLinking-dummy.m */, + 877DB851BD98248DF823BF79C91880E1 /* React-RCTLinking-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + sourceTree = ""; + }; + CD1E7BEA90435E237E5DD315EC135E9B /* Support Files */ = { + isa = PBXGroup; + children = ( + 2FE9C10127545E3D0A0F331A65C787A3 /* React-RCTWebSocket.xcconfig */, + D2AA72ED8546908D4F8336C255B8CE4E /* React-RCTWebSocket-dummy.m */, + 4037A75865A518439474ABACE494CF97 /* React-RCTWebSocket-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTWebSocket"; + sourceTree = ""; + }; + CD48B149D9972E0125776A2E5A527B93 /* UMFileSystemInterface */ = { + isa = PBXGroup; + children = ( + 9B91099D2AEF3B2302E8D342AB57B68C /* UMFilePermissionModuleInterface.h */, + F3A7B051965DD33E6881F878A97E60E2 /* UMFileSystemInterface.h */, + EC9FED22D55CBB7250CA0F3D03E10AD0 /* Pod */, + C80341A06339FB189F00E7F946112F03 /* Support Files */, + ); + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; CE3D4958A792E4F7FA482DC98263158A /* MethodSwizzler */ = { @@ -10160,42 +10448,15 @@ name = MethodSwizzler; sourceTree = ""; }; - CE8CE412A5D8BA94BC0E4FFEF3E8294A /* RNGestureHandler */ = { - isa = PBXGroup; - children = ( - BD23916AFAA058F0A9696D3A26E1C8DA /* RNGestureHandler.h */, - 8854EE94C4B9639731F8AD32105EC728 /* RNGestureHandler.m */, - CD375913032DE7CAB1F6C2DB3A3E6795 /* RNGestureHandlerButton.h */, - 74A72B0F6F907EF4664ADEB181511616 /* RNGestureHandlerButton.m */, - FC9CBC2B6CC5EBDAFC6BA6101E45C570 /* RNGestureHandlerDirection.h */, - 8FE26F74E4AF68B412098BFE43F871DD /* RNGestureHandlerEvents.h */, - F9740480210214F5412743F3E731F9B0 /* RNGestureHandlerEvents.m */, - 571DE2951B52C0AB1AB5D42DF89836BF /* RNGestureHandlerManager.h */, - 7BE06D1FF5A95967E0D74510E562C170 /* RNGestureHandlerManager.m */, - F15869426D11B272A7275D1AB8717116 /* RNGestureHandlerModule.h */, - 5A5F8D1A7D44B13565A9FFB33E0395B0 /* RNGestureHandlerModule.m */, - 75FBBA7B1735F957D6877E397159EA40 /* RNGestureHandlerRegistry.h */, - 823DD12AA0380A017C2B16FCEE027188 /* RNGestureHandlerRegistry.m */, - DC112C53F96F285D1668593F36345BF1 /* RNGestureHandlerState.h */, - BE1765E934F0CB1320E80D2D366A0A86 /* RNRootViewGestureRecognizer.h */, - 7F95DEDB8AFA6FC858386AA423429A89 /* RNRootViewGestureRecognizer.m */, - 6366BD88859832F97BFB50D7B9F841A9 /* Handlers */, - 360AE6927602FD58291A669CE38321AD /* Pod */, - 05633C0C29B7A4FF64F340E5B6D3C21D /* Support Files */, - ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; - sourceTree = ""; - }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - FB4527B80CFA3C49629841692C14442D /* Development Pods */, + BE94C555533125878604E288001FD1B7 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 33C9409F639F73DC93A67940BDF8D840 /* Pods */, - 30288CEEFFFE0488B222534836B28DC4 /* Products */, - 06D60C769F7D115AFAD59B48B3198638 /* Targets Support Files */, + 99AB89F67490DB2C16299F020D76090F /* Products */, + A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */, ); sourceTree = ""; }; @@ -10211,26 +10472,12 @@ path = "../Target Support Files/QBImagePickerController"; sourceTree = ""; }; - D0CC5202A351ACFB8539D7338BA5D901 /* config */ = { + D14ED12A64554F9B10A97CE4977C0A25 /* Pod */ = { isa = PBXGroup; children = ( - DE03D9FE21418C384A041C003CF109E9 /* RNFirebaseRemoteConfig.h */, - 610F587792BBD58CB1FC5F32F1550EE5 /* RNFirebaseRemoteConfig.m */, + DA47388D7B36ABE711476E64975F9781 /* React-RCTBlob.podspec */, ); - name = config; - path = RNFirebase/config; - sourceTree = ""; - }; - D0FA12C3E2F386DE1C73EFEDE5875444 /* react-native-orientation-locker */ = { - isa = PBXGroup; - children = ( - BA47E1AB9713F7C4AE14F03CE2D408C9 /* Orientation.h */, - 794F398AE48A71724FAED5208DF62376 /* Orientation.m */, - AC8BBAF4F03AA256FF10BF4ED9F0068B /* Pod */, - 68A217F6753A35AA94F5A183E34A789E /* Support Files */, - ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = Pod; sourceTree = ""; }; D19455872FB15489DD771F9A2BE619D0 /* FirebaseCore */ = { @@ -10280,18 +10527,6 @@ path = FirebaseCore; sourceTree = ""; }; - D1A291329FBF5B30ECBC2F3427CFEEF2 /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 6DDBCB93DE0FB3BAB971C7139DCEBE9B /* UMModuleRegistryAdapter.h */, - 3469FCFD202AD0C2E94045784670EF65 /* UMModuleRegistryAdapter.m */, - 137047C22AD58DB8437668E4B125ECCD /* UMViewManagerAdapterClassesRegistry.h */, - 0530099C716A8EB6503416538DB3B44E /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; D1AEA38D2B2426BE7B6D4C633467CC32 /* CoreOnly */ = { isa = PBXGroup; children = ( @@ -10300,141 +10535,272 @@ name = CoreOnly; sourceTree = ""; }; - D2F49E1B629FD6EF9FC331EC0450CDD9 /* Support Files */ = { + D21CAC46D5080E5FE4A1BB2C5ADFCBD5 /* Support Files */ = { isa = PBXGroup; children = ( - 64DAE394E5B04C3D3AA1B2EA1AC8D81F /* React-RCTBlob.xcconfig */, - 1C9799FE0ACF8696D712F656800623E2 /* React-RCTBlob-dummy.m */, - EFE2FD15BE5020AC4747EDF89CD765EA /* React-RCTBlob-prefix.pch */, + 948C15B9A14B1A6781E66C02F2C25D40 /* React-RCTBlob.xcconfig */, + 53AD96F742031216D199795FDCA006E6 /* React-RCTBlob-dummy.m */, + A5C764272FFA2507B08277CD008843DE /* React-RCTBlob-prefix.pch */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - D311174B7581C6D984DAA3699B5CB70C /* Pod */ = { + D22387F6959A46A913E40F7B3C04CD41 /* Pod */ = { isa = PBXGroup; children = ( - B47D7A230A67DE5298523663C70F0294 /* LICENSE.md */, - F4928DF82D05510E53AD9F1DFD6B83A9 /* react-native-document-picker.podspec */, - 136A03F8D90B42FA3AEF1B7879402E4F /* README.md */, + 0B24CC8C3D210BC523B3DD0BE23BC13D /* LICENSE */, + D6B39A9BA3D8203837C0D1ACEEC8955E /* react-native-orientation-locker.podspec */, + 63DA4EFB401FBD831BF7AB26877AB18D /* README.md */, ); name = Pod; sourceTree = ""; }; - D36D613424E988BAE13D9109EF8DEB52 /* Pod */ = { + D2E2DD44487B6B0D39C4299AECCDAB36 /* React-jsinspector */ = { isa = PBXGroup; children = ( - 190B39B2BCBBB090E039108CCF79F99B /* BugsnagReactNative.podspec */, - 7C383BB8D6B0229E2C04380E8A8FC6BE /* LICENSE.txt */, - D70DA07B5B86A16EBC43B4326A0DD7A1 /* README.md */, + 456416B87038CE170CAF2CF1F57AC055 /* InspectorInterfaces.cpp */, + 1C1F8AFC604B3356FCE25B2C9E320C0D /* InspectorInterfaces.h */, + D746756E9F53747A0CA0210413492CDD /* Pod */, + DDC7997E3952A6119EAD97983918D15D /* Support Files */, + ); + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; + sourceTree = ""; + }; + D3CB4D98C8CBE16E41C674EDFDF65DEC /* Pod */ = { + isa = PBXGroup; + children = ( + 7B96FCD0CCD67D47B879B332898A0DA6 /* LICENSE */, + D5FB90ADAABF5B54EE2A15E293A2D37A /* react-native-webview.podspec */, + 3733FB3C7C5D33FF3292EC67BA954C02 /* README.md */, ); name = Pod; sourceTree = ""; }; - D45B6A60C8EB2941E07DBF127B7820FB /* RawText */ = { + D402EB162B0E3788409C7DB9190C3D75 /* Nodes */ = { isa = PBXGroup; children = ( - 99DCD3614E282090E7250B5BD934C20E /* RCTRawTextShadowView.h */, - 0EDCA680F15EA3ED9E16BED5412A64A9 /* RCTRawTextShadowView.m */, - 5E72F6D921E8C03017B8E299745BC2BC /* RCTRawTextViewManager.h */, - 1A405E78316A37BA2B6FEFC263A2C429 /* RCTRawTextViewManager.m */, + 0CBA8964059EB1D1854795BDA2C4588B /* RCTAdditionAnimatedNode.h */, + 2CEC55A3763010026891A04C8CE2BE4A /* RCTAdditionAnimatedNode.m */, + 703970B1B193B0EA03638143A9243173 /* RCTAnimatedNode.h */, + 90D0331B6ECD67074D5C6B5F153299A1 /* RCTAnimatedNode.m */, + ABECFADA9EF56F58E2A69627E44883A1 /* RCTDiffClampAnimatedNode.h */, + 89A9B5EA8A4FE3100AA1130113C19B7B /* RCTDiffClampAnimatedNode.m */, + 455345707B9594E55B61072B9BC26AB9 /* RCTDivisionAnimatedNode.h */, + 622DD7BE05BA9BC106F0720371AE8861 /* RCTDivisionAnimatedNode.m */, + 4BB2811C4490F510BBE8BB3B10F6D5CA /* RCTInterpolationAnimatedNode.h */, + 63FA144522A696672C75B1DD92440CA3 /* RCTInterpolationAnimatedNode.m */, + 6DEC88E501155A55D21E40A2250752EB /* RCTModuloAnimatedNode.h */, + AB0E6202D1AB7C3808889080FC2FDC94 /* RCTModuloAnimatedNode.m */, + 9C6B3257A1B3939D9E977D9F6FFA4736 /* RCTMultiplicationAnimatedNode.h */, + F21E920ABF45D0B185C49B87B8E9DBE0 /* RCTMultiplicationAnimatedNode.m */, + B81B5C1E9096D7C7C3655525CE908F99 /* RCTPropsAnimatedNode.h */, + 37A2DE1145CB7CA20CA5B6D7186B83E0 /* RCTPropsAnimatedNode.m */, + 6433CF6BBB295F0113AD3FD7F278EA57 /* RCTStyleAnimatedNode.h */, + 1FA63AC798C8D16B8E5AFF307AC7FBE2 /* RCTStyleAnimatedNode.m */, + EDEDD8177905AEA37E63317B46731C67 /* RCTSubtractionAnimatedNode.h */, + 13C596C30890080A7DB9124E9B935A31 /* RCTSubtractionAnimatedNode.m */, + 68F3F2A91FE025FA73D7C552E1DF6AD1 /* RCTTrackingAnimatedNode.h */, + 5E6A2EEFCD2C08BC72D51C3419724982 /* RCTTrackingAnimatedNode.m */, + 31FDD552F5F96C5238EECB2D3B521AA8 /* RCTTransformAnimatedNode.h */, + ED26C5F91999DD00D3AD9FCE68FD4D97 /* RCTTransformAnimatedNode.m */, + 1EAB86F2F778BE56ABFD7EDB028AF526 /* RCTValueAnimatedNode.h */, + 37A4702F0BD62D18A312AE3E9EFBAEB7 /* RCTValueAnimatedNode.m */, ); - name = RawText; - path = RawText; + name = Nodes; + path = Nodes; sourceTree = ""; }; - D45E86766D3423FCC6CE6EBFCBB4FABC /* BugsnagReactNative */ = { + D457ABAE04CAD64D37D65DD8786F986D /* yoga */ = { isa = PBXGroup; children = ( - FBD11BE4B0DC960A0D764818A7B71B5A /* BugsnagReactNative.h */, - 8C8304F6F6A42886BF8392CA4C225495 /* BugsnagReactNative.m */, - 16A8900C04B80A7A4D7D6184F70F2FF8 /* Core */, - D36D613424E988BAE13D9109EF8DEB52 /* Pod */, - 4D0E8DB4FFFE9AA02707EEAB19B56D49 /* Support Files */, - F628AC9BE61AD3F323BEC80CD31E3E7F /* vendor */, + 935E1393E28C453F19A0713846AB9F77 /* CompactValue.h */, + 2394872D80ABE2A3E447D3D37A2D5B8B /* instrumentation.h */, + 3DB600F0912A7A471532BB4EDECD8773 /* log.cpp */, + 1F85465DCC92F826D781C30292A8793C /* log.h */, + 20320D54C90D9498781B00281EF43847 /* Utils.cpp */, + 1DED6959A771B78E9D584A0500D0BC8A /* Utils.h */, + A8E81D276B0287A8A94F23EC14D6BF7D /* YGConfig.cpp */, + D906BD929624467916DC240B348D1692 /* YGConfig.h */, + D288E2A1097B53A8164134F5F857B4E1 /* YGEnums.cpp */, + 60E891188C809F6BE4A3DDDEBD9C582F /* YGEnums.h */, + E948A283AF7354176E80AB7BC1487B91 /* YGFloatOptional.h */, + D024EDD7A19B58B083A5F08467CE0E56 /* YGLayout.cpp */, + 18E073ABD2467D5EF4850F2B24D7B8DB /* YGLayout.h */, + 4BCF26E3672EDBA23882856B903F4EC7 /* YGMacros.h */, + BDF5CB6940FDAC51C6171F10ECD1B36F /* YGMarker.cpp */, + 5CD671CE3FE34A0220E925FF2F5A8C38 /* YGMarker.h */, + 9C592674961DC56ECA89C887EF3828D0 /* YGNode.cpp */, + 73C659602438CE11DDEBEA800A566F34 /* YGNode.h */, + 9E13839B7DD3DF4506B1A2E0861DBEB5 /* YGNodePrint.cpp */, + BE16E82029C2739CE2BAA085DDD41D14 /* YGNodePrint.h */, + F89BE1EC7DD1BDD21694A3D0647ACFBF /* YGStyle.cpp */, + 16FB3E08C3FEF813548C1EA43F017B43 /* YGStyle.h */, + 56ECF21D11C9C9E4B6DE55A85E0F4E31 /* YGValue.cpp */, + 48721A6E7C8C85D6419278A858BCDE17 /* YGValue.h */, + D3033F24512A5200D8C8ABB1E14708B2 /* Yoga.cpp */, + F92DAC8DC9779886C671F52A564D5D03 /* Yoga.h */, + E452EE71B0D65F04F03C121CE00B5402 /* Yoga-internal.h */, + CC01ABCF0C3AC82DA89AA5C8DFEB256C /* event */, + 102D3CBE8D7284AEF802D96B1CCFFF6B /* Pod */, + CBAFDC32AF776EEC1C09B32468DD4410 /* Support Files */, ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; + name = yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = ""; }; - D554CCDA6C209DB3B9EF3CCEB870F9F0 /* Pod */ = { + D49849E17C5182572413E6F52B9300AD /* Views */ = { isa = PBXGroup; children = ( - CF048C95D5122E0A16C539A49E55CA60 /* LICENSE */, - 8033335E7CF5A4C21E23EA75FB3D9674 /* README.md */, - 009429EC337E03ECB8005FF0396A3A28 /* rn-fetch-blob.podspec */, + 4499EA7D87C44ABF1458DCDAB7D3AA70 /* RCTActivityIndicatorView.h */, + 0EC34F75309538B87594A874F3971B09 /* RCTActivityIndicatorView.m */, + E5DAEED7D21C3CD3C680F45049759D63 /* RCTActivityIndicatorViewManager.h */, + BC14F81C35A7DEC275C3C657C90F0F08 /* RCTActivityIndicatorViewManager.m */, + 428A1D327B3327C99AFB3092BB4A1BE8 /* RCTAnimationType.h */, + D746FDDD11CAF672EB2AA51FC25354C3 /* RCTAutoInsetsProtocol.h */, + C2CEB6F8E1B93CE6EEA4C1852A0A9073 /* RCTBorderDrawing.h */, + F4B58832064071ACBD7251BB2A6F5892 /* RCTBorderDrawing.m */, + 545580904F78D61C86BDA5B749BAEF46 /* RCTBorderStyle.h */, + 4E22282651D6D0177D40817A41080173 /* RCTComponent.h */, + D39CF967EEEAD5D89855FC52FFD75784 /* RCTComponentData.h */, + 1CD142CEFBACF1123E791728807877E3 /* RCTComponentData.m */, + 46ADA497AAC08B11E14E1F4F58BE2A45 /* RCTConvert+CoreLocation.h */, + 85CF7F9C43282732DAFA120ED02BF0E6 /* RCTConvert+CoreLocation.m */, + 233590D394D12ACF3356DF3BCF908DB8 /* RCTConvert+Transform.h */, + 60625989737D772D3B5D6C52D8F19925 /* RCTConvert+Transform.m */, + 1CFC4DB191E446CD097041E840E96E48 /* RCTDatePicker.h */, + 832F5D23BA28870CF39BD6B771ED421E /* RCTDatePicker.m */, + E36AF35E5A5A6E823912944F985493FA /* RCTDatePickerManager.h */, + 74CB1D6C74256DCCCD5BDF15C7FDF186 /* RCTDatePickerManager.m */, + 0303AC8EC9DAAF86ACF000364BF78BC1 /* RCTFont.h */, + 6CCDD182FE0740DAADECB9AC2F3B85D3 /* RCTFont.mm */, + 274E5834A4D232E7A92B9C0AE2133AF5 /* RCTLayout.h */, + 5D1D9612CFC3F7BF5A5A847A28912153 /* RCTLayout.m */, + B09A88DCBF1EFF9247669014E3BFC939 /* RCTMaskedView.h */, + E225BF1A9FD04A4C2C0BB57A11862C9C /* RCTMaskedView.m */, + BC6CC339E61F24B33C25C89895114DD7 /* RCTMaskedViewManager.h */, + 89128E6085BE8D56C72155DEE4E25630 /* RCTMaskedViewManager.m */, + D92B00F4DF1037F5CF8C741C74F79CEB /* RCTModalHostView.h */, + 6C59428AA55B9222664D79843A9E1121 /* RCTModalHostView.m */, + CC2C4A2098DE5C85A5A3D1EBFA967B98 /* RCTModalHostViewController.h */, + 5FE031C31C8DAA0D545D0A5C1A575386 /* RCTModalHostViewController.m */, + 9F66E6A960080EAA49A7DC83DBEA1ED6 /* RCTModalHostViewManager.h */, + 673A6DF628A51A741726FA57E0DACA5A /* RCTModalHostViewManager.m */, + 135F810F48ED93CD559F9F7E1470BE5C /* RCTModalManager.h */, + 03E32183BDA63E2FFDCF3C69D0F4A9A9 /* RCTModalManager.m */, + 3FE75D7025F932EA0AEE68A5222294E9 /* RCTPicker.h */, + FB8494725B775BF5C7CF2B8F59044F5C /* RCTPicker.m */, + ADB13650538B6D017FCD789F4778D483 /* RCTPickerManager.h */, + 3834945D9DC81E20AE13AFF8520282FF /* RCTPickerManager.m */, + E4E71B5B22CFDF5D7F07394422E1E362 /* RCTPointerEvents.h */, + D32900CFE7B190CD21110C1C44F7545C /* RCTProgressViewManager.h */, + A087FCD759D456A8D0F0A36084D1BC27 /* RCTProgressViewManager.m */, + 2ECAECEF6E93CB8910FD7EF1C03CA0A8 /* RCTRefreshControl.h */, + 66282CC25CE5CF9867F0DC426FC30091 /* RCTRefreshControl.m */, + 57B14929965F17A9C69B9A87B7E036CE /* RCTRefreshControlManager.h */, + A7F18F09AF7A31610A85E63FD20DD5AD /* RCTRefreshControlManager.m */, + 24EF532FCEC293A2DEA18D3EBE58BBD7 /* RCTRootShadowView.h */, + 7FD08450DDF7BF3FEBEDA25027230571 /* RCTRootShadowView.m */, + 993A80D8A91815C14275729481D92DF3 /* RCTSegmentedControl.h */, + D78B603B040B149AF9158E6D6EAFC7DF /* RCTSegmentedControl.m */, + FAEC00366DEBFBF11082A1246409C065 /* RCTSegmentedControlManager.h */, + 5ADD28D135984B46CFF58DC13719C0F7 /* RCTSegmentedControlManager.m */, + E1AC14BB7878834437339910A0667121 /* RCTShadowView.h */, + BCB434A3F5C78F02C5254EB8B22F3A9C /* RCTShadowView.m */, + 6C8AD71987E8EABDDA5CBE1979EEAB41 /* RCTShadowView+Internal.h */, + 5BFA2DC282CA115637EE1255F5883583 /* RCTShadowView+Internal.m */, + 39748147402AB8AFC6AF4CCDABFA7AB2 /* RCTShadowView+Layout.h */, + E032FFFB6A36FC427FD7D3E976D13D6D /* RCTShadowView+Layout.m */, + 8E7AD15BBD0FE79ADCDED2A7042B8D76 /* RCTSlider.h */, + 55AC0E8E71E1D76C815A2B44D9EC6795 /* RCTSlider.m */, + 450171782DC0F3BA8C24E47604F4B3B0 /* RCTSliderManager.h */, + D0E4EABEB4CF7B1D94E7DCFF93017D87 /* RCTSliderManager.m */, + 97916199ED6955C13B01EACBCA0D27FE /* RCTSwitch.h */, + C0915E3E48F3EA6A6D7A49EF22D804FF /* RCTSwitch.m */, + 04BA294E012625F93CB277E8AB773F40 /* RCTSwitchManager.h */, + 9E083547F9579F5ED433859DB6F6448A /* RCTSwitchManager.m */, + 651289D07B86D1F85820BDB4E3F79B9C /* RCTTextDecorationLineType.h */, + 2425C40ECB016E238C047F0ACB06BE7E /* RCTView.h */, + 649B75FC11C456ED266CC9CB2FE4E66E /* RCTView.m */, + A6EBDEA822E6E9613B5673C69D6A98A4 /* RCTViewManager.h */, + 41107D755DE9A8D7E7E9905FD89486FD /* RCTViewManager.m */, + 29DB4845D7433C98545BDAAF37678E4D /* RCTWrapperViewController.h */, + DC26EAD4C76E544A68DF1B35B0F8B74B /* RCTWrapperViewController.m */, + 09A68242998F8219B12BD092F9FEC502 /* UIView+Private.h */, + 4A90C28B53EF65FFA16E8AAAA81E3162 /* UIView+React.h */, + FD78F40A8B8660420B63703FC34E8CBC /* UIView+React.m */, + 0E32B959F0C5F56EDEF3CABCD3F14011 /* SafeAreaView */, + EBEA00C2BF0E72FDEAC665BFF9A9882B /* ScrollView */, + ); + name = Views; + path = Views; + sourceTree = ""; + }; + D4996714D6938994133350FDC45E9585 /* TextInput */ = { + isa = PBXGroup; + children = ( + AC9D9808BFB89D23C6A20D156AF7E920 /* RCTBackedTextInputDelegate.h */, + 4B694AFCDCCEFE0DADE91C87E3E47311 /* RCTBackedTextInputDelegateAdapter.h */, + 5DB7D2EE6D6C47162214B22EBFBCAEB2 /* RCTBackedTextInputDelegateAdapter.m */, + 941B23A83E08E05FC6E21D1812537ABF /* RCTBackedTextInputViewProtocol.h */, + F21F1BE96FB0E9706A1425B369EE6878 /* RCTBaseTextInputShadowView.h */, + FA9B3CEF67577AC1D40A5CF12800B038 /* RCTBaseTextInputShadowView.m */, + 2421D918A551EE3CA2567888F02CC919 /* RCTBaseTextInputView.h */, + 27AD8BF520C2CF14775414725B065CB5 /* RCTBaseTextInputView.m */, + 33726FC4E302F309408E8B098042A11C /* RCTBaseTextInputViewManager.h */, + 4C2AE8294368CA46704CA61C84EA43DB /* RCTBaseTextInputViewManager.m */, + BB74A61918BD691F395662CBF21D1C0D /* RCTInputAccessoryShadowView.h */, + BF176078A2EA89A3F2AAA1473CE18BC3 /* RCTInputAccessoryShadowView.m */, + E4417D435F96602949BEB1360D9DC349 /* RCTInputAccessoryView.h */, + F72D1F634FF05D78E09DEB789C29E648 /* RCTInputAccessoryView.m */, + 3273091D512E421432CDB65E061BC47C /* RCTInputAccessoryViewContent.h */, + 1DB6414A0790EFA0A84903F39DDCABEB /* RCTInputAccessoryViewContent.m */, + CDA0F964FBD0C81D9787B9F6371E7595 /* RCTInputAccessoryViewManager.h */, + 69A55F4CA75C0DD8E0163ADE7B354A94 /* RCTInputAccessoryViewManager.m */, + 1B8302198BC7E35B8F4579F3743BB37C /* RCTTextSelection.h */, + 28B3CC978D37C0A9A2E085098BA45839 /* RCTTextSelection.m */, + C0BAA9B77D0C5AC02ADDDF267CD93AC1 /* Multiline */, + 29C0ED5A574C54AF4173217619A31B54 /* Singleline */, + ); + name = TextInput; + path = TextInput; + sourceTree = ""; + }; + D584010BAD2C31800E503C288B135F5F /* Text */ = { + isa = PBXGroup; + children = ( + DDD9EFD6509FD88690B3F115B31DCA7D /* NSTextStorage+FontScaling.h */, + DF7411D39B4ADBA745E9C31C4C1BE962 /* NSTextStorage+FontScaling.m */, + C31E3619902EE2EAD7818A1AFDA05264 /* RCTTextRenderer.h */, + 08135591258921F822A06ABF4C4465C0 /* RCTTextRenderer.m */, + 1E9D39208209A7BD5EB5CF40EE1BC062 /* RCTTextShadowView.h */, + 5D52E152030D3F2CC8E52AD8717EF091 /* RCTTextShadowView.m */, + 7B543741C7E49CBA12FB593306D793D3 /* RCTTextView.h */, + E96A0F78486FC8B1B3EB1DB6D6BC96D2 /* RCTTextView.m */, + 2B5C7E0422973C6A337EB16FBFBDBEF6 /* RCTTextViewManager.h */, + EC5A63CB0AE18EC0DF42B9220865D856 /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; + sourceTree = ""; + }; + D746756E9F53747A0CA0210413492CDD /* Pod */ = { + isa = PBXGroup; + children = ( + E6E5B648080413629931B5FF827C462F /* React-jsinspector.podspec */, ); name = Pod; sourceTree = ""; }; - D5EF7F9C287FDF445AD22480906F5F36 /* Support Files */ = { + D88426A9D81B72E5B6FE6F7520642CDA /* Pod */ = { isa = PBXGroup; children = ( - D2B7653E4E2696C673E698748E29AD49 /* UMTaskManagerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; - sourceTree = ""; - }; - D6051A86994C04F238B09F997E203405 /* Filters */ = { - isa = PBXGroup; - children = ( - 7B866A5731856216694EA6181891C9A7 /* BSG_KSCrashReportFilter.h */, - 2AF424360B844F89AB206F515676941A /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - D610938F9B912B294C33EF7A82C5E8CF /* Multiline */ = { - isa = PBXGroup; - children = ( - 6C5505582A16B6C1A593328E0D8B9AEB /* RCTMultilineTextInputView.h */, - 94779791BB17904347B9F2271AD0F69A /* RCTMultilineTextInputView.m */, - AB645AEB5EA032D771372C901EE0EFDC /* RCTMultilineTextInputViewManager.h */, - C5B193632E1CABAD99FC92DC885A56EF /* RCTMultilineTextInputViewManager.m */, - 933757715DDBE63071CDCE7D6DBBF10B /* RCTUITextView.h */, - ACE79E0BC5851B91682E138AB19FE7BE /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - D75A2D6942544ADA7D8582110A2BB22E /* Pod */ = { - isa = PBXGroup; - children = ( - 1C9518AA55AEF265D74E5C3114000D5E /* EXAV.podspec */, + D8700A1E3049C7EC2B45DB7F0E8E4AC3 /* React-RCTVibration.podspec */, ); name = Pod; sourceTree = ""; }; - D7BE05574A6AD7A2F6BD599DA595ED25 /* Pod */ = { - isa = PBXGroup; - children = ( - FF64EBC6D572AACBA733F22B80432E8E /* UMCore.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - D858739DC1CFBD76A1750C7BDF6A8294 /* Pod */ = { - isa = PBXGroup; - children = ( - 945C35BF1B27F401328D98D590B77646 /* UMReactNativeAdapter.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - D885017881790ADBD6AB484BE3065CA0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4E77753674C1F425FE523084B4E3FF6F /* React-jsinspector.xcconfig */, - C10B7ABBA5DB7FE79752997191FD5580 /* React-jsinspector-dummy.m */, - 54FD29DE85597023B8371C7A325F50B7 /* React-jsinspector-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -10442,44 +10808,53 @@ name = Frameworks; sourceTree = ""; }; - DAB0AC3EC4B77F5055292E473068BC1A /* Pod */ = { + D8F041844728D35735FAD785DBB301BC /* Support Files */ = { isa = PBXGroup; children = ( - A73731D96056AADB6C3C22D70863273B /* UMSensorsInterface.podspec */, + E50DED67BAFD9C52C33C3946003ECCE3 /* RNScreens.xcconfig */, + D18CE0DAEFEAA6D474A23DB518DA05FB /* RNScreens-dummy.m */, + F7BE267504219E08C2B3E97862E1A4A4 /* RNScreens-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; + D9E1DF859894BE5BA13A0049341254A9 /* Pod */ = { + isa = PBXGroup; + children = ( + 79CC6A5B9398398114AFD0752250C52D /* UMImageLoaderInterface.podspec */, ); name = Pod; sourceTree = ""; }; - DAC53395268EF63ECBC6871AADA0A619 /* LNInterpolation */ = { + DA7ACF7B35F364569D3A656FCA540E97 /* Pod */ = { isa = PBXGroup; children = ( - 6AB80691416F0BDEF6850C9E16210715 /* Color+Interpolation.h */, - 33868CCAEA36C4164842993DE0A7B7E2 /* Color+Interpolation.m */, - 6A8F1E84A233971B23681C11CC3D96F1 /* LNAnimator.h */, - E94C014C9B9AF186154A1360BF5178BA /* LNAnimator.m */, - F1E303DCCFF14E6650F61433548D0AD7 /* LNInterpolable.h */, - 024D174866DC879A465A83459D3BCF0D /* LNInterpolable.m */, - D670BB72F7C79A823C61CED851100CBA /* LNInterpolation.h */, - CF74F4C975F2F3A1675CFBEE2A73917B /* NSValue+Interpolation.h */, + 813DE72F0EF7406409BD88B726E2D9D2 /* React-RCTImage.podspec */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = Pod; sourceTree = ""; }; - DC82B8C8DA438E6E973A9624A160CE83 /* UMSensorsInterface */ = { + DAA1BF0F83F78517EF438D1D21554D29 /* Surface */ = { isa = PBXGroup; children = ( - 09576396480220108126C8C0F6D392F4 /* UMAccelerometerInterface.h */, - E57FE3A0A90D636D235CC17BA80C1381 /* UMBarometerInterface.h */, - A701F4BB315BBAE49C99E1444577E377 /* UMDeviceMotionInterface.h */, - 158BF40B76DCD1BED43D04A6B48BAC0D /* UMGyroscopeInterface.h */, - 9B13232835C56F9CD406E321D8C8E7C0 /* UMMagnetometerInterface.h */, - B29B23D4A72EA1C7F3182D5419DA0138 /* UMMagnetometerUncalibratedInterface.h */, - DAB0AC3EC4B77F5055292E473068BC1A /* Pod */, - 0800DB7ADEB2262B13B3F5D7CBB6A5AF /* Support Files */, + 48FC4EC24685FDF904FD9467693CF7CB /* RCTSurface.h */, + D4CCB9E25179654A10FA8079DADC7E51 /* RCTSurface.mm */, + 4B2EA136497E33A9AC0A1B21C107F89F /* RCTSurfaceDelegate.h */, + 6E198166A2ACA8C97332A716302DA299 /* RCTSurfaceRootShadowView.h */, + 417513EE6AE0E51AF543D074A8D86358 /* RCTSurfaceRootShadowView.m */, + 23177127D8E403DAA312B40339D82EC9 /* RCTSurfaceRootShadowViewDelegate.h */, + 05083914A0E9C0AC4BD3C9095A825E96 /* RCTSurfaceRootView.h */, + 1818A0063B16A44DEF4CC70469D83CAF /* RCTSurfaceRootView.mm */, + ECE56D89AB9424CE89D13F130C51526F /* RCTSurfaceStage.h */, + AF775ED8BFC07F13828BF3ABB9B86A1A /* RCTSurfaceStage.m */, + 6EAE7AB114B993A1513B00CE7376E71D /* RCTSurfaceView.h */, + D8F8F8CB86AF57DFF49DF281905B2E74 /* RCTSurfaceView.mm */, + DC3ED586E28B8D7DADBD7352904E6682 /* RCTSurfaceView+Internal.h */, + A5A75E940AEE30E42E28BF6F852EA6B1 /* SurfaceHostingView */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = Surface; + path = Surface; sourceTree = ""; }; DCD32508C0D831B61B9C1608F8B43B13 /* FirebaseAnalytics */ = { @@ -10492,15 +10867,34 @@ path = FirebaseAnalytics; sourceTree = ""; }; - DDB376C1270B5CCAE60AA7B3973594A0 /* Support Files */ = { + DCD8982632EBFD9544C4CAD34AEFBBD6 /* Support Files */ = { isa = PBXGroup; children = ( - 82DAE08CF911CB36FC4E0F303C610742 /* RNLocalize.xcconfig */, - EAE5C9A7D4A27556BE6EF109062AAF49 /* RNLocalize-dummy.m */, - F04B8FDE7FDB1D5E881C15C77ADD9C15 /* RNLocalize-prefix.pch */, + 590684422CF24F904D23E61DCDF416DF /* UMReactNativeAdapter.xcconfig */, + 628E51A7BD16C5CFF917D293A4F2BECA /* UMReactNativeAdapter-dummy.m */, + E72420FA0BDE952F019653249E1236F8 /* UMReactNativeAdapter-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + sourceTree = ""; + }; + DDC7997E3952A6119EAD97983918D15D /* Support Files */ = { + isa = PBXGroup; + children = ( + 01C6F3D6E8755135A8E21A5D284EE410 /* React-jsinspector.xcconfig */, + 74CE7A093C81DC6CF8311444B497F2CC /* React-jsinspector-dummy.m */, + 8B6005248BF6D8BD5CAA6CF898D38E9D /* React-jsinspector-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + sourceTree = ""; + }; + DDEE02DEE5380926FF3B46B274086E01 /* Pod */ = { + isa = PBXGroup; + children = ( + 695B9E314AAF09959B4E365F09138BD5 /* React-RCTWebSocket.podspec */, + ); + name = Pod; sourceTree = ""; }; DDF7CB7F940955A7AEC6BDF86F0F4968 /* Support Files */ = { @@ -10514,47 +10908,76 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - DFB6F25B3A5038562ABED5FA44D49AA7 /* Pod */ = { + DF59181FB2AB24A6891B9E50B0F3FF50 /* Support Files */ = { isa = PBXGroup; children = ( - 38C725B1734D0EF7CE16B443D117F511 /* UMBarCodeScannerInterface.podspec */, + 8502E942849E9FDFC67AC6A05C16C7CC /* react-native-webview.xcconfig */, + 5705572E9CE4F39CF188596636AE7BA6 /* react-native-webview-dummy.m */, + F0F9BB68898D056E029FAC27ABFA4A19 /* react-native-webview-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; + sourceTree = ""; + }; + E01DCB8A2E828A03829201157A8B53F3 /* JitsiMeet.framework */ = { + isa = PBXGroup; + children = ( + 4414ADB633F702FD3804619DFA56B8CC /* Headers */, + ); + name = JitsiMeet.framework; + path = ios/JitsiMeet.framework; + sourceTree = ""; + }; + E0A38BA86493F3B76C35683E8273DE24 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9C55E5C2CC45C1DAE13B637EC266ADAC /* react-native-jitsi-meet.xcconfig */, + BE3C3286DE026A0E70EED1E2569D80AD /* react-native-jitsi-meet-dummy.m */, + 106038EF35451F3B9B855C5BB0CFBFFC /* react-native-jitsi-meet-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + sourceTree = ""; + }; + E25FD91E2EB975ADD22B778B601BBF8E /* UMTaskManagerInterface */ = { + isa = PBXGroup; + children = ( + F499CEDC4AA4AEEFF7B11554EBD7221B /* UMTaskConsumerInterface.h */, + 589F15C9034EC65221895322C598FF48 /* UMTaskInterface.h */, + AB291470BE68256E5FE3CBEF817C614C /* UMTaskLaunchReason.h */, + 7839778FB021123854F1119A6FC56BF2 /* UMTaskManagerInterface.h */, + 0B7B4031CEECDA2B09D2440810281E68 /* UMTaskServiceInterface.h */, + 2946C01FFFF618156D52F5341F0FC4CD /* Pod */, + F9E92EA34271A93829C761BF34585BCC /* Support Files */, + ); + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; + sourceTree = ""; + }; + E2C675047E307EA9370F86B66A8E5E38 /* Pod */ = { + isa = PBXGroup; + children = ( + C99B09A20658D7806B822691190B499F /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - E0B7ECCCC75045D96CC1FEA5CB400631 /* Drivers */ = { + E4718F97ABDB6ABE92C249C60245F177 /* Frameworks */ = { isa = PBXGroup; children = ( - 76782ADCBB93FC6C7ADF39F17B506A86 /* RCTAnimationDriver.h */, - F121EF6426EFA6448F715A80FA0A0B34 /* RCTDecayAnimation.h */, - 8404356A2BED987402248352652AEC0F /* RCTDecayAnimation.m */, - 7BAAB2D1DDE8E1E21EFFF618ADC60808 /* RCTEventAnimation.h */, - BEB5A2F38AB5C7314A6737FE9E403A51 /* RCTEventAnimation.m */, - 31FE0BFE4CC5514B9B900D78FB12FCA4 /* RCTFrameAnimation.h */, - E3A3BA1AA2184CB88047A24ABDE6B7EB /* RCTFrameAnimation.m */, - 206DCD3D18193E958F8F995631E7BAB0 /* RCTSpringAnimation.h */, - D59E9B2F411A3FC336E3BE39A5A9769D /* RCTSpringAnimation.m */, + 723F47ED0A1DB05D96CF9C943A2C5C9C /* JitsiMeet.framework */, + 985ECC1AFD47633B39820516EF7DDD75 /* WebRTC.framework */, ); - name = Drivers; - path = Drivers; + name = Frameworks; sourceTree = ""; }; - E16962A0120AD625712256CB650DD767 /* Pod */ = { + E4FF7B9B71F99081B79C287D5D51C4D9 /* Support Files */ = { isa = PBXGroup; children = ( - 80B916BC26C874A2E8D003B5EFF151C8 /* EXHaptics.podspec */, + C39FE0D227A933495D13609400A465DD /* UMConstantsInterface.xcconfig */, ); - name = Pod; - sourceTree = ""; - }; - E48B3EED908D4A0C0B8F27180582EA80 /* React */ = { - isa = PBXGroup; - children = ( - EDA1CBC7905CCEC25765D7BD0EBC776D /* Pod */, - 3A4FDCD8E6A15E84AD53D626F81055BF /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; E67C1053C08017DDA767F627268AEAD4 /* NSData+zlib */ = { @@ -10566,149 +10989,205 @@ name = "NSData+zlib"; sourceTree = ""; }; - E7AFBE30521FD0128FBF79CA566D691C /* Support Files */ = { + E7917D00808FF5116C1DC3E7911C0C88 /* Pod */ = { isa = PBXGroup; children = ( - AA6EAECF946863A592F8B174348C215F /* EXFileSystem.xcconfig */, - EA90419E7771CBC09D034C6A4E7A6844 /* EXFileSystem-dummy.m */, - 1811B648E30D075518FBAF437DB3D03D /* EXFileSystem-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; - sourceTree = ""; - }; - E8CAEC2C251643D38E0CD99B870211BB /* database */ = { - isa = PBXGroup; - children = ( - 00C391D74F9AE575E3986797A36743D9 /* RNFirebaseDatabase.h */, - 9E748F391DE2D0222C842B58CE23ED8F /* RNFirebaseDatabase.m */, - 248110FFB6D7D84FCA570A564E658222 /* RNFirebaseDatabaseReference.h */, - 3EDB6EF2CF018630B5EA31363CD5C6AC /* RNFirebaseDatabaseReference.m */, - ); - name = database; - path = RNFirebase/database; - sourceTree = ""; - }; - E903DB54970C40CC7053FD69F05A7967 /* RNReanimated */ = { - isa = PBXGroup; - children = ( - 967A52FBAAC504F1770420B02BFA3949 /* REAModule.h */, - 30378C6DC967F17DAEF2B0AB16696398 /* REAModule.m */, - 2AFA0E290F72E671A7EEABA9C88C34A5 /* REANodesManager.h */, - 334AF8F9613F4B6C8ABE9A99ABD880F8 /* REANodesManager.m */, - 47FE6F6E7CC8082C34C77479FDA12169 /* Nodes */, - 98CDA20859761817BD6DD47C6C2CB2D3 /* Pod */, - B9FE4BECF44554988830FB63ACAC2E01 /* Support Files */, - 7FEB99B6D271DC84221C41D1058D9FD2 /* Transitioning */, - ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; - sourceTree = ""; - }; - E9B833B508C06113B8032F101F29AD39 /* Pod */ = { - isa = PBXGroup; - children = ( - 4B49525413836CA0A4B3429A065F0A65 /* React-RCTLinking.podspec */, + 9B5E0A62DDAEC3878C5F5792B0BDE50D /* LICENSE */, + D9201CD38980A63032A4DE8BF5E732D6 /* README.md */, + E68B6BBEDD5C5A8FB5F0F1534192D4D5 /* rn-extensions-share.podspec */, ); name = Pod; sourceTree = ""; }; - E9D1DA7C33DA575B5C22682C4F077D0D /* Pod */ = { + E7D419CB664331C04B6CC17030B2EE2D /* React-fishhook */ = { isa = PBXGroup; children = ( - E2098ED15AADFAA96C8DAAF3458F4CFD /* LICENSE */, - 8A20B2362A2ED34BB1F29E7D4E100D81 /* react-native-video.podspec */, - 4E1242ACD95D4FE940676C04201FA5BA /* README.md */, + B8A178BFE07B65C2EC9BC75FDE204649 /* fishhook.c */, + F47035379E9C2FC97FB5B7B2D777AAE7 /* fishhook.h */, + EF2A06D358D78727FA1168B3ABFB7462 /* Pod */, + 783220D2D8AFAF54F5FAFAA1C7DF7620 /* Support Files */, + ); + name = "React-fishhook"; + path = "../../node_modules/react-native/Libraries/fishhook"; + sourceTree = ""; + }; + E828AE6CF229CB321F619611B397E232 /* Interfaces */ = { + isa = PBXGroup; + children = ( + 68872F6D5FB850F451DBFCB97A2A7DF7 /* EXAppLoaderInterface.h */, + F9D1879CB5DE2D038FD3F2D5D194C572 /* EXAppRecordInterface.h */, + ); + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; + sourceTree = ""; + }; + E93FF8F3CBCB4876500670DE785D6848 /* RNUserDefaults */ = { + isa = PBXGroup; + children = ( + 0496BBEF347D5DD270460A759E3D2A0A /* RNUserDefaults.h */, + BFB6BB9BEE282BE24B2F7A062A3F9FA9 /* RNUserDefaults.m */, + 211617C4A1EB3DB9DF1CB4520230D922 /* Pod */, + 448869B7EE6DF4749CEE1881109FE296 /* Support Files */, + ); + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; + sourceTree = ""; + }; + EB09405C7D91A3242BF70E08A8FF79D2 /* Pod */ = { + isa = PBXGroup; + children = ( + 448447B63D65ECA2DC9F7B92FEFC4319 /* LICENSE */, + 7A4F8830E26F1D0DE3479E60D57E0255 /* react-native-jitsi-meet.podspec */, + 914AFEBCC6081168DC61AAE7E1A2F089 /* README.md */, ); name = Pod; sourceTree = ""; }; - EB92A9DA8BB27E36FDEB851682CC1233 /* Support Files */ = { + EBEA00C2BF0E72FDEAC665BFF9A9882B /* ScrollView */ = { isa = PBXGroup; children = ( - 648F3D5111FE66F4B086E0F978A46A36 /* UMFaceDetectorInterface.xcconfig */, + 5F46C27C7CEED7D2F40C44453BB3454C /* RCTScrollableProtocol.h */, + 0B4EE8187A6E5B9CB1E573816D2969BE /* RCTScrollContentShadowView.h */, + C8BEDC744DC981DEB274FA1B99263AC8 /* RCTScrollContentShadowView.m */, + F15C6C1B4BC29438848DCEAA767C7678 /* RCTScrollContentView.h */, + F7DF2337CA7EB4EE540AC9B179143C76 /* RCTScrollContentView.m */, + 370D2F88CB961DD574D872898753125F /* RCTScrollContentViewManager.h */, + A5066524050E26BE1284211F4C57C984 /* RCTScrollContentViewManager.m */, + C5A2DAE853B51FFAAE26D86DBF6162B5 /* RCTScrollView.h */, + 2C7F0C80F7C41B7C4170B088C06A029F /* RCTScrollView.m */, + 3425B1A3477A128CFCFA404A0D5EC6D4 /* RCTScrollViewManager.h */, + FAFB3D0B4EE3F0E233FDA708A703184E /* RCTScrollViewManager.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - EDA1CBC7905CCEC25765D7BD0EBC776D /* Pod */ = { + EC75F54A36E42CB84968D59C7BE86B57 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 007E9817B83131F91D09AEA2DB858501 /* LICENSE */, - 171F86C9A5430CACD0C7C6C5E06111DB /* React.podspec */, - ABCA88332B1BB076E2A15DB8D9FAF8DC /* README.md */, + 443357B49CD19C73D7E93F8A3201199D /* Compression.h */, + 60FFBE26273B7A7653978B65B93C9362 /* Compression.m */, + 09E1043B5E740E504FC0F41084EE67E7 /* ImageCropPicker.h */, + 30B14134CE1EEB8B9C85CD07B8687856 /* ImageCropPicker.m */, + 10697B8F5B8B726F90FAFFF16383A14D /* UIImage+Resize.h */, + 390974FE43F3FBD01FA46ACE3064E00A /* UIImage+Resize.m */, + B255A8193E4298E407EFDF23C3E729AF /* Pod */, + 816504149B520FFE82B54F80BDCAB2A0 /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + EC9FED22D55CBB7250CA0F3D03E10AD0 /* Pod */ = { + isa = PBXGroup; + children = ( + 77287F106D7F32D37754DAB7798A1B83 /* UMFileSystemInterface.podspec */, ); name = Pod; sourceTree = ""; }; - EF2F81FFCAEB06AE39461AF58C21733F /* Pod */ = { + ED543A9292B9C3C50638B426CC064542 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 01C505C931DFDF47F84C2A3244F5E04F /* LICENSE */, - D1B87227C7FAAD791C8022AE6F8DBC63 /* react-native-background-timer.podspec */, - 0E2379D03749A7445FB1DF63FF284FB6 /* README.md */, + 4E22F0EC3F0C26A81ECE4A34BA2C8DAC /* RCTCustomInputController.h */, + 384457842B583372BAD8730A0FD0DB1D /* RCTCustomInputController.m */, + E1DF3C0A408A5355E6973EBD51DDB377 /* RCTCustomKeyboardViewController.h */, + D7232FCDC7E3427C4E3B77BB433D3D5C /* RCTCustomKeyboardViewController.m */, + ); + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; + sourceTree = ""; + }; + ED73B6E5846A5D5FC86F18B29D5F81F6 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + 2E0AC3862DED458ADBD5B9B2E5C39526 /* ReactNativeShareExtension.h */, + 513DAA47AE1BB5C7A2CE2E878E7145AC /* ReactNativeShareExtension.m */, + E7917D00808FF5116C1DC3E7911C0C88 /* Pod */, + AACB6D3B4B5E35BC554E9D777805457D /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; + EDFD06CCE0EAE88DD8665EB0D5345828 /* Pod */ = { + isa = PBXGroup; + children = ( + 4CABA137102F16CCEDC1977440DA6CFA /* LICENSE */, + 0AD1548E5B05A538B593C040FC644C7F /* react-native-background-timer.podspec */, + F327AE834769AFC90C194BC9D417F05B /* README.md */, ); name = Pod; sourceTree = ""; }; - F072A490C57E93562265047A820EA6C3 /* Source */ = { + EF2A06D358D78727FA1168B3ABFB7462 /* Pod */ = { isa = PBXGroup; children = ( - 00833E7EB0D944705E71BB149296AC38 /* BSG_KSCrashReportWriter.h */, - 97DADABCE30FD6618D4541E19096F0D4 /* BSGConnectivity.h */, - 4107F3D17952B1844437EF41471226AC /* BSGConnectivity.m */, - 589FF376BD101E878B028C2FE67D1328 /* BSGOutOfMemoryWatchdog.h */, - 7B610AFF0CBAEB5FB1BF3368AD3D0119 /* BSGOutOfMemoryWatchdog.m */, - C60C5CDF1BDE9184719076C910CC69FE /* BSGSerialization.h */, - FAD10C1EA83D76D659D1F3D1303D1142 /* BSGSerialization.m */, - F0B02143D1D7C74F38519538D30B45DA /* Bugsnag.h */, - 5DDDFA1F336C70571A461FD0A21188AB /* Bugsnag.m */, - A48C31EBBEF0F5B9B1C2A5BA4C55CE40 /* BugsnagApiClient.h */, - EB12E12128E6AC5273F7E81237F25905 /* BugsnagApiClient.m */, - AC10A1A51843487E7790F53C4B65D9F5 /* BugsnagBreadcrumb.h */, - AA194C39136FCAEE12F52FB3766B2BBD /* BugsnagBreadcrumb.m */, - E55C69F29A2638E58545E47DB7888B7F /* BugsnagCollections.h */, - 68A47ACD10FE754FB1E501EB6DB3B2AC /* BugsnagCollections.m */, - 12387607A3639F4E843F8A8DA87A1C5F /* BugsnagConfiguration.h */, - 3C00D69401E0480E872D8829DC7CB8D4 /* BugsnagConfiguration.m */, - F7A0936B932B49940D8FB589DA50BC71 /* BugsnagCrashReport.h */, - D75AE166008B2D4F92780F7FC8170C2C /* BugsnagCrashReport.m */, - 4EC8FDF7BA2604E5BFDAD7BCCA15BDB2 /* BugsnagCrashSentry.h */, - ACBD25509A050805531FB9DC2C807B7A /* BugsnagCrashSentry.m */, - 5EDEFADCEB7B66C33F4B35E8F4539B58 /* BugsnagErrorReportApiClient.h */, - DEA3DC5671D5C877DAF7CA87B4425C02 /* BugsnagErrorReportApiClient.m */, - B0C4ADADD124F4F975E74A8B91890628 /* BugsnagFileStore.h */, - 08F290E8B914AD2F4A0718FA4653FC6A /* BugsnagFileStore.m */, - A76D90B8856DD4E548C6B252E7A725D6 /* BugsnagHandledState.h */, - A3437A444290BFD6EEE4762F77662EBE /* BugsnagHandledState.m */, - 0B951E264F3F24C78F72700FB1687604 /* BugsnagKeys.h */, - 5D4EB5276A860AE284E153FD2AAC347F /* BugsnagKSCrashSysInfoParser.h */, - F0BD44BACA52F1E117C9965CC9A12D78 /* BugsnagKSCrashSysInfoParser.m */, - 7C736A04F6CBCC04F3609731EA734D11 /* BugsnagLogger.h */, - 8B41E952EBFE66089C326F15B93995FE /* BugsnagMetaData.h */, - 52CE60B0E64DB7253508509BB356157F /* BugsnagMetaData.m */, - 6CE2B0DF422576F9A6087AD40F075223 /* BugsnagNotifier.h */, - C197ED2FB17A019AC7D1BE3DA3BCE6E6 /* BugsnagNotifier.m */, - 399915D00503C6D0B4EF7C4432A3DFB3 /* BugsnagSession.h */, - 505CEB10AF28771ECE84CD21A2478A56 /* BugsnagSession.m */, - E63A7FF44151A27C412CA09450D6810C /* BugsnagSessionFileStore.h */, - C981CF5E526184C4A7DB7416789BB999 /* BugsnagSessionFileStore.m */, - 5B71358F17AE9A1AB82FD03E1BED0957 /* BugsnagSessionTracker.h */, - 44BA23DE3207220597C857607A81DA0B /* BugsnagSessionTracker.m */, - D03CCA298C92778A5A0C89539567D5F3 /* BugsnagSessionTrackingApiClient.h */, - 7E2328ECED331CB4328D470C32D1FE0E /* BugsnagSessionTrackingApiClient.m */, - 95197C805AF86DE2FF28ED56C706859C /* BugsnagSessionTrackingPayload.h */, - F665A5DD37996A950BC4A82CCA6E9596 /* BugsnagSessionTrackingPayload.m */, - 6C6ECA5D69D565355314E75E047A0A0D /* BugsnagSink.h */, - 1B9F9E9FF603E2E2C1D1A9475C59296A /* BugsnagSink.m */, - 3C8672C3D373E305FF4E29895806D011 /* BugsnagUser.h */, - B4064ACA3090224F2A8011D547D831D4 /* BugsnagUser.m */, - 0C5A26D7ED219F14716FEADB04F0DC24 /* Private.h */, - 23F82683F938B461DB6867B6A8DFF27B /* KSCrash */, + 974C9AE7383742EA72F04F2261131340 /* LICENSE */, + 3E60EA2F7960FCB3D708426E1757CB59 /* React-fishhook.podspec */, + 3FCE85C0A490DBD5E741CCDCBFD25AC8 /* README.md */, ); - name = Source; - path = Source; + name = Pod; + sourceTree = ""; + }; + EF4558F87714830ED1E6B7D384F347CD /* Pod */ = { + isa = PBXGroup; + children = ( + A30B49811A55C3531158E2CEE523597E /* UMBarCodeScannerInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + EFA9810F36C2FAD7B04D7E08B574FA72 /* RNFastImage */ = { + isa = PBXGroup; + children = ( + 8E711F12A7778155AA71445D0BB91459 /* FFFastImageSource.h */, + 182B26C838B463EF6E209A217FB54C24 /* FFFastImageSource.m */, + FF8EAF33D5D5CC838E23A2C3898E9890 /* FFFastImageView.h */, + 545DB21567395C5939EDE45901D3A800 /* FFFastImageView.m */, + E8FB760D99180F916F1F815ED956C082 /* FFFastImageViewManager.h */, + 4C1BED2E17E1566D858042C305437ADC /* FFFastImageViewManager.m */, + B342CA448230FE40D533E094A5473B0A /* RCTConvert+FFFastImage.h */, + 2B8EBB96CD18005445EDF8B640AC7D07 /* RCTConvert+FFFastImage.m */, + C8EA1E851C92B3752DD521488027936C /* Pod */, + 6DC66470FF5388725370BC234E258897 /* Support Files */, + ); + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; + sourceTree = ""; + }; + F0493C0BC60D7428F4C80279EF68C574 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + 83A11F271D6493BEC282D3C5A2CE03FA /* EXAudioRecordingPermissionRequester.h */, + 15AF0B4DC7AF4AF11102D2015258C7EE /* EXAudioRecordingPermissionRequester.m */, + DFBA9F9ED5017F9945DB97C43758654F /* EXCalendarRequester.h */, + 09CE70106A4E65686140CE2B175081FA /* EXCalendarRequester.m */, + 7705F0B74DE9556F71CC98D92D99A254 /* EXCameraPermissionRequester.h */, + 3B52CD6C85B79F80172D9379272CCBA3 /* EXCameraPermissionRequester.m */, + 5A706FA12EC634053D401167E5F064EB /* EXCameraRollRequester.h */, + D619BA46892D05FF4710CF3364E55443 /* EXCameraRollRequester.m */, + 9C603D1FDA249ED275BC654D8025924C /* EXContactsRequester.h */, + BA2CC8FBDA5DE4B610ECDA7FB13AFF97 /* EXContactsRequester.m */, + 191492EDD0A710746DDDF0581988A1C4 /* EXLocationRequester.h */, + 2A3542BB014EBFB206314887A00FA9E4 /* EXLocationRequester.m */, + E593FD68DA7C2F1CF0AB6B6A9EA4CFF1 /* EXPermissions.h */, + 52F78D65F8F0C11A200896B1C379361D /* EXPermissions.m */, + 1BB0CF1D91D53AEAD98070670643EBFF /* EXReactNativeUserNotificationCenterProxy.h */, + AF90510A2BD790D8C91E45285DC6F919 /* EXReactNativeUserNotificationCenterProxy.m */, + A6E1E94E3500DD7A642F1C9C215239EA /* EXRemindersRequester.h */, + 5148F5CD61F3D713D87AEDDCD967B4AC /* EXRemindersRequester.m */, + 76C172939A060CCB9E8ECB5CE58BF22E /* EXRemoteNotificationRequester.h */, + 2F3D31A37D4195E1C71A739A6CAF3FEB /* EXRemoteNotificationRequester.m */, + E873A37952E3161EF4AD69498DA6AD4E /* EXSystemBrightnessRequester.h */, + E8913AF98AB520A5438BB09A0B8C4ECB /* EXSystemBrightnessRequester.m */, + 6E55F239CBBE06779B56E91FC66477C4 /* EXUserNotificationRequester.h */, + D87CF7D69622540A84C42BF33E227D40 /* EXUserNotificationRequester.m */, + 9B6FDB2D772615D41320B93C08B6F882 /* Pod */, + 83F9104F9971A5E681C92DE442218753 /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; F0F87365F3F22273CB139EB51F4237DD /* GoogleAppMeasurement */ = { @@ -10721,355 +11200,199 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - F36FE3B6DF0DE1F0728AA107967D47C4 /* react-native-splash-screen */ = { + F0F8D1130261BA9A7D528360D54A829B /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - 1770C4270FFE3249CE3D953576A40353 /* RNSplashScreen.h */, - B7F1012C799C9791E4FECA188C90D12B /* RNSplashScreen.m */, - B6518200BC1EE7A2A2AC139641F391F9 /* Pod */, - 88505CD74B781E85F4E01C14C8EC1AD4 /* Support Files */, + A6684837231DD32E07D224681453C6C2 /* UMNativeModulesProxy.h */, + 11A9B3E8A0B9380C3C118DF982859E6B /* UMNativeModulesProxy.m */, ); - name = "react-native-splash-screen"; - path = "../../node_modules/react-native-splash-screen"; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; sourceTree = ""; }; - F4E327509138FAC237715C6911C39CDA /* react-native-keyboard-input */ = { + F19284502EDDE6522651C5AC73A30436 /* Pod */ = { isa = PBXGroup; children = ( - DAC53395268EF63ECBC6871AADA0A619 /* LNInterpolation */, - BFFD8D97BE0D6DD2C1BC54EA4C12E4FE /* Pod */, - 0122C4C3E04A79FC6BF94CD2B7F7F358 /* RCTCustomInputController */, - 6C1EAFC54A5DFC2E4767FC82FA55CE40 /* Support Files */, - ); - name = "react-native-keyboard-input"; - path = "../../node_modules/react-native-keyboard-input"; - sourceTree = ""; - }; - F54F921AE4E82439AC59A109CA43744A /* Pod */ = { - isa = PBXGroup; - children = ( - 5419DDC7015AA0DFA1556ACB72A7D332 /* React-RCTNetwork.podspec */, + 6B4DC79D34741295943DBA663759ECAD /* RNFirebase.podspec */, ); name = Pod; sourceTree = ""; }; - F55445ABC2ADC3552321A91A54C8AF59 /* UMCameraInterface */ = { + F21BA719F353FE6F2923F723DEAC473B /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 11004CF4CA493D3192C5F359E121F7DC /* UMCameraInterface.h */, - 106BEE83D882736AA9B40E01AE483DE6 /* Pod */, - 045168B46975CEB7D5E4CD372FA92AA8 /* Support Files */, - ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; - sourceTree = ""; - }; - F56AE7C442939EE1A8DA91A3D680F2DA /* Support Files */ = { - isa = PBXGroup; - children = ( - 406386C3CB15CABF8D09B9ED96B411C3 /* RNFastImage.xcconfig */, - F94A3222B6DF99BB99D99A3AAFCC6075 /* RNFastImage-dummy.m */, - A4897980180B4B49664BB1789AF35693 /* RNFastImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; - sourceTree = ""; - }; - F57123F21AAD5FEC6ECF1C6252FBF749 /* Pod */ = { - isa = PBXGroup; - children = ( - 04226604BA95193D6AE50F943239F514 /* LICENSE */, - 86FB4A426C0C8E9F6F7A4ABB29906921 /* react-native-keyboard-tracking-view.podspec */, - 91DBE0CB4E7519C5E16ED6C9F3D60646 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - F5F4400FA32086F7110D988A19443247 /* Support Files */ = { - isa = PBXGroup; - children = ( - ABAAA194EC2FD1FC2CD955581F27A919 /* React-Core.xcconfig */, - 9F3DE190C3FA138C587BACD123B09B9E /* React-Core-dummy.m */, - CC7462C0A40D81143520D656AE90DF45 /* React-Core-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/React-Core"; - sourceTree = ""; - }; - F628AC9BE61AD3F323BEC80CD31E3E7F /* vendor */ = { - isa = PBXGroup; - children = ( - 707884B97D5D600C7BEFAB5E7F864263 /* bugsnag-cocoa */, - ); - name = vendor; - path = cocoa/vendor; - sourceTree = ""; - }; - F6729FCDB5DD6EE82372E9A258F00D2D /* converters */ = { - isa = PBXGroup; - children = ( - 57C36AEA8BA26ADBF17975523F9F8F63 /* RCTConvert+UIBackgroundFetchResult.h */, - 57133A36731577FA629730FB88C32D9D /* RCTConvert+UIBackgroundFetchResult.m */, - ); - name = converters; - path = RNFirebase/converters; - sourceTree = ""; - }; - F6F083EA1125E0ECFC7A584355207818 /* Support Files */ = { - isa = PBXGroup; - children = ( - DC474EE9137ED81E7D839D058C0399E7 /* rn-extensions-share.xcconfig */, - 83651EB464C89426FF14372647677753 /* rn-extensions-share-dummy.m */, - E91A7B752C7875A8E1092BF075AF19A8 /* rn-extensions-share-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = ""; - }; - F73AF622F5903ED5A86E7F9D1996C1ED /* Support Files */ = { - isa = PBXGroup; - children = ( - 8D17205550AD7115D8112FB3722CE4FC /* RNDeviceInfo.xcconfig */, - CFC701295F017145F588855CD0DF5AFA /* RNDeviceInfo-dummy.m */, - B03D5988758737D5C011AB23D45E60B0 /* RNDeviceInfo-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - F86172FE2B60D1DC0C5FFDAA1E6A01F3 /* React-RCTActionSheet */ = { - isa = PBXGroup; - children = ( - A9B2C9DEB38426565199167BF76C236A /* RCTActionSheetManager.h */, - D23BE6A82E82097A55B45FDC71F33F14 /* RCTActionSheetManager.m */, - 6707DF4DFD3C861F5F68CF1ED410C8DA /* Pod */, - 972E9E51E0D2F1AFDBBEF7E5977CD755 /* Support Files */, + F344A662895CDF840CC12AAE2E16FB72 /* RCTActionSheetManager.h */, + 595FA8DAE4B0E00DE93A8D96F0C31442 /* RCTActionSheetManager.m */, + 86FCAD44BD735EDEB0748DB361210520 /* Pod */, + 564FD8E78616A8AC8F6BEAE3A7288B5B /* Support Files */, ); name = "React-RCTActionSheet"; path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; - F8946BD0B5A4206F1F823B3F48A05C2E /* UMViewManagerAdapter */ = { + F68207727D0E563DBA586845C7B4BCF7 /* Pod */ = { isa = PBXGroup; children = ( - EBE6285C1B5B8A3BC8533BC9402EE19A /* UMViewManagerAdapter.h */, - DBF2B18E513F28D1A93ED2813F9BC5ED /* UMViewManagerAdapter.m */, - ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; - sourceTree = ""; - }; - F8A4ABE579F48F0F3F7743B1E4DE2888 /* links */ = { - isa = PBXGroup; - children = ( - 4D546E1507A3A3E12B31616E63CCE9A3 /* RNFirebaseLinks.h */, - D7D8CAC32796D9E8ADBB0F0CC1D738D6 /* RNFirebaseLinks.m */, - ); - name = links; - path = RNFirebase/links; - sourceTree = ""; - }; - F912A7826EF44BF9C161952868208E1C /* Surface */ = { - isa = PBXGroup; - children = ( - 5AB02082821F43C285C7E0688A89ED25 /* RCTSurface.h */, - F6A0B1EAD067DFE68899B0E6794AD9B4 /* RCTSurface.mm */, - 7868C00FA96930C3E277C957D70B9348 /* RCTSurfaceDelegate.h */, - 1AD94EC0403864159C39B2BED509EEE1 /* RCTSurfaceRootShadowView.h */, - F4FABA72FA14891A6A3025D7376A965E /* RCTSurfaceRootShadowView.m */, - 8076D4DB53BCFF4AE4975947CDA9FD4E /* RCTSurfaceRootShadowViewDelegate.h */, - 94CBEF7B892BCBF7E9DD5159B1285B9B /* RCTSurfaceRootView.h */, - FA471AF8728317A5AA64BE4AFBCE4759 /* RCTSurfaceRootView.mm */, - 20EF4AC9DF7AFDEF2FA45B66352E2556 /* RCTSurfaceStage.h */, - 416430EA4704EA4EA18C0A8E9A803ABD /* RCTSurfaceStage.m */, - 9C224BEC3C7217E3A6408F1442AEE311 /* RCTSurfaceView.h */, - B23BC7615287E2953E917F78A12504B6 /* RCTSurfaceView.mm */, - 3DC38E9781516D6D0FD3331E92132357 /* RCTSurfaceView+Internal.h */, - 58EE62DC77289DC6606DA3D1E847CE41 /* SurfaceHostingView */, - ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - F9405A22AD37DD275AFDAA8D759A0F80 /* Support Files */ = { - isa = PBXGroup; - children = ( - 31E7AFF2B180CF47F7288AD37E5740AC /* react-native-document-picker.xcconfig */, - 1250FC47436918E3E64D8694F4C2C694 /* react-native-document-picker-dummy.m */, - 212E05FCAF526AE7EEE0EFB9C48D5373 /* react-native-document-picker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; - sourceTree = ""; - }; - FB4527B80CFA3C49629841692C14442D /* Development Pods */ = { - isa = PBXGroup; - children = ( - D45E86766D3423FCC6CE6EBFCBB4FABC /* BugsnagReactNative */, - 2CC473FCF87F681B1EB37EA0AC38668F /* EXAppLoaderProvider */, - 3B1834C637A4175F3BCFD22B5F753AFC /* EXAV */, - B24556259192125FFE1115F84A08D661 /* EXConstants */, - 11ECDFD6D278DF5E69F0AA91D2B00D78 /* EXFileSystem */, - 0648A9F9657542281D3DC3F9A6535B8B /* EXHaptics */, - 1E9B5277CD2278880C7B1B0372090F69 /* EXPermissions */, - 1039D8D4A0C261A2EBE4C04BF7DCEEFF /* EXWebBrowser */, - E48B3EED908D4A0C0B8F27180582EA80 /* React */, - 701D5C9F9491B80CE0814B6E8C16F8F4 /* React-Core */, - 4DA2E41230386A2A6AF73E4A27973D33 /* React-cxxreact */, - 0A9331E48457C3F8A437AC6A87689FB4 /* React-DevSupport */, - 4E1C442FC43AA05C5681EB6510F8B262 /* React-fishhook */, - 788624DBAD939D8942E3794226905DC5 /* React-jsi */, - 60B4034346656FF01382D222862727D2 /* React-jsiexecutor */, - 192393196C89B77EA479C1AE99DE69B5 /* React-jsinspector */, - 49A4129617C56155090A31EF42DC738A /* react-native-background-timer */, - BD1242F39F4F49DACD5D8C7A807A0B58 /* react-native-document-picker */, - F4E327509138FAC237715C6911C39CDA /* react-native-keyboard-input */, - A3AAD9756C5451B71B8347625D8101CB /* react-native-keyboard-tracking-view */, - 66A6F55D1059066503C9FB7B042A28E4 /* react-native-notifications */, - D0FA12C3E2F386DE1C73EFEDE5875444 /* react-native-orientation-locker */, - F36FE3B6DF0DE1F0728AA107967D47C4 /* react-native-splash-screen */, - 443B25FB1952A6961719E83D9690B35F /* react-native-video */, - 9FBA636396673092C8127E822A871859 /* react-native-webview */, - F86172FE2B60D1DC0C5FFDAA1E6A01F3 /* React-RCTActionSheet */, - BB569C6E88B0C0874ED3E4D48869E54D /* React-RCTAnimation */, - 13AEFEFC7B4AFE0974B29EE25C8334D6 /* React-RCTBlob */, - CE2FBB15036E816BA4A9D28D31F09550 /* React-RCTImage */, - 0973A0FEE041486884B35291A1E9043F /* React-RCTLinking */, - CD829569FB8ADE8A92CC7CBB60EEF27B /* React-RCTNetwork */, - 6C7ADB160D8DF8F8C730BE1E8872E915 /* React-RCTSettings */, - 539998BC8D67400B54ED95ACD12109CD /* React-RCTText */, - 1C493173E227549E9DA6CECE5CBF33FE /* React-RCTVibration */, - FC5CC235E22907F90667E47184C18367 /* React-RCTWebSocket */, - FC710EDCE54A155317D2E88985F6A29F /* rn-extensions-share */, - 05AA20586F7A9697B5F61093EFC6CEBC /* rn-fetch-blob */, - 0509013658CEFF138CFDE513F4BF3D58 /* RNAudio */, - 6D103672E547616A8275986DEC0FD4FB /* RNDeviceInfo */, - 8C4A680F2FC0BAC9B27679184743BCC5 /* RNFastImage */, - BC1E31890E5614B914F3423B79C8832D /* RNFirebase */, - CE8CE412A5D8BA94BC0E4FFEF3E8294A /* RNGestureHandler */, - 7B9874A578D18792791AC7451A83E7C9 /* RNImageCropPicker */, - 9308277D1BB5B9F713E76AFE55BFF3EA /* RNLocalize */, - E903DB54970C40CC7053FD69F05A7967 /* RNReanimated */, - 5F0F94E7B237DA9B5FA7CECDF4712DFF /* RNScreens */, - 4CA81756079E8B97CD316A6DC6C3D52D /* RNUserDefaults */, - 2329B5A8F6DE83E006301A644A0909C9 /* RNVectorIcons */, - 1C4843B16F4E195D56C5867CB3883481 /* UMBarCodeScannerInterface */, - F55445ABC2ADC3552321A91A54C8AF59 /* UMCameraInterface */, - 0FA5F2D6B5B83597A6C43A1C6FE8CB37 /* UMConstantsInterface */, - 9E1C5D242F0DBE52C8E4560F21001479 /* UMCore */, - B7BDB4505CF5A70B94E08858C09B3B6E /* UMFaceDetectorInterface */, - 42A7FA81CC72A0D99C1955FDC8E15B4F /* UMFileSystemInterface */, - 4C7E6D902369D6CE1A9A34C6329AFB5D /* UMFontInterface */, - 87262BC8C801F27B6E9E2DEAFC79C903 /* UMImageLoaderInterface */, - 30ECC9BC69D57051DB8A0180938F4584 /* UMPermissionsInterface */, - A469610D47D816A2697292B2D6E6F2F0 /* UMReactNativeAdapter */, - DC82B8C8DA438E6E973A9624A160CE83 /* UMSensorsInterface */, - 04348BADAD9368671EFBB677C6608D19 /* UMTaskManagerInterface */, - 6DD907519E9F3EEC53FF276E5B07409A /* yoga */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - FC211C1C956605584E5740331A545CB2 /* Pod */ = { - isa = PBXGroup; - children = ( - 763FF07C7A3224B6DFDCEA0999CB2285 /* UMFontInterface.podspec */, + 258AF41110463BE9736BE2809EDEA878 /* README.md */, + 13CEB6760094E383FAD9F57C3F043AA6 /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - FC5CC235E22907F90667E47184C18367 /* React-RCTWebSocket */ = { + F742DE45C86F814F50B804C37835DB37 /* Source */ = { isa = PBXGroup; children = ( - C6B48F68CE68AF6AA32D1E9DB01B87AC /* RCTReconnectingWebSocket.h */, - 47B49192AF0295CD4E82703CC4F96C2C /* RCTReconnectingWebSocket.m */, - 9913D2E27955C1C94DB8FBB02D809154 /* RCTSRWebSocket.h */, - 7BDADE8683DCFDCC0487018AE56C2336 /* RCTSRWebSocket.m */, - 1787D318C8069C5DE4410094624E6C45 /* RCTWebSocketExecutor.h */, - 4F81775F6BC346F50DD5769332E5C42E /* RCTWebSocketExecutor.m */, - CB10C495B3633E7E56898F5B48FB03C8 /* RCTWebSocketModule.h */, - C0C5087AA3C28CD7E547D23E317B1404 /* RCTWebSocketModule.m */, - 14FDF8691DC6C91699361780F66863FF /* Pod */, - 0C015DCF356B7323A0802C4C3B687386 /* Support Files */, + 23DD9B1773DCD203FA7C863CCD290FDD /* KSCrash */, ); - name = "React-RCTWebSocket"; - path = "../../node_modules/react-native/Libraries/WebSocket"; + name = Source; + path = Source; sourceTree = ""; }; - FC710EDCE54A155317D2E88985F6A29F /* rn-extensions-share */ = { + F7D9CB224E9960AA398E6B3FE48EE54C /* Pod */ = { isa = PBXGroup; children = ( - 84D91EE1B993087FB0C80B9779CE0594 /* ReactNativeShareExtension.h */, - 231CF4FA64AC13747332BE023103D11A /* ReactNativeShareExtension.m */, - 401E5480D54D453D559A9D839BCD335B /* Pod */, - F6F083EA1125E0ECFC7A584355207818 /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - FCA0EF519D10C22342314984D618951C /* RNFetchBlob */ = { - isa = PBXGroup; - children = ( - 76160870EE1B67F96AC6DAB8F364BDE6 /* RNFetchBlob.h */, - 88BAA384D93DF8D20AC53F0A579D1961 /* RNFetchBlob.m */, - ); - name = RNFetchBlob; - path = ios/RNFetchBlob; - sourceTree = ""; - }; - FDA4FF407DB01D9E34F81999653B3E2E /* Pods-ShareRocketChatRN */ = { - isa = PBXGroup; - children = ( - EA72252935779996212AA0252AA8DD4F /* Pods-ShareRocketChatRN-acknowledgements.markdown */, - 5C8974C8E1A0C09C0F6D32AEFA43597D /* Pods-ShareRocketChatRN-acknowledgements.plist */, - D36A7DBB1CAA328D188048E619B5A1EE /* Pods-ShareRocketChatRN-dummy.m */, - 8E6A56450A8AF738EFD0534FD77B934D /* Pods-ShareRocketChatRN-resources.sh */, - 6299B07F20A050CCA97459DE44CE30E6 /* Pods-ShareRocketChatRN.debug.xcconfig */, - C10B55917E78E59A3FE6D2B4762CEACD /* Pods-ShareRocketChatRN.release.xcconfig */, - ); - name = "Pods-ShareRocketChatRN"; - path = "Target Support Files/Pods-ShareRocketChatRN"; - sourceTree = ""; - }; - FE0D0CC2C447BBB33A1FDEA1E65B7A8D /* Pod */ = { - isa = PBXGroup; - children = ( - 554D445A21A9ACB0D1499C0BB89F3EC8 /* LICENSE */, - 6BE90D13C0B3C3F5F552D957B2AF2B01 /* README.md */, - F6D4ED1945799618F2102E409ED274C1 /* RNDeviceInfo.podspec */, + 42C5DBCBE25BE6EDD3E237CF118D94DC /* React-Core.podspec */, ); name = Pod; sourceTree = ""; }; - FE5FBA77D5B00FEB3A8DAFF017FD4728 /* Support Files */ = { + F834B078E2A833C024CD19B86C2AD527 /* Support Files */ = { isa = PBXGroup; children = ( - FF810FA16B38A4200C4D2DB7A371E41C /* React-RCTSettings.xcconfig */, - C0AA23146B019EB904A9D5D814E1C3AB /* React-RCTSettings-dummy.m */, - A7BC55F4362943BA8DFDE3D34F7C4F56 /* React-RCTSettings-prefix.pch */, + CADCE6458B46F4D6B823AE5A9163FCB8 /* UMPermissionsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - FF2AFBD3B118B285CAF04F404ACFCBBD /* ScrollView */ = { + F8FD90B8E98DA1949843718FF1016118 /* Pod */ = { isa = PBXGroup; children = ( - D437E2DA4637B926A7C2E5564DCF06F7 /* RCTScrollableProtocol.h */, - 48CE6B4E0389DFC22523E98965AC6202 /* RCTScrollContentShadowView.h */, - 1771B49438A3AB1ED0D8934A785BA96C /* RCTScrollContentShadowView.m */, - 94C3AC517A63BFC4BEE3EC3070C1C20C /* RCTScrollContentView.h */, - C75FB754E99D40DEA7EE8A05E0D825D5 /* RCTScrollContentView.m */, - 062D05D6626096952F0C7EEB8160CB8C /* RCTScrollContentViewManager.h */, - D8EA2471306A983F6E52344BADF4267B /* RCTScrollContentViewManager.m */, - 4D1B2AE2B60CAF2061A95F64EEBA0E6E /* RCTScrollView.h */, - F2801E4F38CE0E080B6A193CB4977B4D /* RCTScrollView.m */, - 838EC88CCC23151E4EEAB9A3DF0CF9F0 /* RCTScrollViewManager.h */, - DE6FE26D414F8BD5462D9CFF5BBFF0B9 /* RCTScrollViewManager.m */, + 7F566D32394BD895CC139B7AC9729E34 /* React-RCTText.podspec */, ); - name = ScrollView; - path = ScrollView; + name = Pod; + sourceTree = ""; + }; + F9E92EA34271A93829C761BF34585BCC /* Support Files */ = { + isa = PBXGroup; + children = ( + 746672087CD70BDDA884FC8FA203FA94 /* UMTaskManagerInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + sourceTree = ""; + }; + FB1A2350DB5C6F4A1D213B7808E6BA33 /* Pod */ = { + isa = PBXGroup; + children = ( + F19A61D5EFA4D44061D331AB687A882B /* LICENSE */, + E4E999EFD330156A1C4F56E3F07E6463 /* README.md */, + 0A118B84F150B3FE0CE4BDC37758A355 /* RNDeviceInfo.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + FB5467310CAB2204A2C4B655A819437A /* config */ = { + isa = PBXGroup; + children = ( + 222FBFFE46A483F13B810824A5C4C302 /* RNFirebaseRemoteConfig.h */, + 80D78F8DBD733314515E895F54C97E87 /* RNFirebaseRemoteConfig.m */, + ); + name = config; + path = RNFirebase/config; + sourceTree = ""; + }; + FB92CDFAC10D62F1923FCA7A5CB1D679 /* Protocols */ = { + isa = PBXGroup; + children = ( + 81DAD2BD88C1C69E2981FE8CC2D499E6 /* UMAppLifecycleListener.h */, + DD316097D74A6A79F091FA6C69794A23 /* UMAppLifecycleService.h */, + AEF9692FF93A53AE83A9026E5B68C754 /* UMEventEmitter.h */, + E15CF65609312FCFFB50C67E3859D45B /* UMEventEmitterService.h */, + BFEB264D81580315AA2560D896B4787D /* UMInternalModule.h */, + E7347770CE02EA9D6290F06160A89555 /* UMJavaScriptContextProvider.h */, + 9C5A9E1C09D1DFB316A5023FD04A0500 /* UMKernelService.h */, + 72058EB340F868E80E2210C02082777A /* UMLogHandler.h */, + 5AAF020FD7B552F5CCA26EE710CA3A63 /* UMModuleRegistryConsumer.h */, + 92874ED1747272F71B4F1A29C359EB45 /* UMUIManager.h */, + E1D3F6AE70C836838DE24FB6FF0E5319 /* UMUtilitiesInterface.h */, + ); + name = Protocols; + path = UMCore/Protocols; + sourceTree = ""; + }; + FBFC8E99B3755B8758A0CA878A86022A /* instanceid */ = { + isa = PBXGroup; + children = ( + 63805770CE626DEEFDE79A52B42E5200 /* RNFirebaseInstanceId.h */, + 300A79D4DBF7F9DC0D4197A864A02ABA /* RNFirebaseInstanceId.m */, + ); + name = instanceid; + path = RNFirebase/instanceid; + sourceTree = ""; + }; + FDEF9171A8743E7B53FC306ED08C1FFC /* RNVectorIcons */ = { + isa = PBXGroup; + children = ( + F736E61E5A2ED76BE2DB1A8AAEA4609E /* RNVectorIconsManager.h */, + 33896753230233229EE733A3279E2123 /* RNVectorIconsManager.m */, + 9CAF49B1A81BCC96E45AB4294E906D6F /* Pod */, + 632519FE39CFF33ADAAC8EA611063E2B /* Resources */, + 812ED6C140E5DB171545B442C3D12CCA /* Support Files */, + ); + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; + sourceTree = ""; + }; + FE4D2A155E76A2C98D0F010A721CB2DA /* Handlers */ = { + isa = PBXGroup; + children = ( + 8BC6565E046B8FBA5413F782860FE946 /* RNFlingHandler.h */, + 3376AF168EC6C13692DB1F130CC363EE /* RNFlingHandler.m */, + 0F5C1C42D4387AA97E836AB5CEB0142C /* RNForceTouchHandler.h */, + 426B3042968279100CBFFABA3250F474 /* RNForceTouchHandler.m */, + 140827E76462176B19FAC244ECEE9BBD /* RNLongPressHandler.h */, + A8E47C778C9007546B45026FB68A4BF8 /* RNLongPressHandler.m */, + D39D98A6A9F7F237C9EFD924D44B78E9 /* RNNativeViewHandler.h */, + 3F663AC9DF4A7F5C59D11A3631D03905 /* RNNativeViewHandler.m */, + 6AC77724E0896F2E237527C17209918C /* RNPanHandler.h */, + 8A8A1691CA218413AAF4FDF833E01BAD /* RNPanHandler.m */, + 375230B356E2C541FE24BC6A6841CC22 /* RNPinchHandler.h */, + 46DAC266A6FD08A19FDC690C3A14F352 /* RNPinchHandler.m */, + 6D2D75FDABCD85D4174157FA49865E1D /* RNRotationHandler.h */, + 1A8B25E20FA3258580F26D11319515F3 /* RNRotationHandler.m */, + 03571C01D855A36BEFBB395C1942979E /* RNTapHandler.h */, + 47E354A7F3CF3DCF8544DC60EFFD2B53 /* RNTapHandler.m */, + ); + name = Handlers; + path = ios/Handlers; + sourceTree = ""; + }; + FE91880DEDB8C57D14ABA87C373146CF /* React-RCTBlob */ = { + isa = PBXGroup; + children = ( + 6BA041DB50458A6AC45BE0C895514221 /* RCTBlobCollector.h */, + 5BAD548D6EE72D4DF3AE618B71C60139 /* RCTBlobCollector.mm */, + C9E037AAA848724396EAD18ED5B7C940 /* RCTBlobManager.h */, + D2C1594F73125490465C61584369200E /* RCTBlobManager.mm */, + 3749C2745107C4FFBD741432934B704C /* RCTFileReaderModule.h */, + ADBA91B70D66AD0C66B90F33754AB444 /* RCTFileReaderModule.m */, + D14ED12A64554F9B10A97CE4977C0A25 /* Pod */, + D21CAC46D5080E5FE4A1BB2C5ADFCBD5 /* Support Files */, + ); + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; + sourceTree = ""; + }; + FEB9B1CB77A0CA94B0209CE06573CC8A /* Support Files */ = { + isa = PBXGroup; + children = ( + A951F3D4A1107C4876D413494143795F /* EXConstants.xcconfig */, + 4F33EEE4847A0B5C61BE4011BA4744F0 /* EXConstants-dummy.m */, + 50E63AC2F46D8F4EE6F947CD3D76B190 /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; FF3BB0590EA6094CA6992BEAC61C3AE5 /* Logger */ = { @@ -11085,13 +11408,11 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 01CEED1C5EA813AC3E2C2256450ED3E8 /* Headers */ = { + 036EF07EB021F741FDE61C7C08AC9FE5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E3EF44D2C509C18A3268605E51DD01A5 /* KeyboardTrackingViewManager.h in Headers */, - C6B124D6E833502C834EC738EF1364DC /* ObservingInputAccessoryView.h in Headers */, - 7EA2F2CE7509C3503B7717C762F5F398 /* UIResponder+FirstResponder.h in Headers */, + 71246BF5D7703A387E1793BDAB54E930 /* Orientation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11169,41 +11490,25 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0A531BA578BEC385ACD8F391A3DE0275 /* Headers */ = { + 097CEC96182D30A0F93DA114ECB79640 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4CFB948C8F809416969AD83CC141DE58 /* RCTVideo.h in Headers */, - 1C0D0441277629BCF925651EB6F2850A /* RCTVideoManager.h in Headers */, - 93884EE2241BA8AE6FAB782730CE93B8 /* RCTVideoPlayerViewController.h in Headers */, - A208643ED7190358AF0C52AB27073B7F /* RCTVideoPlayerViewControllerDelegate.h in Headers */, - A7C9CAE9A4271E0C6AA99969B09C73C8 /* UIView+FindUIViewController.h in Headers */, + 1314C2259FAF9066DA0A2D9AD581B140 /* Color+Interpolation.h in Headers */, + 220D47C54542BA8D670DF2103827EFFA /* LNAnimator.h in Headers */, + 30EC8BC423F1D535FD065D54EE42895A /* LNInterpolable.h in Headers */, + 99FC0226A14CE8AEC27D411BCFDC079A /* LNInterpolation.h in Headers */, + CA21D7B93C54CD73611D677B43A76AEC /* NSValue+Interpolation.h in Headers */, + 4EE8C041F8805B8CAEAD3E92BD1B073D /* RCTCustomInputController.h in Headers */, + 60EC0040BB5062EC82CC1923C50CA2F4 /* RCTCustomKeyboardViewController.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 107C3186BB8360DC94F5B7A099EDD1A3 /* Headers */ = { + 0D1A6F8D4BCFA061D067E8C3EB47A628 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D6932BCA6F10CE1AB60371090551D3D7 /* RNVectorIconsManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 12A33E46006AFBADDFC2C8EA4392D795 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 3EE1DBA3B7134BCBC311B7175BADB153 /* RNDocumentPicker.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 131E71F47A42C888CFA1AB226B40CF5E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1FF8EDDE0E2AFF348021E61C8293D0D7 /* SDImageWebPCoder.h in Headers */, - E7616B10A3FBB26B07DCF5B5184D5FC2 /* SDWebImageWebPCoder.h in Headers */, - AAECAB63BF205AD61678B7DE02C1F4E5 /* UIImage+WebP.h in Headers */, + 284A87802CBFFCD5A35B76BF9FDBF7A5 /* AudioRecorderManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11261,6 +11566,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1A83BB59B4659B5CEDC80B22461E1980 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9A5B54640BB07774B4F55339954F9B53 /* RNDocumentPicker.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1D8B6318F5AAA17AE352DD76B0029C8F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11286,27 +11599,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 295D939EFAEB56A5CB628FD4AFB391D1 /* Headers */ = { + 2749920D3B2904DE535AEF06DE4E51FA /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8FB58FA7FB611869FC526CAB02D469CC /* RNFlingHandler.h in Headers */, - 838DA2A98498D51317F4A32F00F6D42A /* RNForceTouchHandler.h in Headers */, - E5DE082ED9097514719C964AF3C83E6B /* RNGestureHandler.h in Headers */, - 2FBFD71D1FB4D1A76ED5A5B0A6AD3A74 /* RNGestureHandlerButton.h in Headers */, - 157E7DBFD6BFE881566506E822B1F8AE /* RNGestureHandlerDirection.h in Headers */, - 331C1EA6BB9CAA60E822675C146FDCD0 /* RNGestureHandlerEvents.h in Headers */, - 501E67C892A7DA2AC0650392E2D8B271 /* RNGestureHandlerManager.h in Headers */, - ECE61127A0A5E844623CFB8E93CF7325 /* RNGestureHandlerModule.h in Headers */, - 756E2EB3D368130B6759D0966456B740 /* RNGestureHandlerRegistry.h in Headers */, - F867328E4B213787EF0D5F89377141E6 /* RNGestureHandlerState.h in Headers */, - F53999014726238100EE441D3A9EA02A /* RNLongPressHandler.h in Headers */, - 40C44021594D6CC64ADE6CE814E4EEFC /* RNNativeViewHandler.h in Headers */, - 4F02A913029FA9E33AE25E4FC583EF8D /* RNPanHandler.h in Headers */, - 4482B75F771768A51E19D4AE2A7BFCD5 /* RNPinchHandler.h in Headers */, - 6B8DBD9C790AFB18E32C82BDC5D832B5 /* RNRootViewGestureRecognizer.h in Headers */, - 4E27F37491CA6E6702A77D638406EEE2 /* RNRotationHandler.h in Headers */, - D610A16427473AA02BE3395A95E9502F /* RNTapHandler.h in Headers */, + 3BE184C050573B3533BA2BBD83E0F681 /* RNBackgroundTimer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11348,6 +11645,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 30253AE5FB22878C3C4088A835EC4D66 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B30B5AE91553D802CE63D5F5B5A33DCC /* IOS7Polyfill.h in Headers */, + 4FA5E50ED56E7999A0C12CA52630F874 /* RNFetchBlob.h in Headers */, + 69F26CD91C18271E38BF3151110006AB /* RNFetchBlobConst.h in Headers */, + DD66F7D95949EE34795ABAA6A59D2CC6 /* RNFetchBlobFS.h in Headers */, + 6DE04AA1625F7417199287910F162354 /* RNFetchBlobNetwork.h in Headers */, + 429864740131936D31B72A9F2DA5AD36 /* RNFetchBlobProgress.h in Headers */, + 88A0263EFA2BED254412D1FB13BF68B0 /* RNFetchBlobReqBuilder.h in Headers */, + 96D467CAD650EF1C5480B56809C9A90D /* RNFetchBlobRequest.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 32266090A7A496606B689BFE74BA3184 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11362,24 +11674,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 345C66CC545989BEBA8753E18A8F9455 /* Headers */ = { + 32369DE141AE7D98C0A4C96D82B1E1E3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E059E52F86FBF05AAAD2C2D14E0D8F60 /* RCTConvert+RNNotifications.h in Headers */, - 19CA39C00BC02E59FD3484DD2B73EBD7 /* RNBridgeModule.h in Headers */, - 92CEFA1324AD047F4894F170185EECD4 /* RNCommandsHandler.h in Headers */, - 6F4132C3131A1F715E620EC2040156C0 /* RNEventEmitter.h in Headers */, - E244DAFE19D8FE536F8E2ED031BA5280 /* RNNotificationCenter.h in Headers */, - 8C6DDADD5F716A9BC8ACB2C696EB54D3 /* RNNotificationCenterListener.h in Headers */, - 442BBDB5AC6EBB6CEF616CF6D7749B2F /* RNNotificationEventHandler.h in Headers */, - 7A9CC2C608C6237F6EE0C4AB5AD0DEB2 /* RNNotificationParser.h in Headers */, - 8CF8665C31675F8FB078509262373C59 /* RNNotifications.h in Headers */, - 1FE655B4AB938DA0AFD9FA7E584D75E4 /* RNNotificationsStore.h in Headers */, - 40BEF34243302C5C7AA391CD5C04406F /* RNNotificationUtils.h in Headers */, - F31B16A45487015257FA7EB08132CCE9 /* RNPushKit.h in Headers */, - 9289E14D497B3CFD6A4924C9A68D9ACC /* RNPushKitEventHandler.h in Headers */, - 740789D8B8E284B603E60AE7CDB8167C /* RNPushKitEventListener.h in Headers */, + 1905B4020BCD4D500F096B0AFF602502 /* RNUserDefaults.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11410,49 +11709,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 47D5AF9A4337236E677906AE222F980B /* Headers */ = { + 43FBD68B926D32C5EB2765AAC7CA3992 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - CC2B63B905CF7146045EC38A15639D04 /* RCTConvert+REATransition.h in Headers */, - A0941791AB1A4A782A28C0312B3E61C2 /* REAAllTransitions.h in Headers */, - 7A8FFE84A1147FBBD40E3D46292889FF /* REAAlwaysNode.h in Headers */, - 418666160A357F2A4D634C13342A17C5 /* REABezierNode.h in Headers */, - 2048B5F70FE9755346D6EBCB701D32C6 /* REABlockNode.h in Headers */, - 63F0C13ACE1F88D6877BEE4BEED92F55 /* REAClockNodes.h in Headers */, - 27AB228480E6FEE3D4D05D7B9DA31780 /* REAConcatNode.h in Headers */, - 6DA97A2F4E154C0FA3F4725D2261EF98 /* REACondNode.h in Headers */, - 069358D28AF6423C74F54293386FC05B /* READebugNode.h in Headers */, - ECCC2168324796A41E68B77CA42E0071 /* REAEventNode.h in Headers */, - BC9AD2B7C3909D3138C0FB1BB2C5C3A2 /* REAJSCallNode.h in Headers */, - BB0190D224A3CD6F9B996981B6BEEAE7 /* REAModule.h in Headers */, - 0824D55AA2567209381F8E1A7AF6F26E /* REANode.h in Headers */, - 932CB53DDAE628581A644116CCFD82C7 /* REANodesManager.h in Headers */, - 5BF4060BFD0AF56EF39905FEF621F4DC /* REAOperatorNode.h in Headers */, - B73716F3EB0DD3D870BC2031C3A83C33 /* REAPropsNode.h in Headers */, - B9FBEC2D6ED890DD0A3BB754966059F4 /* REASetNode.h in Headers */, - 7124F15D38B6020FE4DAFADA2CD90536 /* REAStyleNode.h in Headers */, - 7CC1471157F48EF002F3FF44910DC2B4 /* REATransformNode.h in Headers */, - 6D1A25E7545C3E8B12847277862E9CF6 /* REATransition.h in Headers */, - 136A4111FFFD3E00C4E510648026EF28 /* REATransitionAnimation.h in Headers */, - D47BEAB1C97C1C25F7181BCD25762A45 /* REATransitionManager.h in Headers */, - 3D8B47D9C716CC0578248829EB6DC67C /* REATransitionValues.h in Headers */, - 26E76124D8AE731E709944BDF41DE1C3 /* REAValueNode.h in Headers */, + B8ACB9C1B790EC73F2E7059C3925AFD4 /* RNCUIWebView.h in Headers */, + 8C17EE533E213FC3CF8F742302AE9E08 /* RNCUIWebViewManager.h in Headers */, + 7FEF728F11F0C83950E9A51607B420A2 /* RNCWKProcessPoolManager.h in Headers */, + 9C81DC160E9D9E03F09900898DFF264F /* RNCWKWebView.h in Headers */, + D3EC9D599B04496EEADA810A2D08A9BC /* RNCWKWebViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4817CC82FCD0659404E79A21177382BC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 7E7F90CA6B5E5C12C553D87812625D54 /* RNSplashScreen.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A5C05CBE8ED94AFFD8900907D4C8091 /* Headers */ = { + 47F1EE75D8DFB788C2FDD007C412AA6B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + FF42C5D70F1A17DAB4D94E45BC33683F /* RNVectorIconsManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11492,11 +11765,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 530DB8296C9023E625AA0253E8B9C229 /* Headers */ = { + 53DAE55D52BEE6DF5B5E79EC99ED59FC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 3D8CBA839D0BC20577099A50855FA997 /* Orientation.h in Headers */, + 5F74CAC20368F3E0A59EBED2B75EA658 /* RNSScreen.h in Headers */, + 04D230DB80E5D08755E9851EB077FD3F /* RNSScreenContainer.h in Headers */, + 30A864000DFD77A7772D5F974E21CCB5 /* RNSScreenStack.h in Headers */, + B54ADFD00DD7C598888D83DB8E986F4E /* RNSScreenStackHeaderConfig.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 54D5215AD9FE36B32D39D5202D3424B5 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D544E467FBBC3B5F6934188C63388FCD /* ReactNativeShareExtension.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11541,40 +11825,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 57A17B5A3F81EF759EFF1618F08E58F4 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 77C3093519357AD3D8DDD3AA91875CB3 /* BannerComponent.h in Headers */, - 6B5A373F0E7173425EBFD5A88754D098 /* NativeExpressComponent.h in Headers */, - C7DED0C1AB049770C22A3352C2B0B4A3 /* RCTConvert+UIBackgroundFetchResult.h in Headers */, - 434E00B0D12D4E19D607278CCE0D1D79 /* RNFirebase.h in Headers */, - F0E93E89669793E0F22227E25E1A53EA /* RNFirebaseAdMob.h in Headers */, - 6D6407E213AFE2BBB6BFA04B13C7DFEB /* RNFirebaseAdMobBannerManager.h in Headers */, - DE4F5FF4AE9D67D6ABD6EF67FA40DE57 /* RNFirebaseAdMobInterstitial.h in Headers */, - B655AE464FE0CB410A6893211E58E74C /* RNFirebaseAdMobNativeExpressManager.h in Headers */, - 86678CD2868DFB7BE613FA589EF45959 /* RNFirebaseAdMobRewardedVideo.h in Headers */, - 775C000912D56C72E5465899BCB86685 /* RNFirebaseAnalytics.h in Headers */, - C502434B76C92D9EFC9D2F49135066CF /* RNFirebaseAuth.h in Headers */, - E13C2AA6742617B16347B3E362B73865 /* RNFirebaseCrashlytics.h in Headers */, - 0AC0BDFA8DFC4F598975851F4068E7EF /* RNFirebaseDatabase.h in Headers */, - 79FFF08137B345C891867B9ECCD22942 /* RNFirebaseDatabaseReference.h in Headers */, - 2ECB11388242E6E0A18C3BA3601B6723 /* RNFirebaseEvents.h in Headers */, - 76D278CFDFD979F4F7D4D2A01EA81609 /* RNFirebaseFirestore.h in Headers */, - 73DC40671790969404E4A58CFB7A1E16 /* RNFirebaseFirestoreCollectionReference.h in Headers */, - CB71D1B16B9F2B9A667AF1E25B9FF685 /* RNFirebaseFirestoreDocumentReference.h in Headers */, - 4420180F9E9A5E77E00B88DE043C16BC /* RNFirebaseFunctions.h in Headers */, - 77CB756B987507A7330A422CEB1A1008 /* RNFirebaseInstanceId.h in Headers */, - B06F591075795038924D7583175AB4E5 /* RNFirebaseLinks.h in Headers */, - E77EC7B11E71FA5A1F9BF470FA858B55 /* RNFirebaseMessaging.h in Headers */, - 4F4416BC5541A3ADE89342D78C30D705 /* RNFirebaseNotifications.h in Headers */, - 178A99D9AE9FD886A3483234179F94F6 /* RNFirebasePerformance.h in Headers */, - 8E9912E9184107B70F72484365E73B79 /* RNFirebaseRemoteConfig.h in Headers */, - 420287538306B3A90966C04B9A3AB3CE /* RNFirebaseStorage.h in Headers */, - 0D3A393C9BB1BDB480A63F99C8D5F6B0 /* RNFirebaseUtil.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 6199E50C54AD2932637DF85DC60C569F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11593,6 +11843,142 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 659F36E5DBE508F3F51C9BC45A482F81 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9CF9ADFE94A2AD9BC64ECD84493A9A89 /* RNSplashScreen.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6B3D97225CFD1A205FC20AC585215DF2 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 3810A6B14EA953396496017943648887 /* KeyboardTrackingViewManager.h in Headers */, + CDD6DCCC0E477E2E4AD1E5A19FBA030F /* ObservingInputAccessoryView.h in Headers */, + 21DAD634A162855EC39EDDA9D205A5C7 /* UIResponder+FirstResponder.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 714A54D2F5294517364136F395978CDE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F490A280DA9C46B6438F5385954E0F79 /* JitsiMeet-Swift.h in Headers */, + DD95EBA6FDA9AF0AEAF9323050A007A3 /* JitsiMeet.h in Headers */, + BE590B01523FA9A4C746B472FFA200AB /* JitsiMeetConferenceOptions.h in Headers */, + 5F27B2262B17A8ED956E8CDB643C4C92 /* JitsiMeetView.h in Headers */, + A0F8D5DF964D54911C5028476172F0F1 /* JitsiMeetViewDelegate.h in Headers */, + 448A276C62C553C3B0FA34B7892F6DB5 /* RNJitsiMeetView.h in Headers */, + DE950F6702969FAAE4491E12A04568DB /* RNJitsiMeetViewManager.h in Headers */, + A56AEF3FACF407058BD2915387F02178 /* RTCAudioSession.h in Headers */, + E682364F8DBEFFD7E51D16209762CE75 /* RTCAudioSessionConfiguration.h in Headers */, + 61291288AC7AC7CDD3B929ED3C919E9C /* RTCAudioSource.h in Headers */, + 5994AF21CFE6AB3E036C94027B043F75 /* RTCAudioTrack.h in Headers */, + F628EB4B5D81895C50C92538DA48503C /* RTCCallbackLogger.h in Headers */, + 95AD4D615EB93AFF49ABB484F07F677E /* RTCCameraPreviewView.h in Headers */, + C5EDE0BF3269DE6AFAC14ABD6438022B /* RTCCameraVideoCapturer.h in Headers */, + CF586BB58996177B8A5882D6DD2B5A63 /* RTCConfiguration.h in Headers */, + 1C2BC81F064EC4039DE18F970FD0BC93 /* RTCDataChannel.h in Headers */, + F858220DD2C3E5D588A8642C2BB1EB01 /* RTCDataChannelConfiguration.h in Headers */, + 2F44D6D4E4EE43A5F7664ECA00647EAF /* RTCDispatcher.h in Headers */, + D511E604162DCB06EA12789F6C6F882C /* RTCDtmfSender.h in Headers */, + A1605CCCE6565BA53A643EBC91429F6E /* RTCEAGLVideoView.h in Headers */, + 95CFBF3D0E4C1AF895F5D53087267FFF /* RTCFieldTrials.h in Headers */, + 60B1AFF2F83CEAA426DC944451F48C0D /* RTCFileLogger.h in Headers */, + 69A2846673D708BFD9FC1F434694EDFB /* RTCFileVideoCapturer.h in Headers */, + 29ECBD01B8E360E335C500ACE0BB5532 /* RTCIceCandidate.h in Headers */, + E64BC2C8E533CF7CDC354C314C874ABD /* RTCIceServer.h in Headers */, + 71B23CEA0CA3BCCD4C220DDEA9128A40 /* RTCIntervalRange.h in Headers */, + A22540BDD7FAF3A38173DE23364D2739 /* RTCLegacyStatsReport.h in Headers */, + 78965D0B6CBC706C270100EDF89C0FDB /* RTCLogging.h in Headers */, + EFC76826523707F6F0DC69F3CA6488C1 /* RTCMacros.h in Headers */, + 5BE46BDBF82468F86ED9771A64248431 /* RTCMediaConstraints.h in Headers */, + F5D85CFC5CD0FE0A6CB20FBBF8C8F40D /* RTCMediaSource.h in Headers */, + C7B123FE60B5F434422279BA9691B96F /* RTCMediaStream.h in Headers */, + 9123798FD6EFBBCCB642E17661468672 /* RTCMediaStreamTrack.h in Headers */, + 7712E32FF1FE9125A21F8F4B28E8F4E3 /* RTCMetrics.h in Headers */, + 4CF5F6D5AEC2DE1E0C6EB35AF3DA51AE /* RTCMetricsSampleInfo.h in Headers */, + 99BA605EE7532B2F9FEBB675A1F27015 /* RTCMTLVideoView.h in Headers */, + D5192A92C1F10CD502EC44962C95F29E /* RTCPeerConnection.h in Headers */, + BDE1AE66D98B0D393FB6DF16CB035888 /* RTCPeerConnectionFactory.h in Headers */, + CC9006F7A29CCEE302855302B5FC5A31 /* RTCPeerConnectionFactoryOptions.h in Headers */, + 49E446A4D5DD1AFBEFCD4A2753322A1E /* RTCRtcpParameters.h in Headers */, + 6E6B527AA5310C4FFD9ACEF10823A8AC /* RTCRtpCodecParameters.h in Headers */, + 27A35734C77560A976F6FEDBCEC1F7A3 /* RTCRtpEncodingParameters.h in Headers */, + A587C73C6D374DCC88925139B329C90D /* RTCRtpHeaderExtension.h in Headers */, + 8F0A99981FEABE0EEEDA7B857FD53727 /* RTCRtpParameters.h in Headers */, + 0710CFC58E9814636DC21BA781A64C3D /* RTCRtpReceiver.h in Headers */, + C94C840D1E14DB9BC9E886C889EB8B22 /* RTCRtpSender.h in Headers */, + BB9F2A09744791B85D2B072DF52B8081 /* RTCRtpTransceiver.h in Headers */, + ED4166FBA827825B85C17775EFC239F6 /* RTCSessionDescription.h in Headers */, + CB0521315667C3AB0F298D47073C4EE9 /* RTCSSLAdapter.h in Headers */, + 0E2B691FE2F88A346EC366E25F908624 /* RTCTracing.h in Headers */, + 454B8C80CF6281636B45475AA17CDAC1 /* RTCVideoCapturer.h in Headers */, + 681CF8D028C101F5D274A38F4D7EBFCC /* RTCVideoCodec.h in Headers */, + 2C586C70566886B4B013885C0CA1830C /* RTCVideoCodecFactory.h in Headers */, + 94EA1FADC4793E95CF6A910FCA0D4F11 /* RTCVideoCodecH264.h in Headers */, + 931E59801F28BD777BE780FD1B39096C /* RTCVideoDecoderVP8.h in Headers */, + C20C23A304950BC721C4100E23D0FC88 /* RTCVideoDecoderVP9.h in Headers */, + AA5294CDD47316A2192F6320E6B152D8 /* RTCVideoEncoderVP8.h in Headers */, + 5F637515CE139C2841E0C9B0DF868850 /* RTCVideoEncoderVP9.h in Headers */, + EF00867FE8006E64CB3CA0B2E1D47599 /* RTCVideoFrame.h in Headers */, + 82B35AF9C20D229F8DCCD16120D89FA5 /* RTCVideoFrameBuffer.h in Headers */, + 68CB1D81A3BD0FFF532FE890FD8EB9AA /* RTCVideoRenderer.h in Headers */, + 77B593BD8C2E96A36E7E3DAD7DB1374C /* RTCVideoSource.h in Headers */, + 4669585F9867B2E2A06EF5BB183C4E68 /* RTCVideoTrack.h in Headers */, + 599DFCD3D9881132995D418B158E1865 /* RTCVideoViewShading.h in Headers */, + 1B2181C6BCA5848A25F2A132F420B99B /* UIDevice+RTCDevice.h in Headers */, + C74806A94039187E2329B2DDBCB2507B /* WebRTC.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7B7AA755D091FA35FEE59332FEE737A5 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 25D6423D05628295070015630BEB99CB /* FFFastImageSource.h in Headers */, + 1F68AEBFA6411A3648DEE6669AE1A03D /* FFFastImageView.h in Headers */, + 812AA8CB19D82ED5B346D08507A9A83B /* FFFastImageViewManager.h in Headers */, + 348E5541EB142FB68EA5CA415B0C2156 /* RCTConvert+FFFastImage.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7C6ADB7DFB0DDB4AE4C287A6215F899F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 437BC907ADF553AE69440114C0B5615E /* BannerComponent.h in Headers */, + E0F436BD1C53D3865E1F2E01ACDE6988 /* NativeExpressComponent.h in Headers */, + 0F19654838FF6ED43C61892E7178A1C5 /* RCTConvert+UIBackgroundFetchResult.h in Headers */, + B63A533C0A9755990CC9DA09029DA0C4 /* RNFirebase.h in Headers */, + A2E2EDCF8C06FA2C165219DFD7FB465C /* RNFirebaseAdMob.h in Headers */, + A646413BF2274252108B1F964825B96B /* RNFirebaseAdMobBannerManager.h in Headers */, + 6D4E3D26ADE1105286E677C7B7C515EE /* RNFirebaseAdMobInterstitial.h in Headers */, + 6C2123B06EE35601F576B70CFD2BA3EC /* RNFirebaseAdMobNativeExpressManager.h in Headers */, + C937E16AFFD30404877F2DF47DEFAB5C /* RNFirebaseAdMobRewardedVideo.h in Headers */, + B75E23837E26B8C8B10D7C3A77108941 /* RNFirebaseAnalytics.h in Headers */, + 190ABBD013617F9F95543FC775E5B84C /* RNFirebaseAuth.h in Headers */, + 6AFF75D0586C5F798628DB68D2A7227F /* RNFirebaseCrashlytics.h in Headers */, + 539A3F8A05CD0C3C07822D832AF42E5E /* RNFirebaseDatabase.h in Headers */, + A1CFBB4CF606D421BCA96B182C540DA6 /* RNFirebaseDatabaseReference.h in Headers */, + 9CAD874D4A664C7A0AD8A4E3D6F614F7 /* RNFirebaseEvents.h in Headers */, + 6D4352FB1766B6371A692C8E36497B66 /* RNFirebaseFirestore.h in Headers */, + 2FF02EEA09058F30D90EE1C2C6909878 /* RNFirebaseFirestoreCollectionReference.h in Headers */, + A0593F76CF92EF665A5CC8E59579C694 /* RNFirebaseFirestoreDocumentReference.h in Headers */, + DA05348DA397AA2CAC0CC82CD004C8DC /* RNFirebaseFunctions.h in Headers */, + 0CA3EF9D70F64C334EBB4FE2C7235B4D /* RNFirebaseInstanceId.h in Headers */, + 0BDA0195E032667B337453F07F2A528D /* RNFirebaseLinks.h in Headers */, + DA57A66236744B4D2318FF3C9A18275B /* RNFirebaseMessaging.h in Headers */, + E35E1CDAFE611A5DE5ED37C8636C0FDB /* RNFirebaseNotifications.h in Headers */, + DFCA44C8697E6963D73CC08DFD0D19B5 /* RNFirebasePerformance.h in Headers */, + F67031391B381BDC69CB305BED6E7A8F /* RNFirebaseRemoteConfig.h in Headers */, + 75755377BF794B2FB9FCB94461441971 /* RNFirebaseStorage.h in Headers */, + F3379743F67AAFFD553058B72FDD84E5 /* RNFirebaseUtil.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7DD2F109F24CE3C0C9D9D74F8F24CCAE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11670,42 +12056,47 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7DE5B0208D23075B8829A3F026C80680 /* Headers */ = { + 7ECDDEB385308AF2165C194457FCEAA1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A65855EA807397D32A01A46D6DB57130 /* CGGeometry+RSKImageCropper.h in Headers */, - 48F2F5BA68547FC258638C839BA8B494 /* RSKImageCropper.h in Headers */, - F2F48BC54D8BB155D59C43BA72E8DF82 /* RSKImageCropViewController+Protected.h in Headers */, - F1481E2A0DF4B4983FF05CAD64B6E608 /* RSKImageCropViewController.h in Headers */, - 176A1C631A8D08C2CE4199FFF1845FF3 /* RSKImageScrollView.h in Headers */, - 8FCA72E3CDD974F1FA00B30E1A09A3D9 /* RSKInternalUtility.h in Headers */, - 91906146144E1B4CDE30800973606DF8 /* RSKTouchView.h in Headers */, - C90A377EC18E1BC70F7712FC5D4DD948 /* UIApplication+RSKImageCropper.h in Headers */, - 621A038FEE12B2F35F8071DB02707C4D /* UIImage+RSKImageCropper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8670BD1127634EA6338A6DEE8814FF9A /* Headers */ = { + 83166A3F25B1D0886E1F4BF3A9269687 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 798EF4CBF5D6292D6751F7F8B1FA159F /* RNLocalize.h in Headers */, + B9275F551A92B62A723D9AAC8A5CF65E /* CGGeometry+RSKImageCropper.h in Headers */, + 4A9C583CF8E28238D2E780F12177F8CB /* RSKImageCropper.h in Headers */, + FDBE3D9126F9C65696F648658DBB2427 /* RSKImageCropViewController+Protected.h in Headers */, + DEF290AC647EA671C82354D6D3ECA504 /* RSKImageCropViewController.h in Headers */, + C2EE25B5C0A7E76C066B4CFDCEE67D12 /* RSKImageScrollView.h in Headers */, + 997F75BA65D7EF39C1B56319527C6888 /* RSKInternalUtility.h in Headers */, + 42F630BE880492119282DC0FA755B639 /* RSKTouchView.h in Headers */, + 2D896DF53BF02900EEBE7B44B48E896E /* UIApplication+RSKImageCropper.h in Headers */, + 456165C36B691163E715D41F0F561FFF /* UIImage+RSKImageCropper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 940D29A2132FA4ED100B6E10E4677C67 /* Headers */ = { + 854E14DAF172E65E767A681B7689CC98 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A58851E66911C7E28993F7BA3FB12780 /* IOS7Polyfill.h in Headers */, - B3B786D5F9CE5C749844D518FBE45D20 /* RNFetchBlob.h in Headers */, - 343AF22D91BE72D9902D9855CD2B8262 /* RNFetchBlobConst.h in Headers */, - 7237CC9ED29F13123F7FB1DF10A754DD /* RNFetchBlobFS.h in Headers */, - 89744E55CDE3C8008029ADBEBFF465FE /* RNFetchBlobNetwork.h in Headers */, - 645A29468104CC795D72016ECB6397D7 /* RNFetchBlobProgress.h in Headers */, - ED2342C3CD927D9C799F982C494C43DE /* RNFetchBlobReqBuilder.h in Headers */, - D1C7B5D055AB1D84F181B269B58F5EB1 /* RNFetchBlobRequest.h in Headers */, + 39A9BC8001D270F4CA5BF5EA8CF64C75 /* RCTConvert+RNNotifications.h in Headers */, + C36A075993C5E113C84759F9C6277BBE /* RNBridgeModule.h in Headers */, + DB3A788CE057EF252EBCB0A721FDCAE6 /* RNCommandsHandler.h in Headers */, + 84DEF8610831B106DBF4F1224BC74122 /* RNEventEmitter.h in Headers */, + 15D6677949F96FB08C6951152C55AA28 /* RNNotificationCenter.h in Headers */, + 2F1EA2AD0F06316D09CABB00DB1C3719 /* RNNotificationCenterListener.h in Headers */, + 33A4C7EC36459FB61654FB7A5FF0637D /* RNNotificationEventHandler.h in Headers */, + A0B3683C2AE9FF9D55E478FF22556E16 /* RNNotificationParser.h in Headers */, + 995C5C1DC3C22DCD5462EC55C8BA7A1D /* RNNotifications.h in Headers */, + 13595C5FAC1822D4EAAD3BD095B95104 /* RNNotificationsStore.h in Headers */, + EFB83154B4DB9E2988C315CE5A7B8662 /* RNNotificationUtils.h in Headers */, + EF18D76CC4FC1617AE16359FC0BF6F1E /* RNPushKit.h in Headers */, + 38663D2DB1D72D716ECBFF3CABAF52E2 /* RNPushKitEventHandler.h in Headers */, + 344D02C5B3EB084CA9A55D857AAE9049 /* RNPushKitEventListener.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11727,15 +12118,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A8DBD46A8D2C80F4E2A041C1BB39653F /* Headers */ = { + AE0E755714E01B108E4A1EFF0F8A86EB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 77D2A70CA31E67EFBBD4FA66FA337384 /* RNCUIWebView.h in Headers */, - 5F038B39321D9AAF351877889B39A97B /* RNCUIWebViewManager.h in Headers */, - 3D125653FFE46EB01C78B3A48D7EB8EA /* RNCWKProcessPoolManager.h in Headers */, - 0366D4991EFCC4C9DD084F0A5BAB76D2 /* RNCWKWebView.h in Headers */, - 34952F8E3CA3C8FA963F42273C01A5CE /* RNCWKWebViewManager.h in Headers */, + 006DAAE24FCABF70680FDB6C960F2971 /* Compression.h in Headers */, + B5642FD766B0E6313B8AEF94A2FAF89C /* ImageCropPicker.h in Headers */, + BC6D2227674AAED5E48B4819A33A2EB4 /* UIImage+Resize.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AED798F5D5993A3E156F167A56D261DC /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F7B23316A8915DB938029CB1524D1B6F /* DeviceUID.h in Headers */, + ACFAFC99B8934193A1432F5608FDF5DC /* RNDeviceInfo.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11750,6 +12148,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B9968EF4B293929172F5DF2CBF461880 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 2A2E1B610CEBBB681AD49E219845947E /* RCTConvert+REATransition.h in Headers */, + E7E2746FDCF8D382C2C6ACA9B98910D9 /* REAAllTransitions.h in Headers */, + BD31A5AF24AC9B5402FEA3CB1B83DAC9 /* REAAlwaysNode.h in Headers */, + 3923B1296A828A4C29061CE11ABEDA36 /* REABezierNode.h in Headers */, + 827E48F597041FAB3D9F87826010DAE8 /* REABlockNode.h in Headers */, + 6C652B2EC4CD71BEF92200D0435D9435 /* REAClockNodes.h in Headers */, + 619C147B6B7FED08DF7B6582277D75AC /* REAConcatNode.h in Headers */, + 0AA1D2D8387FBA60AD37A4FD809D669C /* REACondNode.h in Headers */, + 038C90FA9D2ECCA412B28FC875032EAF /* READebugNode.h in Headers */, + 65665DE35F68C7638CD9A77C8369FA85 /* REAEventNode.h in Headers */, + D6A60C03B3BB2A6AF33B8C58037EDBA1 /* REAJSCallNode.h in Headers */, + C9F16EF9523E29433EF700E067528AF4 /* REAModule.h in Headers */, + 577E78BFDCD70C2D173B7B59F658B0B1 /* REANode.h in Headers */, + 08BD96D91CE7BB04BC49473B233BC8AA /* REANodesManager.h in Headers */, + 6F21CAF873921093C5AD55FAA2F8CF51 /* REAOperatorNode.h in Headers */, + 4315839F10C240721141EC70B2E03145 /* REAPropsNode.h in Headers */, + 29DB1E0F5E4837F8F007CC7EC63928B5 /* REASetNode.h in Headers */, + 9E6A738AF39E0A0D87CF311DE816CF92 /* REAStyleNode.h in Headers */, + A6645F6DE0319B14C7D8D2BDAB7086AB /* REATransformNode.h in Headers */, + A3AAFBE46AD43EC85F6C1395DF938DF7 /* REATransition.h in Headers */, + C879C0B7072338FB3563AFB0DD296761 /* REATransitionAnimation.h in Headers */, + AAE9F156CE0D3643643DB23A0C6E2A6A /* REATransitionManager.h in Headers */, + 878197BCF23DCFF2192C7EAD8BE57B52 /* REATransitionValues.h in Headers */, + 4A63B4757921D68175917DE52A84CF22 /* REAValueNode.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; BAD2FB5F52C61AA86E85A17C63D653EC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11762,21 +12191,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BCFAE840A925DED48DA55A09F18BFFEE /* Headers */ = { + BBA8E70FED208471A1E63F750D051DCB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EC9662C8760527E9890E698DC7424155 /* RNSScreen.h in Headers */, - E37E63419F31FCD6BAA6F91DA3308E06 /* RNSScreenContainer.h in Headers */, - 04EE6CD58732AD8D49FAF083AA5AC04F /* RNSScreenStack.h in Headers */, - 8685670E58A31C444B632247576E8339 /* RNSScreenStackHeaderConfig.h in Headers */, + 18BBBC53C30DAFFD97A767FA106AD36F /* QBAlbumCell.h in Headers */, + 9C5D4B2A41B7F9D74F9CB8B0EC3050F2 /* QBAlbumsViewController.h in Headers */, + 7E22CA6660D765BCECAEB3DE6A014F85 /* QBAssetCell.h in Headers */, + 0E113195FD8A11667564422ECA5749F7 /* QBAssetsViewController.h in Headers */, + 7A9243A8B0CA5C1BE54A18871377B136 /* QBCheckmarkView.h in Headers */, + B1AC1AE8F3AE6524151C25665EC95953 /* QBImagePickerController.h in Headers */, + 8B3B7F55834A38F7925410DD822775FD /* QBSlomoIconView.h in Headers */, + 35FBAA61ABAB98027A132D0558D73D3B /* QBVideoIconView.h in Headers */, + 8C244DCE640C264D5737457A6B25C623 /* QBVideoIndicatorView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - BE8F55ACB752648EBD4CE283B4461D31 /* Headers */ = { + BC46AF430D4FDEFB82CE97D457FEBDB3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + FF035F46F9915892BBFC0D35BB094A5F /* UMBridgeModule.h in Headers */, + 455389D21AAE663C317C52E5D086B4FD /* UMModuleRegistryAdapter.h in Headers */, + 954C71FBA3722AF42215ACF6DB07320D /* UMNativeModulesProxy.h in Headers */, + 94018068156640F178FE1D19A318537F /* UMReactFontManager.h in Headers */, + 41D741B65D9F7255C6C75C0D3D3B0286 /* UMReactLogHandler.h in Headers */, + BE23C08ED9C5AFE3CBCC1C5AD1E68154 /* UMReactNativeAdapter.h in Headers */, + 8BB33AE50697466610AD86FCD2C29242 /* UMReactNativeEventEmitter.h in Headers */, + 35175A266E460000CAE96A030F17082D /* UMViewManagerAdapter.h in Headers */, + FAC3B22C2143F4C415F5838B5F22D50B /* UMViewManagerAdapterClassesRegistry.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11818,38 +12261,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C17D55980E34D4797513EB218D0B71DD /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0D6B6FBA446C7BB91DF886F5F2CF9C3F /* AudioRecorderManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C4064E4E26CD5A2CCFD7405E66BE4ADC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - B139381861B93CE5F3833D14305158AB /* Compression.h in Headers */, - 7333F2E6FA200A9837FEFEBE24EB619D /* ImageCropPicker.h in Headers */, - 314E2917B93706DDBC781C17CB98B64D /* UIImage+Resize.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C40783951064FA7434A0B15BE2107A4F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6FD62F87269C29804AE2F32C9A66AF0F /* Color+Interpolation.h in Headers */, - EF0320F5725BB7E2140358C884EA98CC /* LNAnimator.h in Headers */, - 6CADC7B152C83248621D2C55312D66B9 /* LNInterpolable.h in Headers */, - EAC364E6F927A627D09495E369A27234 /* LNInterpolation.h in Headers */, - 08BF6B5030EA92517FD259DD7D71A5D4 /* NSValue+Interpolation.h in Headers */, - 2FC04BB7A3E1B56D6042758C6AC9B6BE /* RCTCustomInputController.h in Headers */, - 844CE9D54C2836BC2BD3E9631A83E590 /* RCTCustomKeyboardViewController.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; C506B785901ED9D278B8F06D5EC16BD2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11878,6 +12289,30 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C50F831AF332D160A4382A82F665FDEF /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 203AABEE5FE23897771627ABE96A862A /* RNFlingHandler.h in Headers */, + 5128FADFBFB18C9FE7371A3B21E818ED /* RNForceTouchHandler.h in Headers */, + 46DB8BA6AFA62508FCAB543F162DD51E /* RNGestureHandler.h in Headers */, + 924E6CCD088394537B162F753CABF946 /* RNGestureHandlerButton.h in Headers */, + F2A2F337AD5C535E5217347958F5EB16 /* RNGestureHandlerDirection.h in Headers */, + E284B0CE183A1A3D34F60A9452BA0A60 /* RNGestureHandlerEvents.h in Headers */, + BE7C8FECCD5AB036BFB964C0BC4234A7 /* RNGestureHandlerManager.h in Headers */, + 347C264998DC72857235F4AB90A3EDB3 /* RNGestureHandlerModule.h in Headers */, + D3D88754AC2587717036298083CF8AEA /* RNGestureHandlerRegistry.h in Headers */, + 8AAA0B0135F8EBC06CD4B77B70C61964 /* RNGestureHandlerState.h in Headers */, + 6045FA98C75F5A4D1F757EACA47DD8A6 /* RNLongPressHandler.h in Headers */, + 4680213B18911796C539866DC922026A /* RNNativeViewHandler.h in Headers */, + CA2646FC52F32F7FF59DFFA7E3825207 /* RNPanHandler.h in Headers */, + 673237308A63941AFE4D9E8759F1F129 /* RNPinchHandler.h in Headers */, + 95D3A157AAD45D758D291FA70317AD03 /* RNRootViewGestureRecognizer.h in Headers */, + 5ADF94FDDD43D2680355FB3DFEA89B9E /* RNRotationHandler.h in Headers */, + 0897FCCC28DFE0E0CA95EFEDE4BCD28D /* RNTapHandler.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C8F51655E8DC48BAB3B0C28BA2D5CD9D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11900,47 +12335,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CB04D99C90D7E88CC54086970C154F45 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CBC7CE2B0EE91BB4212188158F97CC3 /* DeviceUID.h in Headers */, - 7813042E20013D4632ABEAA2DB4E7A02 /* RNDeviceInfo.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CBD22459B7779BC3151D558C50D15395 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4E550E125A4174B6A1902BE93E6853A2 /* UMBridgeModule.h in Headers */, - F89AA5B7675E084BE1C4AC1154A173ED /* UMModuleRegistryAdapter.h in Headers */, - 8493E48B9C43B862C26FD51B6C113A7E /* UMNativeModulesProxy.h in Headers */, - 7D800B7DF605EC4DA505C5FD11FF2F45 /* UMReactFontManager.h in Headers */, - 50699A23E2B7ABCDA090270A88CD285F /* UMReactLogHandler.h in Headers */, - 6D7BB7D63042CA5113F83E2DE65F2427 /* UMReactNativeAdapter.h in Headers */, - 7A9F8CAF1274CF3F6E606497AD877222 /* UMReactNativeEventEmitter.h in Headers */, - CA39BA4B39AF5FC8C73BD01BC4BCB160 /* UMViewManagerAdapter.h in Headers */, - B7FFF35E24ED134F0DC4E5578F7BB959 /* UMViewManagerAdapterClassesRegistry.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CDCE3D976424FF65FB79441DA3EC7D53 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - A23888DB188D8287D7E8085CCBD426C2 /* RNBackgroundTimer.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CE890206B262448B9CB4EDB1DD7F2001 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4B68BF84398D90536574DE65F1F36089 /* ReactNativeShareExtension.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; D30403BD2E144F4E70D5EBD790D0F9DF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11964,95 +12358,78 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DC8E9957B05A2CEE03E97117A28B1541 /* Headers */ = { + DD27C1BA81E7202358D5504B8068657D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0BB9867823E23F576DB963FDA0E28793 /* NSBezierPath+RoundedCorners.h in Headers */, - EDAECEA0F7805D6FBA19164507F34D04 /* NSButton+WebCache.h in Headers */, - 907594BCF7444680F49A3C481A1B9BA0 /* NSData+ImageContentType.h in Headers */, - 3E8A633387B20485385B8880870011A8 /* NSImage+Compatibility.h in Headers */, - 08614B47BACD0696CB199B9ADF4AB939 /* SDAnimatedImage.h in Headers */, - D704098EBF6271060A41D8E27F3EC02C /* SDAnimatedImageRep.h in Headers */, - A86C62CF087AD2867AF6B9E404A8CA2B /* SDAnimatedImageView+WebCache.h in Headers */, - 5F0D81024D7DF518877B47A9E254C61B /* SDAnimatedImageView.h in Headers */, - 6E2090BF2FB0A695378FE1DAFC6103C9 /* SDAsyncBlockOperation.h in Headers */, - F1A8836C8112FB3D67C84C6AFFDD28C8 /* SDDiskCache.h in Headers */, - 6D9E1707EA3CAA2BD0F91A06BBC8E479 /* SDImageAPNGCoder.h in Headers */, - AFD62E3984D85087062AB8EB381D7F90 /* SDImageAPNGCoderInternal.h in Headers */, - 03E7C97EE245B6F8011A1213D74376BD /* SDImageAssetManager.h in Headers */, - F1DCF77B25A94699E8371EF2EF9222EE /* SDImageCache.h in Headers */, - A185F427205EEB93F5D8371CBA782012 /* SDImageCacheConfig.h in Headers */, - CF49E5720865EBBC34CF07C55C831CDA /* SDImageCacheDefine.h in Headers */, - 3C2DEA0981CFADB14F26EF6F4119E87E /* SDImageCachesManager.h in Headers */, - 9550654EDB769EAC5245B4EB4F245B6D /* SDImageCachesManagerOperation.h in Headers */, - F30EE318350EE043AD328AD53479E418 /* SDImageCoder.h in Headers */, - E62D9E826B028ABEE704961AE87496CC /* SDImageCoderHelper.h in Headers */, - 5797F7D3A3E69B96AA10B6DB86F41505 /* SDImageCodersManager.h in Headers */, - B6408102D8A9A97C6AB7682F0DC9C8EE /* SDImageFrame.h in Headers */, - 28509E4C531B9CF32E2EA335AF0E01C7 /* SDImageGIFCoder.h in Headers */, - CD159EB09E4AC98E73793B55B8EA95C7 /* SDImageGIFCoderInternal.h in Headers */, - 4F0079A0F663452E1FC2F08242E1269F /* SDImageGraphics.h in Headers */, - 5AD34B65231DF13E87DAEEE68DACFA26 /* SDImageIOCoder.h in Headers */, - 814EEB6EAB00BFEDD4DEE9D31B902541 /* SDImageLoader.h in Headers */, - DF0CB7649CFCA80EAFFB371176315841 /* SDImageLoadersManager.h in Headers */, - FF6D3FC3A31B5EC01BFDA4970050A6B9 /* SDImageTransformer.h in Headers */, - EE7471C6210BEC65A442909F081AC330 /* SDInternalMacros.h in Headers */, - 1DA4BAD50755BD0F10DBDBD3AAF5DC1F /* SDMemoryCache.h in Headers */, - C12E69DB32C0F9DB402F0C8D8334B71D /* SDmetamacros.h in Headers */, - F2A0C4AB9ED74FA8127B8691350BB895 /* SDWeakProxy.h in Headers */, - 1D55EEEB940F7B2D8C01DBFAFF70495F /* SDWebImage.h in Headers */, - 20733D14F57EC1D66F096E5907D5D246 /* SDWebImageCacheKeyFilter.h in Headers */, - FC22CDA808D2C69BD267A177F9F0464F /* SDWebImageCacheSerializer.h in Headers */, - 026B9B3383BB94BC52ECA572C2010223 /* SDWebImageCompat.h in Headers */, - 8943092C1189404F21A0843A51E19613 /* SDWebImageDefine.h in Headers */, - 3B61E9B3F96BF43EF89E06DA5468D925 /* SDWebImageDownloader.h in Headers */, - 64E880AAF704F39386C5E897D3413470 /* SDWebImageDownloaderConfig.h in Headers */, - 7080D2343A65045855A905370EDB8F5E /* SDWebImageDownloaderOperation.h in Headers */, - F414C6C435E3F08637F0B465F176A861 /* SDWebImageDownloaderRequestModifier.h in Headers */, - 531117A6085D40A3787A51744E75D30E /* SDWebImageError.h in Headers */, - A2A2DA4637617BE8EADE251EA3581E02 /* SDWebImageIndicator.h in Headers */, - 218325DE22BD5A0E948B79702E769793 /* SDWebImageManager.h in Headers */, - 649079C85D59CAC4251F61F7394C7445 /* SDWebImageOperation.h in Headers */, - E72B24461ED7F1F91783237F8BBB78C6 /* SDWebImageOptionsProcessor.h in Headers */, - 94C4A72B4DAF9D8834A5EDC0A09C8475 /* SDWebImagePrefetcher.h in Headers */, - 9F2A8C00CF0C74E3CCA048C7D8555CCA /* SDWebImageTransition.h in Headers */, - 96DB392D51057262AA777A13D5BF98AC /* UIButton+WebCache.h in Headers */, - F54C91CD94438ED74E33C013A2B53F08 /* UIColor+HexString.h in Headers */, - 7D6612C74E6B6D84137CC99803C228C3 /* UIImage+ForceDecode.h in Headers */, - 39C0B776C48DAEEE98E27ECD52BADDD2 /* UIImage+GIF.h in Headers */, - 3DA293ECE7B822B970D030B0AA65B617 /* UIImage+MemoryCacheCost.h in Headers */, - D36FF9316EED84F5AA2EDA4562EC32B0 /* UIImage+Metadata.h in Headers */, - 1342D218A655BAA8E5D66C84AB769E69 /* UIImage+MultiFormat.h in Headers */, - 5A560B45D5D7C2DD29343A9699C2978E /* UIImage+Transform.h in Headers */, - FAF7BC4185FFB2D89F5D239540B94FDB /* UIImageView+HighlightedWebCache.h in Headers */, - 68E422E7472A6D4E25F87AC2C1EB540A /* UIImageView+WebCache.h in Headers */, - 5B1C39D5437E61CA41494663642F5BAE /* UIView+WebCache.h in Headers */, - ED762BA733B29B35B834E2FB576B390D /* UIView+WebCacheOperation.h in Headers */, + A0325BCFA08F4D8606F76E6D9B87C95C /* NSBezierPath+RoundedCorners.h in Headers */, + 9412D41189CDC2EDB91EBA58F62FF0BE /* NSButton+WebCache.h in Headers */, + 9315C485216123B6C3D5B10E2055624D /* NSData+ImageContentType.h in Headers */, + 69374DBA3F7402BE93586F24CA966896 /* NSImage+Compatibility.h in Headers */, + E279A7F1C76E83CA3218E493CA1FB924 /* SDAnimatedImage.h in Headers */, + 1F39513974D5E444FB8D1AB9BD8861CC /* SDAnimatedImageRep.h in Headers */, + FDF55E850E986E0B521354C0490829BF /* SDAnimatedImageView+WebCache.h in Headers */, + 4896DC3652F0EDE827D0E2B2B781E9E5 /* SDAnimatedImageView.h in Headers */, + 69BEF51BAF9BF497C66822BB0808BBAF /* SDAsyncBlockOperation.h in Headers */, + 7059253329114C7DCC50D932B97ED5BA /* SDDiskCache.h in Headers */, + 1FDC692CFF1B03F7C1C880B489F9427B /* SDImageAPNGCoder.h in Headers */, + E8A7D89286898AEC226EDE03E991B68E /* SDImageAPNGCoderInternal.h in Headers */, + 78FAD15BE85AAA7BD88E0098177B131B /* SDImageAssetManager.h in Headers */, + A13C09FA5F5AC97366774E5CD3360CB8 /* SDImageCache.h in Headers */, + 70816C2CA91B1C2BFD72113BD24C38EF /* SDImageCacheConfig.h in Headers */, + AFD3A7FC59FEC800AA07CEA9D33A5042 /* SDImageCacheDefine.h in Headers */, + 7AE161304579335730486A53B7FE48A3 /* SDImageCachesManager.h in Headers */, + AE352AD35FBFA91C98CBEF807A845E58 /* SDImageCachesManagerOperation.h in Headers */, + 46049568FF0795838C9A35792AC2D00A /* SDImageCoder.h in Headers */, + 024146916C54C1D09E3073F043D118F4 /* SDImageCoderHelper.h in Headers */, + 93DFDA29F6A79477739EBA5A853C27B9 /* SDImageCodersManager.h in Headers */, + 0516CA29536E14A965445F36D99AE5C6 /* SDImageFrame.h in Headers */, + E951D8EEE84A03EF7357413001D3B9F4 /* SDImageGIFCoder.h in Headers */, + 224D745280FCB0F98B5244E78ACF0C22 /* SDImageGIFCoderInternal.h in Headers */, + 434BF22F5ABFE26570D69A59B45A8B88 /* SDImageGraphics.h in Headers */, + 662F8B45E45AAC9AF5185F039264E7EA /* SDImageIOCoder.h in Headers */, + 02B71DF6BE82EC193BC73EF172BD958D /* SDImageLoader.h in Headers */, + 119A8BA7D5E944154EEB9C90A439A9F3 /* SDImageLoadersManager.h in Headers */, + BCC6C08B8F6156BE73D6620F7E431BE5 /* SDImageTransformer.h in Headers */, + 9E2684CF31CAE52F305ACE88302AF1D6 /* SDInternalMacros.h in Headers */, + EDB7867ED838DB340E9654A781552720 /* SDMemoryCache.h in Headers */, + CC908ABA1350366B51DD8022A40310C5 /* SDmetamacros.h in Headers */, + 008982858B301945DE4228F619B9CFC3 /* SDWeakProxy.h in Headers */, + 028E7375670CCFBEF96A031609B63062 /* SDWebImage.h in Headers */, + 8BF612D80239878EDE70437331809BAE /* SDWebImageCacheKeyFilter.h in Headers */, + C1DD55B2FEE817424A677CCFF68CAF4F /* SDWebImageCacheSerializer.h in Headers */, + F4E45E4DAB3846FDFBF05FCB418A9964 /* SDWebImageCompat.h in Headers */, + 879EE0EB611D47E00EA0D2461B11C539 /* SDWebImageDefine.h in Headers */, + 08E997217A230E573A3068B3BD2B1D68 /* SDWebImageDownloader.h in Headers */, + CF941C1C98E600A81E4CCF1C04CE399F /* SDWebImageDownloaderConfig.h in Headers */, + 0DEEFD30C17F762E0AF4DBA443A83DE8 /* SDWebImageDownloaderOperation.h in Headers */, + B942CF42CF58C48B50033AC53C97AEEE /* SDWebImageDownloaderRequestModifier.h in Headers */, + 5609B1ACDEDC7FA012A4E09AF45426E6 /* SDWebImageError.h in Headers */, + B67F9EADE8A7887C540E50300471F205 /* SDWebImageIndicator.h in Headers */, + 0159EB190D17A2885F17C768A452C3AE /* SDWebImageManager.h in Headers */, + 53C001EA99BDF32E5D7A6DB8DAC66AD8 /* SDWebImageOperation.h in Headers */, + 3E1E8141D3AF15F12F55CBB61A2CD0F7 /* SDWebImageOptionsProcessor.h in Headers */, + CF6E784BB1AF3600819A550599235F8C /* SDWebImagePrefetcher.h in Headers */, + C929E860D3951049F5FE985255C77020 /* SDWebImageTransition.h in Headers */, + 7AB81C6A22EB6F90AEF1F81B33E04041 /* UIButton+WebCache.h in Headers */, + 11EFC4E7041847BC1511810575F27EF8 /* UIColor+HexString.h in Headers */, + FBAFC72626B67FC93823B2774F050B40 /* UIImage+ForceDecode.h in Headers */, + 443D7B5C46E6DDF879045D68EC9FB6B2 /* UIImage+GIF.h in Headers */, + 097F719F2E0EBDF6D3B956EFB1B96101 /* UIImage+MemoryCacheCost.h in Headers */, + 82276674B95E92D2AA053A9F0E171939 /* UIImage+Metadata.h in Headers */, + 2280C2F122A895DCC670817C6586974C /* UIImage+MultiFormat.h in Headers */, + BA5CBF565F01877DF423BE6617EAC782 /* UIImage+Transform.h in Headers */, + 74B23627E61DD52393A4AB0DBA1E9228 /* UIImageView+HighlightedWebCache.h in Headers */, + 4438D57137950A9796352A5AED48E61C /* UIImageView+WebCache.h in Headers */, + 4DF0C6F8B482A3849D2F2C907D732E75 /* UIView+WebCache.h in Headers */, + CB78D4D89DCF07066A862795246D7909 /* UIView+WebCacheOperation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - DDAA2E48C0E6F28F2F6FDCE534DE8EED /* Headers */ = { + DFFC7E706ADAD4C7F55F22D7A9F4AEFB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 634E3AC82223A2F2B35D913D66BFBCD1 /* QBAlbumCell.h in Headers */, - E29BA8AF4166CA490E74B3B057B056EC /* QBAlbumsViewController.h in Headers */, - F667ACBB76F4EA2E93808FE74D9CC0AE /* QBAssetCell.h in Headers */, - 6744BAB5DB622E79067AF515F649F685 /* QBAssetsViewController.h in Headers */, - 93E830F8D45B354C4722F3D2341EB9B6 /* QBCheckmarkView.h in Headers */, - 84F5699277C0FA4C7F061B9EAF314391 /* QBImagePickerController.h in Headers */, - 71F787DD6EDF18A2F2404078E1099776 /* QBSlomoIconView.h in Headers */, - F05F6C45463073166AF933F841EE5D6B /* QBVideoIconView.h in Headers */, - D4399BA02911345ADC0A48D3892C42A1 /* QBVideoIndicatorView.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DF5EE73A5417ED548BCDACDF5A6BCE7D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 98A5ECE82530161B4B42F08EE6ADE4FB /* RNUserDefaults.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12115,6 +12492,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E91C5702AF17055DA4EF0568FE9C1C16 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 579051C3AF77E333B0431342DEB99CF8 /* SDImageWebPCoder.h in Headers */, + 356C06788DAC08F3313A547170AC526E /* SDWebImageWebPCoder.h in Headers */, + 1DBB0D025F1CE40270EC1DC0B0311EA1 /* UIImage+WebP.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; EA11A446AE3F07E8F09B7047F692DE6E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12157,6 +12544,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + EFE86F875B19C47C3BAA8E464B177A15 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 71AD998A754A365A21FB52693431E6A9 /* RNLocalize.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F4D3A9D935D60FB2538E93698B947A81 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F5CF0E89D02725E620F0AB36FF3D91C6 /* RCTVideo.h in Headers */, + 435212C28A98C017597A539ECC5D75F9 /* RCTVideoManager.h in Headers */, + 2E4B53C220019DB80418B90BEA70F7A8 /* RCTVideoPlayerViewController.h in Headers */, + 227805B148CA0C4BF8EFAC91EDFD6358 /* RCTVideoPlayerViewControllerDelegate.h in Headers */, + 93554BCDCB3335B2637B539F4867DD0D /* UIView+FindUIViewController.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; F6EE5A5903B367750D80F96180E9A24D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12346,17 +12753,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FC3EE84D7156BC0CF102C1D5BF394BC5 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - CE130FC1601F841A40C605C30EF25783 /* FFFastImageSource.h in Headers */, - C8B72A667488FC07758FEA21516B7442 /* FFFastImageView.h in Headers */, - 6616A3997C6A3D8D6BC38E933F87F07A /* FFFastImageViewManager.h in Headers */, - 4CCAE24CDE342FA38E01ED30BA7543DC /* RCTConvert+FFFastImage.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -12376,7 +12772,7 @@ ); name = "React-RCTImage"; productName = "React-RCTImage"; - productReference = 63C1E934AB2989D7A11AC9B284CCFC8C /* libReact-RCTImage.a */; + productReference = 71AD97E8645BD5964346358C87FCA6C5 /* libReact-RCTImage.a */; productType = "com.apple.product-type.library.static"; }; 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */ = { @@ -12396,7 +12792,7 @@ ); name = FirebaseCore; productName = FirebaseCore; - productReference = 7DE78E9DAE2CE047D5546F3DF3332493 /* libFirebaseCore.a */; + productReference = A71946781760342C927A6D31AD36CCF9 /* libFirebaseCore.a */; productType = "com.apple.product-type.library.static"; }; 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */ = { @@ -12413,43 +12809,7 @@ ); name = UMCore; productName = UMCore; - productReference = 542BFC98A38CE1BDD075868FF6AB1B24 /* libUMCore.a */; - productType = "com.apple.product-type.library.static"; - }; - 062F5DBABAF21FFB6A377EC1FE48A730 /* RNScreens */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6D29DC28C1E1E409101375C81620D131 /* Build configuration list for PBXNativeTarget "RNScreens" */; - buildPhases = ( - BCFAE840A925DED48DA55A09F18BFFEE /* Headers */, - A6468C04E5C8FA83157647DFAC412A30 /* Sources */, - 049D432CF7EB75C21F0293A30D683D77 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 15325BC0DA5CC42A35CCC703DAB49D2A /* PBXTargetDependency */, - ); - name = RNScreens; - productName = RNScreens; - productReference = E55F7B3536044F2F9DEED24EDCEC22E2 /* libRNScreens.a */; - productType = "com.apple.product-type.library.static"; - }; - 0EBAD9A3F5D231CA9F04A66138256744 /* QBImagePickerController */ = { - isa = PBXNativeTarget; - buildConfigurationList = 5A7C688426568C2CFB3F7202B7B85805 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; - buildPhases = ( - DDAA2E48C0E6F28F2F6FDCE534DE8EED /* Headers */, - 7383D9AB3223022A16289DCD1E70066E /* Sources */, - 2ED36A18A6894BD375DD3F30419447EC /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - D924DF40E4985C13E50E89CB21E59605 /* PBXTargetDependency */, - ); - name = QBImagePickerController; - productName = QBImagePickerController; - productReference = 0DBE935D2FFB86EEF4268BE44E73B029 /* libQBImagePickerController.a */; + productReference = 8FBB53B6B7A25D12B48532FD5D6D46CE /* libUMCore.a */; productType = "com.apple.product-type.library.static"; }; 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */ = { @@ -12466,7 +12826,61 @@ ); name = "React-jsinspector"; productName = "React-jsinspector"; - productReference = 0BE5449AE70E2DEE65E6F13ABC1B5065 /* libReact-jsinspector.a */; + productReference = 3B1620774B29656AC3E1A71D3FDA84D7 /* libReact-jsinspector.a */; + productType = "com.apple.product-type.library.static"; + }; + 14C4E57D028B3604711DA6503AD5B4F0 /* RNReanimated */ = { + isa = PBXNativeTarget; + buildConfigurationList = 71E061D3039A427268B1CFAEBDC2B53F /* Build configuration list for PBXNativeTarget "RNReanimated" */; + buildPhases = ( + B9968EF4B293929172F5DF2CBF461880 /* Headers */, + AD26334B0092CF5ED2A73D6D40192D99 /* Sources */, + 8992EE11052F71A57DFEFD7F2962A65C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + AC123A1D22224FDF7EE0DA3F835848EB /* PBXTargetDependency */, + ); + name = RNReanimated; + productName = RNReanimated; + productReference = 892A647BE840B1C3C30821670F26D24F /* libRNReanimated.a */; + productType = "com.apple.product-type.library.static"; + }; + 193A52DCCDA30BC73369F9D25131BB61 /* react-native-document-picker */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8ECEB11468288A30F8DB621C69F1644A /* Build configuration list for PBXNativeTarget "react-native-document-picker" */; + buildPhases = ( + 1A83BB59B4659B5CEDC80B22461E1980 /* Headers */, + 97A6E3F92A7DD5ED5B33CD3B00A955BB /* Sources */, + 13EE0A12C0EC12BF7DE241B489F941DC /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 6292332F7FFF34B4E32AAE9D148E7B06 /* PBXTargetDependency */, + ); + name = "react-native-document-picker"; + productName = "react-native-document-picker"; + productReference = B5C379D69648E4C64C7EE6B4A00F093E /* libreact-native-document-picker.a */; + productType = "com.apple.product-type.library.static"; + }; + 1A05BC2EB27453B863BCC5EC8B2B2B3B /* react-native-jitsi-meet */ = { + isa = PBXNativeTarget; + buildConfigurationList = 91266EF70B984B3019C96D4B18BD6959 /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */; + buildPhases = ( + 714A54D2F5294517364136F395978CDE /* Headers */, + 647603BEA425F30799B16B7C04E03A64 /* Sources */, + 1C8524A5A4298402270773703AAE011D /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 34AB55DBFC471A6A75A09E3C6154BE3C /* PBXTargetDependency */, + ); + name = "react-native-jitsi-meet"; + productName = "react-native-jitsi-meet"; + productReference = AA8FBA102FB1166DF7FB0802B5BF7728 /* libreact-native-jitsi-meet.a */; productType = "com.apple.product-type.library.static"; }; 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2 /* React-RCTWebSocket */ = { @@ -12485,7 +12899,25 @@ ); name = "React-RCTWebSocket"; productName = "React-RCTWebSocket"; - productReference = 21EF974020D2DBBD3B5149575B06BB71 /* libReact-RCTWebSocket.a */; + productReference = AE671F9A1A26B5C284532EBFC3358B61 /* libReact-RCTWebSocket.a */; + productType = "com.apple.product-type.library.static"; + }; + 1F10289E58028110D5E1095D41608A3D /* RNAudio */ = { + isa = PBXNativeTarget; + buildConfigurationList = 98C7EC1C26974F811321EA4B1E625D89 /* Build configuration list for PBXNativeTarget "RNAudio" */; + buildPhases = ( + 0D1A6F8D4BCFA061D067E8C3EB47A628 /* Headers */, + DAC7A0437BDF9144772A22DE5DED0B0A /* Sources */, + 3F9CCE7E7B1BCBBBE3A0A8DFC4F1434D /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + E1C3C32198E4D12D3FEACC4372F8C08A /* PBXTargetDependency */, + ); + name = RNAudio; + productName = RNAudio; + productReference = 6F138BE14C5937ECCF54388B1992E147 /* libRNAudio.a */; productType = "com.apple.product-type.library.static"; }; 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */ = { @@ -12502,63 +12934,25 @@ ); name = GoogleDataTransport; productName = GoogleDataTransport; - productReference = 56E72A33A710EB333F582CCB48F632EB /* libGoogleDataTransport.a */; + productReference = 669B6C6155B1B2999DA7BC703DB0C0BE /* libGoogleDataTransport.a */; productType = "com.apple.product-type.library.static"; }; - 25949AF3296378D8BFCA4B563F4B4F45 /* rn-fetch-blob */ = { + 256C04ADE480DBD4834FD3CAB29E18C7 /* QBImagePickerController */ = { isa = PBXNativeTarget; - buildConfigurationList = F5E7A56037B6723CEC3F1621CAD4DD27 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */; + buildConfigurationList = F2D8480B27D0915D8966535107ED7DDC /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; buildPhases = ( - 940D29A2132FA4ED100B6E10E4677C67 /* Headers */, - D7A1BDE8885430196A0C7B4D947E8597 /* Sources */, - D46BD416B83086B5A10E9251E78178C2 /* Frameworks */, + BBA8E70FED208471A1E63F750D051DCB /* Headers */, + F790F95995B2FEA3DD77AB1904A24322 /* Sources */, + 53BF10005749D5F0D5D7841DE21038BF /* Frameworks */, ); buildRules = ( ); dependencies = ( - 73587A58E2D339F13C1937D15E8BDB3A /* PBXTargetDependency */, + E0702828A29F480FC43C9E4E9B958FFB /* PBXTargetDependency */, ); - name = "rn-fetch-blob"; - productName = "rn-fetch-blob"; - productReference = 7D1DB3B67FD724782F3C374A5EFB2611 /* librn-fetch-blob.a */; - productType = "com.apple.product-type.library.static"; - }; - 2D216ABBF7DB5CB52B72847709A0E887 /* react-native-keyboard-input */ = { - isa = PBXNativeTarget; - buildConfigurationList = B9B064DE2FC12B2F2FE92342734CA5FD /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */; - buildPhases = ( - C40783951064FA7434A0B15BE2107A4F /* Headers */, - 7AF6B7F9A1B9BB6F50FD7AF9005D12E6 /* Sources */, - 4038F8255BCCBD9276A8DBB6851B411B /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 2EA5D411C634F75A18C4788ACF34EAEA /* PBXTargetDependency */, - ); - name = "react-native-keyboard-input"; - productName = "react-native-keyboard-input"; - productReference = 9BC5C63657EAAA3C3C9CE341DD5ACADC /* libreact-native-keyboard-input.a */; - productType = "com.apple.product-type.library.static"; - }; - 2D23E970E1AD78BBDD3815E389684439 /* UMReactNativeAdapter */ = { - isa = PBXNativeTarget; - buildConfigurationList = A2234434F8DD7D4B7287546DA8E8D857 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; - buildPhases = ( - CBD22459B7779BC3151D558C50D15395 /* Headers */, - 809BFEE3DD1E23210312DC8810E3F6A1 /* Sources */, - 6A34CC6488ED3BBF6E45C611EB46EC08 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 43216CE39AFA05B7B0505A99FEFB9EFA /* PBXTargetDependency */, - 8B8D6CA1BAE4452A28BDE21C2DD5BE0B /* PBXTargetDependency */, - F1BF9C5BC54EB90BF5F0142974C50ED2 /* PBXTargetDependency */, - ); - name = UMReactNativeAdapter; - productName = UMReactNativeAdapter; - productReference = 768D0474C387997CB2E6B2B8BA54C7BF /* libUMReactNativeAdapter.a */; + name = QBImagePickerController; + productName = QBImagePickerController; + productReference = AC3449896238B5701AF3BF73CF742930 /* libQBImagePickerController.a */; productType = "com.apple.product-type.library.static"; }; 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */ = { @@ -12578,45 +12972,47 @@ ); name = "React-RCTBlob"; productName = "React-RCTBlob"; - productReference = C36EEA33AC428D316780A5588CB86FEE /* libReact-RCTBlob.a */; + productReference = CCBBB8DAC7A5C7FEAB45788345976867 /* libReact-RCTBlob.a */; productType = "com.apple.product-type.library.static"; }; - 35577D44474D5D17721C61EB916F7021 /* SDWebImage */ = { + 317B9B7E899CBAA3C433E49C9A4F9233 /* SDWebImageWebPCoder */ = { isa = PBXNativeTarget; - buildConfigurationList = AE9EF8B756AFF3666D08297F1873FA4B /* Build configuration list for PBXNativeTarget "SDWebImage" */; + buildConfigurationList = 49785E0A2F51DE2E93D4D9FB31A63078 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; buildPhases = ( - DC8E9957B05A2CEE03E97117A28B1541 /* Headers */, - FDE07ED2D22B7A3F0DAE428592E93E61 /* Sources */, - A8EBADA0F595E536E8E3D6A632ABF8A5 /* Frameworks */, + E91C5702AF17055DA4EF0568FE9C1C16 /* Headers */, + C9FB8C506215A720343D5F3683C909AC /* Sources */, + 25B8C0799269F1B8F8D8525B371D0527 /* Frameworks */, ); buildRules = ( ); dependencies = ( + 7DB1B25BD1FBE6A8E463664EF70D449A /* PBXTargetDependency */, + 69D52840C58D49D1AA0A7E00D756A13A /* PBXTargetDependency */, ); - name = SDWebImage; - productName = SDWebImage; - productReference = 329CE658ED52FC4351E0175DAF9F15A4 /* libSDWebImage.a */; + name = SDWebImageWebPCoder; + productName = SDWebImageWebPCoder; + productReference = 42F69A1751A67EB85E542EAF2FD6758D /* libSDWebImageWebPCoder.a */; productType = "com.apple.product-type.library.static"; }; - 35BC3AE509299DE247A4FF5AFF8BEE16 /* RNFirebase */ = { + 3396F21218EB36C2568D05648BE2827C /* RNFirebase */ = { isa = PBXNativeTarget; - buildConfigurationList = 7C5B3997CD647FDD47AC1C92231027EB /* Build configuration list for PBXNativeTarget "RNFirebase" */; + buildConfigurationList = A6A3679287E555F007FBF3B7CAD7115F /* Build configuration list for PBXNativeTarget "RNFirebase" */; buildPhases = ( - 57A17B5A3F81EF759EFF1618F08E58F4 /* Headers */, - 2CFFDFD1B6CD026BF88EBAE5FDF38762 /* Sources */, - FB6F3B2DFFE6DE6D82FDD25F2AD761EC /* Frameworks */, + 7C6ADB7DFB0DDB4AE4C287A6215F899F /* Headers */, + 52161A6E52FD21E1A7F0E2D57B27CE3F /* Sources */, + 8659A1A70B34EDBAD2E784FA069D068D /* Frameworks */, ); buildRules = ( ); dependencies = ( - 18205EC006D391F093D20DFDD0BE320A /* PBXTargetDependency */, - 9D568CFD750BAC2401DB576829E0766C /* PBXTargetDependency */, - 7FB73F4C7D1C7F8727810ACDC1764386 /* PBXTargetDependency */, - 595CB863BFD4EAFE77D63E9F3125F8CD /* PBXTargetDependency */, + 96CBA7075A2B5C8C16E06AFFCB33D354 /* PBXTargetDependency */, + 894A30EB875C18CFD9C5DBDE8F1E99F8 /* PBXTargetDependency */, + 5A6925B897DA54934BC26754D61B61E7 /* PBXTargetDependency */, + 3C004368F15CE1A423A6BCE9FE2E9F9D /* PBXTargetDependency */, ); name = RNFirebase; productName = RNFirebase; - productReference = 5346E81D903AF245D60C679DFB544861 /* libRNFirebase.a */; + productReference = 9AAD67F6ED0B439D241094FD54A6C498 /* libRNFirebase.a */; productType = "com.apple.product-type.library.static"; }; 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */ = { @@ -12635,43 +13031,27 @@ ); name = FirebaseInstanceID; productName = FirebaseInstanceID; - productReference = 9E834A5A86831FC24177563ABD042646 /* libFirebaseInstanceID.a */; + productReference = 20E9F192E1E005DE8EF4B53018A062E8 /* libFirebaseInstanceID.a */; productType = "com.apple.product-type.library.static"; }; - 3CF1984FC477CA2F1B7B2053998B8676 /* react-native-orientation-locker */ = { + 3EC18C45063BBBF2DC591C01F09E3069 /* RNFastImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 88CE5DC37B7F91F00E49B36CBF3D4470 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildConfigurationList = 86A765AD44887966A7A3315BE3C57661 /* Build configuration list for PBXNativeTarget "RNFastImage" */; buildPhases = ( - 530DB8296C9023E625AA0253E8B9C229 /* Headers */, - A1A03806E1EACAB365FA1B63646478F6 /* Sources */, - F6C8E7DC315B69390370942E9458848E /* Frameworks */, + 7B7AA755D091FA35FEE59332FEE737A5 /* Headers */, + 0EF204FB80D2DEEB86F24EAB28B61156 /* Sources */, + B3377741C80C2FDD2E68F90B22C7E2EA /* Frameworks */, ); buildRules = ( ); dependencies = ( - B9487ABF49AC17C1BD3F5C11D522623A /* PBXTargetDependency */, + 914380C099B563A8C21AAC0AB2838AB1 /* PBXTargetDependency */, + 665766239BD01535552841CA7181B9E5 /* PBXTargetDependency */, + AEB570B70E083FB2C196C1CF0E0DA891 /* PBXTargetDependency */, ); - name = "react-native-orientation-locker"; - productName = "react-native-orientation-locker"; - productReference = 7EDA7CF3E29C21A3CB30A9EB9A1E9CD0 /* libreact-native-orientation-locker.a */; - productType = "com.apple.product-type.library.static"; - }; - 40094264A7543CBF6B0AC3BF172E471F /* RNAudio */ = { - isa = PBXNativeTarget; - buildConfigurationList = 9AE76BBC324E6F9FE0938FC926425959 /* Build configuration list for PBXNativeTarget "RNAudio" */; - buildPhases = ( - C17D55980E34D4797513EB218D0B71DD /* Headers */, - EF378DE868256069D6E96F10B152CEB1 /* Sources */, - C487442BC67E79C9A56068B219FA2FBE /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 08E3E8DC2ABFFAB17382E95C3429CD25 /* PBXTargetDependency */, - ); - name = RNAudio; - productName = RNAudio; - productReference = 2630A39F0C6B2519A28DE0043DFF17DF /* libRNAudio.a */; + name = RNFastImage; + productName = RNFastImage; + productReference = F2ED6AC08A4C64FC1D70FCDD50D038E7 /* libRNFastImage.a */; productType = "com.apple.product-type.library.static"; }; 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */ = { @@ -12691,7 +13071,7 @@ ); name = FirebaseCoreDiagnostics; productName = FirebaseCoreDiagnostics; - productReference = 68AC2C6E48332E1DDA285292468A15D7 /* libFirebaseCoreDiagnostics.a */; + productReference = 920C51CD87C794BF5A3A528981F10789 /* libFirebaseCoreDiagnostics.a */; productType = "com.apple.product-type.library.static"; }; 427A5566E42596B2649019D00AA80F10 /* libwebp */ = { @@ -12708,7 +13088,43 @@ ); name = libwebp; productName = libwebp; - productReference = 6E44F7F1754D0B03CF9FDCD48BAF91F8 /* liblibwebp.a */; + productReference = C3502944BABFF624E0A4C1718B867501 /* liblibwebp.a */; + productType = "com.apple.product-type.library.static"; + }; + 45F3F9A656392183065EBA502E899AEF /* react-native-webview */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4E9EBB3CB7ED80C08BF747C0AEDEF8DB /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildPhases = ( + 43FBD68B926D32C5EB2765AAC7CA3992 /* Headers */, + 90F6235603EC0E90E0D880F31C74898E /* Sources */, + D328D69A0F5205FBAEDF472B6D1CF225 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 5CF2E5A745AD1A4E1DB18307BFB27C2D /* PBXTargetDependency */, + ); + name = "react-native-webview"; + productName = "react-native-webview"; + productReference = D5E50576A3610C371DA73A1A2799B6DA /* libreact-native-webview.a */; + productType = "com.apple.product-type.library.static"; + }; + 4E295582CC9C3BFE0469D3B5E0030673 /* RNVectorIcons */ = { + isa = PBXNativeTarget; + buildConfigurationList = 98BCE1639E931BC22F4139B4A52B8C68 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */; + buildPhases = ( + 47F1EE75D8DFB788C2FDD007C412AA6B /* Headers */, + B5F84ED78E0E01BF162DFE472655623A /* Sources */, + 9822C8E8A7DA82F31FC2E59965FC6440 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 3F993CF813416AF8CC0F4396087565EB /* PBXTargetDependency */, + ); + name = RNVectorIcons; + productName = RNVectorIcons; + productReference = AABACC731535E862A53D4154431593E3 /* libRNVectorIcons.a */; productType = "com.apple.product-type.library.static"; }; 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */ = { @@ -12725,26 +13141,25 @@ ); name = EXAppLoaderProvider; productName = EXAppLoaderProvider; - productReference = 3CA734D088EA41A71296AB0E0673B8DE /* libEXAppLoaderProvider.a */; + productReference = 097E8741FE64C3A1001FCFD793FD02C3 /* libEXAppLoaderProvider.a */; productType = "com.apple.product-type.library.static"; }; - 529158F649793C04021B9832DF3E0FFD /* rn-extensions-share */ = { + 54312B90205B51C80179FDB941BD5A75 /* QBImagePickerController-QBImagePicker */ = { isa = PBXNativeTarget; - buildConfigurationList = D7960CA09B91832E722635CDA2577304 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */; + buildConfigurationList = 9CC6E57C469F8897E6D375D12ACB4635 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; buildPhases = ( - CE890206B262448B9CB4EDB1DD7F2001 /* Headers */, - D2B3A283F2998DC2D4C640FAE36ACD1B /* Sources */, - DC3402B0C511DE98EC79ABB22A74C895 /* Frameworks */, + C7CDFE85653F712B30521BDE6F1FDAF2 /* Sources */, + 11892CDFFD05E275F11A5D453CA1BBD6 /* Frameworks */, + 2D3AC6C97294F3DBF5B5CD7FD9D7A312 /* Resources */, ); buildRules = ( ); dependencies = ( - C5E1C3C1C18982D768DC495911FE31B8 /* PBXTargetDependency */, ); - name = "rn-extensions-share"; - productName = "rn-extensions-share"; - productReference = CE33456DF539F1F494639FC9340C2BBA /* librn-extensions-share.a */; - productType = "com.apple.product-type.library.static"; + name = "QBImagePickerController-QBImagePicker"; + productName = "QBImagePickerController-QBImagePicker"; + productReference = C00E29D40328FD90B8D0F3FA63D470A5 /* QBImagePicker.bundle */; + productType = "com.apple.product-type.bundle"; }; 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */ = { isa = PBXNativeTarget; @@ -12760,7 +13175,7 @@ ); name = nanopb; productName = nanopb; - productReference = 4B628604D7A3FEBB879E0FB704118CED /* libnanopb.a */; + productReference = 7E51DDCE886985A22CBCA7CAB3F6CD06 /* libnanopb.a */; productType = "com.apple.product-type.library.static"; }; 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */ = { @@ -12778,43 +13193,7 @@ ); name = EXHaptics; productName = EXHaptics; - productReference = 4536FDCE294E22E73DB5B40D37BA54EC /* libEXHaptics.a */; - productType = "com.apple.product-type.library.static"; - }; - 5F63A1E41B86B1D8B6D7FB6EE06DEDFB /* RNVectorIcons */ = { - isa = PBXNativeTarget; - buildConfigurationList = F925F9BAA42E6AFA85408E2751DDF8DB /* Build configuration list for PBXNativeTarget "RNVectorIcons" */; - buildPhases = ( - 107C3186BB8360DC94F5B7A099EDD1A3 /* Headers */, - C0E2D88154795C14EFB91A85A822A38D /* Sources */, - 5EB24C043E397F64B38EB9746CD9295C /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 7667819CF853CEBF55BBD865CC57102A /* PBXTargetDependency */, - ); - name = RNVectorIcons; - productName = RNVectorIcons; - productReference = BAC046E27CCB11E2FB8B51D678B0B91B /* libRNVectorIcons.a */; - productType = "com.apple.product-type.library.static"; - }; - 5FDF615A7E8CC4C3EDE33FB5C6925D5E /* RNGestureHandler */ = { - isa = PBXNativeTarget; - buildConfigurationList = 07B39626AFBB937AC7C7E9F353D736B2 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */; - buildPhases = ( - 295D939EFAEB56A5CB628FD4AFB391D1 /* Headers */, - B58C68627CA7C633A6CB7CA1BE431C40 /* Sources */, - 00B20DF539608B1F301E0347722F5A99 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 001CDF4381300EBFE65A35276892F78D /* PBXTargetDependency */, - ); - name = RNGestureHandler; - productName = RNGestureHandler; - productReference = 2B9BBD28914A9A13EEBBCA8F183D1711 /* libRNGestureHandler.a */; + productReference = 8FC655DAD6D3F09FE88672E63A716D73 /* libEXHaptics.a */; productType = "com.apple.product-type.library.static"; }; 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */ = { @@ -12832,26 +13211,25 @@ ); name = "React-RCTNetwork"; productName = "React-RCTNetwork"; - productReference = A96DACD6D7B837517DF7C6024FBE4D86 /* libReact-RCTNetwork.a */; + productReference = 666E5990AE8745387C6565AA91A697A1 /* libReact-RCTNetwork.a */; productType = "com.apple.product-type.library.static"; }; - 63CD6794DC7550F854838D23B403A831 /* SDWebImageWebPCoder */ = { + 637805D5DEFA194CF328DA2A13EA9AA9 /* rn-fetch-blob */ = { isa = PBXNativeTarget; - buildConfigurationList = 13E7FE983F4F14B725948DF39A16D53E /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; + buildConfigurationList = A6A9F1EF3EF06F27A3B5C4BCCC921911 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */; buildPhases = ( - 131E71F47A42C888CFA1AB226B40CF5E /* Headers */, - 150B6ED87B52C3737911726FAFF0A795 /* Sources */, - A2D7661C5B64FBFB613680BBC9C56C8C /* Frameworks */, + 30253AE5FB22878C3C4088A835EC4D66 /* Headers */, + 024355A486980561513E999808340A14 /* Sources */, + 0F09CFF00CD137BA35642C43A44F0F35 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 47B893E9013F459ADD46D28D794C66B7 /* PBXTargetDependency */, - 565B555404B0BD91AB4D5CF44650D747 /* PBXTargetDependency */, + DBD016312BC1212788D61AD46FF4DB47 /* PBXTargetDependency */, ); - name = SDWebImageWebPCoder; - productName = SDWebImageWebPCoder; - productReference = BEBCD404D4A51D256B1D7B953B80E6F2 /* libSDWebImageWebPCoder.a */; + name = "rn-fetch-blob"; + productName = "rn-fetch-blob"; + productReference = D9218A842A6D6DF83A57076B1E90EFC8 /* librn-fetch-blob.a */; productType = "com.apple.product-type.library.static"; }; 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */ = { @@ -12870,7 +13248,27 @@ ); name = GoogleDataTransportCCTSupport; productName = GoogleDataTransportCCTSupport; - productReference = 99D6D871001EAF342588EB92E5782AE7 /* libGoogleDataTransportCCTSupport.a */; + productReference = 27A989DB5B60BB93DD9560D6B2EFCDE8 /* libGoogleDataTransportCCTSupport.a */; + productType = "com.apple.product-type.library.static"; + }; + 6469A603AD1FC761672BD6D7FACC0CBE /* UMReactNativeAdapter */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8A2CCD531432246442E09EC6F5FEB4AE /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; + buildPhases = ( + BC46AF430D4FDEFB82CE97D457FEBDB3 /* Headers */, + 070D471B5021BCCB1D117CE972C93C94 /* Sources */, + 47CC821AB1FE9F79D8A0B14E58EB1C37 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 4938797BAD1BED0ECE40580B54266C6D /* PBXTargetDependency */, + 0FF28ACD374EB3BFE9CB3514F792E81A /* PBXTargetDependency */, + 8A96A14EBD9B0625B3D60B1822BEF849 /* PBXTargetDependency */, + ); + name = UMReactNativeAdapter; + productName = UMReactNativeAdapter; + productReference = C3A92446F28383992A77DC8411BE2322 /* libUMReactNativeAdapter.a */; productType = "com.apple.product-type.library.static"; }; 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */ = { @@ -12888,25 +13286,7 @@ ); name = "React-RCTSettings"; productName = "React-RCTSettings"; - productReference = 5DDE738BFC172477E1469DA768C12F41 /* libReact-RCTSettings.a */; - productType = "com.apple.product-type.library.static"; - }; - 6A6292EF6BD5726FAEE2DA523C3D0416 /* react-native-splash-screen */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0A54DD530A81A29031BF56BB45050788 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; - buildPhases = ( - 4817CC82FCD0659404E79A21177382BC /* Headers */, - 233E610485B7BB9AD56C1D3C2A5D2778 /* Sources */, - 891C357417C5B292999905A2141803D4 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 735C688B1280B365045A86FE2C8F1D72 /* PBXTargetDependency */, - ); - name = "react-native-splash-screen"; - productName = "react-native-splash-screen"; - productReference = 794E5FE51CD438EDD0931C6A49297F5B /* libreact-native-splash-screen.a */; + productReference = 23CBFED2EC4B1CB34288E9A1BF552159 /* libReact-RCTSettings.a */; productType = "com.apple.product-type.library.static"; }; 6AD0E65D44A38151509F46E868517C37 /* React-DevSupport */ = { @@ -12925,25 +13305,25 @@ ); name = "React-DevSupport"; productName = "React-DevSupport"; - productReference = AB8913D1E2AE163AFEA868AF6A1687BC /* libReact-DevSupport.a */; + productReference = 206EA7C3801A2B30922F8B13DEEB0531 /* libReact-DevSupport.a */; productType = "com.apple.product-type.library.static"; }; - 70C22F7EE05643BEC8549072142E9E00 /* RNLocalize */ = { + 6E898D47D3B30C6577C45BB2AA9E2284 /* react-native-background-timer */ = { isa = PBXNativeTarget; - buildConfigurationList = FCD233D8E41A0B207180B04AD9B6A8B5 /* Build configuration list for PBXNativeTarget "RNLocalize" */; + buildConfigurationList = 5F27CA1493EAAD61C04756E957BCD036 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */; buildPhases = ( - 8670BD1127634EA6338A6DEE8814FF9A /* Headers */, - 4005B407E9201B7DCE2D7D4D61CA83C2 /* Sources */, - 10EA5C9F48937116E17D65E119B5FA33 /* Frameworks */, + 2749920D3B2904DE535AEF06DE4E51FA /* Headers */, + 1C62B0B57917042A48A08946E1743F50 /* Sources */, + C15AB52217870D55C6E04B469DB34FF9 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 8A8036C4E8506F75C24FF70033A92AA4 /* PBXTargetDependency */, + CBF47332F58D5380AB522B50433B0C4F /* PBXTargetDependency */, ); - name = RNLocalize; - productName = RNLocalize; - productReference = FF1FF11AEC52441754ED6ACCB68EC620 /* libRNLocalize.a */; + name = "react-native-background-timer"; + productName = "react-native-background-timer"; + productReference = F771788A70015D51AE7E8DC063415CDC /* libreact-native-background-timer.a */; productType = "com.apple.product-type.library.static"; }; 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */ = { @@ -12961,7 +13341,25 @@ ); name = "React-RCTActionSheet"; productName = "React-RCTActionSheet"; - productReference = BB661AC855B783E42DE358E7EEB846B0 /* libReact-RCTActionSheet.a */; + productReference = 8E2449A00CA36D6F08B925F41ECCB907 /* libReact-RCTActionSheet.a */; + productType = "com.apple.product-type.library.static"; + }; + 74EEA248F982197D559582A658DAA382 /* RNGestureHandler */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4CE8834FC7D3617E7058D9CCB524B118 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */; + buildPhases = ( + C50F831AF332D160A4382A82F665FDEF /* Headers */, + F64FC7FABF831FE3240C7127308CA4D8 /* Sources */, + 24E31DF928A033F083837840CD518D5C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + EE9A831F49A58786B16D6B9D8842B403 /* PBXTargetDependency */, + ); + name = RNGestureHandler; + productName = RNGestureHandler; + productReference = 4254115BFCD2C5451FF94075FE2340CA /* libRNGestureHandler.a */; productType = "com.apple.product-type.library.static"; }; 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */ = { @@ -12982,43 +13380,7 @@ ); name = "React-Core"; productName = "React-Core"; - productReference = 3C8404ECC73751262F66E4C0F15D5FBE /* libReact-Core.a */; - productType = "com.apple.product-type.library.static"; - }; - 752FCBCD2E0EA0ADCF498C7CB6315B64 /* react-native-document-picker */ = { - isa = PBXNativeTarget; - buildConfigurationList = D4BB3C4F5C855D4B8ECA7285B0D23945 /* Build configuration list for PBXNativeTarget "react-native-document-picker" */; - buildPhases = ( - 12A33E46006AFBADDFC2C8EA4392D795 /* Headers */, - 167F0AC99365D304A9C7AA0876AB3E82 /* Sources */, - BB2EC964F4183B16DF300FB3D0D91767 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 79AB35D88C7BDB6108E67942E17B719B /* PBXTargetDependency */, - ); - name = "react-native-document-picker"; - productName = "react-native-document-picker"; - productReference = B63E9E520BC97C3140F6BD11026AF0F7 /* libreact-native-document-picker.a */; - productType = "com.apple.product-type.library.static"; - }; - 75413E753E5D3F1BE4BBFF5A9633F19E /* react-native-notifications */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7A81A6BDC6851D0C63C05ADB9BAB1210 /* Build configuration list for PBXNativeTarget "react-native-notifications" */; - buildPhases = ( - 345C66CC545989BEBA8753E18A8F9455 /* Headers */, - 690ABF8B7C6BF3F6421A87ABDEDBBE7F /* Sources */, - CDF8D74A763B18FABE05241B37792211 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - A0155C1F59887AC855041A63F0D6F470 /* PBXTargetDependency */, - ); - name = "react-native-notifications"; - productName = "react-native-notifications"; - productReference = C4C60D4739FC5FECF14C85AB27887528 /* libreact-native-notifications.a */; + productReference = 87FBE541B7D8C022CF1D613E41CE1CCB /* libReact-Core.a */; productType = "com.apple.product-type.library.static"; }; 78321EAB31E9FCC75DFA950389835085 /* Folly */ = { @@ -13038,7 +13400,28 @@ ); name = Folly; productName = Folly; - productReference = 8E39CE103F4AA045776C24714D709766 /* libFolly.a */; + productReference = 9BA07ED6B9BFD472FCC0F93524F5DAD3 /* libFolly.a */; + productType = "com.apple.product-type.library.static"; + }; + 7BFE9C8AF890F2E4593C07660F79FA96 /* RNImageCropPicker */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1E3CEAD86847EB89512B8535D41134F9 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; + buildPhases = ( + AE0E755714E01B108E4A1EFF0F8A86EB /* Headers */, + DA66943D30C2719C4B9D2C3E74561D65 /* Sources */, + 2C5F188D89B600C106493921E8807E99 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 0704F56AF8CD5AA27A63BA70D757659A /* PBXTargetDependency */, + D20913195A207EF5AC19F2CA9C231E13 /* PBXTargetDependency */, + 9573BE6426B3BD8E1E2AC26DA29C756D /* PBXTargetDependency */, + 9D5CFFF80BE30F09304B4B88049FABEE /* PBXTargetDependency */, + ); + name = RNImageCropPicker; + productName = RNImageCropPicker; + productReference = 84CCA4315BC9508FC44F32EDB6A81E96 /* libRNImageCropPicker.a */; productType = "com.apple.product-type.library.static"; }; 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */ = { @@ -13055,25 +13438,7 @@ ); name = glog; productName = glog; - productReference = F26FB1F96F46DEE91C9960E81F09A322 /* libglog.a */; - productType = "com.apple.product-type.library.static"; - }; - 7CDE227A96A3D9BAB6F477300B55346D /* react-native-background-timer */ = { - isa = PBXNativeTarget; - buildConfigurationList = D4A43D6F0C7F0287272084A2C871A40F /* Build configuration list for PBXNativeTarget "react-native-background-timer" */; - buildPhases = ( - CDCE3D976424FF65FB79441DA3EC7D53 /* Headers */, - 993765212B343CC0F6A9A9D8E3FAB814 /* Sources */, - 9D003A6F47A00A004A78D956DFC3A435 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 126B087D1B15C77CD7EC1167918C62B8 /* PBXTargetDependency */, - ); - name = "react-native-background-timer"; - productName = "react-native-background-timer"; - productReference = C5DB08D8CA1F9F072AC9FA7A22F5C1F3 /* libreact-native-background-timer.a */; + productReference = 951A634B3B788E67260CBD9260916089 /* libglog.a */; productType = "com.apple.product-type.library.static"; }; 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */ = { @@ -13091,141 +13456,142 @@ ); name = "React-RCTAnimation"; productName = "React-RCTAnimation"; - productReference = A968DFCE0D3C0072B51F974402D57D53 /* libReact-RCTAnimation.a */; + productReference = D56D04C4E20011BE676A3E027F899C40 /* libReact-RCTAnimation.a */; productType = "com.apple.product-type.library.static"; }; - 85172E9C4FEEA1B7522DE7A6847D0DA0 /* Pods-ShareRocketChatRN */ = { + 88448C1BDEF0E335FC306D4B8E3C584C /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = F56F64601FC4576B0BA807CB7B4ABD1F /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = B336EFED8E17E4B9BF556FAAAA19E061 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - BE8F55ACB752648EBD4CE283B4461D31 /* Headers */, - 239000A14A3BBA23B18052389C7C61F5 /* Sources */, - B51BC8F168BCD1F92D97D914874D43EC /* Frameworks */, + DFFC7E706ADAD4C7F55F22D7A9F4AEFB /* Headers */, + 80DE9FA79A1B6CB9AC86C5CAD8D98464 /* Sources */, + A32231923EE2E5AF1DC7B9CDD08D6DDC /* Frameworks */, ); buildRules = ( ); dependencies = ( - 52D7309AC7DFE6570B3BA6DD84C59A62 /* PBXTargetDependency */, - 9233F5D80F868695E9C13931C4880C96 /* PBXTargetDependency */, - 06558559354FF783EB73439B8C0D0789 /* PBXTargetDependency */, - 6F40C91A3B59E7DF39E9F2A0FFCC2BEE /* PBXTargetDependency */, - 545471B088DCDA4546D0EEEDFE850C33 /* PBXTargetDependency */, - 3FF86615A5BF0C0FE70CDCD28D161D45 /* PBXTargetDependency */, - B3B822F8CAC030B2F3EF02FDEED7E45A /* PBXTargetDependency */, - 0BB26D3624695BB8758FB09982E57F1C /* PBXTargetDependency */, - EF9DA179DA777BE95BB9178E1D1EA92F /* PBXTargetDependency */, - 1EB9455E37329A86A1691A28C80719CD /* PBXTargetDependency */, - C54E5B3C46BD870E36942B57AE493415 /* PBXTargetDependency */, - 9E9D26E9A8B92C28FE217C1C37AFC136 /* PBXTargetDependency */, - 9CC2DC546ECA2FA8E2F9B513D014B579 /* PBXTargetDependency */, - A26CEF1A1FD768D7EB18960BF697010F /* PBXTargetDependency */, - A67C1CD26293537245613809D63BEA5F /* PBXTargetDependency */, - AE3CB8C148880D691A6EBEDBF37718C6 /* PBXTargetDependency */, - 94FA1CC0A8E0441ED32DFF1AFABB7ED8 /* PBXTargetDependency */, - 904B5431C312BAF1DD19650F7ED52716 /* PBXTargetDependency */, - C3C77D43AE1DC7880065404B80431974 /* PBXTargetDependency */, - C315738E2027DF256889AA677D322B9B /* PBXTargetDependency */, - 08DE3E39D027D87A73134E486B1FF9C4 /* PBXTargetDependency */, - 491DD38BC335C288123A58AE2F11C9F9 /* PBXTargetDependency */, - 68A8C24D592965E80208E94686095A74 /* PBXTargetDependency */, - E4602C6778ACE3CF3465644C5E8EC64C /* PBXTargetDependency */, - D06C7A9825B57F7E8FFF2F653BF40282 /* PBXTargetDependency */, - B3976F94C31CD6A6930A7A7AC411FA96 /* PBXTargetDependency */, - 96C86AEC655691D92B621B10588CD0F9 /* PBXTargetDependency */, - CB7E0EC556EF2095B6A5C5EC41C597B1 /* PBXTargetDependency */, - D32026EC27372253192B0419553E17CC /* PBXTargetDependency */, - D6B9620FE4252978D78D6B1F490D47D3 /* PBXTargetDependency */, - B4CB3514DB587A893091C37652844301 /* PBXTargetDependency */, - F5940B45FB332F1271EAB2DC8064BA42 /* PBXTargetDependency */, - 9FD1B0EABE44006A0089EA26A3AFE359 /* PBXTargetDependency */, - F5BFEB9EAF8663521D988B0EEAF0CFC9 /* PBXTargetDependency */, - 601AA73365EBE111BD06B67713300CDD /* PBXTargetDependency */, - 8F2A29A8CCB28645F4ED7834FC9F3178 /* PBXTargetDependency */, - 63D763D07299A03D753467158CCD00C1 /* PBXTargetDependency */, - D5865F43033C8D257A38CAF1FB9A22BD /* PBXTargetDependency */, - BBE482C93A32A39A68B60F3A724F5159 /* PBXTargetDependency */, - 6ECCF61E83A677B5CDC029CC1FDAB2FA /* PBXTargetDependency */, - 2F81C65258B86DCB00111A15D10F0E45 /* PBXTargetDependency */, - 17919BBE780C22C4CB5DE12E5D042A3B /* PBXTargetDependency */, - 34C43954F9BB27FE479FFECBD34595FA /* PBXTargetDependency */, - 05B177EBAF84964B2E376B3C8F6948B8 /* PBXTargetDependency */, - 9F587AA1E03539F993F50C2863512FCC /* PBXTargetDependency */, - 9DC0FE6D0C67136FF3C7C12A79A85401 /* PBXTargetDependency */, - F3B2DEE0D56EFBEA20449FC6565F8345 /* PBXTargetDependency */, - 29892C7BB64287631A6384DF9E4287FB /* PBXTargetDependency */, - 34A188C4656719C2554952050A94E6BD /* PBXTargetDependency */, - 5F89DD5BD46A53BE997096AC6C118A41 /* PBXTargetDependency */, - 0E75A929993A884438B0DA87D09D5AA7 /* PBXTargetDependency */, - A27CC7C92B2E6D5400F5AA91081943BB /* PBXTargetDependency */, - 3FDFDC9BB259338891EE49DF05489017 /* PBXTargetDependency */, - 6F71C2BA15841B761A4AC5B2C74370C0 /* PBXTargetDependency */, - 446BCD3B0CFD9174AD63551190E19BCF /* PBXTargetDependency */, - 05C429BEFBCFC2E782814F9D7EDD7814 /* PBXTargetDependency */, - FEDD266C54B5484404402008022182C7 /* PBXTargetDependency */, - 53DBBADD9BD113376E327749F7E8F093 /* PBXTargetDependency */, - 3E8E8BE8B4EF66C63976297D994DB9A3 /* PBXTargetDependency */, - 31351FF5D7566C58D84781401542DCBE /* PBXTargetDependency */, - DEA61BFC203256EDBE27CA95A19DB6B6 /* PBXTargetDependency */, - 7B1575C310D7C2BC433BB5A6A62BE27A /* PBXTargetDependency */, - 8E1E0A0623AB2F4D453D16921E07E670 /* PBXTargetDependency */, - 607E1DFE43B8B1425E04B29D5D14C10F /* PBXTargetDependency */, + 1B083BAB66EF8A85DD79BA4F619A5504 /* PBXTargetDependency */, + F090AC9B909322EF64A6A0CBD1EC543E /* PBXTargetDependency */, + 604334B63FDE06B327F65C461925EDAD /* PBXTargetDependency */, + 623692A92155E067530D51BE252D15EA /* PBXTargetDependency */, + F5C837ED37C80E25F79893530838857E /* PBXTargetDependency */, + 27F08925C5DB6405D7F591427C6C2B37 /* PBXTargetDependency */, + 400EECE404C5CEF13C5538D98BB91A80 /* PBXTargetDependency */, + 09485AC201E971DB9BB47EDFD5BD5428 /* PBXTargetDependency */, + 4F8C77BF125267A83191E893A30469E0 /* PBXTargetDependency */, + 139FA46B822DEFF9E65AE3376D9BFF49 /* PBXTargetDependency */, + 383E6AC26687F3514126A51A3B6888AF /* PBXTargetDependency */, + 2291A0CD2A8F822FC17A6DA9024F28EF /* PBXTargetDependency */, + 8F8BCD2E64D0FBE602A75DFD8A46DC13 /* PBXTargetDependency */, + 54D3BAD39E9E36A30760E7BD7E387707 /* PBXTargetDependency */, + C0B78C83189407F66EB5078F17D8B793 /* PBXTargetDependency */, + 24A63422E2E8419EA63DF62AEBC4C7B4 /* PBXTargetDependency */, + D5FD6694E7BF683F6EBE8A362E6E7E99 /* PBXTargetDependency */, + E1C77FBEF4EA9EC8923D812D10C10115 /* PBXTargetDependency */, + 0C200404241A9B6AB4747077C0774D65 /* PBXTargetDependency */, + 114A02740D0126971D1E98C32CA0BA53 /* PBXTargetDependency */, + BFACD0F627B57D126E0EBC682D37BBAD /* PBXTargetDependency */, + F0C32C23A50BD6696E6352E22E1D2442 /* PBXTargetDependency */, + 287658F8C12DAE09470D8415A92089E1 /* PBXTargetDependency */, + 8D2CE8713F86C77BE9DB7DF07828F5B4 /* PBXTargetDependency */, + 1B09992471F0A0AF16CB87730E547F3C /* PBXTargetDependency */, + 182A9BCC09B519FB446DF99A41FAAD9A /* PBXTargetDependency */, + C15B100029DC5D9040A0588C50815EC0 /* PBXTargetDependency */, + 5528DDB74998F4F6EC6C9E5ECD6E8D83 /* PBXTargetDependency */, + D6E085DA5E0CC0A7C85461C12EC89042 /* PBXTargetDependency */, + 115AC857C0990F44102BDE7651B363C4 /* PBXTargetDependency */, + 30878C12887FF4833190119090FC7768 /* PBXTargetDependency */, + CE669E68D79AFE7B0AE1367E20C2EAF4 /* PBXTargetDependency */, + B4C592EB77D5C19106D8D96BE510D2C7 /* PBXTargetDependency */, + 0346364348922EB95D0C80B6A5ED00A7 /* PBXTargetDependency */, + E09FA2CCB901F3085D8429465D1FD327 /* PBXTargetDependency */, + 7275008025BE021BC561C73215B68BFC /* PBXTargetDependency */, + B033D7D8166BDF6DEB925881E20FA285 /* PBXTargetDependency */, + DDC208161A99651C4FFB1BE0A8225D66 /* PBXTargetDependency */, + 4E20A667D863335876E063E42DD92E73 /* PBXTargetDependency */, + 4653A746CC7F078DCA9ED72E1C76B2A2 /* PBXTargetDependency */, + C8078A69BB26E685220301F878C4157E /* PBXTargetDependency */, + 9317ED6CA30C7A8A0CBB980A817E741F /* PBXTargetDependency */, + AEE2D8B2830CBA9FE39AE57E8001EE8D /* PBXTargetDependency */, + 5C8D1A188D35752AC9DD7FF26505DE8C /* PBXTargetDependency */, + 16EA6C35B6BC4C56CF9780C3C50D74C8 /* PBXTargetDependency */, + 2270DC6321B03A434E65EF308F6EFF89 /* PBXTargetDependency */, + 1893E06257FBD2309CF95C111183AEBA /* PBXTargetDependency */, + 9821A644AC55370EDD513D2F860462A2 /* PBXTargetDependency */, + AD2290F9A4015124C5D4AA9387790F75 /* PBXTargetDependency */, + C7E5050F68C7C0D3A036B2BA03712A8B /* PBXTargetDependency */, + D982AE4B29EC475EAEA76F75FD1F411C /* PBXTargetDependency */, + CD95293F3E50C7C552FB907699B745FD /* PBXTargetDependency */, + D45962699B12E20CF157ED80B9C0482E /* PBXTargetDependency */, + 067AB4EC52571D983D2CEAB0FCDEF387 /* PBXTargetDependency */, + 064011CA6621379E092D70B8AB6B4A91 /* PBXTargetDependency */, + D2E77C4C5124EB07CB8E6655657483F0 /* PBXTargetDependency */, + AC05639A28E9F9B349956476A2ACDB31 /* PBXTargetDependency */, + DD4DDC59CB8DAF387A912FD52B62B409 /* PBXTargetDependency */, + 0B49F5BA187C18F105DD81703E25C608 /* PBXTargetDependency */, + FBE16CBA0A53F12659CD1FB5D55721E0 /* PBXTargetDependency */, + CEF3DA0600A604148F4B7DC7CE8B1E89 /* PBXTargetDependency */, + F9A6C415E5A451ABBA1EF02DADE0490D /* PBXTargetDependency */, + F609F7E2DD6AAAFF8B9A6BF5F8A71D46 /* PBXTargetDependency */, + F04FE147984389293183202746D3BAB5 /* PBXTargetDependency */, + 4E8831B99C60C4AF4D32144B31F40AA6 /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; - productReference = 4B6CEAEC26EF43D22FCBC5C170785890 /* libPods-ShareRocketChatRN.a */; + productReference = 232253A5693301FCAB478EB3190DD536 /* libPods-ShareRocketChatRN.a */; productType = "com.apple.product-type.library.static"; }; - 8D06140A738C278926836084E0C73057 /* RSKImageCropper */ = { + 8DBB59DA07871D38FA326EEFB3109004 /* SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 9CD25D199A7D209053B1A6D33058A505 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildConfigurationList = F1C1FFA41F6335DDBA099BBEF62BB190 /* Build configuration list for PBXNativeTarget "SDWebImage" */; buildPhases = ( - 7DE5B0208D23075B8829A3F026C80680 /* Headers */, - 5A083D5B3CEF3F3B2BFC58F11CCBBC8A /* Sources */, - 94A83A461F6A335A67EAD18ACAD9C087 /* Frameworks */, + DD27C1BA81E7202358D5504B8068657D /* Headers */, + 353934E4CD069074A7C3278AE9A7B9DA /* Sources */, + 89594AD8F662321AD7793B9C5525C1FD /* Frameworks */, ); buildRules = ( ); dependencies = ( ); - name = RSKImageCropper; - productName = RSKImageCropper; - productReference = 5CC7B28E5375132F8CF2F7842AB08D68 /* libRSKImageCropper.a */; + name = SDWebImage; + productName = SDWebImage; + productReference = 9D0F181D9C95BA7A06261015D0600A94 /* libSDWebImage.a */; productType = "com.apple.product-type.library.static"; }; - 8F6AC1F817A6020A1AD035B558A7A825 /* RNUserDefaults */ = { + 9DE6FE0A7B145D5D64B4645C0A167B45 /* react-native-splash-screen */ = { isa = PBXNativeTarget; - buildConfigurationList = 21C01E6A30957AD2C6DEDDD2BF202A5A /* Build configuration list for PBXNativeTarget "RNUserDefaults" */; + buildConfigurationList = DD73867F3D651387CB62921782929A35 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; buildPhases = ( - DF5EE73A5417ED548BCDACDF5A6BCE7D /* Headers */, - 61FE88FA6DC67ACB245B463619B78D83 /* Sources */, - 4701AEC0BD325B958D6E9C0CEC75E6D6 /* Frameworks */, + 659F36E5DBE508F3F51C9BC45A482F81 /* Headers */, + CAA2CE20C8658AB7E540B4D083E6DC20 /* Sources */, + 6939C0AD72DDD0E09FE0679C67E4DF41 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 1F653AA20E50854743D5782758C99073 /* PBXTargetDependency */, + 1B583506680BB400651C5F63F5CAD976 /* PBXTargetDependency */, ); - name = RNUserDefaults; - productName = RNUserDefaults; - productReference = 8B2007C47066DC5C18F752EBDA8A316A /* libRNUserDefaults.a */; + name = "react-native-splash-screen"; + productName = "react-native-splash-screen"; + productReference = 8E556D50C611244E3F0B51690348DBCE /* libreact-native-splash-screen.a */; productType = "com.apple.product-type.library.static"; }; - 9693FDE10118A2D3719CCD8793940995 /* react-native-keyboard-tracking-view */ = { + 9EFD966453BEA5A0A61E17F9D9271A60 /* react-native-video */ = { isa = PBXNativeTarget; - buildConfigurationList = 81FD16B8FD3C65C3E7676643A4554A55 /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */; + buildConfigurationList = 446E24DE4555985BB978A251732A9E9F /* Build configuration list for PBXNativeTarget "react-native-video" */; buildPhases = ( - 01CEED1C5EA813AC3E2C2256450ED3E8 /* Headers */, - 53DEB27C16AB73650AF2B16D0E81AE48 /* Sources */, - D6657934E24FE643575256FEF594F27D /* Frameworks */, + F4D3A9D935D60FB2538E93698B947A81 /* Headers */, + A76A1815EBFA712ADBE6351E47DD01D7 /* Sources */, + 9A89D260F89E00633B62E259FD92C5AC /* Frameworks */, ); buildRules = ( ); dependencies = ( - 359B348B6247DD9854BB36A6345C0396 /* PBXTargetDependency */, + BA56F350E5CFA34066F309DFEB34F5B1 /* PBXTargetDependency */, ); - name = "react-native-keyboard-tracking-view"; - productName = "react-native-keyboard-tracking-view"; - productReference = 7EB3B9232B7CF7F5EC6393048610AE3F /* libreact-native-keyboard-tracking-view.a */; + name = "react-native-video"; + productName = "react-native-video"; + productReference = 39929E6CBE422DE78275127B70818286 /* libreact-native-video.a */; productType = "com.apple.product-type.library.static"; }; 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */ = { @@ -13247,7 +13613,7 @@ ); name = "React-cxxreact"; productName = "React-cxxreact"; - productReference = 5E89011EA3CC1136B327544F240FBF41 /* libReact-cxxreact.a */; + productReference = 1CA32F6F2FEE76EBB39D4B7EACDE6BBC /* libReact-cxxreact.a */; productType = "com.apple.product-type.library.static"; }; A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */ = { @@ -13266,7 +13632,7 @@ ); name = EXConstants; productName = EXConstants; - productReference = EDB7E26045B9E01953F9087BEAA048BA /* libEXConstants.a */; + productReference = 2C5612F44EF9E0416D7F58DF50ACF273 /* libEXConstants.a */; productType = "com.apple.product-type.library.static"; }; A954214FEA55463925B6F6E3A27B6016 /* EXAV */ = { @@ -13285,25 +13651,7 @@ ); name = EXAV; productName = EXAV; - productReference = BB16AD3467F0E21091B9565CD95A5069 /* libEXAV.a */; - productType = "com.apple.product-type.library.static"; - }; - AAC627FD97B49E278B99ADB9DB7DA5DA /* react-native-webview */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4364EE2B62C6DF503692F6CEAB9DF33B /* Build configuration list for PBXNativeTarget "react-native-webview" */; - buildPhases = ( - A8DBD46A8D2C80F4E2A041C1BB39653F /* Headers */, - E56D3A9EC18DFD2E586D921BBF765967 /* Sources */, - A02DA4670B77FC177B76DF4A55CFB469 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 789A2BCB05668661889396966DB81909 /* PBXTargetDependency */, - ); - name = "react-native-webview"; - productName = "react-native-webview"; - productReference = 6BE9580D33DCF58EBA49CBCE4D2C3792 /* libreact-native-webview.a */; + productReference = 8BE27FFBE8E35AE9DE06E929E38B1727 /* libEXAV.a */; productType = "com.apple.product-type.library.static"; }; B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */ = { @@ -13321,7 +13669,7 @@ ); name = EXWebBrowser; productName = EXWebBrowser; - productReference = E200A3DD1BAF6E8CA2B79929E80BD2D9 /* libEXWebBrowser.a */; + productReference = 9DA9DD48C0CD8D64076EBF2A83628DCF /* libEXWebBrowser.a */; productType = "com.apple.product-type.library.static"; }; B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */ = { @@ -13343,7 +13691,7 @@ ); name = "React-jsiexecutor"; productName = "React-jsiexecutor"; - productReference = 623663F979020A275D4F2FC5C5DDE563 /* libReact-jsiexecutor.a */; + productReference = C4FF853BC24533BFCF976A3D4044C385 /* libReact-jsiexecutor.a */; productType = "com.apple.product-type.library.static"; }; BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */ = { @@ -13360,7 +13708,24 @@ ); name = GoogleUtilities; productName = GoogleUtilities; - productReference = 927791E238A7883664064AB862E193D8 /* libGoogleUtilities.a */; + productReference = D475C3C2BD0007BA095EB822060A0DA7 /* libGoogleUtilities.a */; + productType = "com.apple.product-type.library.static"; + }; + BCAD56353CC03FBEA94A951A14E3F333 /* RSKImageCropper */ = { + isa = PBXNativeTarget; + buildConfigurationList = 572A89A4EF230BB3AC70E4360E22B1BF /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildPhases = ( + 83166A3F25B1D0886E1F4BF3A9269687 /* Headers */, + C2B9363F2768C25A24CA7081131EA1C0 /* Sources */, + 53AB28723FB589AE1A2206AFBC0A3D0C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = RSKImageCropper; + productName = RSKImageCropper; + productReference = 08995AD1F15F113CECC233E30D35ED18 /* libRSKImageCropper.a */; productType = "com.apple.product-type.library.static"; }; BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */ = { @@ -13378,107 +13743,7 @@ ); name = "React-RCTVibration"; productName = "React-RCTVibration"; - productReference = 390AC4EEBE54FA80FCB9B359E00E92B4 /* libReact-RCTVibration.a */; - productType = "com.apple.product-type.library.static"; - }; - BDF55D822572BFC27317BB739F33E860 /* Pods-RocketChatRN */ = { - isa = PBXNativeTarget; - buildConfigurationList = 96628392AEC3BEA83B754EB9DFDEEF5A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; - buildPhases = ( - 4A5C05CBE8ED94AFFD8900907D4C8091 /* Headers */, - 083D5A3DBD4E95FFF777EA6FD3B06141 /* Sources */, - 48A2287D0E1455B53AF3F2757EB163A2 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - E05FA91727AA1456CE50DECDA3A5DA0F /* PBXTargetDependency */, - 731ADFF4CB028DC86E9638499760D222 /* PBXTargetDependency */, - FA30E8A028894190326D553C9A6A442B /* PBXTargetDependency */, - 6ABCE4DF7DDAC2D58AB42D13010F7D36 /* PBXTargetDependency */, - 97AC671E9B5AA7F672E234465C3D0531 /* PBXTargetDependency */, - F993DC72F99D45648931A39F4A928BB9 /* PBXTargetDependency */, - F65A15DA2187FAE0A264202649BF3736 /* PBXTargetDependency */, - 2C5C02468692FE1FACF23F9B774B6C08 /* PBXTargetDependency */, - D8639E085DF83035CDC768A5ACD2839C /* PBXTargetDependency */, - 5D1DBEAD8AE9396200F51CD1CBF3706F /* PBXTargetDependency */, - BEC1B97A29031AA5CB83D0B2CC18860D /* PBXTargetDependency */, - 29005AB2D66C662D6AC1F1850F27C55F /* PBXTargetDependency */, - E8F65490880EF34F97DD25E052A5C50D /* PBXTargetDependency */, - FCC4ED94E7A8E65AC0C7BC4F684E7114 /* PBXTargetDependency */, - A1C284EB71608CC15A557AB9D4B26ADA /* PBXTargetDependency */, - 59BA42BE8B16263D7046C29B9AB9D20B /* PBXTargetDependency */, - 9C865CE1840D511118B4E0C93B3CA77F /* PBXTargetDependency */, - 26EB58FD2CAD51B1EB47CD441C8CF58B /* PBXTargetDependency */, - 779477751AE9907936D99C643B76654C /* PBXTargetDependency */, - A40F72218E5C30908AE2D3F8D6B97262 /* PBXTargetDependency */, - 3CB61557B2EDEE5BEF043F9D18CEF453 /* PBXTargetDependency */, - A0C63AC74F963B354E00FCBE1B211C10 /* PBXTargetDependency */, - 71E73D60761281E5C69C50D80181137F /* PBXTargetDependency */, - 9426E5289379D4BF8C9DE35A92040277 /* PBXTargetDependency */, - 64997CB7CF82ABE52A9977DB292D7AE1 /* PBXTargetDependency */, - FF858D6F7CAAE0BCCDF129727BEA9554 /* PBXTargetDependency */, - CA7569659BE3BE5F78CE7BFB33F5338E /* PBXTargetDependency */, - 75BC1EBD90C7CF7ABFDB36ADEAFFC85B /* PBXTargetDependency */, - 533B6FA94F67ECA6A3F7132F6C5625F0 /* PBXTargetDependency */, - 0D7930AA06845BE0A7DEC2F859512993 /* PBXTargetDependency */, - DB65D4DEA2A8FF4D051393A04BC94D73 /* PBXTargetDependency */, - DB5439EDF0CCE963D25FCF65F5EA78EA /* PBXTargetDependency */, - 80B14E4B7AFD25CF2BA92AF27E591C9E /* PBXTargetDependency */, - F5BE28C40E3B2CC3AAC76E1470416D29 /* PBXTargetDependency */, - 0FEB1FD767AA90DD13DAE7C3D1F63D10 /* PBXTargetDependency */, - B35A6B2D2ED77D0C75C977EC9CEB8602 /* PBXTargetDependency */, - BB4A40B3AE6C584D7EE0E2F4E1664E95 /* PBXTargetDependency */, - 7148AF409C6A83B0DCA0FE4B1F270EA1 /* PBXTargetDependency */, - 9017A47352701FA7B4395403ECC5DA19 /* PBXTargetDependency */, - 07654622ED8EDB1197439074A55934AF /* PBXTargetDependency */, - C787587465FE81C002B50BCE80EB11AF /* PBXTargetDependency */, - F6FAFBE3442D18A5ACD22D2933ED77D7 /* PBXTargetDependency */, - F71E8F64ABB8356F9AB7DDA489BC11F0 /* PBXTargetDependency */, - 7F5C3AA7395FC31342E3694D937307A4 /* PBXTargetDependency */, - 45E921A11A724123E7729DA89072927F /* PBXTargetDependency */, - 5061D7DE1C7A5C5A6EE29F86008E6CB9 /* PBXTargetDependency */, - 9975D733FFD7936D988DF774D7EEEBE6 /* PBXTargetDependency */, - 32B990D0C85F20095750CB19064E34B3 /* PBXTargetDependency */, - 196E879CA7660D4E975D643748E75F50 /* PBXTargetDependency */, - A55CD4D77B997A6E177AC2B125BB46C8 /* PBXTargetDependency */, - C0F254B11A38A117A0BF8480EAD40185 /* PBXTargetDependency */, - 25BE350FDF6517673F70659A4E744D60 /* PBXTargetDependency */, - C049241ED727F04CDB725A65986FB0B1 /* PBXTargetDependency */, - ABB26D34326878DEA82C4A300ADDED2B /* PBXTargetDependency */, - 75E88DC3CFC457037C51543083FF82D3 /* PBXTargetDependency */, - 1A7A60E44E8C005D4AFD80EF49FB0B47 /* PBXTargetDependency */, - DFA2D19FEDE0D2514AC819529FB17E01 /* PBXTargetDependency */, - 78C1B85A076FF692BBB622D364C40531 /* PBXTargetDependency */, - 74755953ED01854D6CBB50A22B6A5AFD /* PBXTargetDependency */, - C9B14A461C4CBA50CAD72AF76C8D1BC1 /* PBXTargetDependency */, - 804F49CEB78C1955988A55C5F95E3C48 /* PBXTargetDependency */, - E73B1459F79297128AE0BF82F2F11CB8 /* PBXTargetDependency */, - F820B39DD6A537ACAF5F0626752F1AF8 /* PBXTargetDependency */, - 38ADD50AF4692358A655981479ECC6F1 /* PBXTargetDependency */, - CAEB8E29B49B87AA9FCE6C35B1300CEA /* PBXTargetDependency */, - 7DD6853A4D713B88F6695C9CF987FEDD /* PBXTargetDependency */, - C04BDAC2C5FD01BDE0B5EDFAECCD5F30 /* PBXTargetDependency */, - 07215A4F252FD570817588D428B88B5A /* PBXTargetDependency */, - 471045CDB00549912E051C14A4246230 /* PBXTargetDependency */, - DACBC61F523336289DFBBB49233CF3AD /* PBXTargetDependency */, - 488CDF39D63A2C792A7018DA1E5C05D5 /* PBXTargetDependency */, - 1ABDA5FF813B5C95DFB4F9FBC0EE9E9C /* PBXTargetDependency */, - DA1677867E58B70DFE3D3DD5AAC32337 /* PBXTargetDependency */, - 26C32D681E9D38E7A9C207AFFFD8B03B /* PBXTargetDependency */, - 6A80C33456DC241BEAE445085A709C73 /* PBXTargetDependency */, - 3AF10B3F165878C2CFF27800C2E62B65 /* PBXTargetDependency */, - 23A3D9DAF1168F3CB2A54D9630ECD2A4 /* PBXTargetDependency */, - F5037D05289BE0FAC6DA02EDDE3D6998 /* PBXTargetDependency */, - 3FB960F2DE2CACB09306415F8FF4AC4D /* PBXTargetDependency */, - 9E24063FFBC6A82CB281FF7D0E7A5C33 /* PBXTargetDependency */, - 6AC8D4CC27C5108ECF51998C94670922 /* PBXTargetDependency */, - 94D3D304ECD9F676E59B82D965235CF2 /* PBXTargetDependency */, - F81F7CFC1829F77A45929B23CEB62720 /* PBXTargetDependency */, - ); - name = "Pods-RocketChatRN"; - productName = "Pods-RocketChatRN"; - productReference = 7385482D9FB9C7E491C9936350A35B0E /* libPods-RocketChatRN.a */; + productReference = 58E11D269DC47DBC88C7826F0545CFFA /* libReact-RCTVibration.a */; productType = "com.apple.product-type.library.static"; }; C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */ = { @@ -13496,7 +13761,7 @@ ); name = "React-RCTLinking"; productName = "React-RCTLinking"; - productReference = 10EB5C3180661E16E403A4F436FEA309 /* libReact-RCTLinking.a */; + productReference = 4BDDBEF28482CFF061E51C62955961B2 /* libReact-RCTLinking.a */; productType = "com.apple.product-type.library.static"; }; C5D62E7954593855294FBE5848A78863 /* React-fishhook */ = { @@ -13513,25 +13778,43 @@ ); name = "React-fishhook"; productName = "React-fishhook"; - productReference = 09E27F90EDB7E9031A6BA3FA48043D29 /* libReact-fishhook.a */; + productReference = F80C2348DBBEA774AE3EAA4EFB9A13EA /* libReact-fishhook.a */; productType = "com.apple.product-type.library.static"; }; - D2186841C84524D0ECB425ADB17EBEB9 /* RNReanimated */ = { + C9F33CD9D3CC8172471A5DF1D8EBAFE0 /* RNLocalize */ = { isa = PBXNativeTarget; - buildConfigurationList = 5E11E7D3C1A17A2026F160CE852A7E49 /* Build configuration list for PBXNativeTarget "RNReanimated" */; + buildConfigurationList = B9AD805E3CBD0C047117AA77A3A11273 /* Build configuration list for PBXNativeTarget "RNLocalize" */; buildPhases = ( - 47D5AF9A4337236E677906AE222F980B /* Headers */, - A83ABC8A884BCAD654F4326B29302D2C /* Sources */, - E9BF6A96FE7284CAA2CFFBDB9E80A651 /* Frameworks */, + EFE86F875B19C47C3BAA8E464B177A15 /* Headers */, + F9619DF6D808B2BC4EA40162186CF531 /* Sources */, + 71A4D6A99960B47762FC11FF07BA4CD6 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 5A48A96DDA72ED5A2A66D1FAB18C0BED /* PBXTargetDependency */, + 0A17351A5F02A1A8703EB4948D809392 /* PBXTargetDependency */, ); - name = RNReanimated; - productName = RNReanimated; - productReference = 979B2C3C80CED748F58A24ABA26F16A7 /* libRNReanimated.a */; + name = RNLocalize; + productName = RNLocalize; + productReference = 6E580D2FF81B40FF03C160CBC2D9745B /* libRNLocalize.a */; + productType = "com.apple.product-type.library.static"; + }; + D32304F3B8D6C954D490063B8CD6C697 /* react-native-orientation-locker */ = { + isa = PBXNativeTarget; + buildConfigurationList = 91C16A5A7166E27836558C3BD72D9533 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildPhases = ( + 036EF07EB021F741FDE61C7C08AC9FE5 /* Headers */, + 615EC0D6FD2B9254591E7D64D5FF064A /* Sources */, + FD786A886B79E28A1291DF19FE061B0D /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + C4B363F8D45A355539419A8ED73F329A /* PBXTargetDependency */, + ); + name = "react-native-orientation-locker"; + productName = "react-native-orientation-locker"; + productReference = 4C7232FFB86D212C9DD1B39A2060DF18 /* libreact-native-orientation-locker.a */; productType = "com.apple.product-type.library.static"; }; D9D4825FF3196580FBFC163F94F09DE6 /* React-jsi */ = { @@ -13552,25 +13835,25 @@ ); name = "React-jsi"; productName = "React-jsi"; - productReference = 42735D69D041D4BE85EC91405E02FF09 /* libReact-jsi.a */; + productReference = 831E69476115AB40A6233D799D442929 /* libReact-jsi.a */; productType = "com.apple.product-type.library.static"; }; - DF2B1B5442699478B7CD902B70810A9C /* RNDeviceInfo */ = { + DCE0E755BF3830D8FAB341194504E9B8 /* rn-extensions-share */ = { isa = PBXNativeTarget; - buildConfigurationList = A39551F26F420EBAFBF81057101A9CDB /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; + buildConfigurationList = 24B89F48C1E0A6D71B768443A3063CC1 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */; buildPhases = ( - CB04D99C90D7E88CC54086970C154F45 /* Headers */, - A8D4A7C0EE8D6BEAF14E353435E36A63 /* Sources */, - 2047B5B356A53AB331954D73ED911059 /* Frameworks */, + 54D5215AD9FE36B32D39D5202D3424B5 /* Headers */, + 44D5E174AAA9EB35490E40935C373229 /* Sources */, + 46FC7F9ACC55B1E14CC9089D37F16AA7 /* Frameworks */, ); buildRules = ( ); dependencies = ( - B6A7C23705EE093D66CEC8D4A2F4F250 /* PBXTargetDependency */, + D541A1E163712C710411429D105CFD2B /* PBXTargetDependency */, ); - name = RNDeviceInfo; - productName = RNDeviceInfo; - productReference = DA82BF518BA12487583FB7096644F4A5 /* libRNDeviceInfo.a */; + name = "rn-extensions-share"; + productName = "rn-extensions-share"; + productReference = 86001C4B72248B557A28816A91D2A204 /* librn-extensions-share.a */; productType = "com.apple.product-type.library.static"; }; E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */ = { @@ -13589,7 +13872,7 @@ ); name = EXPermissions; productName = EXPermissions; - productReference = 5264B826F320534F554663C69EEF5F0A /* libEXPermissions.a */; + productReference = F2B211A6BFCEE89F0072358FF3D45A5C /* libEXPermissions.a */; productType = "com.apple.product-type.library.static"; }; E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */ = { @@ -13606,7 +13889,7 @@ ); name = DoubleConversion; productName = DoubleConversion; - productReference = 39CFCEDC32E2765981B7FB6164C92798 /* libDoubleConversion.a */; + productReference = DB5A8E142AFEBC1CC08E9291253FB6E1 /* libDoubleConversion.a */; productType = "com.apple.product-type.library.static"; }; E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */ = { @@ -13624,7 +13907,7 @@ ); name = BugsnagReactNative; productName = BugsnagReactNative; - productReference = 45C6372A5B49E2E1FF06FEEA2155BDD7 /* libBugsnagReactNative.a */; + productReference = 35726B6A07A73B507FEE651DEC60F73E /* libBugsnagReactNative.a */; productType = "com.apple.product-type.library.static"; }; E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */ = { @@ -13642,65 +13925,45 @@ ); name = "React-RCTText"; productName = "React-RCTText"; - productReference = 0B8EBE128B0CFDCF3C9C01B400CDC636 /* libReact-RCTText.a */; + productReference = 0B344C0FEA82A3294EE08D774696B89F /* libReact-RCTText.a */; productType = "com.apple.product-type.library.static"; }; - E7DEB0BF0088BFF022586D2A9A76C24B /* RNImageCropPicker */ = { + E7179A92F4CD91298C0766F92C40529B /* react-native-keyboard-input */ = { isa = PBXNativeTarget; - buildConfigurationList = B6D9D2F6728FC9F0B108A94BE9C915EB /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; + buildConfigurationList = 18C91BACB87FFD2C685176379EFFFA6A /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */; buildPhases = ( - C4064E4E26CD5A2CCFD7405E66BE4ADC /* Headers */, - 9261B519C63CEEE6012F791508265528 /* Sources */, - 7E1F836699028CF9FB9F6C4C32912E58 /* Frameworks */, + 097CEC96182D30A0F93DA114ECB79640 /* Headers */, + 04F2181428D061310BA1ED1F71819FCC /* Sources */, + 1F03EA41DA4B8EB680CA3A8593197BBB /* Frameworks */, ); buildRules = ( ); dependencies = ( - 2FD64975D8BE616F0BBBE881D2CB42FE /* PBXTargetDependency */, - FD554889DCA06C3D718C38544423F622 /* PBXTargetDependency */, - 3889C28E20ECE390B36D741F9854E206 /* PBXTargetDependency */, - 695E532198B48DFC6509C7C8935C82FC /* PBXTargetDependency */, + CB75717CD22C02A964F24DC7EBE66946 /* PBXTargetDependency */, ); - name = RNImageCropPicker; - productName = RNImageCropPicker; - productReference = 0855744B2E95CB5AA0BAFC261839BD57 /* libRNImageCropPicker.a */; + name = "react-native-keyboard-input"; + productName = "react-native-keyboard-input"; + productReference = 5802E78F7C7F16E97574BD9A75E4E7E1 /* libreact-native-keyboard-input.a */; productType = "com.apple.product-type.library.static"; }; - E819E49218F01D4B1C850622B4690A5D /* react-native-video */ = { + E71B80EB88669C08D6FAC0C4306F57D6 /* RNUserDefaults */ = { isa = PBXNativeTarget; - buildConfigurationList = 1EE2E96E44227B97DA31BD29EA82F6ED /* Build configuration list for PBXNativeTarget "react-native-video" */; + buildConfigurationList = A35D1E9D96D9AEA34B09D3B751BF7FAE /* Build configuration list for PBXNativeTarget "RNUserDefaults" */; buildPhases = ( - 0A531BA578BEC385ACD8F391A3DE0275 /* Headers */, - F85B3530FBE6478B5389A546941E6EAD /* Sources */, - BAD5E9FC5FFA361DF22CE0DE85AF5B9B /* Frameworks */, + 32369DE141AE7D98C0A4C96D82B1E1E3 /* Headers */, + AE24C4718F66ED619428F558E0E36900 /* Sources */, + F70E52EA70D54060C94184BFCBAFFFD1 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 24B76DF1B54105FF00494A3075225BE5 /* PBXTargetDependency */, + 505A8821EBA0200FFFC45EDAA3D34A73 /* PBXTargetDependency */, ); - name = "react-native-video"; - productName = "react-native-video"; - productReference = F761CA6AB8625B55E071D2ACE220F4CA /* libreact-native-video.a */; + name = RNUserDefaults; + productName = RNUserDefaults; + productReference = 010052220B5BF3C99C8E67886EA7669C /* libRNUserDefaults.a */; productType = "com.apple.product-type.library.static"; }; - E9998BC7841609076FF7FE066965358C /* QBImagePickerController-QBImagePicker */ = { - isa = PBXNativeTarget; - buildConfigurationList = B491213DF3C3DEF60E420E18DF883E6E /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; - buildPhases = ( - CA0779BCEE6E78BA74A6A98ED7125DD9 /* Sources */, - BB9B9E4CCCBC0D6C84E1A99566D9E2E3 /* Frameworks */, - A5686D51F8A9C0D7F5A6AC61BD1AF906 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "QBImagePickerController-QBImagePicker"; - productName = "QBImagePickerController-QBImagePicker"; - productReference = FE815C316944FC2C21F1C0403D74BE8B /* QBImagePicker.bundle */; - productType = "com.apple.product-type.bundle"; - }; EAFAF2A9CFE5807D87ACC914F678EAA8 /* yoga */ = { isa = PBXNativeTarget; buildConfigurationList = F5AC28274D4CAC64F01365DCA340CD33 /* Build configuration list for PBXNativeTarget "yoga" */; @@ -13715,27 +13978,180 @@ ); name = yoga; productName = yoga; - productReference = F66FF0943D13F8471AA183C47A02DDDE /* libyoga.a */; + productReference = 1B61320147E67E457CB0208C65E33999 /* libyoga.a */; productType = "com.apple.product-type.library.static"; }; - EFEB49E9D650421377D2A9122164ACA4 /* RNFastImage */ = { + EF82C048F8347DAEF62682C92F3E4762 /* RNDeviceInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 697F15E2B93FC14623953F917DE20B38 /* Build configuration list for PBXNativeTarget "RNFastImage" */; + buildConfigurationList = 24B611B9C2883241620591E4DA080752 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; buildPhases = ( - FC3EE84D7156BC0CF102C1D5BF394BC5 /* Headers */, - 8135105732CB718104E221127F976F96 /* Sources */, - 1272DDCDA275EB65E042040C606CBA7D /* Frameworks */, + AED798F5D5993A3E156F167A56D261DC /* Headers */, + 71646AE32B4C58841A2BB4084EFF6823 /* Sources */, + D263C7FE05A2BFE1AE535D5D2A1A3F37 /* Frameworks */, ); buildRules = ( ); dependencies = ( - F9CF8B44DCF49C7B8A85D60322B90326 /* PBXTargetDependency */, - 16A2A6364E5A20C8E3945F6BD7323E37 /* PBXTargetDependency */, - E609ED815724D15A4985B17FD62AF15B /* PBXTargetDependency */, + 9C9C329D9D772A7F3023DA01E87B8AB5 /* PBXTargetDependency */, ); - name = RNFastImage; - productName = RNFastImage; - productReference = 07712C9FD703B832FCFA4645436E57D3 /* libRNFastImage.a */; + name = RNDeviceInfo; + productName = RNDeviceInfo; + productReference = 57AA2A2E9AA631CE79A1AECF85CD0244 /* libRNDeviceInfo.a */; + productType = "com.apple.product-type.library.static"; + }; + F5177E808E0BE07C26F95734D971D5C4 /* RNScreens */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2734E23C0D7B6F0D2406CCC9F8088D17 /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildPhases = ( + 53DAE55D52BEE6DF5B5E79EC99ED59FC /* Headers */, + 295D2CA64442923AE7A11ED1495BE01B /* Sources */, + C8557BDBEDBB4A78A5FD31405F6B7FEC /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 099436C90A107A9A759F555CAEE66542 /* PBXTargetDependency */, + ); + name = RNScreens; + productName = RNScreens; + productReference = 36BD82CCC46004B73463CCC60F5EE804 /* libRNScreens.a */; + productType = "com.apple.product-type.library.static"; + }; + FB272C94AE4296D3A1132E63BD3DC7A6 /* react-native-keyboard-tracking-view */ = { + isa = PBXNativeTarget; + buildConfigurationList = 06B6B4B0C4E6CF55F6E8489C41D2748C /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */; + buildPhases = ( + 6B3D97225CFD1A205FC20AC585215DF2 /* Headers */, + 7B7AB8AA490F7934B4393EEAE8AFA041 /* Sources */, + 2E8958D501E659A3501025769153BD63 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + D8131C0C8C05645F3BDED70CA600EF29 /* PBXTargetDependency */, + ); + name = "react-native-keyboard-tracking-view"; + productName = "react-native-keyboard-tracking-view"; + productReference = 5ED08A6047D33ECDE0B47256700F85DB /* libreact-native-keyboard-tracking-view.a */; + productType = "com.apple.product-type.library.static"; + }; + FCB2EA2E4AAC01546193580A75AD5C62 /* Pods-RocketChatRN */ = { + isa = PBXNativeTarget; + buildConfigurationList = 44B0545DD8A272562D402855FAF06C13 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildPhases = ( + 7ECDDEB385308AF2165C194457FCEAA1 /* Headers */, + 2D491D2F870C73A85E7463FDA1CB4E43 /* Sources */, + AD57E939D79E65FD10387BEE71430ED7 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 481CDB69198589ED7F81086C9D12A21D /* PBXTargetDependency */, + 14BD95B90F71436C618D52A18EA79A8C /* PBXTargetDependency */, + B0353B9A6058981C1F1A8A4C62CF6D1A /* PBXTargetDependency */, + 677F8012A8BABC225FB5F74D4BA2C935 /* PBXTargetDependency */, + 616264B8FF14F5444D405AE91C881602 /* PBXTargetDependency */, + 2BC2644FADFDF77F6A3673ADF86E49B1 /* PBXTargetDependency */, + 46BD24975495F2FDD61FF1C4736E362A /* PBXTargetDependency */, + 1821796F5B367791E01BBBC7B0E3205E /* PBXTargetDependency */, + FB98F3E701523C4FF8815908659847E4 /* PBXTargetDependency */, + 93458034F1BCBAF5D6707D6DD946B634 /* PBXTargetDependency */, + B75EAFF9AE2016EA1F90689E0646473D /* PBXTargetDependency */, + 3A7B814AE51E89A3F5C8DC299569DEE7 /* PBXTargetDependency */, + CE5302B206A0A5C4BC02D5A26FBF9EA5 /* PBXTargetDependency */, + 4A1BEB185BDFD621436E6DCBA57D945E /* PBXTargetDependency */, + E1C491CD8F0F52E250F9CDDC7264CB14 /* PBXTargetDependency */, + 836C675CF10F4269BBA4B4AC1EE3F8CF /* PBXTargetDependency */, + A3A32C82EC7E2F69BE43CE2EF4FE1153 /* PBXTargetDependency */, + 0A5516D71930715C984885EEAF896E57 /* PBXTargetDependency */, + 12627958A7986F109CFA8DCE8C9D0FD7 /* PBXTargetDependency */, + 0C73E2573BBA6063BF643807B97B4B34 /* PBXTargetDependency */, + 8E4A8A32DA46B739CCEC5B952DE5E65D /* PBXTargetDependency */, + 5466A0FADF1D87BCDE68F4B7D89C0914 /* PBXTargetDependency */, + 599901F403AE6E9FABBE995BCAB047BE /* PBXTargetDependency */, + 4E41E3694D0B66212DE0C99A6A1ABF49 /* PBXTargetDependency */, + 3FB5AEBE550A550931D3BEEE26A1D9CB /* PBXTargetDependency */, + 46F2547CDFDA63575EF0142371AC3F47 /* PBXTargetDependency */, + BB01AC2E07BEF4FDB845FD6280E0F4C0 /* PBXTargetDependency */, + 37AD18128674C7F2CC106BBF0FF3A5C5 /* PBXTargetDependency */, + 31F18CF355DF7CE4290C5CD0B84942E0 /* PBXTargetDependency */, + 826EAB9B77167F6A5B34B45A9CDC2D5C /* PBXTargetDependency */, + 63B71010D418B4D5C9D5DA21AFE632A9 /* PBXTargetDependency */, + 5C07CF93839510C7AA1B77BA001E4EA8 /* PBXTargetDependency */, + 881B2AFAB761D56E06C9B57224D2BAE3 /* PBXTargetDependency */, + D9ACF66B359B10D711CAFCA1DEF873C3 /* PBXTargetDependency */, + E1532D867DB35EC1DB7E242E434F1C8D /* PBXTargetDependency */, + BB132AFDE4D0E0D0FCE4406945812DE2 /* PBXTargetDependency */, + 9AB59DD6423A00365EF6FEED9D1E0E89 /* PBXTargetDependency */, + 012004B9E865F18808A1F81F5230300D /* PBXTargetDependency */, + C6AB0910FD4ECE15B791A1502129C5B4 /* PBXTargetDependency */, + 312610B353AC6DB714F2E73DA4AC5025 /* PBXTargetDependency */, + 4D31DEE11618DA2161EE31B3408A6AE7 /* PBXTargetDependency */, + DE1DB9B764471436DFB9F88BE28F4A73 /* PBXTargetDependency */, + 9F18BCC948FF7EF033D3A8551922099A /* PBXTargetDependency */, + EF22801C005D33F8648317194A966435 /* PBXTargetDependency */, + 4831B064284FDB5603E2EF850E24FCAC /* PBXTargetDependency */, + 7BF863B187E5122493594791A2A9D89E /* PBXTargetDependency */, + 3B9701BCB7F9DBB744A559CC76919410 /* PBXTargetDependency */, + FDAE20E62AC96912EB0E46186F0E3F6A /* PBXTargetDependency */, + B9D870702C9B8CC74D03EBA33656215F /* PBXTargetDependency */, + 7886FC4BE860C6C1420C834A299300A8 /* PBXTargetDependency */, + 4769FFFB527A3AD166E84308313BE429 /* PBXTargetDependency */, + BDAACE7B9C6E9D2540932D3BD13D4A27 /* PBXTargetDependency */, + 8CC75DD5A903D2597888338492C40D19 /* PBXTargetDependency */, + B7A32A2699888E0C6F74C68138BC281A /* PBXTargetDependency */, + 8E36FBEA0756068B2E15F90FFA32ABD7 /* PBXTargetDependency */, + 1E2A75A6D5FD933E7FA66CBB9CD80E37 /* PBXTargetDependency */, + E28960F4CB36444C822141EA3E47C676 /* PBXTargetDependency */, + 13C175187E4FD345212DB2D235093F05 /* PBXTargetDependency */, + FAD06086857A8CBE99B7AB3EEB918833 /* PBXTargetDependency */, + BCAF7C17BEAA4C1ED7D14E052F2100BB /* PBXTargetDependency */, + 411CE864FA32EEDC595738E974D18015 /* PBXTargetDependency */, + 5582DCAC44E8F5DE8BB49CC63C47EEB8 /* PBXTargetDependency */, + 5A8C8DD7CB0EF3ECC0A27864E58C15ED /* PBXTargetDependency */, + DA58536A1794225980EB4191BADF9ECC /* PBXTargetDependency */, + 7614A3C2AE79C21148BF76DB46F13002 /* PBXTargetDependency */, + A578DAEFD0BDE36A5A2BD96D3BC05E97 /* PBXTargetDependency */, + 881635631988401FC5AC21F792DB3356 /* PBXTargetDependency */, + E3FD5BA43C2B7CE61CF5D85DAB9F6170 /* PBXTargetDependency */, + 9B82F819629385E3D18973D7C3DA0F52 /* PBXTargetDependency */, + C4C6CA776F2186F9490AF010DA0E4751 /* PBXTargetDependency */, + E972AA9CEFA5B81C24E92CF8A9CFE04D /* PBXTargetDependency */, + 2E8EABD0ECA6EF490847D4D67987EC99 /* PBXTargetDependency */, + 5509C2C9A24EEC626D63C5608165947E /* PBXTargetDependency */, + 4F9B5CBDF7B91CDA0FEDD69EB4D7B9E0 /* PBXTargetDependency */, + A45D62DC6218250EF01B21B8765E632C /* PBXTargetDependency */, + 18EFE451DDDA1CA06D90352260B16522 /* PBXTargetDependency */, + CCCEF8303AE9E6DAF368749DF0CAC255 /* PBXTargetDependency */, + 30112337C2106532A6FE2AB082CC588E /* PBXTargetDependency */, + 36B09492CDD8A9DC67147EB8C4F2DD23 /* PBXTargetDependency */, + 9EE6A6713EC543AED0D7B4E4AE96362D /* PBXTargetDependency */, + B88B48E475AEFDA5CDCC6464DCEDFACB /* PBXTargetDependency */, + 78359BFE7AA5F2AB89608CA893D8B5DE /* PBXTargetDependency */, + D963CAEA7A1F2A53FAB6A6A874B953A8 /* PBXTargetDependency */, + 95A3C18AD2FFF2B94741A13F2BD90096 /* PBXTargetDependency */, + ); + name = "Pods-RocketChatRN"; + productName = "Pods-RocketChatRN"; + productReference = 6BF3815488757C28A9DA933604BC6B8D /* libPods-RocketChatRN.a */; + productType = "com.apple.product-type.library.static"; + }; + FCD870CE518718B09F202148537ACBEA /* react-native-notifications */ = { + isa = PBXNativeTarget; + buildConfigurationList = AA0E126356B568D0E222685F186B9B87 /* Build configuration list for PBXNativeTarget "react-native-notifications" */; + buildPhases = ( + 854E14DAF172E65E767A681B7689CC98 /* Headers */, + B7FEA65D01385652DF580E52AA08517B /* Sources */, + 7BBDA2F6E16B0EAD18929364769563AA /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + D23341A8E4446404253D928A66BB4EDA /* PBXTargetDependency */, + ); + name = "react-native-notifications"; + productName = "react-native-notifications"; + productReference = 5C14D076CF909BE6AFB2E905796323AE /* libreact-native-notifications.a */; productType = "com.apple.product-type.library.static"; }; FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */ = { @@ -13754,7 +14170,7 @@ ); name = EXFileSystem; productName = EXFileSystem; - productReference = 5B30A4E7EA86416087D9194ABC6F4CC7 /* libEXFileSystem.a */; + productReference = E18CE3E014CE764ADF49FBB006DC7481 /* libEXFileSystem.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ @@ -13774,7 +14190,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 30288CEEFFFE0488B222534836B28DC4 /* Products */; + productRefGroup = 99AB89F67490DB2C16299F020D76090F /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -13804,10 +14220,10 @@ BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */, 427A5566E42596B2649019D00AA80F10 /* libwebp */, 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */, - BDF55D822572BFC27317BB739F33E860 /* Pods-RocketChatRN */, - 85172E9C4FEEA1B7522DE7A6847D0DA0 /* Pods-ShareRocketChatRN */, - 0EBAD9A3F5D231CA9F04A66138256744 /* QBImagePickerController */, - E9998BC7841609076FF7FE066965358C /* QBImagePickerController-QBImagePicker */, + FCB2EA2E4AAC01546193580A75AD5C62 /* Pods-RocketChatRN */, + 88448C1BDEF0E335FC306D4B8E3C584C /* Pods-ShareRocketChatRN */, + 256C04ADE480DBD4834FD3CAB29E18C7 /* QBImagePickerController */, + 54312B90205B51C80179FDB941BD5A75 /* QBImagePickerController-QBImagePicker */, 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */, 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */, 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */, @@ -13816,15 +14232,16 @@ D9D4825FF3196580FBFC163F94F09DE6 /* React-jsi */, B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */, 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */, - 7CDE227A96A3D9BAB6F477300B55346D /* react-native-background-timer */, - 752FCBCD2E0EA0ADCF498C7CB6315B64 /* react-native-document-picker */, - 2D216ABBF7DB5CB52B72847709A0E887 /* react-native-keyboard-input */, - 9693FDE10118A2D3719CCD8793940995 /* react-native-keyboard-tracking-view */, - 75413E753E5D3F1BE4BBFF5A9633F19E /* react-native-notifications */, - 3CF1984FC477CA2F1B7B2053998B8676 /* react-native-orientation-locker */, - 6A6292EF6BD5726FAEE2DA523C3D0416 /* react-native-splash-screen */, - E819E49218F01D4B1C850622B4690A5D /* react-native-video */, - AAC627FD97B49E278B99ADB9DB7DA5DA /* react-native-webview */, + 6E898D47D3B30C6577C45BB2AA9E2284 /* react-native-background-timer */, + 193A52DCCDA30BC73369F9D25131BB61 /* react-native-document-picker */, + 1A05BC2EB27453B863BCC5EC8B2B2B3B /* react-native-jitsi-meet */, + E7179A92F4CD91298C0766F92C40529B /* react-native-keyboard-input */, + FB272C94AE4296D3A1132E63BD3DC7A6 /* react-native-keyboard-tracking-view */, + FCD870CE518718B09F202148537ACBEA /* react-native-notifications */, + D32304F3B8D6C954D490063B8CD6C697 /* react-native-orientation-locker */, + 9DE6FE0A7B145D5D64B4645C0A167B45 /* react-native-splash-screen */, + 9EFD966453BEA5A0A61E17F9D9271A60 /* react-native-video */, + 45F3F9A656392183065EBA502E899AEF /* react-native-webview */, 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */, 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */, 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */, @@ -13835,50 +14252,50 @@ E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */, BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */, 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2 /* React-RCTWebSocket */, - 529158F649793C04021B9832DF3E0FFD /* rn-extensions-share */, - 25949AF3296378D8BFCA4B563F4B4F45 /* rn-fetch-blob */, - 40094264A7543CBF6B0AC3BF172E471F /* RNAudio */, - DF2B1B5442699478B7CD902B70810A9C /* RNDeviceInfo */, - EFEB49E9D650421377D2A9122164ACA4 /* RNFastImage */, - 35BC3AE509299DE247A4FF5AFF8BEE16 /* RNFirebase */, - 5FDF615A7E8CC4C3EDE33FB5C6925D5E /* RNGestureHandler */, - E7DEB0BF0088BFF022586D2A9A76C24B /* RNImageCropPicker */, - 70C22F7EE05643BEC8549072142E9E00 /* RNLocalize */, - D2186841C84524D0ECB425ADB17EBEB9 /* RNReanimated */, - 062F5DBABAF21FFB6A377EC1FE48A730 /* RNScreens */, - 8F6AC1F817A6020A1AD035B558A7A825 /* RNUserDefaults */, - 5F63A1E41B86B1D8B6D7FB6EE06DEDFB /* RNVectorIcons */, - 8D06140A738C278926836084E0C73057 /* RSKImageCropper */, - 35577D44474D5D17721C61EB916F7021 /* SDWebImage */, - 63CD6794DC7550F854838D23B403A831 /* SDWebImageWebPCoder */, - 4732B625A39AA6E14387EB671FCF7CB7 /* UMBarCodeScannerInterface */, - 5A5635BEE017E125F52F95B5E1FBC6B6 /* UMCameraInterface */, + DCE0E755BF3830D8FAB341194504E9B8 /* rn-extensions-share */, + 637805D5DEFA194CF328DA2A13EA9AA9 /* rn-fetch-blob */, + 1F10289E58028110D5E1095D41608A3D /* RNAudio */, + EF82C048F8347DAEF62682C92F3E4762 /* RNDeviceInfo */, + 3EC18C45063BBBF2DC591C01F09E3069 /* RNFastImage */, + 3396F21218EB36C2568D05648BE2827C /* RNFirebase */, + 74EEA248F982197D559582A658DAA382 /* RNGestureHandler */, + 7BFE9C8AF890F2E4593C07660F79FA96 /* RNImageCropPicker */, + C9F33CD9D3CC8172471A5DF1D8EBAFE0 /* RNLocalize */, + 14C4E57D028B3604711DA6503AD5B4F0 /* RNReanimated */, + F5177E808E0BE07C26F95734D971D5C4 /* RNScreens */, + E71B80EB88669C08D6FAC0C4306F57D6 /* RNUserDefaults */, + 4E295582CC9C3BFE0469D3B5E0030673 /* RNVectorIcons */, + BCAD56353CC03FBEA94A951A14E3F333 /* RSKImageCropper */, + 8DBB59DA07871D38FA326EEFB3109004 /* SDWebImage */, + 317B9B7E899CBAA3C433E49C9A4F9233 /* SDWebImageWebPCoder */, + 4FBB5D004566C9C8B2B9183ED6C6CDD7 /* UMBarCodeScannerInterface */, + 56D3B9DEFD00B2D12D27DE7280EE9046 /* UMCameraInterface */, 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */, 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */, - 8F9C80EE88B6DF02CF887F4534C0C8D1 /* UMFaceDetectorInterface */, + 859CC2305C7CF951A89D25B76146E86C /* UMFaceDetectorInterface */, 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */, - 8923451EE41ABB80D8FCB82A5916D131 /* UMFontInterface */, - 27238E8DC18048F88CB6FC7AE06D4301 /* UMImageLoaderInterface */, + 57D441FD74CABBA22161F1564CB270A3 /* UMFontInterface */, + 0457CE0B3AFDC70E0EFCBC67373B8890 /* UMImageLoaderInterface */, 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */, - 2D23E970E1AD78BBDD3815E389684439 /* UMReactNativeAdapter */, - E0D783B49979A14D2025F4BC2F977DDC /* UMSensorsInterface */, - F2EA13F7186803B14E07C507D5AC0A3F /* UMTaskManagerInterface */, + 6469A603AD1FC761672BD6D7FACC0CBE /* UMReactNativeAdapter */, + 855548CC8E8274EAF5D336918E25ED2E /* UMSensorsInterface */, + 4A0F8EB58C18AB13EC4AC87932790923 /* UMTaskManagerInterface */, EAFAF2A9CFE5807D87ACC914F678EAA8 /* yoga */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - A5686D51F8A9C0D7F5A6AC61BD1AF906 /* Resources */ = { + 2D3AC6C97294F3DBF5B5CD7FD9D7A312 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 306ADC0052D058C7BF741EED5CE191F3 /* de.lproj in Resources */, - F8BAA00AFF2CD8E8CD95276EA45B4BB2 /* en.lproj in Resources */, - 1A3CD020DED0285D59EEC26D6F09677A /* es.lproj in Resources */, - 6DB81EC3247D2E6CA868137863FCCCBE /* ja.lproj in Resources */, - AF7BE1CE4E39D0D09F69DE904C19A8A9 /* QBImagePicker.storyboard in Resources */, - FA40C1C1C6AA49B21B67E6803311C45B /* zh-Hans.lproj in Resources */, + 785AF1BB15C732D58DBB21A745EAB4D7 /* de.lproj in Resources */, + 18EBD372C614595AC5AED69A37B62AD8 /* en.lproj in Resources */, + 3115E25FBBF43BB75ABE2B355A3D2520 /* es.lproj in Resources */, + CEB1CB42C7EF326E11DDB07BDA3138E9 /* ja.lproj in Resources */, + BED086AE74F909CF1C7240CF24B4EF98 /* QBImagePicker.storyboard in Resources */, + A8883057E2764529939929374F06863B /* zh-Hans.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13894,47 +14311,68 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 083D5A3DBD4E95FFF777EA6FD3B06141 /* Sources */ = { + 024355A486980561513E999808340A14 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 860625C0D332AD41A8DF700B8C12207D /* Pods-RocketChatRN-dummy.m in Sources */, + 47707D92898C541479CEBFA4D4B84EFC /* rn-fetch-blob-dummy.m in Sources */, + 3E74460B66C3327E0BEC05AC3E748C7B /* RNFetchBlob.m in Sources */, + F776A24745768EBA83955DF03DA7BA91 /* RNFetchBlobConst.m in Sources */, + 7855E3096FA2DE96948913CDBCAAB192 /* RNFetchBlobFS.m in Sources */, + 8B9B818D05E95770B35C6AB50AFB5D52 /* RNFetchBlobNetwork.m in Sources */, + 2B41C516647CF9EBCA15C1CE6785B400 /* RNFetchBlobProgress.m in Sources */, + 6042078C233251DA66704C46A09E3CBF /* RNFetchBlobReqBuilder.m in Sources */, + 6C7452AAC08BE731F39DF95AA670E001 /* RNFetchBlobRequest.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 150B6ED87B52C3737911726FAFF0A795 /* Sources */ = { + 04F2181428D061310BA1ED1F71819FCC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 68D4E69246BCFEBF71C46463E4DB8292 /* SDImageWebPCoder.m in Sources */, - 7F2D403722E8EB3877123FCA5C1328A7 /* SDWebImageWebPCoder-dummy.m in Sources */, - F4EC3468054142BE02A65CEE11DABF25 /* UIImage+WebP.m in Sources */, + 92D78A2DC618AC6F3D02D7F448385F39 /* Color+Interpolation.m in Sources */, + 31E0FF38DDF15FD14E1BDC2C357BE242 /* LNAnimator.m in Sources */, + C7F68CF35FE027335136061E7DFA6188 /* LNInterpolable.m in Sources */, + 34F5A26BD74B5EEB1589DA0EE60DBC9C /* RCTCustomInputController.m in Sources */, + C264DF65754E453968BC98E1519DF6B5 /* RCTCustomKeyboardViewController.m in Sources */, + 13D6D60D9D88425ECAFC4EB1D3E41398 /* react-native-keyboard-input-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 167F0AC99365D304A9C7AA0876AB3E82 /* Sources */ = { + 070D471B5021BCCB1D117CE972C93C94 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A991A5518ED4E871A704A70FF819D2C6 /* react-native-document-picker-dummy.m in Sources */, - B51DA1471B39D89288DD536DDE89E02B /* RNDocumentPicker.m in Sources */, + 30DA5709545ED586C96710DC9A8BB36D /* UMModuleRegistryAdapter.m in Sources */, + 2876A66E34F2898CB729FD9BDA6B3986 /* UMNativeModulesProxy.m in Sources */, + A86B172FC887A70700136440E5D82C58 /* UMReactFontManager.m in Sources */, + 2DE24ED37994ABCB4F25C3EA7AC43AA5 /* UMReactLogHandler.m in Sources */, + 25F5B7E13A9D75A94558829D24246DA0 /* UMReactNativeAdapter-dummy.m in Sources */, + DF3616FCB5789C6C6EF3198F103F4E0C /* UMReactNativeAdapter.m in Sources */, + D4CFF8A576D4AA2F9C42CA65A6732831 /* UMReactNativeEventEmitter.m in Sources */, + 26BD67C36AC0B3FE0DCB1634A656CF76 /* UMViewManagerAdapter.m in Sources */, + 5E57847689DFC7C4BE05C3FB9B528018 /* UMViewManagerAdapterClassesRegistry.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 233E610485B7BB9AD56C1D3C2A5D2778 /* Sources */ = { + 0EF204FB80D2DEEB86F24EAB28B61156 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E46B89B6E407E05E6B6E4A2D5329D92B /* react-native-splash-screen-dummy.m in Sources */, - 7F5FA717B791AD0C5BDC61FA017CD3CA /* RNSplashScreen.m in Sources */, + 41BDD17EC27B3A845348E9103F54B207 /* FFFastImageSource.m in Sources */, + 823E7842FF3107877C3019C6E0E157E7 /* FFFastImageView.m in Sources */, + DA8BD7BBF4FF9D874DB053946E31F301 /* FFFastImageViewManager.m in Sources */, + 42A22491BAB5B6901D15EB2D1354B1E6 /* RCTConvert+FFFastImage.m in Sources */, + 5F6F8A1589F4A51447E19B64C7A2CE19 /* RNFastImage-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 239000A14A3BBA23B18052389C7C61F5 /* Sources */ = { + 1C62B0B57917042A48A08946E1743F50 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F7BD25D1006AFC39D7056A2FDEDB7393 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + 6E75816472844DA362E68B86955CCDC4 /* react-native-background-timer-dummy.m in Sources */, + 7927300F99037E6BBE12220D2F120518 /* RNBackgroundTimer.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13967,6 +14405,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 295D2CA64442923AE7A11ED1495BE01B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E19F9E659C582EF24D86570581844605 /* RNScreens-dummy.m in Sources */, + 866B388C0FB768E4E1117449E984F0E4 /* RNSScreen.m in Sources */, + 230536FB531E42B75DE938216E0B4A48 /* RNSScreenContainer.m in Sources */, + D9A2A08F708091DB73234C2AB277ECE4 /* RNSScreenStack.m in Sources */, + 8DEB7672319336643561FA54578EAA35 /* RNSScreenStackHeaderConfig.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2A0C91B68309536EE3AA72F2CCC82C02 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13999,37 +14449,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2CFFDFD1B6CD026BF88EBAE5FDF38762 /* Sources */ = { + 2D491D2F870C73A85E7463FDA1CB4E43 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 576B3466DF739EED79D59EBAAF287C30 /* BannerComponent.m in Sources */, - BFC39EB7DCFC10E6D7F1D4A9E1F769AD /* NativeExpressComponent.m in Sources */, - 3007A030A2D1AC074FCCF4FA35D6F0D7 /* RCTConvert+UIBackgroundFetchResult.m in Sources */, - FEF107D33A06D5A3044E2E00FCC280D9 /* RNFirebase-dummy.m in Sources */, - DF4360C56486590A45311A1BAFE50EFD /* RNFirebase.m in Sources */, - C2EE5480A02EEE78963D34FA5EA81941 /* RNFirebaseAdMob.m in Sources */, - 00C58D1392530E9B48E8E0AD1D409FDC /* RNFirebaseAdMobBannerManager.m in Sources */, - 74115130D7CC66AFB67C17856D685617 /* RNFirebaseAdMobInterstitial.m in Sources */, - 35996B2310F557AE8D8C6E209029ADC1 /* RNFirebaseAdMobNativeExpressManager.m in Sources */, - 5866B0181ED42C514AAF3E30E406A52A /* RNFirebaseAdMobRewardedVideo.m in Sources */, - 42B3CF6337D0168F41E215AF243FE82B /* RNFirebaseAnalytics.m in Sources */, - 4820B389AD6D39B855FB40B6D7E5113E /* RNFirebaseAuth.m in Sources */, - 0D88AA8424CC8B05E833DC70FE3C92AA /* RNFirebaseCrashlytics.m in Sources */, - 7AD9B8E99074C2A42E0C3078B62A5B12 /* RNFirebaseDatabase.m in Sources */, - 9AA70BAAE83EA7DF799D41A2F35F4C0E /* RNFirebaseDatabaseReference.m in Sources */, - 8B029912233BB9A18F149E49D99DC974 /* RNFirebaseFirestore.m in Sources */, - B2F6EA394AEAC4B46E3229B052D1FC11 /* RNFirebaseFirestoreCollectionReference.m in Sources */, - 399CB4A86787AA2E44F736D6DFEA8F8B /* RNFirebaseFirestoreDocumentReference.m in Sources */, - A7D604AAE50B12ED58F7C57FBF832819 /* RNFirebaseFunctions.m in Sources */, - C69C522A3F37B62386EB07C8BF8BBF86 /* RNFirebaseInstanceId.m in Sources */, - 9D979453B51E7CB3B7FFC44016A4C1B1 /* RNFirebaseLinks.m in Sources */, - 811C93F69324443B4FCF82D8396841CD /* RNFirebaseMessaging.m in Sources */, - BFF53F2632391A7ABCFA053837B6D6A9 /* RNFirebaseNotifications.m in Sources */, - 88D960E7160D6EFEB65B29502B9E5FE5 /* RNFirebasePerformance.m in Sources */, - B4E1C0B1B8744AD14377FD760C01DA9A /* RNFirebaseRemoteConfig.m in Sources */, - DE92671046C0D89FF4E3479D8A4EB241 /* RNFirebaseStorage.m in Sources */, - BFD7107C604ED676ECA568FCB904C3F4 /* RNFirebaseUtil.m in Sources */, + 771B606DFA203D48FB48B79D617618F7 /* Pods-RocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14061,6 +14485,70 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 353934E4CD069074A7C3278AE9A7B9DA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 359A056193CA0AA76204A4F5B8AF037C /* NSBezierPath+RoundedCorners.m in Sources */, + 22DEDE84CD2BB002719CE704F02D6571 /* NSButton+WebCache.m in Sources */, + 7C9A2CB484067417A2C90E332DA9562C /* NSData+ImageContentType.m in Sources */, + EDAB76FFCDD23233F0F55883A3A72C33 /* NSImage+Compatibility.m in Sources */, + 190D0A80F694BC787EBAC58E813A4F33 /* SDAnimatedImage.m in Sources */, + 2E2E2D9224E54C8D2E503872A135F664 /* SDAnimatedImageRep.m in Sources */, + B2F3E5035E1D0D26AA131468A99D3009 /* SDAnimatedImageView+WebCache.m in Sources */, + F8A1DF57A1D237AC3E1B088DDB5FB7FA /* SDAnimatedImageView.m in Sources */, + 3E99FE7532F63DC3F6E81256F84CF3CB /* SDAsyncBlockOperation.m in Sources */, + AF7B712CDFD78CCD40E3D7EB932A6A82 /* SDDiskCache.m in Sources */, + 327D35774D087787279902C566ABD75F /* SDImageAPNGCoder.m in Sources */, + 6E1DFB592DEBCF09AF4BC18F3A578A63 /* SDImageAssetManager.m in Sources */, + 3C9BA4AFBB7B62AF9E19394ECBFA5C63 /* SDImageCache.m in Sources */, + 069DF5B732CACAD06E31FE3B49D37C69 /* SDImageCacheConfig.m in Sources */, + 15B4568BD266F33A873EE39AB395FC22 /* SDImageCacheDefine.m in Sources */, + 01CF9A5886A2B4F38B8B652517410B2D /* SDImageCachesManager.m in Sources */, + D7C8F11B29D8E98DD956CC9D8C19D446 /* SDImageCachesManagerOperation.m in Sources */, + E8693AD53728913433AA8727F73D760A /* SDImageCoder.m in Sources */, + DEF402D715FF6768009CCE0E4EE6C92E /* SDImageCoderHelper.m in Sources */, + 3011738AF526949E6ECA7D289A8CAA61 /* SDImageCodersManager.m in Sources */, + 91EBEE6C3677C928383C33066D84DAB7 /* SDImageFrame.m in Sources */, + 7A3BABAFA30007CDC7C02FEA27CC556E /* SDImageGIFCoder.m in Sources */, + 846FD3BBC8DEA27716E5F69C7A7AC84A /* SDImageGraphics.m in Sources */, + 71199627440A095D058CC2B0D616BA87 /* SDImageIOCoder.m in Sources */, + 485343993EE96DF6906AA9AAF1B9B4D5 /* SDImageLoader.m in Sources */, + 1B3AD0E16337D9ACC0145F310B2CF8C5 /* SDImageLoadersManager.m in Sources */, + 8B7E4EC52E2D1DBA98ADEBE76EA7477A /* SDImageTransformer.m in Sources */, + 0F2566D0E560C98FF645B4C07BC22EEA /* SDInternalMacros.m in Sources */, + EBBA8C7746351A32AA579964827D4959 /* SDMemoryCache.m in Sources */, + 8CBC4CA0B45A6803E35BF11CF16F0579 /* SDWeakProxy.m in Sources */, + 95267289A8570FB255C8FE79D8186C7A /* SDWebImage-dummy.m in Sources */, + 8D279CD71AA8C6A758A67272B12844AF /* SDWebImageCacheKeyFilter.m in Sources */, + ED07D390421CCE321ACEC4D87EC270B1 /* SDWebImageCacheSerializer.m in Sources */, + 71F2419438AAEF976482C303CA78B330 /* SDWebImageCompat.m in Sources */, + 1B06EA3C02FB7023615C34398B60070F /* SDWebImageDefine.m in Sources */, + F1D1CBFFAB3AA1370F22DB0A5DD64866 /* SDWebImageDownloader.m in Sources */, + 654D5B49FDCBC0EFACE112FFA7812A7A /* SDWebImageDownloaderConfig.m in Sources */, + 8BA110C87F5E33516AE15023857DC610 /* SDWebImageDownloaderOperation.m in Sources */, + D73BB50187CC82BBEC782D0185FE7151 /* SDWebImageDownloaderRequestModifier.m in Sources */, + B6C38F9A12BDEBC13FFE7ABD47F7B7DC /* SDWebImageError.m in Sources */, + 83872742B7EF62BD5F6EDA13C7F86FD0 /* SDWebImageIndicator.m in Sources */, + AB41CEF43E6CC65A7F72F8F347B7E66C /* SDWebImageManager.m in Sources */, + EC18F8764A38D4B939DE749DF4FE618B /* SDWebImageOptionsProcessor.m in Sources */, + 7F2203D1AEAF9B0444E077396A547230 /* SDWebImagePrefetcher.m in Sources */, + 36B4BA351E56BEDB4C09EF4F47FEA817 /* SDWebImageTransition.m in Sources */, + 8E5CC6AE814348EDE037B47322991544 /* UIButton+WebCache.m in Sources */, + CD1C30297478198133EFD440F69441F0 /* UIColor+HexString.m in Sources */, + 1D265DA0FBC8CA92BA1D84A78366ABB5 /* UIImage+ForceDecode.m in Sources */, + 6870DB725671D618DE66D6053F6603B6 /* UIImage+GIF.m in Sources */, + 09251D5333F9CE481828383B9BD436F9 /* UIImage+MemoryCacheCost.m in Sources */, + 3395C03FBEA5BB8E2C6FC9F2136493A1 /* UIImage+Metadata.m in Sources */, + B0D83B7635A0B351B8B2D0040D19F256 /* UIImage+MultiFormat.m in Sources */, + DA262F77BAF0338D7B5AF14AC74C7788 /* UIImage+Transform.m in Sources */, + E4B2A41EE5F5158EAB8747D38E577460 /* UIImageView+HighlightedWebCache.m in Sources */, + 6D83294B6BE6FAFE7229CFF3E7AF7382 /* UIImageView+WebCache.m in Sources */, + 248C935C8CA657906423CC95872921A9 /* UIView+WebCache.m in Sources */, + 0DD75105DA042DEF4F15D65B4AEEC5B8 /* UIView+WebCacheOperation.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 35C9679D52E2954B009CEECE76FE02D5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14094,12 +14582,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4005B407E9201B7DCE2D7D4D61CA83C2 /* Sources */ = { + 44D5E174AAA9EB35490E40935C373229 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DAD0D2F31CD8C7D3E6507EC64BFE265A /* RNLocalize-dummy.m in Sources */, - F8066AF226BA224980B40CD151CA028E /* RNLocalize.m in Sources */, + 0EBAF8A0EB1B46B03E8691C80B133C80 /* ReactNativeShareExtension.m in Sources */, + EAE8440031DA8BFB123166FAF77FEA03 /* rn-extensions-share-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14171,14 +14659,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 53DEB27C16AB73650AF2B16D0E81AE48 /* Sources */ = { + 52161A6E52FD21E1A7F0E2D57B27CE3F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 82E795B94F51EB1AE3EEEEFC44B166C7 /* KeyboardTrackingViewManager.m in Sources */, - FEA667F98E82AE4CE35B3DAC6E1FAEE0 /* ObservingInputAccessoryView.m in Sources */, - 367448A77A3D04F53F5D21C9D68FD6F5 /* react-native-keyboard-tracking-view-dummy.m in Sources */, - 80F8862C3574D3E214423A13DD88443E /* UIResponder+FirstResponder.m in Sources */, + 612973A4BDDE03AC7C966B97DD8F2555 /* BannerComponent.m in Sources */, + C4530D9424D38DC1DBAF706666A0A415 /* NativeExpressComponent.m in Sources */, + 04187ED09BB1CA5672D8E180E57D95B6 /* RCTConvert+UIBackgroundFetchResult.m in Sources */, + 426BCC3BEB0E7BD4FD2C2506ADA0BEA7 /* RNFirebase-dummy.m in Sources */, + 15E7761EA4B937746CBFE05D97E561F4 /* RNFirebase.m in Sources */, + 9F18395720E8F51A90F6154AE7D7F36F /* RNFirebaseAdMob.m in Sources */, + 445779A88841C2103CD90C1E67E609CC /* RNFirebaseAdMobBannerManager.m in Sources */, + 8F2473952353DFA2C6C446284CD05F08 /* RNFirebaseAdMobInterstitial.m in Sources */, + BA7AD9790FA4ED1057B53CE843D2D667 /* RNFirebaseAdMobNativeExpressManager.m in Sources */, + A7FB99F942E323E1F4B4D286C0D4BE27 /* RNFirebaseAdMobRewardedVideo.m in Sources */, + D02308CD767F7CF9ED8793DE28266CAC /* RNFirebaseAnalytics.m in Sources */, + 8741DEC28E954A457AABA2D6E4CE32F1 /* RNFirebaseAuth.m in Sources */, + B22DDE2DD4E215C408BE6E5E195D910B /* RNFirebaseCrashlytics.m in Sources */, + 368154A4264628FDEE3C887992C6D289 /* RNFirebaseDatabase.m in Sources */, + DBC4626A371FD50FE07A858EBAC6953C /* RNFirebaseDatabaseReference.m in Sources */, + 8B139C7ED3330D6CD7A630D2F197E970 /* RNFirebaseFirestore.m in Sources */, + 1E26F35DCBECAA0E8EE3D7C1251FD0B6 /* RNFirebaseFirestoreCollectionReference.m in Sources */, + BD0BA947D6DA634A2242938F5CC1C6AF /* RNFirebaseFirestoreDocumentReference.m in Sources */, + 420372BB5CC7FC5939D6C4EB6FBC45DF /* RNFirebaseFunctions.m in Sources */, + A5BB2E968CCC57D88C2652BEE0767F27 /* RNFirebaseInstanceId.m in Sources */, + 21A4F88EA944FB62021863EC8BF333F8 /* RNFirebaseLinks.m in Sources */, + 2E815532623C25EB5AF9F155C381E2F2 /* RNFirebaseMessaging.m in Sources */, + 599C57F283D3FB265BEAB67653276FA2 /* RNFirebaseNotifications.m in Sources */, + B9251F065F9494240633F90587A7A3D8 /* RNFirebasePerformance.m in Sources */, + 9EB08A24A025FEDB9B61CCA64CD01CBD /* RNFirebaseRemoteConfig.m in Sources */, + 9609EC5684980D21785F1E0B1ADBF584 /* RNFirebaseStorage.m in Sources */, + 2A28D41EBB4BD93F3E0EDEA853C588C6 /* RNFirebaseUtil.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14316,21 +14827,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5A083D5B3CEF3F3B2BFC58F11CCBBC8A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E22999E48F79BBD0AEB6E67A35B0A6F9 /* CGGeometry+RSKImageCropper.m in Sources */, - 5548775BDC8E25DED36FD58DE8723AEC /* RSKImageCropper-dummy.m in Sources */, - 3BED28C0D18959250A500724F6009C91 /* RSKImageCropViewController.m in Sources */, - 92F18C16FAC71B3C405E0E4F6B4C18A0 /* RSKImageScrollView.m in Sources */, - AE9A97602390B8187428DEAF8A626FEC /* RSKInternalUtility.m in Sources */, - D9545888F6A5D4F0DED2F3EA4DCF71F6 /* RSKTouchView.m in Sources */, - 4B8C5600AEB4A4BA28448E784BAA0F82 /* UIApplication+RSKImageCropper.m in Sources */, - 4E3F29FD3A623757F3451F7937C57F9C /* UIImage+RSKImageCropper.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5C64A6B2A994E17969AD615953A94573 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14374,34 +14870,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 61FE88FA6DC67ACB245B463619B78D83 /* Sources */ = { + 615EC0D6FD2B9254591E7D64D5FF064A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9E189B2E988396B5E21E538D99599040 /* RNUserDefaults-dummy.m in Sources */, - A2817A5185F92A816F7C595C9F5CFB65 /* RNUserDefaults.m in Sources */, + 213B5C41BEB7BE515CB96BFDB174FB90 /* Orientation.m in Sources */, + 25B4597A80699674845DE10B8A363AA3 /* react-native-orientation-locker-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 690ABF8B7C6BF3F6421A87ABDEDBBE7F /* Sources */ = { + 647603BEA425F30799B16B7C04E03A64 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0FDA20CFA3BD063630D8A470BB8BAA4C /* RCTConvert+RNNotifications.m in Sources */, - A3B4A8ED1A3F45FFF838017D9BC1DBE9 /* react-native-notifications-dummy.m in Sources */, - A7DA644D6EC7028FCAC9A324980A8DA5 /* RNBridgeModule.m in Sources */, - 83CBFB6FCB167C7F9C9B9B5E502EABF9 /* RNCommandsHandler.m in Sources */, - 4CC981164091C665C72F010729DA1657 /* RNEventEmitter.m in Sources */, - C033DDB3C296E5F4389FF43D01DB9512 /* RNNotificationCenter.m in Sources */, - 1AFAE235552F614A2056B367799CB5C9 /* RNNotificationCenterListener.m in Sources */, - 92E8C8298E019DFFAF6B05A57F5E92F4 /* RNNotificationEventHandler.m in Sources */, - DD20562E1C4A432165705190E2527744 /* RNNotificationParser.m in Sources */, - D73E967F32F0299E5D770D221F0B469B /* RNNotifications.m in Sources */, - F1859858820384E79CC09B13D104C77B /* RNNotificationsStore.m in Sources */, - 503E4ADED787B4CD726D7AE7D1CAC4E5 /* RNNotificationUtils.m in Sources */, - E03423394E4FAF0D893D52D5ED99A7A4 /* RNPushKit.m in Sources */, - 45FC4B8EBF4CD97A8BA22DB3D40083AC /* RNPushKitEventHandler.m in Sources */, - 562313F2AA6BF8618234F378704E52B7 /* RNPushKitEventListener.m in Sources */, + 8703D2D0ED0C6539A3FE593524661427 /* react-native-jitsi-meet-dummy.m in Sources */, + 4A16F2F59B9F117BEBD80707EF015C43 /* RNJitsiMeetView.m in Sources */, + D5339473E957ACC825A3BEC85D0602CE /* RNJitsiMeetViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14428,33 +14912,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7383D9AB3223022A16289DCD1E70066E /* Sources */ = { + 71646AE32B4C58841A2BB4084EFF6823 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 206265BE57065E67AB6152D5A0D3F769 /* QBAlbumCell.m in Sources */, - 599C20938DD6F5A8E2FBF37603156E7F /* QBAlbumsViewController.m in Sources */, - 18F48B247B4E056A83B839CCCC4F4A10 /* QBAssetCell.m in Sources */, - 32E4D073480F0A1E36E4BBFC1B625974 /* QBAssetsViewController.m in Sources */, - 14E952949D6733C1AE8A8BE4BDB4A683 /* QBCheckmarkView.m in Sources */, - A2738EE7B6115FC5A6632A4C182CECF5 /* QBImagePickerController-dummy.m in Sources */, - 0472215B9AB95CFF2F993F3453664174 /* QBImagePickerController.m in Sources */, - 93493A051B15C9B860A871B230BC2E15 /* QBSlomoIconView.m in Sources */, - 4C32DA7CFA80EEBD0B08AD90729BDA66 /* QBVideoIconView.m in Sources */, - 4F1B780F530F1E4B713F89BFA0755DDC /* QBVideoIndicatorView.m in Sources */, + 13C2C415839FAF17C35E00C174A14499 /* DeviceUID.m in Sources */, + 7D761DE80D83AD109FCC648C6B73ECB2 /* RNDeviceInfo-dummy.m in Sources */, + 04275F6533264B3E5B14E101AEA3D041 /* RNDeviceInfo.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7AF6B7F9A1B9BB6F50FD7AF9005D12E6 /* Sources */ = { + 7B7AB8AA490F7934B4393EEAE8AFA041 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 24744C5D4D80FF99FB6FA6798B38641C /* Color+Interpolation.m in Sources */, - 84183F4A52E9E261C72A19497DD9DCA1 /* LNAnimator.m in Sources */, - 646DEA8BA91FC5A1786749A5226A6FBF /* LNInterpolable.m in Sources */, - A58C33080CC099E1D8521002236B13E3 /* RCTCustomInputController.m in Sources */, - 74F035A3739FB611AC657C45A0705F5D /* RCTCustomKeyboardViewController.m in Sources */, - 96727379B413EE25E3D3964E39EC1A3A /* react-native-keyboard-input-dummy.m in Sources */, + 61418F7E611528BB8E0B0CD1F33CF364 /* KeyboardTrackingViewManager.m in Sources */, + 04A490CFE06FDD27858DE8036741E637 /* ObservingInputAccessoryView.m in Sources */, + 51AF000DCAEAD37ECF182E3A74F3A68E /* react-native-keyboard-tracking-view-dummy.m in Sources */, + 77D3F7E5134C50EA23F7E27EDB19AC42 /* UIResponder+FirstResponder.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14487,31 +14962,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 809BFEE3DD1E23210312DC8810E3F6A1 /* Sources */ = { + 80DE9FA79A1B6CB9AC86C5CAD8D98464 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 510CB5D0B71787529A87ED899F96C825 /* UMModuleRegistryAdapter.m in Sources */, - 832015152BFDC131A2E4BCDBD83F79ED /* UMNativeModulesProxy.m in Sources */, - 63615E7D59D19B6D41451302374C490B /* UMReactFontManager.m in Sources */, - 4ADEDCD89AE5B119F0A6AEA895B47729 /* UMReactLogHandler.m in Sources */, - C1974FD95ED3ABB2C5A40A0580B1BCFE /* UMReactNativeAdapter-dummy.m in Sources */, - 482C3CEC1565CCE591DE7015600C1F07 /* UMReactNativeAdapter.m in Sources */, - EDC2C1C4F84C1B4A2B3B449F0BA966FE /* UMReactNativeEventEmitter.m in Sources */, - 749AAA172B1B4C9E6B60C75F063755C8 /* UMViewManagerAdapter.m in Sources */, - 942C3802707351F5C2AFFF00E72DD602 /* UMViewManagerAdapterClassesRegistry.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8135105732CB718104E221127F976F96 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 979DB6289738EFE1CC1FE9C19CF6CA95 /* FFFastImageSource.m in Sources */, - 80A3A27B76CA72939E9489862C5C2EDD /* FFFastImageView.m in Sources */, - 99276F9D342CF71F5C8F2B1FCACCEE9C /* FFFastImageViewManager.m in Sources */, - 14C562A251EDF20732819A22DC58585A /* RCTConvert+FFFastImage.m in Sources */, - DA0ADD53D889941A817CAF718EFF0EE8 /* RNFastImage-dummy.m in Sources */, + 832E3F7A6E40EEB2702255D17BFCE949 /* Pods-ShareRocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14542,14 +14997,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9261B519C63CEEE6012F791508265528 /* Sources */ = { + 90F6235603EC0E90E0D880F31C74898E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9B5C9E735B5BD3595E840E270492A06C /* Compression.m in Sources */, - C4FD4E118C41D4DE58F290151426C5D1 /* ImageCropPicker.m in Sources */, - 8CF6C49EBD51B40A38938EBE75077BA5 /* RNImageCropPicker-dummy.m in Sources */, - 4BE416C7974E47FE57318E71DE613596 /* UIImage+Resize.m in Sources */, + EE56812E46FCDB35F4B0E7D36B98726E /* react-native-webview-dummy.m in Sources */, + 7307182719C93356314AFCD242C251CD /* RNCUIWebView.m in Sources */, + D7E91647272F7D9FC06756965A6AA0F6 /* RNCUIWebViewManager.m in Sources */, + 2C276FF50A886B896E0DEA9515199F14 /* RNCWKProcessPoolManager.m in Sources */, + 49C00847565023257769698719AF3C8A /* RNCWKWebView.m in Sources */, + D2AFE06045E1EC824A098927A155BE4D /* RNCWKWebViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14582,21 +15039,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 993765212B343CC0F6A9A9D8E3FAB814 /* Sources */ = { + 97A6E3F92A7DD5ED5B33CD3B00A955BB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 511755B4E8E877C4E1AE48FD408FC503 /* react-native-background-timer-dummy.m in Sources */, - A51346ACD721382F343D3525A72A02E2 /* RNBackgroundTimer.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A1A03806E1EACAB365FA1B63646478F6 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6DCFEC4F6F54551BC3479EB42D637024 /* Orientation.m in Sources */, - E98125122ADE7650BA5A8CFCC476F70A /* react-native-orientation-locker-dummy.m in Sources */, + 7C6B5A988E42C22B1C1685137D2AEA34 /* react-native-document-picker-dummy.m in Sources */, + 76B525C07B35D396C47F0C921FA22E3D /* RNDocumentPicker.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14609,57 +15057,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A6468C04E5C8FA83157647DFAC412A30 /* Sources */ = { + A76A1815EBFA712ADBE6351E47DD01D7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E323E3FE055BB21FC869EA83004C8A83 /* RNScreens-dummy.m in Sources */, - 203738D3CBBBF2E005A4FF6290E3F55B /* RNSScreen.m in Sources */, - 7634C8192A6DCC81528C2618227C6020 /* RNSScreenContainer.m in Sources */, - 20BFBC9823B897A4F91DDF756E204605 /* RNSScreenStack.m in Sources */, - F8C50FF09F8F4D5D3827FE5F1D0A063D /* RNSScreenStackHeaderConfig.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A83ABC8A884BCAD654F4326B29302D2C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0DF2B9682BBE98F376586E4CC355D574 /* RCTConvert+REATransition.m in Sources */, - 5A5622F504AB5379F23733A2900E7D6B /* REAAllTransitions.m in Sources */, - 7FEC20C9A7DCA7D9C724DEB223E6693B /* REAAlwaysNode.m in Sources */, - 324E51AD3F25DAEFE12D666034BCD6A5 /* REABezierNode.m in Sources */, - 93792AD4F350D97F54139754AA0007C4 /* REABlockNode.m in Sources */, - 86574AE575BDB22018CD8900BD5A6D14 /* REAClockNodes.m in Sources */, - F10438BAD167E2F53E5C40DDD7E5ED2C /* REAConcatNode.m in Sources */, - F55B5E138822DED354785D271AA77234 /* REACondNode.m in Sources */, - 61F6249D486C2EF91F1650768EBD6B44 /* READebugNode.m in Sources */, - 01A125B767CEE13D653CA099A17D7ECB /* REAEventNode.m in Sources */, - 971417771F6AC283F1638A71C40CD587 /* REAJSCallNode.m in Sources */, - 35D6FEF90877AC0ACEB42164AAE3F3A1 /* REAModule.m in Sources */, - A315DA55D23D943930CFFD107A28CFC2 /* REANode.m in Sources */, - CE1C82AB25BB6110D74846E2699A63FB /* REANodesManager.m in Sources */, - E33AEC5D46F4EF48E7DDD208E3694C08 /* REAOperatorNode.m in Sources */, - E7FD358C35948E9532940E3E928897F5 /* REAPropsNode.m in Sources */, - 6334D84979455ABA2F0912573222C555 /* REASetNode.m in Sources */, - 3E2A835EA9113B061B1CD00DB3635E16 /* REAStyleNode.m in Sources */, - 9509C889C6C52C7650153902074685ED /* REATransformNode.m in Sources */, - 8F0A073C081316C18497D57468A778AA /* REATransition.m in Sources */, - 0D4BD4BEBD30CCC17AE56F0A1AB018B2 /* REATransitionAnimation.m in Sources */, - 8E5C60FF5762DFE075CBA3C16877E7FD /* REATransitionManager.m in Sources */, - 9971860011EAD567257DFC3A9408BC2D /* REATransitionValues.m in Sources */, - A570AB0A95AB953096A7EACA411AA081 /* REAValueNode.m in Sources */, - D7EF26089E42379A4FE7F06A3CCEA826 /* RNReanimated-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A8D4A7C0EE8D6BEAF14E353435E36A63 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2123B0C18F58FA1B7CFA0B4E01A86507 /* DeviceUID.m in Sources */, - A676EDF08F108702130DC80826B19A8F /* RNDeviceInfo-dummy.m in Sources */, - A2088E3FBD072BBB8DD8691C52EB8E14 /* RNDeviceInfo.m in Sources */, + 5A25345A31C07C3EC4AA6E02BD3A685A /* RCTVideo.m in Sources */, + 6585E591ED6C8C08A3238F3F5D932901 /* RCTVideoManager.m in Sources */, + F7809AB1DF1F193B9C6261C641C18648 /* RCTVideoPlayerViewController.m in Sources */, + A5C00051ADD04B36165B1C369E2792B7 /* react-native-video-dummy.m in Sources */, + 115925A99ECF24BFEA84BC1084A18248 /* UIView+FindUIViewController.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14673,6 +15079,38 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AD26334B0092CF5ED2A73D6D40192D99 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 291F7A47F7A60853D3AD66DCDA4C52C6 /* RCTConvert+REATransition.m in Sources */, + F9892D06AACEE78F62E7C98FBBB094C0 /* REAAllTransitions.m in Sources */, + BF060117F44E3B32BB7CB8DD7544B179 /* REAAlwaysNode.m in Sources */, + EA2EFFE0BC2C37C1DCA319A01257D85B /* REABezierNode.m in Sources */, + F7E98ADA183D0E217AF0D3F255B3D728 /* REABlockNode.m in Sources */, + B9B5F0065F33C2D75F2ECDEB2144C8CF /* REAClockNodes.m in Sources */, + 0B430E97757AE9F5F97A392EA97D31F2 /* REAConcatNode.m in Sources */, + 590C1F6A32542A76E00BA16A057B7134 /* REACondNode.m in Sources */, + 85FEF5C31D6D6252B1ABEDE96B0A819F /* READebugNode.m in Sources */, + 48CD393F65B6A263B4FC86A9DD031D2E /* REAEventNode.m in Sources */, + 4210636A708A5FCC6CC81CB20010C026 /* REAJSCallNode.m in Sources */, + 978D7967C58E9C39C0B102563A14EF6E /* REAModule.m in Sources */, + 981DC7AE6407643EC160FD08C461F4FD /* REANode.m in Sources */, + 81DE35E84E913449291D64D54114DF95 /* REANodesManager.m in Sources */, + F95815DB8942E7805214E438914D7276 /* REAOperatorNode.m in Sources */, + 8E108B535793464D26A5C72B80CAEA42 /* REAPropsNode.m in Sources */, + B57F77E0AFE3464A435B480D6325B2FD /* REASetNode.m in Sources */, + 3C4F449FB7D6CFC03A56EF9AF99882C9 /* REAStyleNode.m in Sources */, + CD5A82A30AE37A3B781D7933D25C8174 /* REATransformNode.m in Sources */, + 00A77D50298DEA329DC8EC953D06C4B2 /* REATransition.m in Sources */, + 7D8BB001124DC8F41C5E16BD8BD0679F /* REATransitionAnimation.m in Sources */, + 302C69276013A03BEBD32AD7E81388CB /* REATransitionManager.m in Sources */, + BCF7FEC2068401B0213460CC0CF336D2 /* REATransitionValues.m in Sources */, + 7EC6D6512917B291275800F754CCC814 /* REAValueNode.m in Sources */, + D811575073035A171994579F17AA07FF /* RNReanimated-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; ADA09D749092063DB4B0C02AC428BACE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14804,6 +15242,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AE24C4718F66ED619428F558E0E36900 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9411382D4FE9923F3D6AD9CA839700DD /* RNUserDefaults-dummy.m in Sources */, + 9D3FA3A23A0AB9DBD5D306BA51EFDEB6 /* RNUserDefaults.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B53F6EED305935D2B2365FE6336F4F34 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14817,26 +15264,34 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B58C68627CA7C633A6CB7CA1BE431C40 /* Sources */ = { + B5F84ED78E0E01BF162DFE472655623A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9E9908CC434C2FC687BF4F22B3CF700C /* RNFlingHandler.m in Sources */, - 3C1FE3A886CC9765566680C6EA6BBCD2 /* RNForceTouchHandler.m in Sources */, - 5FE9A37C2DBDE0676F80601918532083 /* RNGestureHandler-dummy.m in Sources */, - C1C4EF4969E868948906AAA8ACD37D06 /* RNGestureHandler.m in Sources */, - BD0A89605C61C665E82DD6E1F7C0018C /* RNGestureHandlerButton.m in Sources */, - 9257A4607943CA546FAD51EDA7B9F3A0 /* RNGestureHandlerEvents.m in Sources */, - 7D126C0F95EFCB5F0E346EC107A3CDA8 /* RNGestureHandlerManager.m in Sources */, - 9A7F20B4446EA60892D669CEBCDBB30F /* RNGestureHandlerModule.m in Sources */, - 2FDFEEEEF4F999881A86E549368366D5 /* RNGestureHandlerRegistry.m in Sources */, - 7016C1FFFE17260CC0FC357805D3C2D4 /* RNLongPressHandler.m in Sources */, - D48C3179D8BBD40832DB4528FE1166B3 /* RNNativeViewHandler.m in Sources */, - BD2EFFB08A2AB18797E0E91EA02CEC76 /* RNPanHandler.m in Sources */, - 418D68943B344DFC1E1600D1F313C0AF /* RNPinchHandler.m in Sources */, - 7E6B86DFB9E3AEE5899B46E5CB93F433 /* RNRootViewGestureRecognizer.m in Sources */, - E1E14E490FC5F435A177DAC9F3B8E867 /* RNRotationHandler.m in Sources */, - 0AED43DCEDB9E470E08D239621F25D2C /* RNTapHandler.m in Sources */, + 382885732B5A2EC415D77BA580FFC2A1 /* RNVectorIcons-dummy.m in Sources */, + 38E518B9C0F3D8491C4365BCC8327813 /* RNVectorIconsManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7FEA65D01385652DF580E52AA08517B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8EECD58D7C1F5131856D23D0BC2CA3C2 /* RCTConvert+RNNotifications.m in Sources */, + 6EFF1CE802D66EA69FC3E0ACAF6F6283 /* react-native-notifications-dummy.m in Sources */, + 06519FCC3FC37590EE18CC9BE8B51CC8 /* RNBridgeModule.m in Sources */, + 9E4A16C0F3E0EFF3AEEE9C658E6AED8A /* RNCommandsHandler.m in Sources */, + A9E05AF6D5B21AE1ADEC021CAD0B4769 /* RNEventEmitter.m in Sources */, + 4DDEC5317295BE96A7218F738F89AF14 /* RNNotificationCenter.m in Sources */, + 11DB45C13D1A87C31CDAAFE996AE3436 /* RNNotificationCenterListener.m in Sources */, + 8558A648647DC243794DEA7AFD90D4B9 /* RNNotificationEventHandler.m in Sources */, + DE8E9239FD7C399E481AC7B6F48D42FF /* RNNotificationParser.m in Sources */, + 6E7B85DF49DF10C50AE51144BED29457 /* RNNotifications.m in Sources */, + 23CD96C7D759A55731330F17514FB6C5 /* RNNotificationsStore.m in Sources */, + 295E36A5962D919988DCDA0CB48FF003 /* RNNotificationUtils.m in Sources */, + 5C8423FBCBEC85C34EB0E311B1473AF7 /* RNPushKit.m in Sources */, + 885D5368CD8F211AE468C7DAE49C6A41 /* RNPushKitEventHandler.m in Sources */, + 73BDBAEB2BF9BC524E125B56918E498A /* RNPushKitEventListener.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14849,28 +15304,44 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C0E2D88154795C14EFB91A85A822A38D /* Sources */ = { + C2B9363F2768C25A24CA7081131EA1C0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 55FA300A7F94C68E18F9E0378C88F260 /* RNVectorIcons-dummy.m in Sources */, - 292653AB33866D8BBF8978D3A44668EC /* RNVectorIconsManager.m in Sources */, + 8A4F1A774003F36828AF6E06EE97C5FF /* CGGeometry+RSKImageCropper.m in Sources */, + 6C00A2BA863DD8B5A74731223729502E /* RSKImageCropper-dummy.m in Sources */, + 23DC3E29C9A047B1CACED2889A48851F /* RSKImageCropViewController.m in Sources */, + FEC56E017C58B5E989F2E3ACF67D0BE6 /* RSKImageScrollView.m in Sources */, + 11760192E2B72A30FA94D43722894891 /* RSKInternalUtility.m in Sources */, + 497CF4E9D9A53F6424FCE154562C00BC /* RSKTouchView.m in Sources */, + 0FD25C242522430DEEC004D7F5941768 /* UIApplication+RSKImageCropper.m in Sources */, + B5233AF0624362DB0B8C5E6F2BE0CF2B /* UIImage+RSKImageCropper.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - CA0779BCEE6E78BA74A6A98ED7125DD9 /* Sources */ = { + C7CDFE85653F712B30521BDE6F1FDAF2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D2B3A283F2998DC2D4C640FAE36ACD1B /* Sources */ = { + C9FB8C506215A720343D5F3683C909AC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B27EABF4E869EDFB763BD981C5B2FBE9 /* ReactNativeShareExtension.m in Sources */, - 471CC4790667FC4359A56BAC0BE778E6 /* rn-extensions-share-dummy.m in Sources */, + C5D4B4E830A877BA6B618895F0D6BB98 /* SDImageWebPCoder.m in Sources */, + A949CCF6855E917ACB7ADC6CF8D6AC7E /* SDWebImageWebPCoder-dummy.m in Sources */, + 85A162812046959D5FA5369F6FC23D6B /* UIImage+WebP.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CAA2CE20C8658AB7E540B4D083E6DC20 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8A847D5A8E816689E8E20C403048D692 /* react-native-splash-screen-dummy.m in Sources */, + 373B57CC9E0FFEC31D4ED566EE652679 /* RNSplashScreen.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14894,21 +15365,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D7A1BDE8885430196A0C7B4D947E8597 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CEFCC3E9E164894DEA63AC18B27E00A5 /* rn-fetch-blob-dummy.m in Sources */, - E026FE94C7DAA41B6F15FDCE3EE00EC8 /* RNFetchBlob.m in Sources */, - F9813FD36A64B652404CC89A3B5BE41B /* RNFetchBlobConst.m in Sources */, - 9EE32F8CF80264206194ABB118D4C0F9 /* RNFetchBlobFS.m in Sources */, - E5C2C7E0D0CCFD369A90589F99436707 /* RNFetchBlobNetwork.m in Sources */, - 6000180084907FBAF458FAB361866023 /* RNFetchBlobProgress.m in Sources */, - BCDB879B9839A8B94F91ADAD57F71F31 /* RNFetchBlobReqBuilder.m in Sources */, - C3679467815B59DEB21239B69EA84212 /* RNFetchBlobRequest.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; D89D7FE949ACB9856F33FBF82572B196 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14934,6 +15390,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DA66943D30C2719C4B9D2C3E74561D65 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE32AF35356979B3899825EC7A1F05F1 /* Compression.m in Sources */, + 769F66062C18EDD502120ED6DADF542E /* ImageCropPicker.m in Sources */, + 0D9C77B846877F8740506EEDBA610FF4 /* RNImageCropPicker-dummy.m in Sources */, + 297C3DE32FD905BFD7F109592E60872F /* UIImage+Resize.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DAC7A0437BDF9144772A22DE5DED0B0A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 45FB507A3D843E9EDCE1BDF49F5391C9 /* AudioRecorderManager.m in Sources */, + 0458F48BF6CAC4B29AD8B1EA1BBA435B /* RNAudio-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DFE7538AC4BA6CAEB539A13456C65F17 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14995,19 +15471,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E56D3A9EC18DFD2E586D921BBF765967 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CC4D12A8C2DAFB0EA7F05A1EDC65723A /* react-native-webview-dummy.m in Sources */, - 9A9E08F834CAC6399D8B90FC89842AED /* RNCUIWebView.m in Sources */, - AAC609A4FCCB9D78038EB851CDCFAEDC /* RNCUIWebViewManager.m in Sources */, - 507DF53F6942987036DD1E70FF1D59DE /* RNCWKProcessPoolManager.m in Sources */, - 8BE376E339D41C5100A4182004DF4236 /* RNCWKWebView.m in Sources */, - 48F09C8D76E40947BB76CE88930312F5 /* RNCWKWebViewManager.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E6C0B4FF7699BF83E047760E4FE30007 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15033,24 +15496,52 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EF378DE868256069D6E96F10B152CEB1 /* Sources */ = { + F64FC7FABF831FE3240C7127308CA4D8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4267AC843BB23ADF1FA4E72CB640DD11 /* AudioRecorderManager.m in Sources */, - A5EFAAA9BA8FF84AAF0968884A542266 /* RNAudio-dummy.m in Sources */, + F4F3003169D44AA80DCB27C13D30BD24 /* RNFlingHandler.m in Sources */, + C0CB4611F13182CA044C6F0D0740DF12 /* RNForceTouchHandler.m in Sources */, + 89A40743C88B0047B3083C068DFF3C7F /* RNGestureHandler-dummy.m in Sources */, + 66173820F6E03B0634881CC6EDEBB65C /* RNGestureHandler.m in Sources */, + AF81C06F3729A60E586247D98642E500 /* RNGestureHandlerButton.m in Sources */, + 218D16481EA6EC6EA0AECBE303D5A7B7 /* RNGestureHandlerEvents.m in Sources */, + 12CE6BBB5619C03E68E96986562DCD6B /* RNGestureHandlerManager.m in Sources */, + 68C58CCD00413FA251DE19E1036FB865 /* RNGestureHandlerModule.m in Sources */, + E86331328CD11B17F76943751C86CB26 /* RNGestureHandlerRegistry.m in Sources */, + 40B2423F6BC6ACD6279F75AC68CF048A /* RNLongPressHandler.m in Sources */, + A6FD14CC15D8C43256A29796272D7DCF /* RNNativeViewHandler.m in Sources */, + F62E949CECD29434D8173C2DC9476A07 /* RNPanHandler.m in Sources */, + CD258667A4D673B6AD1F46F6AF5D8034 /* RNPinchHandler.m in Sources */, + 4C5D5FA10F3D17692FB839DF31B2125B /* RNRootViewGestureRecognizer.m in Sources */, + 8F450B21063A1E549FACE5934797325E /* RNRotationHandler.m in Sources */, + C3F920DCF873EDB8F8F85A381DD48D38 /* RNTapHandler.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F85B3530FBE6478B5389A546941E6EAD /* Sources */ = { + F790F95995B2FEA3DD77AB1904A24322 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0FCCC440A1DED47C50B4263C2D109C02 /* RCTVideo.m in Sources */, - 949B7A966A3C1573F92830D5132B3BAA /* RCTVideoManager.m in Sources */, - 9D4DB9326E4987C517CFB2EE99565925 /* RCTVideoPlayerViewController.m in Sources */, - 274D9970103D0A9DDFD618AFA55A364C /* react-native-video-dummy.m in Sources */, - 4A32A296273D110C20DF6DC04E01BB46 /* UIView+FindUIViewController.m in Sources */, + 816B4993A250FA68F095E20280618C2A /* QBAlbumCell.m in Sources */, + E14545D1AB4BA84F7B190E16D9D697D3 /* QBAlbumsViewController.m in Sources */, + 2B9B78582BCAD033D984994F34274287 /* QBAssetCell.m in Sources */, + FA21A520D1CCF795C7DEBC73BE2CDEF9 /* QBAssetsViewController.m in Sources */, + CA9DC0C6D72683C0FD062701625D882B /* QBCheckmarkView.m in Sources */, + 1F2411137B47E266A5DDF6060EB453F2 /* QBImagePickerController-dummy.m in Sources */, + 487EC46685CABFB6BF3C2AB8177607C9 /* QBImagePickerController.m in Sources */, + 4A205524AE56BF0416DF55A79D568365 /* QBSlomoIconView.m in Sources */, + 68EE21D1031536B799A451CA67EDE814 /* QBVideoIconView.m in Sources */, + 848FDECF237DD781C604DD6B740A4342 /* QBVideoIndicatorView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F9619DF6D808B2BC4EA40162186CF531 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0BCEA4301E1B9208796F7CC08C8C87D0 /* RNLocalize-dummy.m in Sources */, + 42DC962FF8112E02268505B25E0BFBB8 /* RNLocalize.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15118,70 +15609,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FDE07ED2D22B7A3F0DAE428592E93E61 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6DAE9FBBA0C1B0FC775265512A236D97 /* NSBezierPath+RoundedCorners.m in Sources */, - A82AE5ED94FB37CA4D605CAD9BE65141 /* NSButton+WebCache.m in Sources */, - F41F849B9C5303B3302537DAC5358881 /* NSData+ImageContentType.m in Sources */, - 01BFC467544C7C7121E61736E039A051 /* NSImage+Compatibility.m in Sources */, - 3A11F612A4F331F02F085863C4BA1473 /* SDAnimatedImage.m in Sources */, - 6072DE7827DA66F32D6352FAA1104A19 /* SDAnimatedImageRep.m in Sources */, - 9AEE513112AEFAE2C7FD2F45BE605735 /* SDAnimatedImageView+WebCache.m in Sources */, - 37C9138B1B28989776B38E58D75B34B4 /* SDAnimatedImageView.m in Sources */, - 3593FADB1DA835EE0ED412371AAB48AE /* SDAsyncBlockOperation.m in Sources */, - 2C0B315F1D7A604892D85EF49CE6C88A /* SDDiskCache.m in Sources */, - 7D648F3CA8A6BF2B7D39EA407751E1EE /* SDImageAPNGCoder.m in Sources */, - 2155A43BFFEB6A10A9AFDB8CDED37E7E /* SDImageAssetManager.m in Sources */, - 82DDEC96FB5DF51A5FB0069D5DEA42C3 /* SDImageCache.m in Sources */, - 333D5D10B478BE4FD3F442974C84840C /* SDImageCacheConfig.m in Sources */, - 0B5D9BDE284DDD524E715011954F73FF /* SDImageCacheDefine.m in Sources */, - 1EB83911712E7315531778A9D5B8A298 /* SDImageCachesManager.m in Sources */, - 04BC7BD837603CB78EF00C8D5426BC0D /* SDImageCachesManagerOperation.m in Sources */, - 3202F0E7A54B8400827A3AE7B51C9AC0 /* SDImageCoder.m in Sources */, - 0ADB606B07E1E3072A34D17FD0F61C99 /* SDImageCoderHelper.m in Sources */, - 0F869D6610B8F79FB681720018044ACF /* SDImageCodersManager.m in Sources */, - 71DD45C6D90C4A2F753AF97A0A4F9027 /* SDImageFrame.m in Sources */, - F624D7C3DCC810FE9D1D2ABB31AE59C1 /* SDImageGIFCoder.m in Sources */, - C80A0A7C0FF35C40BCE9643031542F41 /* SDImageGraphics.m in Sources */, - B7595C0D1C1361F1F1D2F24A11B10B66 /* SDImageIOCoder.m in Sources */, - 6EDF85D67C2FDC1166567B18B5A1C424 /* SDImageLoader.m in Sources */, - 3300530D1F100B23D3B8F21426841731 /* SDImageLoadersManager.m in Sources */, - E130E550CA53FBF9F7DA282A95382180 /* SDImageTransformer.m in Sources */, - 2FDCBB5EBA5D00259C90D333E89A517B /* SDInternalMacros.m in Sources */, - 6A059FBF2D3FB87CF0EC41F1332D9F33 /* SDMemoryCache.m in Sources */, - 238CD3F07FB8607AAAB68D773D34A0FB /* SDWeakProxy.m in Sources */, - 9ED4934F935AC1C93138074A9EA86230 /* SDWebImage-dummy.m in Sources */, - 23799E446B950AA351526E43606AAB8E /* SDWebImageCacheKeyFilter.m in Sources */, - 83219CECD7AAA406A1C8B9E2E2D3B0F9 /* SDWebImageCacheSerializer.m in Sources */, - AF96FE6E2269E634A4B7BB6E39F92DDF /* SDWebImageCompat.m in Sources */, - 13DEBE4F9697FBCA1AC5F53E117DED1A /* SDWebImageDefine.m in Sources */, - 87E4EC911E34BA6A25CB059D0A8ED606 /* SDWebImageDownloader.m in Sources */, - F9111E1DF1A5E49558DDEC397952A9EF /* SDWebImageDownloaderConfig.m in Sources */, - E90E6DA0B4EB9AD12225D349060DB959 /* SDWebImageDownloaderOperation.m in Sources */, - 5131D44C655AFB7C52CCA932C7B8BCEE /* SDWebImageDownloaderRequestModifier.m in Sources */, - 8E604325771D96C5B0A6765F754C7033 /* SDWebImageError.m in Sources */, - 18ADA297EE35F20372E870619A0E00AF /* SDWebImageIndicator.m in Sources */, - FBF74D22CC67EFF951E0A993776486BC /* SDWebImageManager.m in Sources */, - 6D1033D0C77181CCBB9003C271D66FAD /* SDWebImageOptionsProcessor.m in Sources */, - 0C13C548664BD7C803509B231B2674B7 /* SDWebImagePrefetcher.m in Sources */, - 3F76341AD68254BF13C3742B88E5D58D /* SDWebImageTransition.m in Sources */, - 5C725086A28B03EF79B319BCCB7F5B55 /* UIButton+WebCache.m in Sources */, - 2378EB7E01D4412757F8F07418C29BBA /* UIColor+HexString.m in Sources */, - A8691FEA225F4A0047F7707A68B84E1C /* UIImage+ForceDecode.m in Sources */, - 87EF094DE2FDCCE7236C13CD9569F0E6 /* UIImage+GIF.m in Sources */, - 0C5DB1BC07F2D284A32B50BC2E3D121F /* UIImage+MemoryCacheCost.m in Sources */, - EB4613223C90856FEA6A4CF3D83B3BDB /* UIImage+Metadata.m in Sources */, - 5CCD80B2284BD0B60ED0DDF4E163E995 /* UIImage+MultiFormat.m in Sources */, - 08809D10A4EFE235AE97004B3BE6B3C2 /* UIImage+Transform.m in Sources */, - 24174D8D5CD72CA405B3E3AD0B8F3E21 /* UIImageView+HighlightedWebCache.m in Sources */, - D99D6D7E33F6B08AE7A23DF63489B95B /* UIImageView+WebCache.m in Sources */, - 93B61BD439BD90750AF7BEB61B40B2DD /* UIView+WebCache.m in Sources */, - 21C017762C52CF9F15AB40ECA3C96F1D /* UIView+WebCacheOperation.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; FF89B28FF130D0B171E4A42D7303ACAE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15194,11 +15621,17 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 001CDF4381300EBFE65A35276892F78D /* PBXTargetDependency */ = { + 012004B9E865F18808A1F81F5230300D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 53A08285B3E83A1216D5D65E22E9F511 /* PBXContainerItemProxy */; + name = "React-DevSupport"; + target = 6AD0E65D44A38151509F46E868517C37 /* React-DevSupport */; + targetProxy = 23BB6EC2A79E9C23C419D5A3B1AAE01B /* PBXContainerItemProxy */; + }; + 0346364348922EB95D0C80B6A5ED00A7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; + targetProxy = 468F241ADE21093B11714E2590889F9B /* PBXContainerItemProxy */; }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15206,47 +15639,41 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */; }; - 05B177EBAF84964B2E376B3C8F6948B8 /* PBXTargetDependency */ = { + 064011CA6621379E092D70B8AB6B4A91 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = D9D4825FF3196580FBFC163F94F09DE6 /* React-jsi */; - targetProxy = C267BCA22362641FAD6D21225805B024 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = 1A05BC2EB27453B863BCC5EC8B2B2B3B /* react-native-jitsi-meet */; + targetProxy = EB4A17125F7C9D4E5F4447FAB16366F7 /* PBXContainerItemProxy */; }; - 05C429BEFBCFC2E782814F9D7EDD7814 /* PBXTargetDependency */ = { + 067AB4EC52571D983D2CEAB0FCDEF387 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = 9693FDE10118A2D3719CCD8793940995 /* react-native-keyboard-tracking-view */; - targetProxy = 79439786197F451AF4C3131380326BA4 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = 193A52DCCDA30BC73369F9D25131BB61 /* react-native-document-picker */; + targetProxy = 2FEEABC1927965C71E34EE3E9FF521BB /* PBXContainerItemProxy */; }; - 06558559354FF783EB73439B8C0D0789 /* PBXTargetDependency */ = { + 0704F56AF8CD5AA27A63BA70D757659A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; - targetProxy = 57980098C358EF1ED584A8D6B816CDCD /* PBXContainerItemProxy */; + name = QBImagePickerController; + target = 256C04ADE480DBD4834FD3CAB29E18C7 /* QBImagePickerController */; + targetProxy = E7D7CDD62B07B6B060420837D53429D4 /* PBXContainerItemProxy */; }; - 07215A4F252FD570817588D428B88B5A /* PBXTargetDependency */ = { + 09485AC201E971DB9BB47EDFD5BD5428 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = 1A1F5B2129F85EB5E39D28BC78D0CDB0 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; + targetProxy = C35037964C1B60DB158767D5A025EAD4 /* PBXContainerItemProxy */; }; - 07654622ED8EDB1197439074A55934AF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; - targetProxy = 3F03E24EFDBE7790466DB2E0019ACC96 /* PBXContainerItemProxy */; - }; - 08DE3E39D027D87A73134E486B1FF9C4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = 5FDF615A7E8CC4C3EDE33FB5C6925D5E /* RNGestureHandler */; - targetProxy = 0F0CB40D3361FD7AE911B16A494C0A39 /* PBXContainerItemProxy */; - }; - 08E3E8DC2ABFFAB17382E95C3429CD25 /* PBXTargetDependency */ = { + 099436C90A107A9A759F555CAEE66542 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 52DC3379C0F59ABC42DA38B0D188FCC5 /* PBXContainerItemProxy */; + targetProxy = B436BE7B3A6AECBAC73E14BDA1C6AFAF /* PBXContainerItemProxy */; + }; + 0A17351A5F02A1A8703EB4948D809392 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 7F041D7CAFED081BE584BB4D80FB3E97 /* PBXContainerItemProxy */; }; 0A2175ED116FAC289DECBFEFE60364C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15254,29 +15681,35 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 7886C00AD2D894DE9202D2ADC41E8DF5 /* PBXContainerItemProxy */; }; - 0BB26D3624695BB8758FB09982E57F1C /* PBXTargetDependency */ = { + 0A5516D71930715C984885EEAF896E57 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; - targetProxy = 2FC518B7C5E547671F83B03279ABEBEB /* PBXContainerItemProxy */; + name = Folly; + target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; + targetProxy = 6A21683E4F106AB320FF90780606F61E /* PBXContainerItemProxy */; }; - 0D7930AA06845BE0A7DEC2F859512993 /* PBXTargetDependency */ = { + 0B49F5BA187C18F105DD81703E25C608 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = 70C22F7EE05643BEC8549072142E9E00 /* RNLocalize */; - targetProxy = F38829FA7FA8C0520E2FF080CB2ED208 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = D32304F3B8D6C954D490063B8CD6C697 /* react-native-orientation-locker */; + targetProxy = 8049BB26DB3F7AAFA1CE4F40BF3580DB /* PBXContainerItemProxy */; }; - 0E75A929993A884438B0DA87D09D5AA7 /* PBXTargetDependency */ = { + 0C200404241A9B6AB4747077C0774D65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = 21F9B00AF1F15DF6CBA22B3E431CB2AA /* PBXContainerItemProxy */; + name = RNFastImage; + target = 3EC18C45063BBBF2DC591C01F09E3069 /* RNFastImage */; + targetProxy = D50670E0DF3542E89DB021B2957255BF /* PBXContainerItemProxy */; }; - 0FEB1FD767AA90DD13DAE7C3D1F63D10 /* PBXTargetDependency */ = { + 0C73E2573BBA6063BF643807B97B4B34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 8D06140A738C278926836084E0C73057 /* RSKImageCropper */; - targetProxy = 700AFEFEB30733B1DEEDCB7D84FE08F0 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; + targetProxy = 37A7481CE6FAEAE3AE67427B4823BF2F /* PBXContainerItemProxy */; + }; + 0FF28ACD374EB3BFE9CB3514F792E81A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; + targetProxy = 055848CD3EABFC9364332BC719CB36ED /* PBXContainerItemProxy */; }; 106AD2347DA0EA0CA6F582B3412E3739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15284,17 +15717,29 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 96B240CD15FF840DD247422149331369 /* PBXContainerItemProxy */; }; + 114A02740D0126971D1E98C32CA0BA53 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFirebase; + target = 3396F21218EB36C2568D05648BE2827C /* RNFirebase */; + targetProxy = 58C8D2F0080F99369EAC9CE32F578785 /* PBXContainerItemProxy */; + }; + 115AC857C0990F44102BDE7651B363C4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = 4F7BB69658D508CCC2D78CB031C2F083 /* PBXContainerItemProxy */; + }; 11BB47F7EA1D94100004061A682344B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; targetProxy = 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */; }; - 126B087D1B15C77CD7EC1167918C62B8 /* PBXTargetDependency */ = { + 12627958A7986F109CFA8DCE8C9D0FD7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 2D1DB7693C5514C2091212A20E3018F5 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; + targetProxy = 606DAB8AD66BDB5A05213D3941213ED2 /* PBXContainerItemProxy */; }; 13305B6FAD1B7BD9846E55FD8E8F73BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15302,17 +15747,23 @@ target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; targetProxy = 41C76CAFA02708C48FAD7EEDAF99436C /* PBXContainerItemProxy */; }; - 15325BC0DA5CC42A35CCC703DAB49D2A /* PBXTargetDependency */ = { + 139FA46B822DEFF9E65AE3376D9BFF49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 92738E8653FFC50B0F366540A5986763 /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; + targetProxy = 7F8B893E6CB2856C43D3CC4AF6168B24 /* PBXContainerItemProxy */; }; - 16A2A6364E5A20C8E3945F6BD7323E37 /* PBXTargetDependency */ = { + 13C175187E4FD345212DB2D235093F05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 35577D44474D5D17721C61EB916F7021 /* SDWebImage */; - targetProxy = 4296A687B8E5948AA6FEE0ED9C4F90EC /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; + targetProxy = A1324239B1DC76AE75CC95AC0994C147 /* PBXContainerItemProxy */; + }; + 14BD95B90F71436C618D52A18EA79A8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = 5EA00E7BBBF30B0F8B60B49AFCBC6627 /* PBXContainerItemProxy */; }; 16C7CAD40E83F256EB3B44CE2AF0428E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15320,11 +15771,11 @@ target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; targetProxy = 163CBAEB4B1179F7E94CBFA9D9821391 /* PBXContainerItemProxy */; }; - 17919BBE780C22C4CB5DE12E5D042A3B /* PBXTargetDependency */ = { + 16EA6C35B6BC4C56CF9780C3C50D74C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; - targetProxy = 93BA8EB1BD9D782381C768344C85C2D9 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; + targetProxy = 37BB049DB3375E98D08B1C8A4966734C /* PBXContainerItemProxy */; }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15332,11 +15783,17 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 18205EC006D391F093D20DFDD0BE320A /* PBXTargetDependency */ = { + 1821796F5B367791E01BBBC7B0E3205E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = 308FE26CF7B174F39CDE42ECC3ED17DB /* PBXContainerItemProxy */; + name = EXHaptics; + target = 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */; + targetProxy = 11E0E7A54ADE60B324A2B178D90A53E9 /* PBXContainerItemProxy */; + }; + 182A9BCC09B519FB446DF99A41FAAD9A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = E71B80EB88669C08D6FAC0C4306F57D6 /* RNUserDefaults */; + targetProxy = 4AD9B1C3A1F7133A6AB6582FA6E34A68 /* PBXContainerItemProxy */; }; 183872C34AD0997018FE4846E684E9CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15344,41 +15801,59 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 29396B065FEBB94CA65F4DD01328B53F /* PBXContainerItemProxy */; }; - 196E879CA7660D4E975D643748E75F50 /* PBXTargetDependency */ = { + 1893E06257FBD2309CF95C111183AEBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; - targetProxy = 258951A176CAEF377723B919DF4E94BB /* PBXContainerItemProxy */; + name = SDWebImage; + target = 8DBB59DA07871D38FA326EEFB3109004 /* SDWebImage */; + targetProxy = 344C0ABD8BFFD882AA90110396700DBD /* PBXContainerItemProxy */; }; - 1A7A60E44E8C005D4AFD80EF49FB0B47 /* PBXTargetDependency */ = { + 18EFE451DDDA1CA06D90352260B16522 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 4732B625A39AA6E14387EB671FCF7CB7 /* UMBarCodeScannerInterface */; - targetProxy = 6AC9BE0B7A7E6AD64AE680C2A6DE0CE4 /* PBXContainerItemProxy */; + name = "react-native-keyboard-tracking-view"; + target = FB272C94AE4296D3A1132E63BD3DC7A6 /* react-native-keyboard-tracking-view */; + targetProxy = CADF9488B6AF0E9BEE3AB77C8AF0426D /* PBXContainerItemProxy */; }; - 1ABDA5FF813B5C95DFB4F9FBC0EE9E9C /* PBXTargetDependency */ = { + 1B083BAB66EF8A85DD79BA4F619A5504 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 7CDE227A96A3D9BAB6F477300B55346D /* react-native-background-timer */; - targetProxy = 64074A753B628A20E920C51E914F26A3 /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; + targetProxy = 1A77B3E3857390C10FF3594571BCFD94 /* PBXContainerItemProxy */; }; - 1EB9455E37329A86A1691A28C80719CD /* PBXTargetDependency */ = { + 1B09992471F0A0AF16CB87730E547F3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; - targetProxy = 1379294B7F226E4C2B8F5A402E9B1B11 /* PBXContainerItemProxy */; + name = RNScreens; + target = F5177E808E0BE07C26F95734D971D5C4 /* RNScreens */; + targetProxy = 0A7C3378329C1228D6403275C64665C0 /* PBXContainerItemProxy */; }; - 1F653AA20E50854743D5782758C99073 /* PBXTargetDependency */ = { + 1B583506680BB400651C5F63F5CAD976 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 95DA5D3CB2417406ABC163F23963C6E5 /* PBXContainerItemProxy */; + targetProxy = AB923063B95A0FC63A1EDD5F83876BA1 /* PBXContainerItemProxy */; }; - 23A3D9DAF1168F3CB2A54D9630ECD2A4 /* PBXTargetDependency */ = { + 1E2A75A6D5FD933E7FA66CBB9CD80E37 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 3CF1984FC477CA2F1B7B2053998B8676 /* react-native-orientation-locker */; - targetProxy = 89737B805B33F27C4F233A793C3FD822 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 4FBB5D004566C9C8B2B9183ED6C6CDD7 /* UMBarCodeScannerInterface */; + targetProxy = 49CC3C2577F77B84AC3FAAC96E3CBBB5 /* PBXContainerItemProxy */; + }; + 2270DC6321B03A434E65EF308F6EFF89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; + targetProxy = 0C2572E1D40CCE256AEDB7F613D97304 /* PBXContainerItemProxy */; + }; + 2291A0CD2A8F822FC17A6DA9024F28EF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; + targetProxy = C1A4FB52CA623ED766709C5754B662B2 /* PBXContainerItemProxy */; + }; + 24A63422E2E8419EA63DF62AEBC4C7B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = 256C04ADE480DBD4834FD3CAB29E18C7 /* QBImagePickerController */; + targetProxy = E8AED4AD35A905DE67C85BEE22BA9900 /* PBXContainerItemProxy */; }; 24B55147C941BE9797F6BC794F57308C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15386,36 +15861,12 @@ target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; targetProxy = 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */; }; - 24B76DF1B54105FF00494A3075225BE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = EBF6391068CFFD36AF0981BDF1FB292C /* PBXContainerItemProxy */; - }; - 25BE350FDF6517673F70659A4E744D60 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; - targetProxy = E0D31FDF557A6AA352398530CB7F66C1 /* PBXContainerItemProxy */; - }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; - 26C32D681E9D38E7A9C207AFFFD8B03B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 2D216ABBF7DB5CB52B72847709A0E887 /* react-native-keyboard-input */; - targetProxy = E0558AA5DE6B717152A9B9FAE1D9C2DB /* PBXContainerItemProxy */; - }; - 26EB58FD2CAD51B1EB47CD441C8CF58B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; - targetProxy = D00DBB0F11E574C193BC03786563EF8B /* PBXContainerItemProxy */; - }; 273CB5CBEB79AE7F05D13DF11D988EB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; @@ -15428,17 +15879,17 @@ target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; targetProxy = F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */; }; - 29005AB2D66C662D6AC1F1850F27C55F /* PBXTargetDependency */ = { + 27F08925C5DB6405D7F591427C6C2B37 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = 2765C70E1980D823EDD0D092D2165C45 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; + targetProxy = E55E74158BBCC1EE3476AB0353E42F12 /* PBXContainerItemProxy */; }; - 29892C7BB64287631A6384DF9E4287FB /* PBXTargetDependency */ = { + 287658F8C12DAE09470D8415A92089E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 63CD6794DC7550F854838D23B403A831 /* SDWebImageWebPCoder */; - targetProxy = 0281F322DD76B2D953A1667DDB615F57 /* PBXContainerItemProxy */; + name = RNLocalize; + target = C9F33CD9D3CC8172471A5DF1D8EBAFE0 /* RNLocalize */; + targetProxy = 85352ABAA952110734FFA2D3EDA68766 /* PBXContainerItemProxy */; }; 2A1CB69B24FBA907CE8C8D3B923AABF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15446,41 +15897,41 @@ target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; targetProxy = 8085485CA711F116C10EA63C64D45226 /* PBXContainerItemProxy */; }; - 2C5C02468692FE1FACF23F9B774B6C08 /* PBXTargetDependency */ = { + 2BC2644FADFDF77F6A3673ADF86E49B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */; - targetProxy = F89720559CB4E249E0E7ACBAF5F79A32 /* PBXContainerItemProxy */; + name = EXConstants; + target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; + targetProxy = C02530196566F3132504BF51EEE0433E /* PBXContainerItemProxy */; }; - 2EA5D411C634F75A18C4788ACF34EAEA /* PBXTargetDependency */ = { + 2E8EABD0ECA6EF490847D4D67987EC99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 40E73FF71A9C409043169E8C6E15DBB0 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6E898D47D3B30C6577C45BB2AA9E2284 /* react-native-background-timer */; + targetProxy = 12665C4B8DE072321A8BCC2E5FDC73D4 /* PBXContainerItemProxy */; }; - 2F81C65258B86DCB00111A15D10F0E45 /* PBXTargetDependency */ = { + 30112337C2106532A6FE2AB082CC588E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTWebSocket"; - target = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2 /* React-RCTWebSocket */; - targetProxy = E1D78BEF0FFC713E48292382096F07B9 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = D32304F3B8D6C954D490063B8CD6C697 /* react-native-orientation-locker */; + targetProxy = 8C878C8A2089D19DC2430E32E7BA01F6 /* PBXContainerItemProxy */; }; - 2FD64975D8BE616F0BBBE881D2CB42FE /* PBXTargetDependency */ = { + 30878C12887FF4833190119090FC7768 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = 0EBAD9A3F5D231CA9F04A66138256744 /* QBImagePickerController */; - targetProxy = 4206AAFA2759E1E01CBC6356D990F2ED /* PBXContainerItemProxy */; + name = "React-DevSupport"; + target = 6AD0E65D44A38151509F46E868517C37 /* React-DevSupport */; + targetProxy = 74EB2F20D944EE2991E7E6E59542B310 /* PBXContainerItemProxy */; }; - 31351FF5D7566C58D84781401542DCBE /* PBXTargetDependency */ = { + 312610B353AC6DB714F2E73DA4AC5025 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-video"; - target = E819E49218F01D4B1C850622B4690A5D /* react-native-video */; - targetProxy = 81DDD5A029705E9E59A0C05ED4769DA6 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; + targetProxy = 8D7594A0359838BB3D8C962560D24382 /* PBXContainerItemProxy */; }; - 32B990D0C85F20095750CB19064E34B3 /* PBXTargetDependency */ = { + 31F18CF355DF7CE4290C5CD0B84942E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTWebSocket"; - target = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2 /* React-RCTWebSocket */; - targetProxy = CA135A1C45698F743E530232D45EB2C6 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 7BFE9C8AF890F2E4593C07660F79FA96 /* RNImageCropPicker */; + targetProxy = 143FB4C1D3713F4A9B01AF229B6825D3 /* PBXContainerItemProxy */; }; 3492F04AC6C9C2C1529D076E7BE5C6C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15488,41 +15939,35 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = D9B0BDCA002FEBFE383DFE024728D2F6 /* PBXContainerItemProxy */; }; - 34A188C4656719C2554952050A94E6BD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = A82033409496EA45189880515B406D9A /* PBXContainerItemProxy */; - }; - 34C43954F9BB27FE479FFECBD34595FA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-fishhook"; - target = C5D62E7954593855294FBE5848A78863 /* React-fishhook */; - targetProxy = CF872EE13ED425419CC528E55AE310F3 /* PBXContainerItemProxy */; - }; - 359B348B6247DD9854BB36A6345C0396 /* PBXTargetDependency */ = { + 34AB55DBFC471A6A75A09E3C6154BE3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = DA372748056CB9290EC9CA0527137EEC /* PBXContainerItemProxy */; + targetProxy = 925391FAA3B30FA3AF61B3D518B8FB21 /* PBXContainerItemProxy */; }; - 3889C28E20ECE390B36D741F9854E206 /* PBXTargetDependency */ = { + 36B09492CDD8A9DC67147EB8C4F2DD23 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 201A6A9C42C1EB12F48274C29BDD2DE9 /* PBXContainerItemProxy */; + name = "react-native-splash-screen"; + target = 9DE6FE0A7B145D5D64B4645C0A167B45 /* react-native-splash-screen */; + targetProxy = 25874CE26F600988E7CD3FB381ECA54C /* PBXContainerItemProxy */; }; - 38ADD50AF4692358A655981479ECC6F1 /* PBXTargetDependency */ = { + 37AD18128674C7F2CC106BBF0FF3A5C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; - targetProxy = 2454A3223F00E2405B17D56AAB4A6376 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = 74EEA248F982197D559582A658DAA382 /* RNGestureHandler */; + targetProxy = 8EF72B180CD4CB65C3140EFBE1FCED24 /* PBXContainerItemProxy */; }; - 3AF10B3F165878C2CFF27800C2E62B65 /* PBXTargetDependency */ = { + 383E6AC26687F3514126A51A3B6888AF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = 75413E753E5D3F1BE4BBFF5A9633F19E /* react-native-notifications */; - targetProxy = 4AD5D939CEA8F0E020B2F242E6305031 /* PBXContainerItemProxy */; + name = Folly; + target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; + targetProxy = 5741DFBF8C93F666839A6BC4ED7D6F5A /* PBXContainerItemProxy */; + }; + 3A7B814AE51E89A3F5C8DC299569DEE7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = 80F39FD6CFF2E1FACF204BED14AAE525 /* PBXContainerItemProxy */; }; 3B6F33612058A66E16E73476B0D61BF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15530,71 +15975,71 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = A7F75E1A626E50C12AD9C92133348106 /* PBXContainerItemProxy */; }; + 3B9701BCB7F9DBB744A559CC76919410 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; + targetProxy = D3B5C392C47C3F7E3A36452DCA326F57 /* PBXContainerItemProxy */; + }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3CB61557B2EDEE5BEF043F9D18CEF453 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; - targetProxy = 265C2F65A3B38E7A67B2ED46AA0FB512 /* PBXContainerItemProxy */; - }; - 3E8E8BE8B4EF66C63976297D994DB9A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = 6A6292EF6BD5726FAEE2DA523C3D0416 /* react-native-splash-screen */; - targetProxy = 69DFCC73E82C12C17E156BD6F1CB4FBD /* PBXContainerItemProxy */; - }; - 3FB960F2DE2CACB09306415F8FF4AC4D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-video"; - target = E819E49218F01D4B1C850622B4690A5D /* react-native-video */; - targetProxy = 36046EA1A047719817C46DC54D069470 /* PBXContainerItemProxy */; - }; - 3FDFDC9BB259338891EE49DF05489017 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 7CDE227A96A3D9BAB6F477300B55346D /* react-native-background-timer */; - targetProxy = C4ECEFA723227B76902D8BCD239CF8E7 /* PBXContainerItemProxy */; - }; - 3FF86615A5BF0C0FE70CDCD28D161D45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; - targetProxy = 2F310F35E5701202BF26C6D6034DDEF3 /* PBXContainerItemProxy */; - }; - 43216CE39AFA05B7B0505A99FEFB9EFA /* PBXTargetDependency */ = { + 3C004368F15CE1A423A6BCE9FE2E9F9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = BAB6F62735EB4A3B6467A6AD159CE8E8 /* PBXContainerItemProxy */; + targetProxy = 2C1C65F47CC77DCC7F24B5DB2E47C46F /* PBXContainerItemProxy */; }; - 446BCD3B0CFD9174AD63551190E19BCF /* PBXTargetDependency */ = { + 3F993CF813416AF8CC0F4396087565EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 2D216ABBF7DB5CB52B72847709A0E887 /* react-native-keyboard-input */; - targetProxy = FB35276DE5D4B5253D27026A4D9F53D9 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 7E4C70F8239EC335FA2841B49C79492A /* PBXContainerItemProxy */; }; - 45E921A11A724123E7729DA89072927F /* PBXTargetDependency */ = { + 3FB5AEBE550A550931D3BEEE26A1D9CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; - targetProxy = 492997958624167B059AA5D145556186 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = EF82C048F8347DAEF62682C92F3E4762 /* RNDeviceInfo */; + targetProxy = 13E9233D49D05B228CBA290899C214D0 /* PBXContainerItemProxy */; }; - 471045CDB00549912E051C14A4246230 /* PBXTargetDependency */ = { + 400EECE404C5CEF13C5538D98BB91A80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; - targetProxy = A76B6ACA0DB9EDB7CE0354232B04FD5B /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; + targetProxy = 38FAC2CF931D2939F334B5F498434A68 /* PBXContainerItemProxy */; }; - 47B893E9013F459ADD46D28D794C66B7 /* PBXTargetDependency */ = { + 411CE864FA32EEDC595738E974D18015 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 35577D44474D5D17721C61EB916F7021 /* SDWebImage */; - targetProxy = 807609B9670911438F54D9DE7A8E3393 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; + targetProxy = 4FAE4A1800F010048129FB6D757783BA /* PBXContainerItemProxy */; + }; + 4653A746CC7F078DCA9ED72E1C76B2A2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; + targetProxy = 2A14487D72FCA96D25060F6F3917D840 /* PBXContainerItemProxy */; + }; + 46BD24975495F2FDD61FF1C4736E362A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */; + targetProxy = 23CDC220BB9B731E34DDFC1CABD85578 /* PBXContainerItemProxy */; + }; + 46F2547CDFDA63575EF0142371AC3F47 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 3EC18C45063BBBF2DC591C01F09E3069 /* RNFastImage */; + targetProxy = B1BB94669FF69414185ABEDAEA074935 /* PBXContainerItemProxy */; + }; + 4769FFFB527A3AD166E84308313BE429 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = D9D4825FF3196580FBFC163F94F09DE6 /* React-jsi */; + targetProxy = BE4DD0A0CB58E2D961E0230D3D378DFC /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15602,17 +16047,29 @@ target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 488CDF39D63A2C792A7018DA1E5C05D5 /* PBXTargetDependency */ = { + 481CDB69198589ED7F81086C9D12A21D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; - targetProxy = CED0A559661D465ADBBB03B53F74999F /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; + targetProxy = 7A7A8041EC916BE91E1BF84E5A5419FA /* PBXContainerItemProxy */; }; - 491DD38BC335C288123A58AE2F11C9F9 /* PBXTargetDependency */ = { + 4831B064284FDB5603E2EF850E24FCAC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = E7DEB0BF0088BFF022586D2A9A76C24B /* RNImageCropPicker */; - targetProxy = 0AD45F5333E36A057218679E304C708A /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; + targetProxy = 5C120012A59F8D4A19D53A2C2B060DFA /* PBXContainerItemProxy */; + }; + 4938797BAD1BED0ECE40580B54266C6D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 5EA5A8135892DF3ABD1822A5B28E564B /* PBXContainerItemProxy */; + }; + 4A1BEB185BDFD621436E6DCBA57D945E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; + targetProxy = C869FF116AD62FE302E12E859758858E /* PBXContainerItemProxy */; }; 4B2682D0BCDE87CB86FAB90384B8AAE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15620,41 +16077,83 @@ target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; targetProxy = 96823A763E56B0CD36C81E000393C274 /* PBXContainerItemProxy */; }; + 4D31DEE11618DA2161EE31B3408A6AE7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; + targetProxy = 5FF8C02BB31F3D841678F53EC234F3CF /* PBXContainerItemProxy */; + }; + 4E20A667D863335876E063E42DD92E73 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; + targetProxy = 2FF62D0D25D6007BF62C108F8F54BAE0 /* PBXContainerItemProxy */; + }; + 4E41E3694D0B66212DE0C99A6A1ABF49 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 1F10289E58028110D5E1095D41608A3D /* RNAudio */; + targetProxy = 5FAF4022BE41E0E387B2FF671FD7B2B4 /* PBXContainerItemProxy */; + }; + 4E8831B99C60C4AF4D32144B31F40AA6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = yoga; + target = EAFAF2A9CFE5807D87ACC914F678EAA8 /* yoga */; + targetProxy = A19006D477DD488744D628A3F5C2D8F9 /* PBXContainerItemProxy */; + }; 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFileSystemInterface; target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; - 5061D7DE1C7A5C5A6EE29F86008E6CB9 /* PBXTargetDependency */ = { + 4F8C77BF125267A83191E893A30469E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; - targetProxy = 8BE2B82FFD6443DE77FBA502F84BFAE4 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 591DD10D8F7865EB6FA39AA1247B709B /* PBXContainerItemProxy */; }; - 52D7309AC7DFE6570B3BA6DD84C59A62 /* PBXTargetDependency */ = { + 4F9B5CBDF7B91CDA0FEDD69EB4D7B9E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; - targetProxy = F75CC63C0C7E213C18112326CF54EE3A /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = 1A05BC2EB27453B863BCC5EC8B2B2B3B /* react-native-jitsi-meet */; + targetProxy = 800C700948892D96E6D5E775EC0FA55E /* PBXContainerItemProxy */; }; - 533B6FA94F67ECA6A3F7132F6C5625F0 /* PBXTargetDependency */ = { + 505A8821EBA0200FFFC45EDAA3D34A73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = E7DEB0BF0088BFF022586D2A9A76C24B /* RNImageCropPicker */; - targetProxy = 9CAC9376702D36C622AF517EA46A3C19 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 2085DE04D151595549D290741633339F /* PBXContainerItemProxy */; }; - 53DBBADD9BD113376E327749F7E8F093 /* PBXTargetDependency */ = { + 5466A0FADF1D87BCDE68F4B7D89C0914 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 3CF1984FC477CA2F1B7B2053998B8676 /* react-native-orientation-locker */; - targetProxy = BD1AD8A1F7D9161A350EC25FCD9EF473 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; + targetProxy = EBE8DFB3194EBB3B355BB243023B3188 /* PBXContainerItemProxy */; }; - 545471B088DCDA4546D0EEEDFE850C33 /* PBXTargetDependency */ = { + 54D3BAD39E9E36A30760E7BD7E387707 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = 7A1C79B48F0C388BEB337A937C342F9C /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; + targetProxy = B7C41FF2195D022BA6042489AEA14BDC /* PBXContainerItemProxy */; + }; + 5509C2C9A24EEC626D63C5608165947E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = 193A52DCCDA30BC73369F9D25131BB61 /* react-native-document-picker */; + targetProxy = 01B499E329F94B8EA7900C0A99210F57 /* PBXContainerItemProxy */; + }; + 5528DDB74998F4F6EC6C9E5ECD6E8D83 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = BCAD56353CC03FBEA94A951A14E3F333 /* RSKImageCropper */; + targetProxy = E584ED3C588E581F81CADABB68B7F7A6 /* PBXContainerItemProxy */; + }; + 5582DCAC44E8F5DE8BB49CC63C47EEB8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 57D441FD74CABBA22161F1564CB270A3 /* UMFontInterface */; + targetProxy = 4BC4BEE2B8B6E0779169277A37837376 /* PBXContainerItemProxy */; }; 559382959B5074DF5076075F4109FFE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15662,17 +16161,11 @@ target = 6AD0E65D44A38151509F46E868517C37 /* React-DevSupport */; targetProxy = 2BFE957CE5414199E3FB5D1FBC9C7998 /* PBXContainerItemProxy */; }; - 565B555404B0BD91AB4D5CF44650D747 /* PBXTargetDependency */ = { + 599901F403AE6E9FABBE995BCAB047BE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = 4DFAE8A65AF9327A7B00ACE16D10523C /* PBXContainerItemProxy */; - }; - 595CB863BFD4EAFE77D63E9F3125F8CD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 1F1CA982C8F122466285258D50FA880C /* PBXContainerItemProxy */; + name = QBImagePickerController; + target = 256C04ADE480DBD4834FD3CAB29E18C7 /* QBImagePickerController */; + targetProxy = A42AD5ED5D4C767FA6C35FB36E3675AA /* PBXContainerItemProxy */; }; 59AEDBDE41E6364F4378C6746F929E61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15680,29 +16173,35 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = B4BACC19FD91FE9C750E2B7E26434F49 /* PBXContainerItemProxy */; }; - 59BA42BE8B16263D7046C29B9AB9D20B /* PBXTargetDependency */ = { + 5A6925B897DA54934BC26754D61B61E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 872424F1ED2F1B444D6135014A580525 /* PBXContainerItemProxy */; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = 069FC4E5D320283D1F45C7A307862A1A /* PBXContainerItemProxy */; }; - 5A48A96DDA72ED5A2A66D1FAB18C0BED /* PBXTargetDependency */ = { + 5A8C8DD7CB0EF3ECC0A27864E58C15ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 0457CE0B3AFDC70E0EFCBC67373B8890 /* UMImageLoaderInterface */; + targetProxy = E6A35DE6A993C75B19AB2ABBF157B778 /* PBXContainerItemProxy */; + }; + 5C07CF93839510C7AA1B77BA001E4EA8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = F5177E808E0BE07C26F95734D971D5C4 /* RNScreens */; + targetProxy = C48B2CDD2DD08A314B00C8E60BA69124 /* PBXContainerItemProxy */; + }; + 5C8D1A188D35752AC9DD7FF26505DE8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = D9D4825FF3196580FBFC163F94F09DE6 /* React-jsi */; + targetProxy = 1D01B1D7B227996B8F9792C57E2D02DC /* PBXContainerItemProxy */; + }; + 5CF2E5A745AD1A4E1DB18307BFB27C2D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = D5BB2F02D1E01179B09B43AF8C91F544 /* PBXContainerItemProxy */; - }; - 5D1DBEAD8AE9396200F51CD1CBF3706F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */; - targetProxy = 7E84B45C2C4617AEF88048C17867D78C /* PBXContainerItemProxy */; - }; - 5F89DD5BD46A53BE997096AC6C118A41 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; - targetProxy = 62E358C80FE3052F04D476F7A1C6F5C1 /* PBXContainerItemProxy */; + targetProxy = D217213723248B232F32A6A30DDD3463 /* PBXContainerItemProxy */; }; 5FB63311A8172BDE287C5B0BC5C11578 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15710,29 +16209,35 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = D8A489DA96811A733E40A4B4C97CDC9D /* PBXContainerItemProxy */; }; - 601AA73365EBE111BD06B67713300CDD /* PBXTargetDependency */ = { + 604334B63FDE06B327F65C461925EDAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = DF7AFB4DDC30EAC631994D9DBDF1E7E4 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; + targetProxy = A4E726C1AA99F7437BA8D230431C0EC1 /* PBXContainerItemProxy */; }; - 607E1DFE43B8B1425E04B29D5D14C10F /* PBXTargetDependency */ = { + 616264B8FF14F5444D405AE91C881602 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = yoga; - target = EAFAF2A9CFE5807D87ACC914F678EAA8 /* yoga */; - targetProxy = E09A35189C1DAAAFE58EB3211E66A7DA /* PBXContainerItemProxy */; + name = EXAppLoaderProvider; + target = 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */; + targetProxy = 35773892E82BEA390F5A045836D561CE /* PBXContainerItemProxy */; }; - 63D763D07299A03D753467158CCD00C1 /* PBXTargetDependency */ = { + 623692A92155E067530D51BE252D15EA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; - targetProxy = 17080243F5DDFA71BF4C48E0A19813C1 /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = E56E40001CAC5FF5261C8BEDF6D1C7C3 /* PBXContainerItemProxy */; }; - 64997CB7CF82ABE52A9977DB292D7AE1 /* PBXTargetDependency */ = { + 6292332F7FFF34B4E32AAE9D148E7B06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = DF2B1B5442699478B7CD902B70810A9C /* RNDeviceInfo */; - targetProxy = BFBF3C5573CC8A3CFC9C63764E5F6232 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 728A56EECD91B2D85ECD9D8B95CD50BD /* PBXContainerItemProxy */; + }; + 63B71010D418B4D5C9D5DA21AFE632A9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = 14C4E57D028B3604711DA6503AD5B4F0 /* RNReanimated */; + targetProxy = 858224A93B00AC044D4067A2B3B640C9 /* PBXContainerItemProxy */; }; 6621509AE5A3372F9B292A0AAEBB44EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15740,23 +16245,29 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 5A01D7A983FEAB270273E554A7DA4480 /* PBXContainerItemProxy */; }; + 665766239BD01535552841CA7181B9E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 8DBB59DA07871D38FA326EEFB3109004 /* SDWebImage */; + targetProxy = FB4E2D7E85A16CA98B22D49DB47124A3 /* PBXContainerItemProxy */; + }; 66D5FD8E0BF5E9FB94CC81CA6D836F42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTText"; target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; targetProxy = 3AFCC674053FAF5DC8E87833CC15D1F1 /* PBXContainerItemProxy */; }; - 68A8C24D592965E80208E94686095A74 /* PBXTargetDependency */ = { + 677F8012A8BABC225FB5F74D4BA2C935 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = 70C22F7EE05643BEC8549072142E9E00 /* RNLocalize */; - targetProxy = 012502C007A8E88979524C26BE6CE54B /* PBXContainerItemProxy */; + name = EXAV; + target = A954214FEA55463925B6F6E3A27B6016 /* EXAV */; + targetProxy = 34309D07255D159A56D1FB5591B2F0D2 /* PBXContainerItemProxy */; }; - 695E532198B48DFC6509C7C8935C82FC /* PBXTargetDependency */ = { + 69D52840C58D49D1AA0A7E00D756A13A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = F77AD1AE0A3DA58694D0EE55D43B99B0 /* PBXContainerItemProxy */; + name = libwebp; + target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; + targetProxy = EB83EFA776770A24E754CD96717FC47F /* PBXContainerItemProxy */; }; 69F4F6FE10701C0907566E910C5BB6B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15764,101 +16275,23 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = A3F86DBAC5E1C8F0724C396F51BBECE7 /* PBXContainerItemProxy */; }; - 6A80C33456DC241BEAE445085A709C73 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = 9693FDE10118A2D3719CCD8793940995 /* react-native-keyboard-tracking-view */; - targetProxy = DCBE8C160C8D815F7EB50F07C782FE1E /* PBXContainerItemProxy */; - }; - 6ABCE4DF7DDAC2D58AB42D13010F7D36 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = A954214FEA55463925B6F6E3A27B6016 /* EXAV */; - targetProxy = 045D983DDAE6C758829C36A60AEC195F /* PBXContainerItemProxy */; - }; - 6AC8D4CC27C5108ECF51998C94670922 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = 529158F649793C04021B9832DF3E0FFD /* rn-extensions-share */; - targetProxy = B7A1D75CBAFE5C686DE679D858A01865 /* PBXContainerItemProxy */; - }; 6C40FED36ADD7D57BED761F594CD832C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; targetProxy = B89102853C0AA8B4E4660B0A341C408A /* PBXContainerItemProxy */; }; - 6ECCF61E83A677B5CDC029CC1FDAB2FA /* PBXTargetDependency */ = { + 7275008025BE021BC561C73215B68BFC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; - targetProxy = 72B18A0C04D7BAFF98F54215CA7D6604 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; + targetProxy = 4D24326AA898CD4B0571A41A780FC862 /* PBXContainerItemProxy */; }; - 6F40C91A3B59E7DF39E9F2A0FFCC2BEE /* PBXTargetDependency */ = { + 7614A3C2AE79C21148BF76DB46F13002 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 1BAD54DFB0E1E0CF95FDB0D8993C568B /* PBXContainerItemProxy */; - }; - 6F71C2BA15841B761A4AC5B2C74370C0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = 752FCBCD2E0EA0ADCF498C7CB6315B64 /* react-native-document-picker */; - targetProxy = 6C258145E08DEE4EFD2C867A8B5B7C43 /* PBXContainerItemProxy */; - }; - 7148AF409C6A83B0DCA0FE4B1F270EA1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-DevSupport"; - target = 6AD0E65D44A38151509F46E868517C37 /* React-DevSupport */; - targetProxy = 6AE67B73617F34741BB5D8EC3E8C5A1D /* PBXContainerItemProxy */; - }; - 71E73D60761281E5C69C50D80181137F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = QBImagePickerController; - target = 0EBAD9A3F5D231CA9F04A66138256744 /* QBImagePickerController */; - targetProxy = 07E0D4D3CEB9BA9527BCAB1F17E30B78 /* PBXContainerItemProxy */; - }; - 731ADFF4CB028DC86E9638499760D222 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = 1237719A2F5E190C3C99B58E73D99623 /* PBXContainerItemProxy */; - }; - 73587A58E2D339F13C1937D15E8BDB3A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 359DBFA85F4339A88CF1B15E60FF8A11 /* PBXContainerItemProxy */; - }; - 735C688B1280B365045A86FE2C8F1D72 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = AE7C768E4A684E6CF4400837F8D0957F /* PBXContainerItemProxy */; - }; - 74755953ED01854D6CBB50A22B6A5AFD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; - targetProxy = 7DF68C596F36C615440D5C526B9635CD /* PBXContainerItemProxy */; - }; - 75BC1EBD90C7CF7ABFDB36ADEAFFC85B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = 5FDF615A7E8CC4C3EDE33FB5C6925D5E /* RNGestureHandler */; - targetProxy = E1DDEEA3F1E247D268A5E41ECE9D201D /* PBXContainerItemProxy */; - }; - 75E88DC3CFC457037C51543083FF82D3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 63CD6794DC7550F854838D23B403A831 /* SDWebImageWebPCoder */; - targetProxy = 2827798E410BBB320FDD15DB55F31755 /* PBXContainerItemProxy */; - }; - 7667819CF853CEBF55BBD865CC57102A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 0294292FB53A64FF62F63F568CBAFC8B /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 6469A603AD1FC761672BD6D7FACC0CBE /* UMReactNativeAdapter */; + targetProxy = 26F17F99E88ECD65C1B357A75A585E27 /* PBXContainerItemProxy */; }; 76CA3BA17589A85E650786940D8E1853 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15872,29 +16305,17 @@ target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = 9D531360B48D75C5E5066088B1C111F9 /* PBXContainerItemProxy */; }; - 779477751AE9907936D99C643B76654C /* PBXTargetDependency */ = { + 78359BFE7AA5F2AB89608CA893D8B5DE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; - targetProxy = CA675C7D6DB75E785382DA16B2A93682 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = DCE0E755BF3830D8FAB341194504E9B8 /* rn-extensions-share */; + targetProxy = 8B08AAFCBC1DAEA89F9395FF05B97279 /* PBXContainerItemProxy */; }; - 789A2BCB05668661889396966DB81909 /* PBXTargetDependency */ = { + 7886FC4BE860C6C1420C834A299300A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = ABE3BE1B5140DF1F5922469147AEBEBC /* PBXContainerItemProxy */; - }; - 78C1B85A076FF692BBB622D364C40531 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; - targetProxy = 89EC4AD363589A842E6072F422EEC451 /* PBXContainerItemProxy */; - }; - 79AB35D88C7BDB6108E67942E17B719B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = BA75DF845429F5C13AEC3301BE58EEED /* PBXContainerItemProxy */; + name = "React-fishhook"; + target = C5D62E7954593855294FBE5848A78863 /* React-fishhook */; + targetProxy = C1837DD52F33EEE5EB9CD666BC3C26AC /* PBXContainerItemProxy */; }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15908,17 +16329,17 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; - 7B1575C310D7C2BC433BB5A6A62BE27A /* PBXTargetDependency */ = { + 7BF863B187E5122493594791A2A9D89E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = 529158F649793C04021B9832DF3E0FFD /* rn-extensions-share */; - targetProxy = 92328ED780EB580F6FEE314E8D39F79B /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; + targetProxy = D1FD83BD7A3828E8189A8B453DAA28BC /* PBXContainerItemProxy */; }; - 7DD6853A4D713B88F6695C9CF987FEDD /* PBXTargetDependency */ = { + 7DB1B25BD1FBE6A8E463664EF70D449A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = E0D783B49979A14D2025F4BC2F977DDC /* UMSensorsInterface */; - targetProxy = 97B64FAFAB050110DD1E2D544AC1F5E0 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 8DBB59DA07871D38FA326EEFB3109004 /* SDWebImage */; + targetProxy = 6F5D132F04B719593FB4D6870591CA5D /* PBXContainerItemProxy */; }; 7F18628588E8CCA477702C17B6396824 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15926,42 +16347,48 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = 07B672E660093ADC2F1D1FA9D1271CF4 /* PBXContainerItemProxy */; }; - 7F5C3AA7395FC31342E3694D937307A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; - targetProxy = 548FBEB8A8608D4076964D174EA7C275 /* PBXContainerItemProxy */; - }; - 7FB73F4C7D1C7F8727810ACDC1764386 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = B6555301E968C6FC1537B98EBB75F8BB /* PBXContainerItemProxy */; - }; - 804F49CEB78C1955988A55C5F95E3C48 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; - targetProxy = D2B88B51A2F6039C149C3ECB39F853DB /* PBXContainerItemProxy */; - }; - 80B14E4B7AFD25CF2BA92AF27E591C9E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 8F6AC1F817A6020A1AD035B558A7A825 /* RNUserDefaults */; - targetProxy = 7B59AFE0CF1920DBFBF1E5E5D5DEEFC1 /* PBXContainerItemProxy */; - }; 81B121526C7015BFAC7334D26C23AFF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-fishhook"; target = C5D62E7954593855294FBE5848A78863 /* React-fishhook */; targetProxy = 51584F4D577865939C7235FA395A5A8A /* PBXContainerItemProxy */; }; + 826EAB9B77167F6A5B34B45A9CDC2D5C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = C9F33CD9D3CC8172471A5DF1D8EBAFE0 /* RNLocalize */; + targetProxy = 43FF0DADF6D32ACB52DAF014AD411D5D /* PBXContainerItemProxy */; + }; 82DE4A10C611155EAA73BA712DF1D258 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnosticsInterop; target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; + 836C675CF10F4269BBA4B4AC1EE3F8CF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 64970D88D643843360961415F275A782 /* PBXContainerItemProxy */; + }; + 881635631988401FC5AC21F792DB3356 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 4A0F8EB58C18AB13EC4AC87932790923 /* UMTaskManagerInterface */; + targetProxy = 7A6417381783F4E97FFBCAFF1316EF40 /* PBXContainerItemProxy */; + }; + 881B2AFAB761D56E06C9B57224D2BAE3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = E71B80EB88669C08D6FAC0C4306F57D6 /* RNUserDefaults */; + targetProxy = 1518C404C2309B8D87E3F39D53982585 /* PBXContainerItemProxy */; + }; + 894A30EB875C18CFD9C5DBDE8F1E99F8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = F7932EDC5E20EE1051375B1D22525668 /* PBXContainerItemProxy */; + }; 89A8D456D83A06135A7FC1A8E06986D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTWebSocket"; @@ -15974,17 +16401,23 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = CC20A804D1649625892DB6375F56B2FA /* PBXContainerItemProxy */; }; - 8A8036C4E8506F75C24FF70033A92AA4 /* PBXTargetDependency */ = { + 8A96A14EBD9B0625B3D60B1822BEF849 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 4A9F8C5E165273D4C30FC0938959CAB8 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 57D441FD74CABBA22161F1564CB270A3 /* UMFontInterface */; + targetProxy = A02C5049FE628AD2094E3D956B8E2E08 /* PBXContainerItemProxy */; }; - 8B8D6CA1BAE4452A28BDE21C2DD5BE0B /* PBXTargetDependency */ = { + 8CC75DD5A903D2597888338492C40D19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; - targetProxy = 85D8FEF5742B7217E61AB28EEB0CA8C5 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; + targetProxy = 45F8CE88D3E1775BB8D28778F7E9A7C0 /* PBXContainerItemProxy */; + }; + 8D2CE8713F86C77BE9DB7DF07828F5B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = 14C4E57D028B3604711DA6503AD5B4F0 /* RNReanimated */; + targetProxy = AD22635C6EE22B1F476B067B884F451A /* PBXContainerItemProxy */; }; 8D5A8BF15CD510250550ACB106EF0C7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15992,17 +16425,23 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 0736F43E628DF211771775F69A163785 /* PBXContainerItemProxy */; }; - 8E1E0A0623AB2F4D453D16921E07E670 /* PBXTargetDependency */ = { + 8E36FBEA0756068B2E15F90FFA32ABD7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 25949AF3296378D8BFCA4B563F4B4F45 /* rn-fetch-blob */; - targetProxy = C9BE1218C768917AE3A1E65B5AECA998 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 317B9B7E899CBAA3C433E49C9A4F9233 /* SDWebImageWebPCoder */; + targetProxy = F6E3128727FB68EEAA51B8FF3EA538C2 /* PBXContainerItemProxy */; }; - 8F2A29A8CCB28645F4ED7834FC9F3178 /* PBXTargetDependency */ = { + 8E4A8A32DA46B739CCEC5B952DE5E65D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; - targetProxy = E0407227AAFEB84258F2DA6EC6AD20EC /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; + targetProxy = 688B4179E852BD202856B21C87F33B45 /* PBXContainerItemProxy */; + }; + 8F8BCD2E64D0FBE602A75DFD8A46DC13 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; + targetProxy = 9434FAE58CB21893241A99BF2A504361 /* PBXContainerItemProxy */; }; 8FDF5740DAB8FA07737CF3A3409154DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16010,53 +16449,47 @@ target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; targetProxy = C013798CC86616601286D9425D1E96EA /* PBXContainerItemProxy */; }; - 9017A47352701FA7B4395403ECC5DA19 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; - targetProxy = EC2F40E54B3C845728A724C527A5EDEE /* PBXContainerItemProxy */; - }; - 904B5431C312BAF1DD19650F7ED52716 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = DF2B1B5442699478B7CD902B70810A9C /* RNDeviceInfo */; - targetProxy = 2B80064B744F06F90C73136C7EEC4443 /* PBXContainerItemProxy */; - }; 90D88B1CA438DBF891A5226D8D8B5611 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; targetProxy = 1BA9FE8D4FA41AD95626F63DB8C9FBEA /* PBXContainerItemProxy */; }; - 9233F5D80F868695E9C13931C4880C96 /* PBXTargetDependency */ = { + 914380C099B563A8C21AAC0AB2838AB1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 87718D5A3A2BAFD489AFF4D65B0D404C /* PBXContainerItemProxy */; + }; + 9317ED6CA30C7A8A0CBB980A817E741F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; + targetProxy = A329D963231C043999DA68B0D2CDDF39 /* PBXContainerItemProxy */; + }; + 93458034F1BCBAF5D6707D6DD946B634 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */; + targetProxy = D8B4988524D72B2EB099AF4EF2CC40D4 /* PBXContainerItemProxy */; + }; + 9573BE6426B3BD8E1E2AC26DA29C756D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = 5BEEB9FFE68EDAF0F0A0C1ECA7D16085 /* PBXContainerItemProxy */; + }; + 95A3C18AD2FFF2B94741A13F2BD90096 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = yoga; + target = EAFAF2A9CFE5807D87ACC914F678EAA8 /* yoga */; + targetProxy = 32A92470BB021A73EB7C0BE07FF39F77 /* PBXContainerItemProxy */; + }; + 96CBA7075A2B5C8C16E06AFFCB33D354 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Crashlytics; target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = E90A52A2894EFD059B321AA4758E512F /* PBXContainerItemProxy */; - }; - 9426E5289379D4BF8C9DE35A92040277 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 40094264A7543CBF6B0AC3BF172E471F /* RNAudio */; - targetProxy = B4D2D9E332D8CBAE5DBE12E244AF5458 /* PBXContainerItemProxy */; - }; - 94D3D304ECD9F676E59B82D965235CF2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 25949AF3296378D8BFCA4B563F4B4F45 /* rn-fetch-blob */; - targetProxy = B6AB6733F1BA5718BE953F3D7B72BFD6 /* PBXContainerItemProxy */; - }; - 94FA1CC0A8E0441ED32DFF1AFABB7ED8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 40094264A7543CBF6B0AC3BF172E471F /* RNAudio */; - targetProxy = F51CD0E91833323E7236AEA813DBF5F3 /* PBXContainerItemProxy */; - }; - 96C86AEC655691D92B621B10588CD0F9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 5F63A1E41B86B1D8B6D7FB6EE06DEDFB /* RNVectorIcons */; - targetProxy = 8AB554CE686D010CFDE28C2A107CC509 /* PBXContainerItemProxy */; + targetProxy = D7B9796F9B52A6FD0BFD7838E67DCFE5 /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16064,12 +16497,6 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 97AC671E9B5AA7F672E234465C3D0531 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppLoaderProvider; - target = 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */; - targetProxy = C2082AECC8B56D8318ECF7C98F496EC4 /* PBXContainerItemProxy */; - }; 97C83F1945FAF0077CFCAC91369259D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; @@ -16082,11 +16509,11 @@ target = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2 /* React-RCTWebSocket */; targetProxy = 276C777EA898F585200AD00C0292034C /* PBXContainerItemProxy */; }; - 9975D733FFD7936D988DF774D7EEEBE6 /* PBXTargetDependency */ = { + 9821A644AC55370EDD513D2F860462A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; - targetProxy = 5DFC597B1C71A8521BCA2F2ED004DCCB /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 317B9B7E899CBAA3C433E49C9A4F9233 /* SDWebImageWebPCoder */; + targetProxy = 47174621BCF677299B599B4ECDBFC3FB /* PBXContainerItemProxy */; }; 9A6093C2C517B5FC29ACD2E96435EE49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16094,59 +16521,47 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 09C15A614E3100AD5CAA64B248FEA2B2 /* PBXContainerItemProxy */; }; + 9AB59DD6423A00365EF6FEED9D1E0E89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = B2278F267AED1BBFF1F5E868C301B9F6 /* PBXContainerItemProxy */; + }; + 9B82F819629385E3D18973D7C3DA0F52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; + targetProxy = 34BA9018905B03E8937730F3339CD4FA /* PBXContainerItemProxy */; + }; 9C390500C3C568F59A8589C455BFF4D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; targetProxy = C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */; }; - 9C865CE1840D511118B4E0C93B3CA77F /* PBXTargetDependency */ = { + 9C9C329D9D772A7F3023DA01E87B8AB5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; - targetProxy = 1613E8652594E1B89878DA0D81522E1E /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 4EE8B76242CA89F4EB45F4505C8F094F /* PBXContainerItemProxy */; }; - 9CC2DC546ECA2FA8E2F9B513D014B579 /* PBXTargetDependency */ = { + 9D5CFFF80BE30F09304B4B88049FABEE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; - targetProxy = 4AE32A99DD52D5087C79CEFE93877CFC /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = 875C68B1B096E9BCA6419E1140C071EF /* PBXContainerItemProxy */; }; - 9D568CFD750BAC2401DB576829E0766C /* PBXTargetDependency */ = { + 9EE6A6713EC543AED0D7B4E4AE96362D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 94A172B2196782E8646B52B6A16587E4 /* PBXContainerItemProxy */; + name = "react-native-video"; + target = 9EFD966453BEA5A0A61E17F9D9271A60 /* react-native-video */; + targetProxy = 676B0A93D66E5289EDB48C02D438A327 /* PBXContainerItemProxy */; }; - 9DC0FE6D0C67136FF3C7C12A79A85401 /* PBXTargetDependency */ = { + 9F18BCC948FF7EF033D3A8551922099A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; - targetProxy = C999C5E05878B2615ECE453EEE64891C /* PBXContainerItemProxy */; - }; - 9E24063FFBC6A82CB281FF7D0E7A5C33 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = AAC627FD97B49E278B99ADB9DB7DA5DA /* react-native-webview */; - targetProxy = FE8775831A223C99704E61DB60C1A27B /* PBXContainerItemProxy */; - }; - 9E9D26E9A8B92C28FE217C1C37AFC136 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; - targetProxy = 889F010F397A4FA30A1031BF3FE4884E /* PBXContainerItemProxy */; - }; - 9F587AA1E03539F993F50C2863512FCC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; - targetProxy = CADCA609D7C510A87209C9DF4AE8B28A /* PBXContainerItemProxy */; - }; - 9FD1B0EABE44006A0089EA26A3AFE359 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; - targetProxy = 34A87509051155737F5D789734A60CA9 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; + targetProxy = 1212C1E0302F343F45BB480F9029144F /* PBXContainerItemProxy */; }; 9FF2EAC462E085F8426E42810CD320B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16154,41 +16569,17 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = EEC2A18D5D098BDAB781F34428BB77D1 /* PBXContainerItemProxy */; }; - A0155C1F59887AC855041A63F0D6F470 /* PBXTargetDependency */ = { + A3A32C82EC7E2F69BE43CE2EF4FE1153 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = E1A14D3F3A934ABDC86F6E29A6D3328F /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; + targetProxy = 58B937FE6724E588DEA5C63173F8B626 /* PBXContainerItemProxy */; }; - A0C63AC74F963B354E00FCBE1B211C10 /* PBXTargetDependency */ = { + A45D62DC6218250EF01B21B8765E632C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; - targetProxy = 94D523F161E36E41BF575462169906BA /* PBXContainerItemProxy */; - }; - A1C284EB71608CC15A557AB9D4B26ADA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; - targetProxy = 2D0DD680A8EC9E87E6C351D8729D1FDB /* PBXContainerItemProxy */; - }; - A26CEF1A1FD768D7EB18960BF697010F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; - targetProxy = 1C24B0DCD2C4C7C86D464E753CFDB1CF /* PBXContainerItemProxy */; - }; - A27CC7C92B2E6D5400F5AA91081943BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; - targetProxy = 232B01B67B20D11B42F40DC87143060D /* PBXContainerItemProxy */; - }; - A40F72218E5C30908AE2D3F8D6B97262 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; - targetProxy = 97A22195D391710488ECBC051C5C99D9 /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = E7179A92F4CD91298C0766F92C40529B /* react-native-keyboard-input */; + targetProxy = 3A57DC33A0C5D69E7C449268946BAD1A /* PBXContainerItemProxy */; }; A4AA1FCAAB74E511F3039BB690538D85 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16208,11 +16599,11 @@ target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; - A55CD4D77B997A6E177AC2B125BB46C8 /* PBXTargetDependency */ = { + A578DAEFD0BDE36A5A2BD96D3BC05E97 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-fishhook"; - target = C5D62E7954593855294FBE5848A78863 /* React-fishhook */; - targetProxy = 031A89A35229466ED0BC26486E9BEB83 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 855548CC8E8274EAF5D336918E25ED2E /* UMSensorsInterface */; + targetProxy = 74DDB343A8FA48D707B4E50C68497026 /* PBXContainerItemProxy */; }; A6291B132A310C334C56604E7BCF20C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16220,23 +16611,29 @@ target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; targetProxy = 3C63709D9A9E8BFEDDDB0EC6915A77BE /* PBXContainerItemProxy */; }; - A67C1CD26293537245613809D63BEA5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; - targetProxy = 02538B3BBD98B2F24984B915210920FC /* PBXContainerItemProxy */; - }; AA9052A974DA4ECF27CC38A7633849E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleAppMeasurement; target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; targetProxy = BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */; }; - ABB26D34326878DEA82C4A300ADDED2B /* PBXTargetDependency */ = { + AC05639A28E9F9B349956476A2ACDB31 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 35577D44474D5D17721C61EB916F7021 /* SDWebImage */; - targetProxy = ABB09C29D90328888AD833F35F8B23C6 /* PBXContainerItemProxy */; + name = "react-native-keyboard-tracking-view"; + target = FB272C94AE4296D3A1132E63BD3DC7A6 /* react-native-keyboard-tracking-view */; + targetProxy = B3E89074512A1F6C6108F0E023716BFD /* PBXContainerItemProxy */; + }; + AC123A1D22224FDF7EE0DA3F835848EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 72B291B6F433E8F519C35B86A8334BB3 /* PBXContainerItemProxy */; + }; + AD2290F9A4015124C5D4AA9387790F75 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = 13D0A9DE8B1FB981155007FF5897207C /* PBXContainerItemProxy */; }; AE2135E39D7AC4E181788F79286CC4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16244,11 +16641,29 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - AE3CB8C148880D691A6EBEDBF37718C6 /* PBXTargetDependency */ = { + AEB570B70E083FB2C196C1CF0E0DA891 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = 0EBAD9A3F5D231CA9F04A66138256744 /* QBImagePickerController */; - targetProxy = DAD9A6542D8956DD748DD4A32ED0E3D8 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 317B9B7E899CBAA3C433E49C9A4F9233 /* SDWebImageWebPCoder */; + targetProxy = 18B0BC394BB6FD3D906810B515FB3066 /* PBXContainerItemProxy */; + }; + AEE2D8B2830CBA9FE39AE57E8001EE8D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-fishhook"; + target = C5D62E7954593855294FBE5848A78863 /* React-fishhook */; + targetProxy = 80FEFC4B002BF065A9DA860B29293CE7 /* PBXContainerItemProxy */; + }; + B033D7D8166BDF6DEB925881E20FA285 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; + targetProxy = BBBF33609EC15E33D74DECFF190C09F5 /* PBXContainerItemProxy */; + }; + B0353B9A6058981C1F1A8A4C62CF6D1A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; + targetProxy = 3509A231BBBBC727CA852FB03068F13A /* PBXContainerItemProxy */; }; B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16256,35 +16671,29 @@ target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - B35A6B2D2ED77D0C75C977EC9CEB8602 /* PBXTargetDependency */ = { + B4C592EB77D5C19106D8D96BE510D2C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = D17E024F9A9B8BA77566E704594F2D83 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; + targetProxy = A7EF4D2D3F255E0EB67109CFE84C7FC6 /* PBXContainerItemProxy */; }; - B3976F94C31CD6A6930A7A7AC411FA96 /* PBXTargetDependency */ = { + B75EAFF9AE2016EA1F90689E0646473D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 8F6AC1F817A6020A1AD035B558A7A825 /* RNUserDefaults */; - targetProxy = D07043FEE1B8B1FC5F5F20014B96BA5C /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 827867261A934D2CAA4AA1AB797E5CE3 /* PBXContainerItemProxy */; }; - B3B822F8CAC030B2F3EF02FDEED7E45A /* PBXTargetDependency */ = { + B7A32A2699888E0C6F74C68138BC281A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; - targetProxy = D13B501521D09205695CC4109E024B4C /* PBXContainerItemProxy */; + name = SDWebImage; + target = 8DBB59DA07871D38FA326EEFB3109004 /* SDWebImage */; + targetProxy = F063566A227ACAD5FFB900EDD3680266 /* PBXContainerItemProxy */; }; - B4CB3514DB587A893091C37652844301 /* PBXTargetDependency */ = { + B88B48E475AEFDA5CDCC6464DCEDFACB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-DevSupport"; - target = 6AD0E65D44A38151509F46E868517C37 /* React-DevSupport */; - targetProxy = 040E7D8D8AB30744CCEE0BF802370E90 /* PBXContainerItemProxy */; - }; - B6A7C23705EE093D66CEC8D4A2F4F250 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 703365316DB0E131C666EAFA94F2012C /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 45F3F9A656392183065EBA502E899AEF /* react-native-webview */; + targetProxy = 53FAEE8A1A732BDA949895354DACA2D1 /* PBXContainerItemProxy */; }; B89D2CB67178C93A2DFF80F628C7A710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16292,23 +16701,41 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 54A7BA384E80D5DB0269C827877FE175 /* PBXContainerItemProxy */; }; - B9487ABF49AC17C1BD3F5C11D522623A /* PBXTargetDependency */ = { + B9D870702C9B8CC74D03EBA33656215F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; + targetProxy = C11C3475E23A5343736AF7FE7384BA25 /* PBXContainerItemProxy */; + }; + BA56F350E5CFA34066F309DFEB34F5B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 71BE13536C5A857BC9B6A3A78E65ED9D /* PBXContainerItemProxy */; + targetProxy = 38025D65993EFE8F3FC1C6102F9FE2AA /* PBXContainerItemProxy */; }; - BB4A40B3AE6C584D7EE0E2F4E1664E95 /* PBXTargetDependency */ = { + BB01AC2E07BEF4FDB845FD6280E0F4C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 28333D2C1234E65D3C8AC1C257450E11 /* PBXContainerItemProxy */; + name = RNFirebase; + target = 3396F21218EB36C2568D05648BE2827C /* RNFirebase */; + targetProxy = 9509657F04BF21F95E4F3B3580CD4EAF /* PBXContainerItemProxy */; }; - BBE482C93A32A39A68B60F3A724F5159 /* PBXTargetDependency */ = { + BB132AFDE4D0E0D0FCE4406945812DE2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; - targetProxy = 20BD8341DB0F8F73C6845B0F2CD8EECA /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 940CCF26419FBC9B4A51319904FC8396 /* PBXContainerItemProxy */; + }; + BCAF7C17BEAA4C1ED7D14E052F2100BB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 859CC2305C7CF951A89D25B76146E86C /* UMFaceDetectorInterface */; + targetProxy = AFB14676FD69E4DD55E67DDB65067768 /* PBXContainerItemProxy */; + }; + BDAACE7B9C6E9D2540932D3BD13D4A27 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; + targetProxy = D6D6936EF3F0C6DB2DAA68ECD6EE641E /* PBXContainerItemProxy */; }; BE70AB1116776A9F90A3C783B9F1769B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16316,29 +16743,23 @@ target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; targetProxy = 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */; }; - BEC1B97A29031AA5CB83D0B2CC18860D /* PBXTargetDependency */ = { + BFACD0F627B57D126E0EBC682D37BBAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 795B13CC193BA54E378929FFF45D84A5 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = 74EEA248F982197D559582A658DAA382 /* RNGestureHandler */; + targetProxy = 4C28B725ABF69AA34C6BD956CAAD7D9C /* PBXContainerItemProxy */; }; - C049241ED727F04CDB725A65986FB0B1 /* PBXTargetDependency */ = { + C0B78C83189407F66EB5078F17D8B793 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; - targetProxy = 9CBA4F562995CD848D7C160E982FDC70 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; + targetProxy = E10BA5C801FE5839B089AEB61F2ADDAD /* PBXContainerItemProxy */; }; - C04BDAC2C5FD01BDE0B5EDFAECCD5F30 /* PBXTargetDependency */ = { + C15B100029DC5D9040A0588C50815EC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = F2EA13F7186803B14E07C507D5AC0A3F /* UMTaskManagerInterface */; - targetProxy = C7F31209A193FA9DA504F4A21BD28693 /* PBXContainerItemProxy */; - }; - C0F254B11A38A117A0BF8480EAD40185 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = D9D4825FF3196580FBFC163F94F09DE6 /* React-jsi */; - targetProxy = 654657965F1CB04636FA67043B18DA9E /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 4E295582CC9C3BFE0469D3B5E0030673 /* RNVectorIcons */; + targetProxy = 7DBE30F1B6471329DDB6E20F46940A13 /* PBXContainerItemProxy */; }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16346,29 +16767,17 @@ target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C315738E2027DF256889AA677D322B9B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = 35BC3AE509299DE247A4FF5AFF8BEE16 /* RNFirebase */; - targetProxy = 2088CFA0989A2CDA503536C44F4B729F /* PBXContainerItemProxy */; - }; - C3C77D43AE1DC7880065404B80431974 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = EFEB49E9D650421377D2A9122164ACA4 /* RNFastImage */; - targetProxy = 7B77FC0CD1D574F81299868B78C92206 /* PBXContainerItemProxy */; - }; - C54E5B3C46BD870E36942B57AE493415 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; - targetProxy = D2B3263198F13A00833FA03A8D8ABF62 /* PBXContainerItemProxy */; - }; - C5E1C3C1C18982D768DC495911FE31B8 /* PBXTargetDependency */ = { + C4B363F8D45A355539419A8ED73F329A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 98ECDEC63B73F5C5654F290CB9F6ED4D /* PBXContainerItemProxy */; + targetProxy = 14FA394CFD060DDE96244B921054D632 /* PBXContainerItemProxy */; + }; + C4C6CA776F2186F9490AF010DA0E4751 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; + targetProxy = 3D634B199F4F89D1BCAC7BF3C668E721 /* PBXContainerItemProxy */; }; C685EEFD7FF4D4C3F16AD088F18AD053 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16376,11 +16785,23 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */; }; - C787587465FE81C002B50BCE80EB11AF /* PBXTargetDependency */ = { + C6AB0910FD4ECE15B791A1502129C5B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; - targetProxy = 42BC9BF3F8DB7543BC5E04C10E95EABA /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; + targetProxy = C71D60BFE2E7C5164EBDBBF21A7E5E0E /* PBXContainerItemProxy */; + }; + C7E5050F68C7C0D3A036B2BA03712A8B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; + targetProxy = 28767CC6C82DADC7CAFF2E908A33FEBB /* PBXContainerItemProxy */; + }; + C8078A69BB26E685220301F878C4157E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTWebSocket"; + target = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2 /* React-RCTWebSocket */; + targetProxy = 7E55117E4DB5E73A74AE931F2EBE1F18 /* PBXContainerItemProxy */; }; C88567C1EA97046D4200985228F41BAC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16388,12 +16809,6 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */; }; - C9B14A461C4CBA50CAD72AF76C8D1BC1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 8F9C80EE88B6DF02CF887F4534C0C8D1 /* UMFaceDetectorInterface */; - targetProxy = 3410A1A1D0664CACF9CF2E835FCA2FFF /* PBXContainerItemProxy */; - }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Fabric; @@ -16406,29 +16821,47 @@ target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; - CA7569659BE3BE5F78CE7BFB33F5338E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = 35BC3AE509299DE247A4FF5AFF8BEE16 /* RNFirebase */; - targetProxy = 463AC9CCBEF371B4742EF2C758B7BA18 /* PBXContainerItemProxy */; - }; - CAEB8E29B49B87AA9FCE6C35B1300CEA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 2D23E970E1AD78BBDD3815E389684439 /* UMReactNativeAdapter */; - targetProxy = 2776FBE9151F88000BA4718909929582 /* PBXContainerItemProxy */; - }; CB67FB062DE8CAF07E20E144CB621739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CB7E0EC556EF2095B6A5C5EC41C597B1 /* PBXTargetDependency */ = { + CB75717CD22C02A964F24DC7EBE66946 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 8D06140A738C278926836084E0C73057 /* RSKImageCropper */; - targetProxy = 8527EDE7287071AE3AB616EDF3209030 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 7A63301C2F0C3A502863F4D5FB5FD8FC /* PBXContainerItemProxy */; + }; + CBF47332F58D5380AB522B50433B0C4F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = F20BFE1FC2EDE05812F9D7C2A61829E4 /* PBXContainerItemProxy */; + }; + CCCEF8303AE9E6DAF368749DF0CAC255 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = FCD870CE518718B09F202148537ACBEA /* react-native-notifications */; + targetProxy = 301554BB625023BE1F0BA0A8DF5B90BF /* PBXContainerItemProxy */; + }; + CD95293F3E50C7C552FB907699B745FD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; + targetProxy = B843781F4141322DAE720C4E4B73FAB5 /* PBXContainerItemProxy */; + }; + CE5302B206A0A5C4BC02D5A26FBF9EA5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; + targetProxy = 8121F62F863DC82F1E7ADAF355231806 /* PBXContainerItemProxy */; + }; + CE669E68D79AFE7B0AE1367E20C2EAF4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; + targetProxy = C8E8B46E523290FCF0BBEDC5A10B0D05 /* PBXContainerItemProxy */; }; CE8B92E48AC185A2B85231FB94EF0309 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16436,83 +16869,101 @@ target = D9D4825FF3196580FBFC163F94F09DE6 /* React-jsi */; targetProxy = 4BBDCF74AAA6DEC7420E0CB6C398D3AF /* PBXContainerItemProxy */; }; + CEF3DA0600A604148F4B7DC7CE8B1E89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-video"; + target = 9EFD966453BEA5A0A61E17F9D9271A60 /* react-native-video */; + targetProxy = BD58D81C5F1B40386A86DC2A3B62416B /* PBXContainerItemProxy */; + }; CF8BC28987E07E2E11472F3922622864 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 5C8A3E6AB1161E9CF7D5A8AC0368B080 /* PBXContainerItemProxy */; }; - D06C7A9825B57F7E8FFF2F653BF40282 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 062F5DBABAF21FFB6A377EC1FE48A730 /* RNScreens */; - targetProxy = 0488A5CB74143FAD959CBF413B28B321 /* PBXContainerItemProxy */; - }; D0C999A431508F325E3286B2E73F5BA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = A94EF2BE3BB5C93DEBBBD89AA7A50736 /* PBXContainerItemProxy */; }; + D20913195A207EF5AC19F2CA9C231E13 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = BCAD56353CC03FBEA94A951A14E3F333 /* RSKImageCropper */; + targetProxy = 1B166D3F6ED1B2FB9FA7DCA033B1352F /* PBXContainerItemProxy */; + }; + D23341A8E4446404253D928A66BB4EDA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = AD5BBFD4D22353648C96437F903EC4EA /* PBXContainerItemProxy */; + }; D2BEE65090ED661C331F190F93072A15 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 2881DC1DD25AF0C459E6A3AFFD167CCB /* PBXContainerItemProxy */; }; - D32026EC27372253192B0419553E17CC /* PBXTargetDependency */ = { + D2E77C4C5124EB07CB8E6655657483F0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-input"; + target = E7179A92F4CD91298C0766F92C40529B /* react-native-keyboard-input */; + targetProxy = B50BE6EBBF89C3D60F95F4D8B78A3B5A /* PBXContainerItemProxy */; + }; + D45962699B12E20CF157ED80B9C0482E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6E898D47D3B30C6577C45BB2AA9E2284 /* react-native-background-timer */; + targetProxy = AC7E81201B48C66FD3DDD92B0C3AC053 /* PBXContainerItemProxy */; + }; + D541A1E163712C710411429D105CFD2B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = DB033D152AD25F72319E2E1758178DED /* PBXContainerItemProxy */; + targetProxy = 97D28D24C661A290FB78462F31A00B0C /* PBXContainerItemProxy */; }; - D5865F43033C8D257A38CAF1FB9A22BD /* PBXTargetDependency */ = { + D5FD6694E7BF683F6EBE8A362E6E7E99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; - targetProxy = EAB078FA2717BF96B9A33C553AF5052B /* PBXContainerItemProxy */; + name = RNAudio; + target = 1F10289E58028110D5E1095D41608A3D /* RNAudio */; + targetProxy = D9D9EB21144C390FA968F50D48F9E1B5 /* PBXContainerItemProxy */; }; - D6B9620FE4252978D78D6B1F490D47D3 /* PBXTargetDependency */ = { + D6E085DA5E0CC0A7C85461C12EC89042 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 7BE5F45561FEE07C9BAE72F6ACE20D9B /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 50F0DEEA2B086C71D561F91DA04AF201 /* PBXContainerItemProxy */; }; - D8639E085DF83035CDC768A5ACD2839C /* PBXTargetDependency */ = { + D8131C0C8C05645F3BDED70CA600EF29 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */; - targetProxy = A12D725A25CCC598BD56190CB4B7DB76 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = E99F854A8E886118A2D305817A53D7CA /* PBXContainerItemProxy */; }; - D924DF40E4985C13E50E89CB21E59605 /* PBXTargetDependency */ = { + D963CAEA7A1F2A53FAB6A6A874B953A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "QBImagePickerController-QBImagePicker"; - target = E9998BC7841609076FF7FE066965358C /* QBImagePickerController-QBImagePicker */; - targetProxy = 9F891B715C9D36CFE43EE9A5BACD9BB7 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 637805D5DEFA194CF328DA2A13EA9AA9 /* rn-fetch-blob */; + targetProxy = E644DE1888A4B6193DC5165EA7EDE356 /* PBXContainerItemProxy */; }; - DA1677867E58B70DFE3D3DD5AAC32337 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = 752FCBCD2E0EA0ADCF498C7CB6315B64 /* react-native-document-picker */; - targetProxy = F5C2498BCE9463386A9F599BD1492612 /* PBXContainerItemProxy */; - }; - DACBC61F523336289DFBBB49233CF3AD /* PBXTargetDependency */ = { + D982AE4B29EC475EAEA76F75FD1F411C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = 432A9EB479B1ADC6AC9404D0DE1BF7CB /* PBXContainerItemProxy */; + targetProxy = C133085EB19AB6DCB5983E83121EEA98 /* PBXContainerItemProxy */; }; - DB5439EDF0CCE963D25FCF65F5EA78EA /* PBXTargetDependency */ = { + D9ACF66B359B10D711CAFCA1DEF873C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 062F5DBABAF21FFB6A377EC1FE48A730 /* RNScreens */; - targetProxy = 10CF31C2FDD901E3CB94C1B6ECBBC31D /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 4E295582CC9C3BFE0469D3B5E0030673 /* RNVectorIcons */; + targetProxy = 9D5EA2D9B2AEFA43C71E2644BB4EF129 /* PBXContainerItemProxy */; }; - DB65D4DEA2A8FF4D051393A04BC94D73 /* PBXTargetDependency */ = { + DA58536A1794225980EB4191BADF9ECC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = D2186841C84524D0ECB425ADB17EBEB9 /* RNReanimated */; - targetProxy = 6635F22192E6EDEFA9F48ABBB18263E0 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; + targetProxy = CAAD702B815C43AE37B128C99BE280EA /* PBXContainerItemProxy */; }; DB80506935610BC87AFDD4834FC611D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16520,29 +16971,71 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 248015A2F1D88F57B6E26BA56A382F2C /* PBXContainerItemProxy */; }; + DBD016312BC1212788D61AD46FF4DB47 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = F5AF77E132514FAC328CCA2DE0E66C98 /* PBXContainerItemProxy */; + }; + DD4DDC59CB8DAF387A912FD52B62B409 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = FCD870CE518718B09F202148537ACBEA /* react-native-notifications */; + targetProxy = C7BBAF940B290F01E535BD4B6A070704 /* PBXContainerItemProxy */; + }; DDBA61AB3843D0BBBBDF684DF9FBD8ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = yoga; target = EAFAF2A9CFE5807D87ACC914F678EAA8 /* yoga */; targetProxy = A9B8554385A1F8B15EC5D46D749ED792 /* PBXContainerItemProxy */; }; - DEA61BFC203256EDBE27CA95A19DB6B6 /* PBXTargetDependency */ = { + DDC208161A99651C4FFB1BE0A8225D66 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = AAC627FD97B49E278B99ADB9DB7DA5DA /* react-native-webview */; - targetProxy = 718D8045058E3F833EFD354208ADAF38 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; + targetProxy = 5249E094813E57101BA9099A0D26BCD0 /* PBXContainerItemProxy */; }; - DFA2D19FEDE0D2514AC819529FB17E01 /* PBXTargetDependency */ = { + DE1DB9B764471436DFB9F88BE28F4A73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 5A5635BEE017E125F52F95B5E1FBC6B6 /* UMCameraInterface */; - targetProxy = 7F1C6658C20B08C549CB7FABA2850914 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = 0AEAEE87E13ECB11A65C40065A0640F3 /* PBXContainerItemProxy */; }; - E05FA91727AA1456CE50DECDA3A5DA0F /* PBXTargetDependency */ = { + E0702828A29F480FC43C9E4E9B958FFB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; - targetProxy = 27F6E0721BF430ED318CD348F3380EC9 /* PBXContainerItemProxy */; + name = "QBImagePickerController-QBImagePicker"; + target = 54312B90205B51C80179FDB941BD5A75 /* QBImagePickerController-QBImagePicker */; + targetProxy = 6536CC37977254BEE21C96E240D1DEFA /* PBXContainerItemProxy */; + }; + E09FA2CCB901F3085D8429465D1FD327 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = 0EEA3A5C15469EC2D35AE5A778BDBA5F /* PBXContainerItemProxy */; + }; + E1532D867DB35EC1DB7E242E434F1C8D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = BCAD56353CC03FBEA94A951A14E3F333 /* RSKImageCropper */; + targetProxy = 00974F148815F9CA3F2601822B3854E4 /* PBXContainerItemProxy */; + }; + E1C3C32198E4D12D3FEACC4372F8C08A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = CC42EFC2982AE7D21F434F31BD33FBA1 /* PBXContainerItemProxy */; + }; + E1C491CD8F0F52E250F9CDDC7264CB14 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; + targetProxy = 8DFDAB211FB62D761F139FC977237CE4 /* PBXContainerItemProxy */; + }; + E1C77FBEF4EA9EC8923D812D10C10115 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = EF82C048F8347DAEF62682C92F3E4762 /* RNDeviceInfo */; + targetProxy = 74D7BC301B5DADD2CDB3348AB2111245 /* PBXContainerItemProxy */; }; E1DA9EC93E3834DAA49C0A257DFA8741 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16550,35 +17043,23 @@ target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = 0AA48B35BA7148412EA836482D3727DB /* PBXContainerItemProxy */; }; + E28960F4CB36444C822141EA3E47C676 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 56D3B9DEFD00B2D12D27DE7280EE9046 /* UMCameraInterface */; + targetProxy = 5A1E53FB8D235B50DDA4B2C7749C286A /* PBXContainerItemProxy */; + }; E3D1654B918455824279631C48CD8D36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; - E4602C6778ACE3CF3465644C5E8EC64C /* PBXTargetDependency */ = { + E3FD5BA43C2B7CE61CF5D85DAB9F6170 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = D2186841C84524D0ECB425ADB17EBEB9 /* RNReanimated */; - targetProxy = 296C254CE0F2F688D563E6990552F9AA /* PBXContainerItemProxy */; - }; - E609ED815724D15A4985B17FD62AF15B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 63CD6794DC7550F854838D23B403A831 /* SDWebImageWebPCoder */; - targetProxy = B57E9DD1D8E0026A5466E99B7C4F1D38 /* PBXContainerItemProxy */; - }; - E73B1459F79297128AE0BF82F2F11CB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 8923451EE41ABB80D8FCB82A5916D131 /* UMFontInterface */; - targetProxy = AC1BB1556074559B1CB0F4CD7DAB3599 /* PBXContainerItemProxy */; - }; - E8F65490880EF34F97DD25E052A5C50D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; - targetProxy = 41993E092A2463B244B443B10E3C3598 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = D20D4BECD712A6D0A2661E694141BE14 /* PBXContainerItemProxy */; }; E94723BF5AD08FD427D108D517EF6A86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16586,6 +17067,12 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = F2FF55E89F9BA0040B50E35573928069 /* PBXContainerItemProxy */; }; + E972AA9CEFA5B81C24E92CF8A9CFE04D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; + targetProxy = 79F9DFC35F6B0E189CF401380F4240EC /* PBXContainerItemProxy */; + }; EC5D3327864539ACBF9223F28B3BDC60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -16598,29 +17085,47 @@ target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; targetProxy = FC81A17B5C5AD48E1DC428B4EE37ABEC /* PBXContainerItemProxy */; }; + EE9A831F49A58786B16D6B9D8842B403 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 59EE9F0756DE075CD2C9150E20F90422 /* PBXContainerItemProxy */; + }; EECEC39CD1A9AF30CCFCB71B11A14B7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */; }; + EF22801C005D33F8648317194A966435 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; + targetProxy = 50B2A27F2B946A2B28CD772DA367F394 /* PBXContainerItemProxy */; + }; EF52D1534DBA50B19B555F4F210B2ECE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 244748360793885B28A0FB80940BDD29 /* PBXContainerItemProxy */; }; - EF9DA179DA777BE95BB9178E1D1EA92F /* PBXTargetDependency */ = { + F04FE147984389293183202746D3BAB5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 8A60FED4B4F5879CA215E4695CC2997C /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 637805D5DEFA194CF328DA2A13EA9AA9 /* rn-fetch-blob */; + targetProxy = 46608E53D53E8719370E928AB1A2C3D0 /* PBXContainerItemProxy */; }; - F1BF9C5BC54EB90BF5F0142974C50ED2 /* PBXTargetDependency */ = { + F090AC9B909322EF64A6A0CBD1EC543E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 8923451EE41ABB80D8FCB82A5916D131 /* UMFontInterface */; - targetProxy = 3B7701D0E95A58E755B1F0268BB78E36 /* PBXContainerItemProxy */; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = E4DF8EF8283FD850A3399F2C075302E4 /* PBXContainerItemProxy */; + }; + F0C32C23A50BD6696E6352E22E1D2442 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 7BFE9C8AF890F2E4593C07660F79FA96 /* RNImageCropPicker */; + targetProxy = 837C8F523084FE1DC8E31D645CB80C61 /* PBXContainerItemProxy */; }; F399B730C7A06F5D026757B730E30FB9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16628,12 +17133,6 @@ target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; targetProxy = 4BFA9DDB028CA84B14CCA5C11D9F6207 /* PBXContainerItemProxy */; }; - F3B2DEE0D56EFBEA20449FC6565F8345 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 35577D44474D5D17721C61EB916F7021 /* SDWebImage */; - targetProxy = CD31BF7EAE0AE0832A8C5DAAF8579395 /* PBXContainerItemProxy */; - }; F40AEEAA637FAD62AA68E398038D3782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; @@ -16646,29 +17145,17 @@ target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; targetProxy = DC1A792C62DBF10721FFE4308A29BA06 /* PBXContainerItemProxy */; }; - F5037D05289BE0FAC6DA02EDDE3D6998 /* PBXTargetDependency */ = { + F5C837ED37C80E25F79893530838857E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = 6A6292EF6BD5726FAEE2DA523C3D0416 /* react-native-splash-screen */; - targetProxy = 38CB02701DEB8DE60E1ADDA19E0FE5A5 /* PBXContainerItemProxy */; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = E3BCAC054870DDA7C889BE5EEC77406C /* PBXContainerItemProxy */; }; - F5940B45FB332F1271EAB2DC8064BA42 /* PBXTargetDependency */ = { + F609F7E2DD6AAAFF8B9A6BF5F8A71D46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; - targetProxy = 891511EA7594DFE87CF4314898F29BCA /* PBXContainerItemProxy */; - }; - F5BE28C40E3B2CC3AAC76E1470416D29 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 5F63A1E41B86B1D8B6D7FB6EE06DEDFB /* RNVectorIcons */; - targetProxy = C2F7C418BC41DEFA845B1E69BEEDD8CC /* PBXContainerItemProxy */; - }; - F5BFEB9EAF8663521D988B0EEAF0CFC9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; - targetProxy = BA3369F754629D51CBE71C055EF27144 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = DCE0E755BF3830D8FAB341194504E9B8 /* rn-extensions-share */; + targetProxy = DFCDF1DD02E1707696FD1EBB2E7BCD53 /* PBXContainerItemProxy */; }; F60D5A7D560F55E346E626406941BAF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16676,65 +17163,23 @@ target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; targetProxy = 586C9042939572C3633A6BECFDC2FFDF /* PBXContainerItemProxy */; }; - F65A15DA2187FAE0A264202649BF3736 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */; - targetProxy = 856C7297029DE7446A499710A503DFF6 /* PBXContainerItemProxy */; - }; F6946AE8D5674B8370F638B8011EEEEE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = B7382E19C02620616F4EFB89AA978346 /* PBXContainerItemProxy */; }; - F6FAFBE3442D18A5ACD22D2933ED77D7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = FECF8F6BF633B0981AB2A2A2B6F0493A /* PBXContainerItemProxy */; - }; - F71E8F64ABB8356F9AB7DDA489BC11F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; - targetProxy = E2048289DC2803DBB592C502C0D633BF /* PBXContainerItemProxy */; - }; - F81F7CFC1829F77A45929B23CEB62720 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = yoga; - target = EAFAF2A9CFE5807D87ACC914F678EAA8 /* yoga */; - targetProxy = 86F91B6ADF8B3F61EB409CB52E68554C /* PBXContainerItemProxy */; - }; - F820B39DD6A537ACAF5F0626752F1AF8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 27238E8DC18048F88CB6FC7AE06D4301 /* UMImageLoaderInterface */; - targetProxy = 049421F9C136908C48C9AEA40EA04479 /* PBXContainerItemProxy */; - }; F9771E99025A64436243D14F23ADC9E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = F8B50BE8BD280104AEF2C287D478BB8C /* PBXContainerItemProxy */; }; - F993DC72F99D45648931A39F4A928BB9 /* PBXTargetDependency */ = { + F9A6C415E5A451ABBA1EF02DADE0490D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; - targetProxy = DCAB4A9233AC9C54A8B4EBFBD3A0E2FF /* PBXContainerItemProxy */; - }; - F9CF8B44DCF49C7B8A85D60322B90326 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 873B846AC6BE3AE3A5C69A43FE741937 /* PBXContainerItemProxy */; - }; - FA30E8A028894190326D553C9A6A442B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; - targetProxy = 35124029F4F1CE552EF8D2B306E620F6 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 45F3F9A656392183065EBA502E899AEF /* react-native-webview */; + targetProxy = 266B5F048500FE77BE1BEBDF86709A56 /* PBXContainerItemProxy */; }; FA6FD64DB1000B3B35E074B28C8D2B8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16742,39 +17187,80 @@ target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; targetProxy = 0F51677083285B10036CC0BA1E9BBB53 /* PBXContainerItemProxy */; }; + FAD06086857A8CBE99B7AB3EEB918833 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; + targetProxy = 2CEABE1D42EEBDAF283C1E7FAC12C9A8 /* PBXContainerItemProxy */; + }; + FB98F3E701523C4FF8815908659847E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */; + targetProxy = C4367761F15B94F875C53C7DB2B7F742 /* PBXContainerItemProxy */; + }; + FBE16CBA0A53F12659CD1FB5D55721E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-splash-screen"; + target = 9DE6FE0A7B145D5D64B4645C0A167B45 /* react-native-splash-screen */; + targetProxy = 73D9D92B3F18F0E04C6311A6E55152F1 /* PBXContainerItemProxy */; + }; FC15D43543715D7D02B1D7F75B3A311E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; targetProxy = A10B927F49CDB8E49094BFD1CA897343 /* PBXContainerItemProxy */; }; - FCC4ED94E7A8E65AC0C7BC4F684E7114 /* PBXTargetDependency */ = { + FDAE20E62AC96912EB0E46186F0E3F6A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; - targetProxy = F3EAF8A6C050364EBC1E61E095813E74 /* PBXContainerItemProxy */; - }; - FD554889DCA06C3D718C38544423F622 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RSKImageCropper; - target = 8D06140A738C278926836084E0C73057 /* RSKImageCropper */; - targetProxy = 70092F359490F6B47F4DC76E2B906C83 /* PBXContainerItemProxy */; - }; - FEDD266C54B5484404402008022182C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = 75413E753E5D3F1BE4BBFF5A9633F19E /* react-native-notifications */; - targetProxy = 81430FB0ED87F22AD68D7BA9C930B57F /* PBXContainerItemProxy */; - }; - FF858D6F7CAAE0BCCDF129727BEA9554 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = EFEB49E9D650421377D2A9122164ACA4 /* RNFastImage */; - targetProxy = F6D8BC8144046BD28D62BB4F10A02F27 /* PBXContainerItemProxy */; + name = "React-RCTWebSocket"; + target = 1B84AFCD5F3FA2F6CFE3FDD3FF5343A2 /* React-RCTWebSocket */; + targetProxy = 014EECAEDD7FB12916CBFCD5B95899AE /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ + 011BE9E7513717165AD7C142AAD23F3A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 746672087CD70BDDA884FC8FA203FA94 /* UMTaskManagerInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04353F2A0C42F45F69781902FAF89000 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8F512DD440E67929D7F4EF7DC55707B9 /* react-native-orientation-locker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 0634A9D8623FC6828339974C48D89332 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 039877B222B77B21A4033F031C1D06E5 /* libwebp.xcconfig */; @@ -16803,7 +17289,7 @@ }; 06D42481946D673E459AAE2E31547D41 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C678B79CB97B799981B8664C5406552A /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 4CFC24095D62611CEC3E3EE24D91CD0C /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16852,9 +17338,34 @@ }; name = Release; }; + 07608AA2F9DF12B188A77221DDA70EE3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33992860045FCB2FD0DD2AE312747C65 /* react-native-video.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-video/react-native-video-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_video; + PRODUCT_NAME = "react-native-video"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 0829E2164483604F7E73031C9A40DF8C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C545735810BCDE8E4DAA5F060FE6F679 /* EXPermissions.xcconfig */; + baseConfigurationReference = A28BAC373C876446EC9228F5C92E988A /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -16879,9 +17390,34 @@ }; name = Release; }; + 08684CC2133A0BBFF31AE39AD72EDC19 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DF70675D405738BB60B5633AA4B8714D /* rn-fetch-blob.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = rn_fetch_blob; + PRODUCT_NAME = "rn-fetch-blob"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 0938FB72747496D6A4EDD82F7FFFB489 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 846B61E33897257C71D97E561AF1E959 /* React-RCTText.xcconfig */; + baseConfigurationReference = ABFE44D10BC96227DDE760CDA55459E1 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16919,34 +17455,9 @@ }; name = Debug; }; - 0A477D05D7F5C4800DD3A16D420A7B8D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F3E5FA7017063441BC562E0F635EDCA7 /* RSKImageCropper.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSKImageCropper; - PRODUCT_NAME = RSKImageCropper; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 0C9B2792F342A93E8C1E50A199DD60FC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 153D0D323854AC8FACDFA0774D1E9380 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 945E4BED7CE5F4EFA859A013503B1D1E /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -16971,22 +17482,22 @@ }; name = Release; }; - 0D325212BAAE3D0D68BA074244869799 /* Debug */ = { + 0CB13E981CCE64989126F21184A360F4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8D17205550AD7115D8112FB3722CE4FC /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 276D82CCDA6AA238DEA838C835D316B9 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; + PRODUCT_MODULE_NAME = RNVectorIcons; + PRODUCT_NAME = RNVectorIcons; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -16998,7 +17509,7 @@ }; 0D7618B76C1ECDFE055A0C6BAE39ED97 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 64DAE394E5B04C3D3AA1B2EA1AC8D81F /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 948C15B9A14B1A6781E66C02F2C25D40 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17021,9 +17532,34 @@ }; name = Debug; }; + 11A2ADB12D7207929A6E17A04F2A1D1A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C9F0C31A769D053FF8300D615339570D /* rn-extensions-share.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = rn_extensions_share; + PRODUCT_NAME = "rn-extensions-share"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 135EE66E521443BD54B6C16BCC1A2937 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2119F559418EE297D7B8C21D6135C4E7 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 6467636F6C0199E64C6A79899EC14FC8 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17049,7 +17585,7 @@ }; 143C472CDA83C19B1A3F903058F66358 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABAAA194EC2FD1FC2CD955581F27A919 /* React-Core.xcconfig */; + baseConfigurationReference = 268495A169C2E34E1FAFB7A056526021 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17075,7 +17611,7 @@ }; 151B0FA0B9152A5FD14F28A2EB3030FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9CDB8351DE03FD8580AC11757D164382 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = A9B59CC2DC7B4DA4D5CFA97A575365A9 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17101,7 +17637,7 @@ }; 1620F211B2965824AB47FC623071FA56 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 69EEFE2BAAE4E324CAEF3BB83636450C /* React-cxxreact.xcconfig */; + baseConfigurationReference = 0440E8CE3CCEED5D6617090A23EE5EA4 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17167,7 +17703,7 @@ }; 185C7504A570C3B814C9B2D452F64444 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F6D805506141A7A985903CE9EA0CFA4 /* EXHaptics.xcconfig */; + baseConfigurationReference = 05F4B4868CB7B7DF12D2442ABC2F6522 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -17191,6 +17727,31 @@ }; name = Debug; }; + 1913A0E53EBBEAEA7677136566750686 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 04150410C97351ED83FFA36169E6394C /* react-native-background-timer.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_background_timer; + PRODUCT_NAME = "react-native-background-timer"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 196DFA3E4A09A28224918543529A1885 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -17255,22 +17816,37 @@ }; name = Debug; }; - 1BD28DF7D33F1FAC93C8AEEFC4164C93 /* Debug */ = { + 1D6EDBB62983FC53F26009028B8255FF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD38ABEF16475EF38D017FEB6EE314C4 /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = CAC7A52B5EF0CFDEA2A8482D1657718B /* UMFontInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 1D83F61EA06F6F669003D3BA549F7AF9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 434244749BC458AFB264A6381417A25B /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + GCC_PREFIX_HEADER = "Target Support Files/RNUserDefaults/RNUserDefaults-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_keyboard_input; - PRODUCT_NAME = "react-native-keyboard-input"; + PRODUCT_MODULE_NAME = RNUserDefaults; + PRODUCT_NAME = RNUserDefaults; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -17282,7 +17858,7 @@ }; 1DDB06706922C62CB33A9EEFBAA3F497 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 69EEFE2BAAE4E324CAEF3BB83636450C /* React-cxxreact.xcconfig */; + baseConfigurationReference = 0440E8CE3CCEED5D6617090A23EE5EA4 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17305,9 +17881,41 @@ }; name = Debug; }; + 1F89D481FDF013B0CA7F8476CB91F246 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 90B6FAC077C3745634A7B05D249DF3D1 /* UMBarCodeScannerInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 201E64895F21BBD0309EB55CC423E91B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; + INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; 2028127690F69E329146C9D4F2CE6FDC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 64DAE394E5B04C3D3AA1B2EA1AC8D81F /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 948C15B9A14B1A6781E66C02F2C25D40 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17331,48 +17939,22 @@ }; name = Release; }; - 2056599A55E26A118565C7DA4551D528 /* Release */ = { + 20BBE95B34067FCB36CFF347F5ED9F2F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC474EE9137ED81E7D839D058C0399E7 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_extensions_share; - PRODUCT_NAME = "rn-extensions-share"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 22DC88D7235B32149903110D14ED4324 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1DCFEE894E9642749E85585155815804 /* react-native-splash-screen.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -17382,31 +17964,20 @@ }; name = Debug; }; - 24A495C0B0E37F013863E9AB401AF682 /* Release */ = { + 255109E40F01F33119407DD823ECB86D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */; + baseConfigurationReference = FE3A05F84F7A2A4565AD2CEA17AA60CF /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImageWebPCoder; - PRODUCT_NAME = SDWebImageWebPCoder; - PUBLIC_HEADERS_FOLDER_PATH = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; 27B8242F13B09FC8745CBD67B1606296 /* Debug */ = { isa = XCBuildConfiguration; @@ -17432,35 +18003,9 @@ }; name = Debug; }; - 2857BA3BA61898E62F45ABD5A8A19000 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8D17205550AD7115D8112FB3722CE4FC /* RNDeviceInfo.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 29B1FBAC28DEA75114542E76A1C78029 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8E09A758E68C42F689D709786EFDCADD /* EXAV.xcconfig */; + baseConfigurationReference = D0E0D454CD65A5A55B90B4773CE2C624 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -17485,37 +18030,6 @@ }; name = Release; }; - 2DA2BD27DA71AD0A4FB8AC079AA99E04 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D2B7653E4E2696C673E698748E29AD49 /* UMTaskManagerInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 2F3C8B54AC799EC980365CC443A95181 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0187A980721F3284C1FC1D348AC535AB /* UMCameraInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 2F3CAFBA99688A4D9FA1D968A0875EFC /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 18B4D4CD4F3228B47F6A17E1A8BC845F /* nanopb.xcconfig */; @@ -17567,53 +18081,50 @@ }; name = Debug; }; - 3512E30EC2A84F106581957DDA5785DC /* Release */ = { + 33004FAE59F22FA77A5D7EE16985AD41 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3DE007E20FA8C78A0948986C51865DDC /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 8F512DD440E67929D7F4EF7DC55707B9 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_background_timer; - PRODUCT_NAME = "react-native-background-timer"; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 35661F80091B00CC4666745D9FB00347 /* Release */ = { + 3545C6E7B2994066B3CD1655B23D69B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 406386C3CB15CABF8D09B9ED96B411C3 /* RNFastImage.xcconfig */; + baseConfigurationReference = 46A54367025ACCCB32096FA0B124098C /* Pods-RocketChatRN.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFastImage; - PRODUCT_NAME = RNFastImage; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; @@ -17621,7 +18132,7 @@ }; 379699C7EF1D5DABB0AFFABBB83D962E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9BE6C950D5BB483CC324D666974AF5A1 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 729F00B4AE6BE50E6FFAA94DD7D03BA9 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17636,7 +18147,7 @@ }; 3837B1A1B27F85773D36837D44A874C2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2119F559418EE297D7B8C21D6135C4E7 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 6467636F6C0199E64C6A79899EC14FC8 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17661,7 +18172,7 @@ }; 38E4BC4B91EFEE88632684A4D6B9C33B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 397813083C03D24C146FD71D85A0BB36 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = FEAFB87107831290F5EFA9D4A2385FFD /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17684,73 +18195,22 @@ }; name = Debug; }; - 3993B13EC3AF0548E9080C521B45B82C /* Debug */ = { + 3A73173028FB6FA1C427E127F50D08EC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 82DAE08CF911CB36FC4E0F303C610742 /* RNLocalize.xcconfig */; + baseConfigurationReference = 36D564D5DE5EDEE645A65BAB86FBC19C /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNReanimated/RNReanimated-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNLocalize; - PRODUCT_NAME = RNLocalize; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 3A4D3D0550D8C5E6BB70BA769467933C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 91BA5B1704468E6FC5018E6F128D5E51 /* RNUserDefaults.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNUserDefaults/RNUserDefaults-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNUserDefaults; - PRODUCT_NAME = RNUserDefaults; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 3B74741E92EE5C406A9A3740117E5C21 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1035C2BE795A043B0B7A2E1BF812356C /* RNGestureHandler.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNGestureHandler; - PRODUCT_NAME = RNGestureHandler; + PRODUCT_MODULE_NAME = RNReanimated; + PRODUCT_NAME = RNReanimated; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -17762,7 +18222,7 @@ }; 3C318118356CE8F0059F34920171B52E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9CDB8351DE03FD8580AC11757D164382 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = A9B59CC2DC7B4DA4D5CFA97A575365A9 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17787,7 +18247,7 @@ }; 3D332A721749F712364F4DCD80F5274A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 397813083C03D24C146FD71D85A0BB36 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = FEAFB87107831290F5EFA9D4A2385FFD /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17811,9 +18271,9 @@ }; name = Release; }; - 3EEC3CADAC8E5BAC8CFC43F3927D58EE /* Release */ = { + 40D2C373FFF22C16B2CEB27E6473A5B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE064E4404A50B72546C86AA964CD8EF /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = CAC7A52B5EF0CFDEA2A8482D1657718B /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17827,7 +18287,7 @@ }; name = Release; }; - 406C26EE954A490A5BB2C25C490860EA /* Debug */ = { + 41FF3984905DADC433691D92C7C5C35C /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; buildSettings = { @@ -17842,11 +18302,11 @@ TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; 42E224ACB70AF82680F383EFDCA7B41F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD5A2DEEABA693EEA1369A43A115AE28 /* React-RCTImage.xcconfig */; + baseConfigurationReference = D07C0F47608ABC69DF4310AE3BDE5E17 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17870,35 +18330,9 @@ }; name = Release; }; - 42E893E0F5FA4F8D4A8CF0670383EDBA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 674E2248562C9240A2BE77013BEB138E /* rn-fetch-blob.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_fetch_blob; - PRODUCT_NAME = "rn-fetch-blob"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 45E60395ECEC9624ED4A7BFAA5DB4724 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54597076F8586D36ACFB291640533A1D /* React-fishhook.xcconfig */; + baseConfigurationReference = DBAD3F6269AD912F0C5E9FB5407F4611 /* React-fishhook.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17921,9 +18355,86 @@ }; name = Debug; }; - 4922F0FA5D1996EC11DA89F503F0CE16 /* Release */ = { + 47D530B270665F6F7861DD3AA20C207A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F76D5060EA02A15F31CFDCE3EE6F1C74 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = B44606B3799D248F8595252180862355 /* RNLocalize.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 48E2777619660D89908F92BEE3EF8462 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D25D9149BE6DFA8BC723C813E68DC3B6 /* RNGestureHandler.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNGestureHandler; + PRODUCT_NAME = RNGestureHandler; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 4CEFD194358B97448E7CC184D712D6E7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19AE973E6A93A34E9E6C31688D116A0F /* RNFastImage.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFastImage; + PRODUCT_NAME = RNFastImage; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4D40FF42E347DBEE2272D41112F776BA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE3A05F84F7A2A4565AD2CEA17AA60CF /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17937,22 +18448,22 @@ }; name = Release; }; - 4A89FD08037DCA6821FF67791CFD02AE /* Release */ = { + 509E4FB73E11D193BC9ADEDEF4814522 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1DCFEE894E9642749E85585155815804 /* react-native-splash-screen.xcconfig */; + baseConfigurationReference = F2FA61B4732D7479B792379486BD21CF /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; + PRODUCT_MODULE_NAME = react_native_notifications; + PRODUCT_NAME = "react-native-notifications"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -17963,22 +18474,22 @@ }; name = Release; }; - 4EAE7D351A58DE0E5AB450C17CEE9914 /* Debug */ = { + 50AF968E8B4EAC298B47F528B92D3963 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC474EE9137ED81E7D839D058C0399E7 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 21FCEE22A42237A257DAF8C61299F01A /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_extensions_share; - PRODUCT_NAME = "rn-extensions-share"; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -17988,6 +18499,32 @@ }; name = Debug; }; + 51AF375396651E77A71E223B10A36783 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1A220E229E2837D14F7625C22E7D6EE0 /* RNFirebase.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFirebase/RNFirebase-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFirebase; + PRODUCT_NAME = RNFirebase; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 51BEE5C69A7C01256279ABA809F90FD5 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 966A730FD988CC463C03A21DF8759D5F /* GoogleUtilities.xcconfig */; @@ -18013,59 +18550,7 @@ }; name = Debug; }; - 54BBC96F142317FA8F603D02E198FEB1 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 699C1B32668455A01B0F755AF0C6FAE0 /* UMReactNativeAdapter.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMReactNativeAdapter; - PRODUCT_NAME = UMReactNativeAdapter; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 57BF6992AF50A2B6F3D45A5239F6D462 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AA6EAECF946863A592F8B174348C215F /* EXFileSystem.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXFileSystem/EXFileSystem-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXFileSystem; - PRODUCT_NAME = EXFileSystem; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 5851134C2AB3F9BCAF254DDDCFAE3842 /* Release */ = { + 52F8749E585927D24862005C2FB1EC3A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */; buildSettings = { @@ -18091,9 +18576,87 @@ }; name = Release; }; + 54E37CBFEB71B19F65F89B3BA03EEB64 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 04150410C97351ED83FFA36169E6394C /* react-native-background-timer.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_background_timer; + PRODUCT_NAME = "react-native-background-timer"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 558DB233A909F0875B690EBBBAFD32B1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D03C8415FA4550FD730BE0939D8F5137 /* RNImageCropPicker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 57BF6992AF50A2B6F3D45A5239F6D462 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6455A175DEBF2D9CDEF577076EE70D5A /* EXFileSystem.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXFileSystem/EXFileSystem-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXFileSystem; + PRODUCT_NAME = EXFileSystem; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 58520B8EDF29441D5542A8FD82654496 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C545735810BCDE8E4DAA5F060FE6F679 /* EXPermissions.xcconfig */; + baseConfigurationReference = A28BAC373C876446EC9228F5C92E988A /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18119,7 +18682,7 @@ }; 5AFB2A16F4181B79E7009920B2A182DD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 568452C2C96D11263A167AC93E048422 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 3E095BFA72745BB4B2699EA642F07B49 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18145,7 +18708,7 @@ }; 5D79B0E5C34FEB01909F4F77BA32F7B8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 29BA34328BF0E8648F5516CD167430DA /* React.xcconfig */; + baseConfigurationReference = 68A84FAF1789DF09E36A7CF9631D38A7 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -18160,7 +18723,7 @@ }; 5E225B03D92E57F4A85096E0EED6648D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AA6EAECF946863A592F8B174348C215F /* EXFileSystem.xcconfig */; + baseConfigurationReference = 6455A175DEBF2D9CDEF577076EE70D5A /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18210,113 +18773,74 @@ }; name = Debug; }; - 61F6135D8F328E33AE99C51DF8575114 /* Release */ = { + 61E4CD981892A45A76C3AD722805CA29 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8A02CABBC0F331E64A1355DF0D601070 /* RNFirebase.xcconfig */; + baseConfigurationReference = F3E5FA7017063441BC562E0F635EDCA7 /* RSKImageCropper.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFirebase/RNFirebase-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFirebase; - PRODUCT_NAME = RNFirebase; + PRODUCT_MODULE_NAME = RSKImageCropper; + PRODUCT_NAME = RSKImageCropper; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 638B5AA4578E7E84867649B17531A6CA /* Release */ = { + 62FFE31C9D27D1EFEAEAF232C1B88D38 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 31E7AFF2B180CF47F7288AD37E5740AC /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 264627E3CA89FF063B3D63B1E87F5CBD /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_document_picker; - PRODUCT_NAME = "react-native-document-picker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 64805D780A64FC131F80F363A82E686F /* Release */ = { + 645F96FCC07B20A35C339588B02CE3CA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; + baseConfigurationReference = D03C8415FA4550FD730BE0939D8F5137 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; - }; - 65AC2B22C4AB6E1C0EDA431A2655E857 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1921053468A32E19E83EC2F76588C0EE /* react-native-orientation-locker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; + name = Debug; }; 672C487206D2797ABC92CBBFD5386D01 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54597076F8586D36ACFB291640533A1D /* React-fishhook.xcconfig */; + baseConfigurationReference = DBAD3F6269AD912F0C5E9FB5407F4611 /* React-fishhook.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18342,7 +18866,7 @@ }; 6ADA639A1781B6DCDC2A02A958578CAB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6A11436ACF363A8BBAD6DDAD84F45148 /* React-RCTWebSocket.xcconfig */; + baseConfigurationReference = 2FE9C10127545E3D0A0F331A65C787A3 /* React-RCTWebSocket.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18365,9 +18889,34 @@ }; name = Debug; }; + 6C062BD025806D6DD026CEFE803630E5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 971AC3B6D311A190C6234E4CBAAB871D /* react-native-document-picker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_document_picker; + PRODUCT_NAME = "react-native-document-picker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 6C2D12EEE50D5CACDEE77181E447461E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C2CD7B403F1A6BE50FF43DD9FD6D900 /* React-DevSupport.xcconfig */; + baseConfigurationReference = D8B6B7FA0B93A56E44C963046301ABC0 /* React-DevSupport.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18391,24 +18940,9 @@ }; name = Release; }; - 6D4F7CE0A8AA0523C6BA3BDDB54F0445 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A95AF02CBA1CED11C1C7B9BB935F90CB /* UMBarCodeScannerInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 7184A0EEC8E4ABDAABE108C2E99367B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F6D805506141A7A985903CE9EA0CFA4 /* EXHaptics.xcconfig */; + baseConfigurationReference = 05F4B4868CB7B7DF12D2442ABC2F6522 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18435,7 +18969,7 @@ }; 71A4F07B44824C6890F9602C5F22F2A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 72BDF6A87AFB7D7C47BC11B79D56E1FD /* EXConstants.xcconfig */; + baseConfigurationReference = A951F3D4A1107C4876D413494143795F /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18486,6 +19020,32 @@ }; name = Release; }; + 74237F1392AA5C6B4A7A238F4007A0E2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 434244749BC458AFB264A6381417A25B /* RNUserDefaults.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNUserDefaults/RNUserDefaults-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNUserDefaults; + PRODUCT_NAME = RNUserDefaults; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 743E6CB11FEBC88076323FDC9583496D /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 8234A92AE9AB0AF5F299B81933E1478F /* Crashlytics.xcconfig */; @@ -18500,6 +19060,32 @@ }; name = Debug; }; + 74ABCC7F30E875C52A2622CA089E1F63 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C9F0C31A769D053FF8300D615339570D /* rn-extensions-share.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = rn_extensions_share; + PRODUCT_NAME = "rn-extensions-share"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 75B4996794BE863F09D2FB4C1CBB5130 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = D692DE8FDBB660E94D7E45841B4028F8 /* Firebase.xcconfig */; @@ -18515,9 +19101,34 @@ }; name = Release; }; + 75B8CDB2962950B78121D15329BB4861 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E50DED67BAFD9C52C33C3946003ECCE3 /* RNScreens.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 76678CE0C96E75B1EE71786C276EEA06 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 568452C2C96D11263A167AC93E048422 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 3E095BFA72745BB4B2699EA642F07B49 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18540,93 +19151,22 @@ }; name = Debug; }; - 7B0AB2B18E26B253E9AB14523A102F1E /* Debug */ = { + 7C67CC49E5266D28EAF36952A3DC5FBB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0187A980721F3284C1FC1D348AC535AB /* UMCameraInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 7DD57E75207914299A646713D66776EF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 648F3D5111FE66F4B086E0F978A46A36 /* UMFaceDetectorInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 7F7B9A3CDED7EB9807A60D4D88EFA5C6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F76D5060EA02A15F31CFDCE3EE6F1C74 /* UMImageLoaderInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 8031780339B13B2998599FEBBD3167B6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */; + baseConfigurationReference = 33992860045FCB2FD0DD2AE312747C65 /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-video/react-native-video-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 804103C2BE8E7D88910128B3A12F066B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 82F942876525889EA4EFA2D8290FE707 /* RNVectorIcons.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNVectorIcons; - PRODUCT_NAME = RNVectorIcons; + PRODUCT_MODULE_NAME = react_native_video; + PRODUCT_NAME = "react-native-video"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -18637,47 +19177,22 @@ }; name = Release; }; - 81D7335536F558CD0803758D8249B231 /* Debug */ = { + 7F758164936DA5128E6ED80D42D89FF5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 406386C3CB15CABF8D09B9ED96B411C3 /* RNFastImage.xcconfig */; + baseConfigurationReference = B44606B3799D248F8595252180862355 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFastImage; - PRODUCT_NAME = RNFastImage; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 833DB84BDE35A549E9380C3A85A9CF32 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 82F942876525889EA4EFA2D8290FE707 /* RNVectorIcons.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNVectorIcons; - PRODUCT_NAME = RNVectorIcons; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -18687,9 +19202,9 @@ }; name = Debug; }; - 84CEAACFE79405EF17500B37C25D617C /* Release */ = { + 81672B713DDA47E68AEF49C9FCCD4DF2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 699C1B32668455A01B0F755AF0C6FAE0 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 590684422CF24F904D23E61DCDF416DF /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18714,9 +19229,40 @@ }; name = Release; }; + 81CE57C024650A1AE6D77234940D23C7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7E79B514F8D9F9FDE9BA28A45CCA0685 /* UMImageLoaderInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 853795DF5F9F572FA2AF3B4171B60C12 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 264627E3CA89FF063B3D63B1E87F5CBD /* UMFaceDetectorInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 87DA0DE9C1439E3B04E087181D4CA6F3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89F9BB3C6633EF936F81979F8BFCDC38 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 1E29F6466E30ECFA65A6C1228F8F1C0B /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18741,7 +19287,7 @@ }; 89F443118C4719AE7610700F9760D924 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6AC231C91232C2774C79AC28F94242CF /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = CADCE6458B46F4D6B823AE5A9163FCB8 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -18755,57 +19301,45 @@ }; name = Release; }; - 8C11C9BBFC85E449A10FF21FE88EF218 /* Debug */ = { + 89FBDA320650EACD2E5A356FB5110B30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; + baseConfigurationReference = 28047A71A7C8EAD479869C5F7CF5A930 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; - PUBLIC_HEADERS_FOLDER_PATH = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 8C84C57F50A976B59EED7A1F4F797917 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F3E5FA7017063441BC562E0F635EDCA7 /* RSKImageCropper.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSKImageCropper; - PRODUCT_NAME = RSKImageCropper; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; + 8C3CCDBB4FBBD27F9C016C6060297035 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0094D08DC648CCF30D4F8C66575F20B7 /* Pods-RocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 8CD10A96907BCBB255ABB4DF48C938B0 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = CF725CC00D12DF34068FE21EB0BB2115 /* glog.xcconfig */; @@ -18906,9 +19440,34 @@ }; name = Debug; }; + 92214740F1A128028469E9E705F281F4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F2FA61B4732D7479B792379486BD21CF /* react-native-notifications.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_notifications; + PRODUCT_NAME = "react-native-notifications"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 9253AE167C9372BB1C6053F057520266 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 846B61E33897257C71D97E561AF1E959 /* React-RCTText.xcconfig */; + baseConfigurationReference = ABFE44D10BC96227DDE760CDA55459E1 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18933,7 +19492,7 @@ }; 94DBBA14F6D56D868771744040907746 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD5A2DEEABA693EEA1369A43A115AE28 /* React-RCTImage.xcconfig */; + baseConfigurationReference = D07C0F47608ABC69DF4310AE3BDE5E17 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18956,6 +19515,32 @@ }; name = Debug; }; + 95F800B1138449446B9660D5F6F20B0E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8502E942849E9FDFC67AC6A05C16C7CC /* react-native-webview.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 9613A0936E5F02E30C4F96343620B06B /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4FA7C78F56C449B41A76D32AABA514DD /* FirebaseAnalytics.xcconfig */; @@ -18971,48 +19556,9 @@ }; name = Release; }; - 98AC8AB6132B50EEAE02BE262815F806 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 648F3D5111FE66F4B086E0F978A46A36 /* UMFaceDetectorInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 9A6506AA41FF8FAC728DE32754C6A68C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C10B55917E78E59A3FE6D2B4762CEACD /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 9A673321A7FFE55BBBAF0A2F894F0391 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 842909DD359C276BF1C81241DE9BC410 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 51BEE34DA24C1ED0427C0897FC68DCAC /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19036,6 +19582,30 @@ }; name = Release; }; + 9B02F630676E83D6875E2D30A03B852E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 9B7FD3ACEAD10EF6B00C0E17837492A5 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = C6C822CDF50173D41B4EB726BBF1F243 /* GoogleAppMeasurement.xcconfig */; @@ -19053,7 +19623,7 @@ }; 9CB909A72ECF8E9F5C4354791A034EFA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C678B79CB97B799981B8664C5406552A /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 4CFC24095D62611CEC3E3EE24D91CD0C /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19076,57 +19646,28 @@ }; name = Debug; }; - 9CC5F5137F020850B020AC36C40F7C70 /* Release */ = { + 9D2C958C09DE3370D223BC62D4EBC863 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3A9B8F98A954C6D4ACC59140948DA04F /* RNReanimated.xcconfig */; + baseConfigurationReference = D04FDD6B4AC745C08223B4D304F993AA /* Pods-ShareRocketChatRN.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNReanimated/RNReanimated-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNReanimated; - PRODUCT_NAME = RNReanimated; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; - }; - 9DFCABA310A8CC6EC20AC3E414CAF1D5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 60512C253821640C58CC1929B5D15C6C /* RNImageCropPicker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; + name = Debug; }; 9EACF4A29D44986AF782D41BEBF433BB /* Release */ = { isa = XCBuildConfiguration; @@ -19196,7 +19737,7 @@ }; 9FE9F537B938EA1022C9783A442A20B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 29BA34328BF0E8648F5516CD167430DA /* React.xcconfig */; + baseConfigurationReference = 68A84FAF1789DF09E36A7CF9631D38A7 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19208,122 +19749,22 @@ }; name = Debug; }; - 9FF0B9FB405A094BAA1147674590BB0E /* Debug */ = { + A1D40B3523A27C34329FE8FF0ABE464B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */; + baseConfigurationReference = DF70675D405738BB60B5633AA4B8714D /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImageWebPCoder; - PRODUCT_NAME = SDWebImageWebPCoder; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A0B684573929545293792E1CFEE5384A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B3FF9EE5CE7E7356D81DD5DAA7DCFC52 /* react-native-webview.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_webview; - PRODUCT_NAME = "react-native-webview"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A0FCAFCD960E09285E1D84C813A1099A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 60512C253821640C58CC1929B5D15C6C /* RNImageCropPicker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A11795ED4A6270C5FF2D00FF180F9D9D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 91BA5B1704468E6FC5018E6F128D5E51 /* RNUserDefaults.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNUserDefaults/RNUserDefaults-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNUserDefaults; - PRODUCT_NAME = RNUserDefaults; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A2569DD2B2D9BC93ABB3DEAC7D19AC89 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B3FF9EE5CE7E7356D81DD5DAA7DCFC52 /* react-native-webview.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_webview; - PRODUCT_NAME = "react-native-webview"; + PRODUCT_MODULE_NAME = rn_fetch_blob; + PRODUCT_NAME = "rn-fetch-blob"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -19334,32 +19775,9 @@ }; name = Release; }; - A301E1113E6BFF38AB0B86178D524AA9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6299B07F20A050CCA97459DE44CE30E6 /* Pods-ShareRocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; A354E3CA95DF65F482A0F806A0DD9CA3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89F9BB3C6633EF936F81979F8BFCDC38 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 1E29F6466E30ECFA65A6C1228F8F1C0B /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19383,30 +19801,31 @@ }; name = Release; }; - A4DED5B9B17A35A17BB56C9A314FE91D /* Debug */ = { + A69FB7AB78759F696301A489C3EB017E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3DE007E20FA8C78A0948986C51865DDC /* react-native-background-timer.xcconfig */; + baseConfigurationReference = AF1BCA314238149BFE80E23DCAF8D959 /* react-native-splash-screen.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_background_timer; - PRODUCT_NAME = "react-native-background-timer"; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; AAB3F3D50C2C496CFAD1E28DCF1F196E /* Debug */ = { isa = XCBuildConfiguration; @@ -19424,7 +19843,7 @@ }; ABFDBFC0315AE3569A8E854CEDE3C3AC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 584906AE95C9BBDA7D0B29721858CCA2 /* React-jsi.xcconfig */; + baseConfigurationReference = EAC8BB2D12EF30020371B6F5020F4D55 /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19500,9 +19919,35 @@ }; name = Release; }; + AE55920BF96E62D01FEDFEC908EE857C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 80DB0265FA24D1C64F5216C0D6E437ED /* RNAudio.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNAudio/RNAudio-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNAudio; + PRODUCT_NAME = RNAudio; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; AF8417C057B9816BCE5655C70FFD43A1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF810FA16B38A4200C4D2DB7A371E41C /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 2D128EC9C661C9123DB9482456EFF500 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19610,9 +20055,34 @@ }; name = Release; }; + B28350875A6F3472F43EA0668B845088 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19AE973E6A93A34E9E6C31688D116A0F /* RNFastImage.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFastImage; + PRODUCT_NAME = RNFastImage; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; B352186F58CB5AA1263A74709E102311 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E77753674C1F425FE523084B4E3FF6F /* React-jsinspector.xcconfig */; + baseConfigurationReference = 01C6F3D6E8755135A8E21A5D284EE410 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19662,9 +20132,59 @@ }; name = Release; }; + B425C2544A337028A9897467BEA70AA3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B707716803D60112FF4D8DF696CFFCA4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 80DB0265FA24D1C64F5216C0D6E437ED /* RNAudio.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNAudio/RNAudio-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNAudio; + PRODUCT_NAME = RNAudio; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; B774C6F49B847C5130C7F54F17F876F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F75FEAB11523335F43348DB90329CE1B /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = D641EC74A759144A3FC05385DA4F222D /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19689,47 +20209,22 @@ }; name = Release; }; - B8D64314FE6FFCD238FD17AD7896B8F1 /* Debug */ = { + B934E1209DBE3F7C7145361B2A6C902B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4196A7AB8F9939C9ED867CD59972DD67 /* RNScreens.xcconfig */; + baseConfigurationReference = 276D82CCDA6AA238DEA838C835D316B9 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - B94153FEF1C1A23E709DE7F34D2F51B5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CD38ABEF16475EF38D017FEB6EE314C4 /* react-native-keyboard-input.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_keyboard_input; - PRODUCT_NAME = "react-native-keyboard-input"; + PRODUCT_MODULE_NAME = RNVectorIcons; + PRODUCT_NAME = RNVectorIcons; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -19742,7 +20237,7 @@ }; BAE085A53D3FA3635BB1634F1AEEF941 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 584906AE95C9BBDA7D0B29721858CCA2 /* React-jsi.xcconfig */; + baseConfigurationReference = EAC8BB2D12EF30020371B6F5020F4D55 /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19767,7 +20262,7 @@ }; BB2B3178D31C773E47CE22AA4A0C96E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 67619511CA0BB191FE2A5FB9D03E0C67 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = C39FE0D227A933495D13609400A465DD /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19781,24 +20276,35 @@ }; name = Release; }; - BD2D74FD1F218D2A9A6954AE130936F4 /* Debug */ = { + BC1EE15C497FCE61C0275E561A97536D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE064E4404A50B72546C86AA964CD8EF /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; BD846AF2658401B6E969F0E223F9598F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F75FEAB11523335F43348DB90329CE1B /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = D641EC74A759144A3FC05385DA4F222D /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19822,9 +20328,50 @@ }; name = Debug; }; + BE33CCCC1CACFFDBB8F2E7F22CC4EC34 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7E79B514F8D9F9FDE9BA28A45CCA0685 /* UMImageLoaderInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + BF2CA80ADF1462146D939703F86ABFBD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8502E942849E9FDFC67AC6A05C16C7CC /* react-native-webview.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; BF6A4AAA192E749AD5201D9CBEBF857A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABAAA194EC2FD1FC2CD955581F27A919 /* React-Core.xcconfig */; + baseConfigurationReference = 268495A169C2E34E1FAFB7A056526021 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19849,7 +20396,7 @@ }; C0F3DA039D0A3252A975541DB249211F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6A11436ACF363A8BBAD6DDAD84F45148 /* React-RCTWebSocket.xcconfig */; + baseConfigurationReference = 2FE9C10127545E3D0A0F331A65C787A3 /* React-RCTWebSocket.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19875,7 +20422,7 @@ }; C1533DFEDEBF00D3A5C7E749E0CE0875 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8448A4C474D063232512F1EED8F721B6 /* UMCore.xcconfig */; + baseConfigurationReference = B19BFB70C36EAB835DCB038B02FFAF33 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19925,7 +20472,7 @@ }; C247B44F553069D47318E2F569152E91 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E77753674C1F425FE523084B4E3FF6F /* React-jsinspector.xcconfig */; + baseConfigurationReference = 01C6F3D6E8755135A8E21A5D284EE410 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19948,35 +20495,34 @@ }; name = Debug; }; - C2DB16001057E3704281E7F2382C8D9F /* Release */ = { + C41966C8D3F662EC1822F1B198166D23 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E290318D93487F59DE5C31910FE61D08 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-tracking-view/react-native-keyboard-tracking-view-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_keyboard_tracking_view; - PRODUCT_NAME = "react-native-keyboard-tracking-view"; + PRODUCT_MODULE_NAME = SDWebImageWebPCoder; + PRODUCT_NAME = SDWebImageWebPCoder; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; C4E0AFE80FD54F1800690C4BAA41ED8A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6AC231C91232C2774C79AC28F94242CF /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = CADCE6458B46F4D6B823AE5A9163FCB8 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19989,42 +20535,9 @@ }; name = Debug; }; - C5038760A58574D2B43C63980411EB0D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2398050823277AB4E2D9D3FD20D0736B /* UMFontInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - C5119C429B6C14F4F39EBDC0D2D4A427 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; - INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = QBImagePicker; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; C641005C76C55F76BC43907CFB03C710 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8E09A758E68C42F689D709786EFDCADD /* EXAV.xcconfig */; + baseConfigurationReference = D0E0D454CD65A5A55B90B4773CE2C624 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20050,7 +20563,7 @@ }; C6B28903F4113BB1D41A4608F8410891 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C2CD7B403F1A6BE50FF43DD9FD6D900 /* React-DevSupport.xcconfig */; + baseConfigurationReference = D8B6B7FA0B93A56E44C963046301ABC0 /* React-DevSupport.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20073,9 +20586,34 @@ }; name = Debug; }; + C74D445A26CF10E7D58396C70162A54A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 50304151A42A116EF5ABB4185C9285FB /* react-native-keyboard-input.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_keyboard_input; + PRODUCT_NAME = "react-native-keyboard-input"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; C83000CE2C12D66BE8DCDEAF0BE81B4E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 67619511CA0BB191FE2A5FB9D03E0C67 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = C39FE0D227A933495D13609400A465DD /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20088,9 +20626,61 @@ }; name = Debug; }; + C88D3FA57ECCE5681A8821D3D2A7FB6B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 21FCEE22A42237A257DAF8C61299F01A /* RNDeviceInfo.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + C89DDB4352D33B257C582D3F918F1717 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E50DED67BAFD9C52C33C3946003ECCE3 /* RNScreens.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; C922EB6B4FD963E8136F6E0AAD365EE0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF810FA16B38A4200C4D2DB7A371E41C /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 2D128EC9C661C9123DB9482456EFF500 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20116,7 +20706,7 @@ }; CAFA7F89ACEEEA90923DB4DD5F1BB93E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 153D0D323854AC8FACDFA0774D1E9380 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 945E4BED7CE5F4EFA859A013503B1D1E /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20140,22 +20730,22 @@ }; name = Debug; }; - CD5BF8F017EAAA4F8D57A033A878F9F7 /* Release */ = { + CEE5B97F719A04BCD1CA5FDF59546BF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 371674DF59BF4D8C2E4FA2F9F98BAA03 /* react-native-notifications.xcconfig */; + baseConfigurationReference = F3E5FA7017063441BC562E0F635EDCA7 /* RSKImageCropper.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_notifications; - PRODUCT_NAME = "react-native-notifications"; + PRODUCT_MODULE_NAME = RSKImageCropper; + PRODUCT_NAME = RSKImageCropper; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -20166,33 +20756,9 @@ }; name = Release; }; - CE2F9982EA487DB993AD126B49F89B2D /* Release */ = { + D4289B37CBE9FFEA1478E96C6F329078 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B6AF5E20CB5B9563AC579F8BDD184D5 /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - CF6437B2DBE9AC49B1ED7EDAC005CEFF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A95AF02CBA1CED11C1C7B9BB935F90CB /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 746672087CD70BDDA884FC8FA203FA94 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20206,45 +20772,22 @@ }; name = Release; }; - D10503B1F7EB7ECF2DEDDB0F0A25B540 /* Debug */ = { + D43ADB9D40CBC7C4F2F4F966E5D2EA7F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C6A7F35A722F51724595F8DFE814079 /* Pods-RocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - D284EA7473A8D1CE3CCC6AE5B698F697 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4196A7AB8F9939C9ED867CD59972DD67 /* RNScreens.xcconfig */; + baseConfigurationReference = 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; + PRODUCT_MODULE_NAME = SDWebImageWebPCoder; + PRODUCT_NAME = SDWebImageWebPCoder; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -20255,22 +20798,22 @@ }; name = Release; }; - D66001B5EAFF16E4B47BD463535AA03F /* Debug */ = { + D60E61E12FBC91BD0178AF005A2C6A11 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 371674DF59BF4D8C2E4FA2F9F98BAA03 /* react-native-notifications.xcconfig */; + baseConfigurationReference = BCFC653E636506E7DCC03D463B5CE0CF /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-tracking-view/react-native-keyboard-tracking-view-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_notifications; - PRODUCT_NAME = "react-native-notifications"; + PRODUCT_MODULE_NAME = react_native_keyboard_tracking_view; + PRODUCT_NAME = "react-native-keyboard-tracking-view"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -20280,6 +20823,58 @@ }; name = Debug; }; + D8154CBB3C5E509548EA18D8986A075C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D25D9149BE6DFA8BC723C813E68DC3B6 /* RNGestureHandler.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNGestureHandler; + PRODUCT_NAME = RNGestureHandler; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + D84A6287369686A2C4147E19EA087545 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 50304151A42A116EF5ABB4185C9285FB /* react-native-keyboard-input.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_keyboard_input; + PRODUCT_NAME = "react-native-keyboard-input"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; DA2039C3E2F2E745D7BB89E3A949C64C /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4FA7C78F56C449B41A76D32AABA514DD /* FirebaseAnalytics.xcconfig */; @@ -20296,7 +20891,7 @@ }; DAA9E79193753408477948DB68A1D5A6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 72BDF6A87AFB7D7C47BC11B79D56E1FD /* EXConstants.xcconfig */; + baseConfigurationReference = A951F3D4A1107C4876D413494143795F /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20320,35 +20915,9 @@ }; name = Debug; }; - DB4D18AE8EAD2057A05FBCF02427ADF2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 44E0238B51B8FA5E394347513EEB7564 /* RNAudio.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNAudio/RNAudio-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNAudio; - PRODUCT_NAME = RNAudio; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; DCADD16918FEC19762CB4894ED30DC20 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA16AB71853B8548F47605009FD76347 /* yoga.xcconfig */; + baseConfigurationReference = 168BC584847C8AA9E4E4EF4D89EFC6A4 /* yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20395,56 +20964,6 @@ }; name = Debug; }; - DFD2EBDE6D1238F291DEE62141B33A71 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1921053468A32E19E83EC2F76588C0EE /* react-native-orientation-locker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - E074FBEA92F3505A38046A5A3F6D5CB3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 44E0238B51B8FA5E394347513EEB7564 /* RNAudio.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNAudio/RNAudio-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNAudio; - PRODUCT_NAME = RNAudio; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; E1E8D1C102C3C406595FEEA2AEE9B2C7 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 1D5ED9A3BAEDC5204F1097FA5BF68A12 /* boost-for-react-native.xcconfig */; @@ -20459,55 +20978,31 @@ }; name = Debug; }; - E236EBCDEC16662B37D79984EB52E6D4 /* Debug */ = { + E24738869B55A4A3F974BE8D52367B37 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 674E2248562C9240A2BE77013BEB138E /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 9C55E5C2CC45C1DAE13B637EC266ADAC /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_fetch_blob; - PRODUCT_NAME = "rn-fetch-blob"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - E257D509864EA9404725B737A6F118CE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3A9B8F98A954C6D4ACC59140948DA04F /* RNReanimated.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNReanimated/RNReanimated-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNReanimated; - PRODUCT_NAME = RNReanimated; + PRODUCT_MODULE_NAME = react_native_jitsi_meet; + PRODUCT_NAME = "react-native-jitsi-meet"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; E3FAE0F84AC193A7C34D16F7AA2AC7C7 /* Debug */ = { isa = XCBuildConfiguration; @@ -20533,9 +21028,112 @@ }; name = Debug; }; + E5053AAE5B892602FA80A6C0F4AA80BF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 590684422CF24F904D23E61DCDF416DF /* UMReactNativeAdapter.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMReactNativeAdapter; + PRODUCT_NAME = UMReactNativeAdapter; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + E522992F5C49E288364C9E39B691EE3E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BCFC653E636506E7DCC03D463B5CE0CF /* react-native-keyboard-tracking-view.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-tracking-view/react-native-keyboard-tracking-view-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_keyboard_tracking_view; + PRODUCT_NAME = "react-native-keyboard-tracking-view"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E5B7920A72262D1530598E1E46614083 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 36D564D5DE5EDEE645A65BAB86FBC19C /* RNReanimated.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNReanimated/RNReanimated-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNReanimated; + PRODUCT_NAME = RNReanimated; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E5F416352ADA30568225C800195FCB24 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1A220E229E2837D14F7625C22E7D6EE0 /* RNFirebase.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFirebase/RNFirebase-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFirebase; + PRODUCT_NAME = RNFirebase; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; E637AA34C49088946EFA99345E822C5B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA16AB71853B8548F47605009FD76347 /* yoga.xcconfig */; + baseConfigurationReference = 168BC584847C8AA9E4E4EF4D89EFC6A4 /* yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20559,22 +21157,47 @@ }; name = Release; }; - E71E1A5BD35DAD8CDCA2908078BBD9B6 /* Release */ = { + E8A571A78B77A5A0717B1DE3165E87A2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 47A1FBCB4AA74BDA0C9EE869E95E12B2 /* react-native-video.xcconfig */; + baseConfigurationReference = AF1BCA314238149BFE80E23DCAF8D959 /* react-native-splash-screen.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-video/react-native-video-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_video; - PRODUCT_NAME = "react-native-video"; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + E9E48AE37A51A6CEA72860DC9E171A57 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 971AC3B6D311A190C6234E4CBAAB871D /* react-native-document-picker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_document_picker; + PRODUCT_NAME = "react-native-document-picker"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -20599,21 +21222,6 @@ }; name = Debug; }; - EE2E3ACFCFDABB9B55859EF73E8CE695 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2398050823277AB4E2D9D3FD20D0736B /* UMFontInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; EEEBF130660994007190EF36EE43CA1F /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 40DE467A1FC32C3FECA2F64129393790 /* FirebaseCoreDiagnosticsInterop.xcconfig */; @@ -20629,34 +21237,9 @@ }; name = Release; }; - EF52285349069A6A205726106113BC30 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8A02CABBC0F331E64A1355DF0D601070 /* RNFirebase.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFirebase/RNFirebase-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFirebase; - PRODUCT_NAME = RNFirebase; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; EF6B775701403506119EF88B2F0EC185 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 842909DD359C276BF1C81241DE9BC410 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 51BEE34DA24C1ED0427C0897FC68DCAC /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20679,30 +21262,21 @@ }; name = Debug; }; - F019DA31EDDFB6644BD2E6EF19F64B09 /* Debug */ = { + F01A91454FBA871FFA5CF4103CA3CC36 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E290318D93487F59DE5C31910FE61D08 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 90B6FAC077C3745634A7B05D249DF3D1 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-tracking-view/react-native-keyboard-tracking-view-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_keyboard_tracking_view; - PRODUCT_NAME = "react-native-keyboard-tracking-view"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; F1D92D3D079ED8C916083D517D6DFD76 /* Debug */ = { isa = XCBuildConfiguration; @@ -20720,7 +21294,7 @@ }; F21134E5221C7858F0C07A275E43964D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9BE6C950D5BB483CC324D666974AF5A1 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 729F00B4AE6BE50E6FFAA94DD7D03BA9 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20734,34 +21308,9 @@ }; name = Release; }; - F387D41E832EDEA08E090D00D386B43E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 31E7AFF2B180CF47F7288AD37E5740AC /* react-native-document-picker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_document_picker; - PRODUCT_NAME = "react-native-document-picker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; F6D9706C270B1DF00D0365B34B090AA3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8448A4C474D063232512F1EED8F721B6 /* UMCore.xcconfig */; + baseConfigurationReference = B19BFB70C36EAB835DCB038B02FFAF33 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20786,35 +21335,9 @@ }; name = Release; }; - F79BF1C93004BE6FFD8C9B3EA447F809 /* Release */ = { + FA14594450CE9354330D244F1550A157 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1035C2BE795A043B0B7A2E1BF812356C /* RNGestureHandler.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNGestureHandler; - PRODUCT_NAME = RNGestureHandler; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - F9422374DBBD2E7ECD051D4FBD8767EE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D2B7653E4E2696C673E698748E29AD49 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 28047A71A7C8EAD479869C5F7CF5A930 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20824,9 +21347,33 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; + }; + FB17AA00C530C2FF4FB2962EF9B8A022 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9C55E5C2CC45C1DAE13B637EC266ADAC /* react-native-jitsi-meet.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_jitsi_meet; + PRODUCT_NAME = "react-native-jitsi-meet"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; }; FB5FB497584D723D4D3826561EF4B46A /* Release */ = { isa = XCBuildConfiguration; @@ -20843,65 +21390,23 @@ }; name = Release; }; - FE04283C3308B88B8F13E74A365C0817 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 47A1FBCB4AA74BDA0C9EE869E95E12B2 /* react-native-video.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-video/react-native-video-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_video; - PRODUCT_NAME = "react-native-video"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - FF0B21F32BA50FCA2FD34B16B91C7C5E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 82DAE08CF911CB36FC4E0F303C610742 /* RNLocalize.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNLocalize; - PRODUCT_NAME = RNLocalize; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 07B39626AFBB937AC7C7E9F353D736B2 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { + 049B8B332EB11656CDC7DCF766756356 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3B74741E92EE5C406A9A3740117E5C21 /* Debug */, - F79BF1C93004BE6FFD8C9B3EA447F809 /* Release */, + FA14594450CE9354330D244F1550A157 /* Debug */, + 89FBDA320650EACD2E5A356FB5110B30 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 06B6B4B0C4E6CF55F6E8489C41D2748C /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D60E61E12FBC91BD0178AF005A2C6A11 /* Debug */, + E522992F5C49E288364C9E39B691EE3E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -20933,15 +21438,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0A54DD530A81A29031BF56BB45050788 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22DC88D7235B32149903110D14ED4324 /* Debug */, - 4A89FD08037DCA6821FF67791CFD02AE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 0BD1CF2038743D6EFCE0862D6E37F188 /* Build configuration list for PBXNativeTarget "React-fishhook" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -20987,15 +21483,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 13E7FE983F4F14B725948DF39A16D53E /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9FF0B9FB405A094BAA1147674590BB0E /* Debug */, - 24A495C0B0E37F013863E9AB401AF682 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 17528847ED7361712D5774B3F57F412E /* Build configuration list for PBXNativeTarget "FirebaseInstanceID" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21005,6 +21492,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 18C91BACB87FFD2C685176379EFFFA6A /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C74D445A26CF10E7D58396C70162A54A /* Debug */, + D84A6287369686A2C4147E19EA087545 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 1CB324CFC7C9FDAD43D409360A8F980B /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21014,29 +21510,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1EE2E96E44227B97DA31BD29EA82F6ED /* Build configuration list for PBXNativeTarget "react-native-video" */ = { + 1E3CEAD86847EB89512B8535D41134F9 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - FE04283C3308B88B8F13E74A365C0817 /* Debug */, - E71E1A5BD35DAD8CDCA2908078BBD9B6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 21052F4686CC776F142FD08D178E0B1E /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 98AC8AB6132B50EEAE02BE262815F806 /* Debug */, - 7DD57E75207914299A646713D66776EF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 21C01E6A30957AD2C6DEDDD2BF202A5A /* Build configuration list for PBXNativeTarget "RNUserDefaults" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A11795ED4A6270C5FF2D00FF180F9D9D /* Debug */, - 3A4D3D0550D8C5E6BB70BA769467933C /* Release */, + 645F96FCC07B20A35C339588B02CE3CA /* Debug */, + 558DB233A909F0875B690EBBBAFD32B1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21050,6 +21528,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 24B611B9C2883241620591E4DA080752 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 50AF968E8B4EAC298B47F528B92D3963 /* Debug */, + C88D3FA57ECCE5681A8821D3D2A7FB6B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 24B89F48C1E0A6D71B768443A3063CC1 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 11A2ADB12D7207929A6E17A04F2A1D1A /* Debug */, + 74ABCC7F30E875C52A2622CA089E1F63 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 272C318C3C138518DD0B0FB5BF575E70 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21059,6 +21555,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 2734E23C0D7B6F0D2406CCC9F8088D17 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 75B8CDB2962950B78121D15329BB4861 /* Debug */, + C89DDB4352D33B257C582D3F918F1717 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 32553D55324936AEBD3E100D2FF9666E /* Build configuration list for PBXNativeTarget "glog" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21068,6 +21573,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 34D7AF1292B1A8222887EA38EEABDD5E /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 81CE57C024650A1AE6D77234940D23C7 /* Debug */, + BE33CCCC1CACFFDBB8F2E7F22CC4EC34 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 377E6D1EDB32A549F5367B374BD686F6 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21077,20 +21591,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3CFAC475A3E047DC5CD5E0A76C339474 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { + 446E24DE4555985BB978A251732A9E9F /* Build configuration list for PBXNativeTarget "react-native-video" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7F7B9A3CDED7EB9807A60D4D88EFA5C6 /* Debug */, - 4922F0FA5D1996EC11DA89F503F0CE16 /* Release */, + 07608AA2F9DF12B188A77221DDA70EE3 /* Debug */, + 7C67CC49E5266D28EAF36952A3DC5FBB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4364EE2B62C6DF503692F6CEAB9DF33B /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { + 44B0545DD8A272562D402855FAF06C13 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - A0B684573929545293792E1CFEE5384A /* Debug */, - A2569DD2B2D9BC93ABB3DEAC7D19AC89 /* Release */, + 8C3CCDBB4FBBD27F9C016C6060297035 /* Debug */, + 3545C6E7B2994066B3CD1655B23D69B9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21104,11 +21618,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 48B594EEC40609FD744E6BD513EB36C4 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { + 49785E0A2F51DE2E93D4D9FB31A63078 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { isa = XCConfigurationList; buildConfigurations = ( - EE2E3ACFCFDABB9B55859EF73E8CE695 /* Debug */, - C5038760A58574D2B43C63980411EB0D /* Release */, + C41966C8D3F662EC1822F1B198166D23 /* Debug */, + D43ADB9D40CBC7C4F2F4F966E5D2EA7F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21122,6 +21636,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 4CE8834FC7D3617E7058D9CCB524B118 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 48E2777619660D89908F92BEE3EF8462 /* Debug */, + D8154CBB3C5E509548EA18D8986A075C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4E9EBB3CB7ED80C08BF747C0AEDEF8DB /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + BF2CA80ADF1462146D939703F86ABFBD /* Debug */, + 95F800B1138449446B9660D5F6F20B0E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 5380914D16DC96F738FF00262B887FB1 /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21140,11 +21672,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5A7C688426568C2CFB3F7202B7B85805 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { + 572A89A4EF230BB3AC70E4360E22B1BF /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8C11C9BBFC85E449A10FF21FE88EF218 /* Debug */, - 64805D780A64FC131F80F363A82E686F /* Release */, + 61E4CD981892A45A76C3AD722805CA29 /* Debug */, + CEE5B97F719A04BCD1CA5FDF59546BF0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21158,11 +21690,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5E11E7D3C1A17A2026F160CE852A7E49 /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { + 5F27CA1493EAAD61C04756E957BCD036 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */ = { isa = XCConfigurationList; buildConfigurations = ( - E257D509864EA9404725B737A6F118CE /* Debug */, - 9CC5F5137F020850B020AC36C40F7C70 /* Release */, + 1913A0E53EBBEAEA7677136566750686 /* Debug */, + 54E37CBFEB71B19F65F89B3BA03EEB64 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21221,24 +21753,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 697F15E2B93FC14623953F917DE20B38 /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 81D7335536F558CD0803758D8249B231 /* Debug */, - 35661F80091B00CC4666745D9FB00347 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6D29DC28C1E1E409101375C81620D131 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B8D64314FE6FFCD238FD17AD7896B8F1 /* Debug */, - D284EA7473A8D1CE3CCC6AE5B698F697 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 6D63296C2BA88313F34CCCE8D488568A /* Build configuration list for PBXNativeTarget "React-RCTActionSheet" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21248,6 +21762,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 6D6907C2CB5A3DA15C0E4529D0AE5AE2 /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 011BE9E7513717165AD7C142AAD23F3A /* Debug */, + D4289B37CBE9FFEA1478E96C6F329078 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 71E061D3039A427268B1CFAEBDC2B53F /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3A73173028FB6FA1C427E127F50D08EC /* Debug */, + E5B7920A72262D1530598E1E46614083 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 73A6CB4B327E5278A08D35B283F2B208 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21257,38 +21789,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7A81A6BDC6851D0C63C05ADB9BAB1210 /* Build configuration list for PBXNativeTarget "react-native-notifications" */ = { + 79A76C360FCCC7C66CEDA495CD904EEF /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - D66001B5EAFF16E4B47BD463535AA03F /* Debug */, - CD5BF8F017EAAA4F8D57A033A878F9F7 /* Release */, + 255109E40F01F33119407DD823ECB86D /* Debug */, + 4D40FF42E347DBEE2272D41112F776BA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7C1B1DB3C772C0604295220C0C9C537E /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { + 79EE540FD9C3424D60A461EEA4D00C1C /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - BD2D74FD1F218D2A9A6954AE130936F4 /* Debug */, - 3EEC3CADAC8E5BAC8CFC43F3927D58EE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 7C5B3997CD647FDD47AC1C92231027EB /* Build configuration list for PBXNativeTarget "RNFirebase" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EF52285349069A6A205726106113BC30 /* Debug */, - 61F6135D8F328E33AE99C51DF8575114 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 81FD16B8FD3C65C3E7676643A4554A55 /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F019DA31EDDFB6644BD2E6EF19F64B09 /* Debug */, - C2DB16001057E3704281E7F2382C8D9F /* Release */, + 1F89D481FDF013B0CA7F8476CB91F246 /* Debug */, + F01A91454FBA871FFA5CF4103CA3CC36 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21302,20 +21816,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 88CE5DC37B7F91F00E49B36CBF3D4470 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { + 86A765AD44887966A7A3315BE3C57661 /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - DFD2EBDE6D1238F291DEE62141B33A71 /* Debug */, - 65AC2B22C4AB6E1C0EDA431A2655E857 /* Release */, + B28350875A6F3472F43EA0668B845088 /* Debug */, + 4CEFD194358B97448E7CC184D712D6E7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8C2611FE63D276348E71E1CAEA055D6D /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { + 8A2CCD531432246442E09EC6F5FEB4AE /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2DA2BD27DA71AD0A4FB8AC079AA99E04 /* Debug */, - F9422374DBBD2E7ECD051D4FBD8767EE /* Release */, + E5053AAE5B892602FA80A6C0F4AA80BF /* Debug */, + 81672B713DDA47E68AEF49C9FCCD4DF2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21329,29 +21843,65 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 96628392AEC3BEA83B754EB9DFDEEF5A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + 8ECEB11468288A30F8DB621C69F1644A /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { isa = XCConfigurationList; buildConfigurations = ( - D10503B1F7EB7ECF2DEDDB0F0A25B540 /* Debug */, - CE2F9982EA487DB993AD126B49F89B2D /* Release */, + 6C062BD025806D6DD026CEFE803630E5 /* Debug */, + E9E48AE37A51A6CEA72860DC9E171A57 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9AE76BBC324E6F9FE0938FC926425959 /* Build configuration list for PBXNativeTarget "RNAudio" */ = { + 91266EF70B984B3019C96D4B18BD6959 /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */ = { isa = XCConfigurationList; buildConfigurations = ( - E074FBEA92F3505A38046A5A3F6D5CB3 /* Debug */, - DB4D18AE8EAD2057A05FBCF02427ADF2 /* Release */, + FB17AA00C530C2FF4FB2962EF9B8A022 /* Debug */, + E24738869B55A4A3F974BE8D52367B37 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9CD25D199A7D209053B1A6D33058A505 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { + 91C16A5A7166E27836558C3BD72D9533 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0A477D05D7F5C4800DD3A16D420A7B8D /* Debug */, - 8C84C57F50A976B59EED7A1F4F797917 /* Release */, + 33004FAE59F22FA77A5D7EE16985AD41 /* Debug */, + 04353F2A0C42F45F69781902FAF89000 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 98BCE1639E931BC22F4139B4A52B8C68 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0CB13E981CCE64989126F21184A360F4 /* Debug */, + B934E1209DBE3F7C7145361B2A6C902B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 98C7EC1C26974F811321EA4B1E625D89 /* Build configuration list for PBXNativeTarget "RNAudio" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B707716803D60112FF4D8DF696CFFCA4 /* Debug */, + AE55920BF96E62D01FEDFEC908EE857C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 9CC6E57C469F8897E6D375D12ACB4635 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 201E64895F21BBD0309EB55CC423E91B /* Debug */, + 41FF3984905DADC433691D92C7C5C35C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 9D4B5462E60EED2D68D488C168AF1218 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 62FFE31C9D27D1EFEAEAF232C1B88D38 /* Debug */, + 853795DF5F9F572FA2AF3B4171B60C12 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21383,20 +21933,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A2234434F8DD7D4B7287546DA8E8D857 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { + A35D1E9D96D9AEA34B09D3B751BF7FAE /* Build configuration list for PBXNativeTarget "RNUserDefaults" */ = { isa = XCConfigurationList; buildConfigurations = ( - 54BBC96F142317FA8F603D02E198FEB1 /* Debug */, - 84CEAACFE79405EF17500B37C25D617C /* Release */, + 1D83F61EA06F6F669003D3BA549F7AF9 /* Debug */, + 74237F1392AA5C6B4A7A238F4007A0E2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A39551F26F420EBAFBF81057101A9CDB /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + A6A3679287E555F007FBF3B7CAD7115F /* Build configuration list for PBXNativeTarget "RNFirebase" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0D325212BAAE3D0D68BA074244869799 /* Debug */, - 2857BA3BA61898E62F45ABD5A8A19000 /* Release */, + E5F416352ADA30568225C800195FCB24 /* Debug */, + 51AF375396651E77A71E223B10A36783 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + A6A9F1EF3EF06F27A3B5C4BCCC921911 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 08684CC2133A0BBFF31AE39AD72EDC19 /* Debug */, + A1D40B3523A27C34329FE8FF0ABE464B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21419,20 +21978,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AE9EF8B756AFF3666D08297F1873FA4B /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { + AA0E126356B568D0E222685F186B9B87 /* Build configuration list for PBXNativeTarget "react-native-notifications" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8031780339B13B2998599FEBBD3167B6 /* Debug */, - 5851134C2AB3F9BCAF254DDDCFAE3842 /* Release */, + 92214740F1A128028469E9E705F281F4 /* Debug */, + 509E4FB73E11D193BC9ADEDEF4814522 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B07A7D5286EF8EF52439BA37711CB287 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { + B336EFED8E17E4B9BF556FAAAA19E061 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7B0AB2B18E26B253E9AB14523A102F1E /* Debug */, - 2F3C8B54AC799EC980365CC443A95181 /* Release */, + 9D2C958C09DE3370D223BC62D4EBC863 /* Debug */, + 9B02F630676E83D6875E2D30A03B852E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21446,11 +22005,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B491213DF3C3DEF60E420E18DF883E6E /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + B689A3AD9EE221C3EAB574805F4CB162 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 406C26EE954A490A5BB2C25C490860EA /* Debug */, - C5119C429B6C14F4F39EBDC0D2D4A427 /* Release */, + 1D6EDBB62983FC53F26009028B8255FF /* Debug */, + 40D2C373FFF22C16B2CEB27E6473A5B9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21464,20 +22023,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B6D9D2F6728FC9F0B108A94BE9C915EB /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + B9AD805E3CBD0C047117AA77A3A11273 /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { isa = XCConfigurationList; buildConfigurations = ( - A0FCAFCD960E09285E1D84C813A1099A /* Debug */, - 9DFCABA310A8CC6EC20AC3E414CAF1D5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - B9B064DE2FC12B2F2FE92342734CA5FD /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1BD28DF7D33F1FAC93C8AEEFC4164C93 /* Debug */, - B94153FEF1C1A23E709DE7F34D2F51B5 /* Release */, + 7F758164936DA5128E6ED80D42D89FF5 /* Debug */, + 47D530B270665F6F7861DD3AA20C207A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21491,33 +22041,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CCA790BFEEE3D9306BBB3ED1F051E90B /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6D4F7CE0A8AA0523C6BA3BDDB54F0445 /* Debug */, - CF6437B2DBE9AC49B1ED7EDAC005CEFF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D4A43D6F0C7F0287272084A2C871A40F /* Build configuration list for PBXNativeTarget "react-native-background-timer" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A4DED5B9B17A35A17BB56C9A314FE91D /* Debug */, - 3512E30EC2A84F106581957DDA5785DC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D4BB3C4F5C855D4B8ECA7285B0D23945 /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F387D41E832EDEA08E090D00D386B43E /* Debug */, - 638B5AA4578E7E84867649B17531A6CA /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; D5F445878D2BF274AA19BE3720E017FD /* Build configuration list for PBXAggregateTarget "Firebase" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21536,11 +22059,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D7960CA09B91832E722635CDA2577304 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { + DD73867F3D651387CB62921782929A35 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4EAE7D351A58DE0E5AB450C17CEE9914 /* Debug */, - 2056599A55E26A118565C7DA4551D528 /* Release */, + E8A571A78B77A5A0717B1DE3165E87A2 /* Debug */, + A69FB7AB78759F696301A489C3EB017E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21590,11 +22113,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F56F64601FC4576B0BA807CB7B4ABD1F /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + F1C1FFA41F6335DDBA099BBEF62BB190 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - A301E1113E6BFF38AB0B86178D524AA9 /* Debug */, - 9A6506AA41FF8FAC728DE32754C6A68C /* Release */, + 20BBE95B34067FCB36CFF347F5ED9F2F /* Debug */, + 52F8749E585927D24862005C2FB1EC3A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F2D8480B27D0915D8966535107ED7DDC /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B425C2544A337028A9897467BEA70AA3 /* Debug */, + BC1EE15C497FCE61C0275E561A97536D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -21608,15 +22140,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F5E7A56037B6723CEC3F1621CAD4DD27 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E236EBCDEC16662B37D79984EB52E6D4 /* Debug */, - 42E893E0F5FA4F8D4A8CF0670383EDBA /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; F7B9206E26DEB0994836EBA1FC0E2DE6 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21635,15 +22158,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F925F9BAA42E6AFA85408E2751DDF8DB /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 833DB84BDE35A549E9380C3A85A9CF32 /* Debug */, - 804103C2BE8E7D88910128B3A12F066B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; F93AF2175AA7D4F2EE9F1E7D6AEAE1B7 /* Build configuration list for PBXAggregateTarget "FirebaseCoreDiagnosticsInterop" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -21671,15 +22185,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FCD233D8E41A0B207180B04AD9B6A8B5 /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 3993B13EC3AF0548E9080C521B45B82C /* Debug */, - FF0B21F32BA50FCA2FD34B16B91C7C5E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; /* End XCConfigurationList section */ }; rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index 6e073584..61841268 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown @@ -2259,6 +2259,211 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-jitsi-meet + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + ## react-native-keyboard-input MIT License diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist index 889ef34c..53b470e0 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist @@ -2486,6 +2486,217 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache-2.0 + Title + react-native-jitsi-meet + Type + PSGroupSpecifier + FooterText MIT License diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-frameworks.sh b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-frameworks.sh new file mode 100755 index 00000000..5ec9d0a7 --- /dev/null +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-frameworks.sh @@ -0,0 +1,165 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +function on_error { + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" +} +trap 'on_error $LINENO' ERR + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + elif [ -L "${binary}" ]; then + echo "Destination binary is symlinked..." + dirname="$(dirname "${binary}")" + binary="${dirname}/$(readlink "${binary}")" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + if [ -r "$source" ]; then + # Copy the dSYM into a the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .framework.dSYM "$source")" + binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then + strip_invalid_archs "$binary" + fi + + if [[ $STRIP_BINARY_RETVAL == 1 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" + fi + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identity + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + STRIP_BINARY_RETVAL=0 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=1 +} + + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios/WebRTC.framework" + install_framework "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios/JitsiMeet.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios/WebRTC.framework" + install_framework "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios/JitsiMeet.framework" +fi +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig index 3e3b75d7..d4eca3c7 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,8 +1,9 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-DevSupport" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTWebSocket" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-fishhook" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-DevSupport" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-RCTWebSocket" -l"React-cxxreact" -l"React-fishhook" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-DevSupport" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTWebSocket" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-fishhook" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-DevSupport" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-RCTWebSocket" -l"React-cxxreact" -l"React-fishhook" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index 3e3b75d7..d4eca3c7 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,8 +1,9 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-DevSupport" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTWebSocket" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-fishhook" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-DevSupport" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-RCTWebSocket" -l"React-cxxreact" -l"React-fishhook" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-DevSupport" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTWebSocket" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-fishhook" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-DevSupport" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-RCTWebSocket" -l"React-cxxreact" -l"React-fishhook" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown index 6e073584..61841268 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown @@ -2259,6 +2259,211 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-jitsi-meet + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + ## react-native-keyboard-input MIT License diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist index 889ef34c..53b470e0 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist @@ -2486,6 +2486,217 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache-2.0 + Title + react-native-jitsi-meet + Type + PSGroupSpecifier + FooterText MIT License diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index 864ea2d9..0dcab39f 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,8 +1,9 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-DevSupport" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTWebSocket" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-fishhook" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-DevSupport" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-RCTWebSocket" -l"React-cxxreact" -l"React-fishhook" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-DevSupport" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTWebSocket" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-fishhook" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-DevSupport" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-RCTWebSocket" -l"React-cxxreact" -l"React-fishhook" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index 864ea2d9..0dcab39f 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,8 +1,9 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-DevSupport" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTWebSocket" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-fishhook" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-DevSupport" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-RCTWebSocket" -l"React-cxxreact" -l"React-fishhook" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-DevSupport" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTWebSocket" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-fishhook" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-DevSupport" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-RCTWebSocket" -l"React-cxxreact" -l"React-fishhook" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-dummy.m b/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-dummy.m new file mode 100644 index 00000000..5fcbe984 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_react_native_jitsi_meet : NSObject +@end +@implementation PodsDummy_react_native_jitsi_meet +@end diff --git a/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch b/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet.xcconfig b/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet.xcconfig new file mode 100644 index 00000000..0d4f83d6 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet.xcconfig @@ -0,0 +1,10 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-DevSupport" "${PODS_ROOT}/Headers/Public/React-RCTActionSheet" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTImage" "${PODS_ROOT}/Headers/Public/React-RCTLinking" "${PODS_ROOT}/Headers/Public/React-RCTNetwork" "${PODS_ROOT}/Headers/Public/React-RCTSettings" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-RCTVibration" "${PODS_ROOT}/Headers/Public/React-RCTWebSocket" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-fishhook" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/yoga" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native-jitsi-meet +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index fdba33fd..38f2e25e 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -12,10 +12,8 @@ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; - 1E1EA7FD2326CB0C00E22452 /* libRNJitsiMeet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA7FB2326CB0100E22452 /* libRNJitsiMeet.a */; }; 1E1EA8002326CC5900E22452 /* JitsiMeet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA7FE2326CC5900E22452 /* JitsiMeet.framework */; }; 1E1EA8012326CC5900E22452 /* WebRTC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA7FF2326CC5900E22452 /* WebRTC.framework */; }; - 1E1EA8032326CC6C00E22452 /* JitsiMeet.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1E1EA8022326CC6C00E22452 /* JitsiMeet.storyboard */; }; 1E1EA8052326CC8200E22452 /* JitsiMeet.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA7FE2326CC5900E22452 /* JitsiMeet.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 1E1EA8072326CC8200E22452 /* WebRTC.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA7FF2326CC5900E22452 /* WebRTC.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 1E1EA80A2326CD2200E22452 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA8092326CD2200E22452 /* AVFoundation.framework */; }; @@ -28,7 +26,6 @@ 1E1EA8182326CD4B00E22452 /* libc.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA8172326CD4B00E22452 /* libc.tbd */; }; 1E1EA81A2326CD5100E22452 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA8192326CD5100E22452 /* libsqlite3.tbd */; }; 1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7ACD4853222860DE00442C55 /* JavaScriptCore.framework */; }; - 1E33ACCD2332BC8F00814AA5 /* libRNJitsiMeet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA7FB2326CB0100E22452 /* libRNJitsiMeet.a */; }; 1E33ACCE2332BCA700814AA5 /* JitsiMeet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA7FE2326CC5900E22452 /* JitsiMeet.framework */; }; 1E55FDB32320675C0048D2F9 /* libWatermelonDB.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7AAA749B23043AD300F1ADE9 /* libWatermelonDB.a */; }; 1EC6ACB722CB9FC300A41C61 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1EC6ACB522CB9FC300A41C61 /* MainInterface.storyboard */; }; @@ -48,13 +45,6 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 1E1EA7FA2326CB0100E22452 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1E1EA7F62326CB0000E22452 /* RNJitsiMeet.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 014A3B5C1C6CF33500B6D375; - remoteInfo = RNJitsiMeet; - }; 1E1EA8632326CE4B00E22452 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 1E1EA8502326CE4B00E22452 /* React.xcodeproj */; @@ -227,10 +217,8 @@ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RocketChatRN/Images.xcassets; sourceTree = ""; }; 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RocketChatRN/Info.plist; sourceTree = ""; }; 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RocketChatRN/main.m; sourceTree = ""; }; - 1E1EA7F62326CB0000E22452 /* RNJitsiMeet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNJitsiMeet.xcodeproj; path = "../node_modules/react-native-jitsi-meet/ios/RNJitsiMeet.xcodeproj"; sourceTree = ""; }; 1E1EA7FE2326CC5900E22452 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = "../node_modules/react-native-jitsi-meet/ios/JitsiMeet.framework"; sourceTree = ""; }; 1E1EA7FF2326CC5900E22452 /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = "../node_modules/react-native-jitsi-meet/ios/WebRTC.framework"; sourceTree = ""; }; - 1E1EA8022326CC6C00E22452 /* JitsiMeet.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = JitsiMeet.storyboard; path = "../node_modules/react-native-jitsi-meet/ios/JitsiMeet.storyboard"; sourceTree = ""; }; 1E1EA8092326CD2200E22452 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; 1E1EA80B2326CD2800E22452 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; 1E1EA80D2326CD2F00E22452 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; @@ -279,7 +267,6 @@ 1E1EA80C2326CD2800E22452 /* AudioToolbox.framework in Frameworks */, 1E1EA80A2326CD2200E22452 /* AVFoundation.framework in Frameworks */, 7ACD4897222860DE00442C55 /* JavaScriptCore.framework in Frameworks */, - 1E1EA7FD2326CB0C00E22452 /* libRNJitsiMeet.a in Frameworks */, 1E1EA8012326CC5900E22452 /* WebRTC.framework in Frameworks */, 1E1EA8002326CC5900E22452 /* JitsiMeet.framework in Frameworks */, 24A2AEF2383D44B586D31C01 /* libz.tbd in Frameworks */, @@ -293,7 +280,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1E33ACCD2332BC8F00814AA5 /* libRNJitsiMeet.a in Frameworks */, 1E55FDB32320675C0048D2F9 /* libWatermelonDB.a in Frameworks */, 1E33ACCE2332BCA700814AA5 /* JitsiMeet.framework in Frameworks */, 1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */, @@ -317,19 +303,10 @@ 13B07FB71A68108700A75B9A /* main.m */, 7AAA749D23043B1E00F1ADE9 /* Watermelon.swift */, 7AAA749C23043B1D00F1ADE9 /* RocketChatRN-Bridging-Header.h */, - 1E1EA8022326CC6C00E22452 /* JitsiMeet.storyboard */, ); name = RocketChatRN; sourceTree = ""; }; - 1E1EA7F72326CB0000E22452 /* Products */ = { - isa = PBXGroup; - children = ( - 1E1EA7FB2326CB0100E22452 /* libRNJitsiMeet.a */, - ); - name = Products; - sourceTree = ""; - }; 1E1EA8512326CE4B00E22452 /* Products */ = { isa = PBXGroup; children = ( @@ -389,7 +366,6 @@ isa = PBXGroup; children = ( 1E1EA8502326CE4B00E22452 /* React.xcodeproj */, - 1E1EA7F62326CB0000E22452 /* RNJitsiMeet.xcodeproj */, 290E43E48AD8418287FA99D6 /* WatermelonDB.xcodeproj */, ); name = Libraries; @@ -475,6 +451,7 @@ FD0EBB93B02BAD0637E4F286 /* [CP] Copy Pods Resources */, 1EC6ACF422CB9FC300A41C61 /* Embed App Extensions */, 1E1EA8082326CCE300E22452 /* ShellScript */, + 9558AC195A3506BB8472CE99 /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -565,10 +542,6 @@ ProductGroup = 1E1EA8512326CE4B00E22452 /* Products */; ProjectRef = 1E1EA8502326CE4B00E22452 /* React.xcodeproj */; }, - { - ProductGroup = 1E1EA7F72326CB0000E22452 /* Products */; - ProjectRef = 1E1EA7F62326CB0000E22452 /* RNJitsiMeet.xcodeproj */; - }, { ProductGroup = 7AAA749723043AD300F1ADE9 /* Products */; ProjectRef = 290E43E48AD8418287FA99D6 /* WatermelonDB.xcodeproj */; @@ -583,13 +556,6 @@ /* End PBXProject section */ /* Begin PBXReferenceProxy section */ - 1E1EA7FB2326CB0100E22452 /* libRNJitsiMeet.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libRNJitsiMeet.a; - remoteRef = 1E1EA7FA2326CB0100E22452 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; 1E1EA8642326CE4B00E22452 /* libReact.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; @@ -717,7 +683,6 @@ buildActionMask = 2147483647; files = ( 7A55F1C52236D541005109A0 /* custom.ttf in Resources */, - 1E1EA8032326CC6C00E22452 /* JitsiMeet.storyboard in Resources */, 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 7A006F14229C83B600803143 /* GoogleService-Info.plist in Resources */, ); @@ -841,6 +806,30 @@ shellPath = /bin/sh; shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; }; + 9558AC195A3506BB8472CE99 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-frameworks.sh", + "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios/WebRTC.framework", + "${PODS_ROOT}/../../node_modules/react-native-jitsi-meet/ios/JitsiMeet.framework", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + ); + outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/WebRTC.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JitsiMeet.framework", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; A68B7A0986AFB750F727793A /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1085,7 +1074,6 @@ isa = XCBuildConfiguration; baseConfigurationReference = 0383633C4523666C176CAA52 /* Pods-ShareRocketChatRN.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; @@ -1200,7 +1188,6 @@ isa = XCBuildConfiguration; baseConfigurationReference = 037C33B0D9A54FB4CB670FB7 /* Pods-ShareRocketChatRN.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; diff --git a/ios/RocketChatRN/AppDelegate.m b/ios/RocketChatRN/AppDelegate.m index cddd787f..9e1fcc83 100644 --- a/ios/RocketChatRN/AppDelegate.m +++ b/ios/RocketChatRN/AppDelegate.m @@ -35,10 +35,8 @@ self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; UIViewController *rootViewController = [UIViewController new]; - UINavigationController *navigationController = [[UINavigationController alloc]initWithRootViewController:rootViewController]; - navigationController.navigationBarHidden = YES; rootViewController.view = rootView; - self.window.rootViewController = navigationController; + self.window.rootViewController = rootViewController; [self.window makeKeyAndVisible]; [RNSplashScreen show]; diff --git a/package.json b/package.json index 5c727a65..f244c25c 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "react-native-gesture-handler": "^1.4.1", "react-native-image-crop-picker": "git+https://github.com/RocketChat/react-native-image-crop-picker.git", "react-native-image-zoom-viewer": "^2.2.26", - "react-native-jitsi-meet": "git+https://github.com/RocketChat/react-native-jitsi-meet.git", + "react-native-jitsi-meet": "^2.0.0", "react-native-keyboard-aware-scroll-view": "0.8.0", "react-native-keyboard-input": "^5.3.1", "react-native-keyboard-tracking-view": "^5.5.0", @@ -66,7 +66,7 @@ "react-native-modal": "^11.3.0", "react-native-notifications": "^2.0.6", "react-native-optimized-flatlist": "^1.0.4", - "react-native-orientation-locker": "^1.1.6", + "react-native-orientation-locker": "1.1.6", "react-native-picker-select": "6.3.0", "react-native-platform-touchable": "^1.1.1", "react-native-reanimated": "^1.2.0", diff --git a/patches/react-native-jitsi-meet+2.0.0.patch b/patches/react-native-jitsi-meet+2.0.0.patch new file mode 100644 index 00000000..5f587cf0 --- /dev/null +++ b/patches/react-native-jitsi-meet+2.0.0.patch @@ -0,0 +1,17 @@ +diff --git a/node_modules/react-native-jitsi-meet/android/build.gradle b/node_modules/react-native-jitsi-meet/android/build.gradle +index 1efa23d..ed1e4cc 100644 +--- a/node_modules/react-native-jitsi-meet/android/build.gradle ++++ b/node_modules/react-native-jitsi-meet/android/build.gradle +@@ -45,7 +45,11 @@ repositories { + } + + dependencies { +- implementation ('org.jitsi.react:jitsi-meet-sdk:2.3.0') { ++ implementation ('org.jitsi.react:jitsi-meet-sdk:2.3.1') { ++ exclude group: 'com.facebook.react', module:'react-native-fast-image' ++ exclude group: 'com.facebook.react', module:'react-native-vector-icons' ++ exclude group: 'com.facebook.react', module:'react-native-webview' ++ exclude group: 'com.facebook.react', module:'react-native-background-timer' + transitive = true + } + } diff --git a/patches/react-native-orientation-locker+1.1.6.patch b/patches/react-native-orientation-locker+1.1.6.patch new file mode 100644 index 00000000..e2ad5c62 --- /dev/null +++ b/patches/react-native-orientation-locker+1.1.6.patch @@ -0,0 +1,44 @@ +diff --git a/node_modules/react-native-orientation-locker/android/src/main/java/org/wonday/orientation/OrientationModule.java b/node_modules/react-native-orientation-locker/android/src/main/java/org/wonday/orientation/OrientationModule.java +index af1d952..e5215b8 100644 +--- a/node_modules/react-native-orientation-locker/android/src/main/java/org/wonday/orientation/OrientationModule.java ++++ b/node_modules/react-native-orientation-locker/android/src/main/java/org/wonday/orientation/OrientationModule.java +@@ -44,6 +44,7 @@ public class OrientationModule extends ReactContextBaseJavaModule implements Lif + final BroadcastReceiver mReceiver; + final OrientationEventListener mOrientationListener; + final ReactApplicationContext ctx; ++ private boolean registered = false; + private boolean isLocked = false; + private String lastOrientationValue = ""; + private String lastDeviceOrientationValue = ""; +@@ -346,6 +347,7 @@ public class OrientationModule extends ReactContextBaseJavaModule implements Lif + final Activity activity = getCurrentActivity(); + if (activity == null) return; + activity.registerReceiver(mReceiver, new IntentFilter("onConfigurationChanged")); ++ registered = true; + } + @Override + public void onHostPause() { +@@ -356,7 +358,10 @@ public class OrientationModule extends ReactContextBaseJavaModule implements Lif + if (activity == null) return; + try + { +- activity.unregisterReceiver(mReceiver); ++ if (registered) { ++ activity.unregisterReceiver(mReceiver); ++ registered = false; ++ } + } + catch (java.lang.IllegalArgumentException e) { + FLog.w(ReactConstants.TAG, "Receiver already unregistered", e); +@@ -372,7 +377,10 @@ public class OrientationModule extends ReactContextBaseJavaModule implements Lif + if (activity == null) return; + try + { +- activity.unregisterReceiver(mReceiver); ++ if (registered) { ++ activity.unregisterReceiver(mReceiver); ++ registered = false; ++ } + } + catch (java.lang.IllegalArgumentException e) { + FLog.w(ReactConstants.TAG, "Receiver already unregistered", e); diff --git a/react-native.config.js b/react-native.config.js index 7f49b9b0..935fa6c8 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -1,11 +1,5 @@ module.exports = { dependencies: { - 'react-native-jitsi-meet': { - platforms: { - ios: null, - android: null - } - }, 'react-native-notifications': { platforms: { android: null diff --git a/yarn.lock b/yarn.lock index a1c56d6c..82901fd3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8749,9 +8749,10 @@ react-native-iphone-x-helper@^1.0.3: resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.0.tgz#9f8a376eb00bc712115abff4420318a0063fa796" integrity sha512-xIeTo4s77wwKgBZLVRIZC9tM9/PkXS46Ul76NXmvmixEb3ZwqGdQesR3zRiLMOoIdfOURB6N9bba9po7+x9Bag== -"react-native-jitsi-meet@git+https://github.com/RocketChat/react-native-jitsi-meet.git": - version "1.2.0" - resolved "git+https://github.com/RocketChat/react-native-jitsi-meet.git#6308b4718a964fb3dc8ca3c2d52ecac33ad1c4c3" +react-native-jitsi-meet@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/react-native-jitsi-meet/-/react-native-jitsi-meet-2.0.0.tgz#db0837fbc46d080fb9bb09c4359be8e1620e966f" + integrity sha512-LI9QgX9ggjlBZOJiCi+SFgJTetOlpyrh2QJ62sb/FvM2bJxjaOyqogbZh5YQzMQOwIDXWgswqPp0Cp7DPsvyvg== react-native-keyboard-aware-scroll-view@0.8.0: version "0.8.0" @@ -8817,7 +8818,7 @@ react-native-optimized-flatlist@^1.0.4: dependencies: prop-types "^15.6.0" -react-native-orientation-locker@^1.1.6: +react-native-orientation-locker@1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/react-native-orientation-locker/-/react-native-orientation-locker-1.1.6.tgz#7d66a62cdbf4dd1548522efe69a4e04af5daf929" integrity sha512-yXTC8KmKfhuEAh+gCOcehx0v4IjYapV0lJ6W1muafoISvxMsT+Cizzy+Iz78hQywVZTJNB/Xusl7WMXev7OxDQ==