From 88c0ba6aff9837954691142a1266610949dd1fa5 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 13 Feb 2020 17:44:57 -0300 Subject: [PATCH] [FIX] Messages Overlapping (Android) and MessageBox Scroll (iOS) (#1720) --- android/app/build.gradle | 1 - .../rocket/reactnative/MainApplication.java | 2 - android/settings.gradle | 2 - app/containers/MessageBox/EmojiKeyboard.js | 36 - .../MessageBox/LeftButtons.android.js | 31 - .../{LeftButtons.ios.js => LeftButtons.js} | 0 .../MessageBox/RightButtons.android.js | 28 - .../{RightButtons.ios.js => RightButtons.js} | 0 .../MessageBox/buttons/ToggleEmojiButton.js | 38 - app/containers/MessageBox/buttons/index.js | 2 - app/containers/MessageBox/index.js | 76 +- app/containers/MessageBox/styles.js | 16 +- app/containers/message/index.js | 4 +- ios/Podfile.lock | 10 +- .../Color+Interpolation.h | 1 - .../react-native-keyboard-input/LNAnimator.h | 1 - .../LNInterpolable.h | 1 - .../LNInterpolation.h | 1 - .../NSValue+Interpolation.h | 1 - .../RCTCustomInputController.h | 1 - .../RCTCustomKeyboardViewController.h | 1 - .../Color+Interpolation.h | 1 - .../react-native-keyboard-input/LNAnimator.h | 1 - .../LNInterpolable.h | 1 - .../LNInterpolation.h | 1 - .../NSValue+Interpolation.h | 1 - .../RCTCustomInputController.h | 1 - .../RCTCustomKeyboardViewController.h | 1 - .../RNSharedElement.podspec.json | 21 - .../react-native-keyboard-input.podspec.json | 21 - ...native-keyboard-tracking-view.podspec.json | 4 +- ios/Pods/Manifest.lock | 10 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 16831 ++++++++-------- ...ods-RocketChatRN-acknowledgements.markdown | 25 - .../Pods-RocketChatRN-acknowledgements.plist | 31 - .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- ...hareRocketChatRN-acknowledgements.markdown | 25 - ...s-ShareRocketChatRN-acknowledgements.plist | 31 - .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../react-native-keyboard-input-dummy.m | 5 - .../react-native-keyboard-input-prefix.pch | 12 - .../react-native-keyboard-input.xcconfig | 11 - package.json | 3 +- .../react-native-keyboard-input+5.3.1.patch | 104 - ...native-keyboard-tracking-view+5.6.1.patch} | 51 +- react-native.config.js | 5 - yarn.lock | 16 +- 49 files changed, 8386 insertions(+), 9104 deletions(-) delete mode 100644 app/containers/MessageBox/EmojiKeyboard.js delete mode 100644 app/containers/MessageBox/LeftButtons.android.js rename app/containers/MessageBox/{LeftButtons.ios.js => LeftButtons.js} (100%) delete mode 100644 app/containers/MessageBox/RightButtons.android.js rename app/containers/MessageBox/{RightButtons.ios.js => RightButtons.js} (100%) delete mode 100644 app/containers/MessageBox/buttons/ToggleEmojiButton.js delete mode 120000 ios/Pods/Headers/Private/react-native-keyboard-input/Color+Interpolation.h delete mode 120000 ios/Pods/Headers/Private/react-native-keyboard-input/LNAnimator.h delete mode 120000 ios/Pods/Headers/Private/react-native-keyboard-input/LNInterpolable.h delete mode 120000 ios/Pods/Headers/Private/react-native-keyboard-input/LNInterpolation.h delete mode 120000 ios/Pods/Headers/Private/react-native-keyboard-input/NSValue+Interpolation.h delete mode 120000 ios/Pods/Headers/Private/react-native-keyboard-input/RCTCustomInputController.h delete mode 120000 ios/Pods/Headers/Private/react-native-keyboard-input/RCTCustomKeyboardViewController.h delete mode 120000 ios/Pods/Headers/Public/react-native-keyboard-input/Color+Interpolation.h delete mode 120000 ios/Pods/Headers/Public/react-native-keyboard-input/LNAnimator.h delete mode 120000 ios/Pods/Headers/Public/react-native-keyboard-input/LNInterpolable.h delete mode 120000 ios/Pods/Headers/Public/react-native-keyboard-input/LNInterpolation.h delete mode 120000 ios/Pods/Headers/Public/react-native-keyboard-input/NSValue+Interpolation.h delete mode 120000 ios/Pods/Headers/Public/react-native-keyboard-input/RCTCustomInputController.h delete mode 120000 ios/Pods/Headers/Public/react-native-keyboard-input/RCTCustomKeyboardViewController.h delete mode 100644 ios/Pods/Local Podspecs/RNSharedElement.podspec.json delete mode 100644 ios/Pods/Local Podspecs/react-native-keyboard-input.podspec.json delete mode 100644 ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input-dummy.m delete mode 100644 ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch delete mode 100644 ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input.xcconfig delete mode 100644 patches/react-native-keyboard-input+5.3.1.patch rename patches/{react-native-keyboard-tracking-view+5.5.0.patch => react-native-keyboard-tracking-view+5.6.1.patch} (61%) diff --git a/android/app/build.gradle b/android/app/build.gradle index a381e8673..b2394cf08 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -199,7 +199,6 @@ dependencies { addUnimodulesDependencies() implementation project(':watermelondb') implementation project(':reactnativenotifications') - implementation project(":reactnativekeyboardinput") implementation project(':@react-native-community_viewpager') implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.facebook.react:react-native:+" // From node_modules 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 2d1d5d22f..ef1e8b1f0 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java +++ b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java @@ -25,7 +25,6 @@ import com.wix.reactnativenotifications.core.AppLifecycleFacade; import com.wix.reactnativenotifications.core.JsIOHelper; import com.wix.reactnativenotifications.core.notification.INotificationsApplication; import com.wix.reactnativenotifications.core.notification.IPushNotification; -import com.wix.reactnativekeyboardinput.KeyboardInputPackage; import io.invertase.firebase.fabric.crashlytics.RNFirebaseCrashlyticsPackage; import io.invertase.firebase.analytics.RNFirebaseAnalyticsPackage; @@ -54,7 +53,6 @@ public class MainApplication extends Application implements ReactApplication, IN packages.add(new RNFirebaseCrashlyticsPackage()); packages.add(new RNFirebaseAnalyticsPackage()); packages.add(new RNFirebasePerformancePackage()); - packages.add(new KeyboardInputPackage(MainApplication.this)); packages.add(new RNNotificationsPackage(MainApplication.this)); packages.add(new WatermelonDBPackage()); packages.add(new RNCViewPagerPackage()); diff --git a/android/settings.gradle b/android/settings.gradle index 26f8adaaf..1947283a8 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -6,8 +6,6 @@ include ':watermelondb' project(':watermelondb').projectDir = new File(rootProject.projectDir, '../node_modules/@nozbe/watermelondb/native/android') 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-community_viewpager' project(':@react-native-community_viewpager').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/viewpager/android') apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) diff --git a/app/containers/MessageBox/EmojiKeyboard.js b/app/containers/MessageBox/EmojiKeyboard.js deleted file mode 100644 index f8bc13019..000000000 --- a/app/containers/MessageBox/EmojiKeyboard.js +++ /dev/null @@ -1,36 +0,0 @@ -import React from 'react'; -import { View } from 'react-native'; -import { KeyboardRegistry } from 'react-native-keyboard-input'; -import PropTypes from 'prop-types'; - -import store from '../../lib/createStore'; -import EmojiPicker from '../EmojiPicker'; -import styles from './styles'; -import { themes } from '../../constants/colors'; -import { withTheme } from '../../theme'; - -export default class EmojiKeyboard extends React.PureComponent { - static propTypes = { - theme: PropTypes.string - }; - - constructor(props) { - super(props); - const state = store.getState(); - this.baseUrl = state.server.server; - } - - onEmojiSelected = (emoji) => { - KeyboardRegistry.onItemSelected('EmojiKeyboard', { emoji }); - } - - render() { - const { theme } = this.props; - return ( - - - - ); - } -} -KeyboardRegistry.registerKeyboard('EmojiKeyboard', () => withTheme(EmojiKeyboard)); diff --git a/app/containers/MessageBox/LeftButtons.android.js b/app/containers/MessageBox/LeftButtons.android.js deleted file mode 100644 index f118ccf6e..000000000 --- a/app/containers/MessageBox/LeftButtons.android.js +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import { CancelEditingButton, ToggleEmojiButton } from './buttons'; - -const LeftButtons = React.memo(({ - theme, showEmojiKeyboard, editing, editCancel, openEmoji, closeEmoji -}) => { - if (editing) { - return ; - } - return ( - - ); -}); - -LeftButtons.propTypes = { - theme: PropTypes.string, - showEmojiKeyboard: PropTypes.bool, - openEmoji: PropTypes.func.isRequired, - closeEmoji: PropTypes.func.isRequired, - editing: PropTypes.bool, - editCancel: PropTypes.func.isRequired -}; - -export default LeftButtons; diff --git a/app/containers/MessageBox/LeftButtons.ios.js b/app/containers/MessageBox/LeftButtons.js similarity index 100% rename from app/containers/MessageBox/LeftButtons.ios.js rename to app/containers/MessageBox/LeftButtons.js diff --git a/app/containers/MessageBox/RightButtons.android.js b/app/containers/MessageBox/RightButtons.android.js deleted file mode 100644 index 716d9a258..000000000 --- a/app/containers/MessageBox/RightButtons.android.js +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import { SendButton, AudioButton, FileButton } from './buttons'; - -const RightButtons = React.memo(({ - theme, showSend, submit, recordAudioMessage, showFileActions -}) => { - if (showSend) { - return ; - } - return ( - <> - - - - ); -}); - -RightButtons.propTypes = { - theme: PropTypes.string, - showSend: PropTypes.bool, - submit: PropTypes.func.isRequired, - recordAudioMessage: PropTypes.func.isRequired, - showFileActions: PropTypes.func.isRequired -}; - -export default RightButtons; diff --git a/app/containers/MessageBox/RightButtons.ios.js b/app/containers/MessageBox/RightButtons.js similarity index 100% rename from app/containers/MessageBox/RightButtons.ios.js rename to app/containers/MessageBox/RightButtons.js diff --git a/app/containers/MessageBox/buttons/ToggleEmojiButton.js b/app/containers/MessageBox/buttons/ToggleEmojiButton.js deleted file mode 100644 index 86206b3c1..000000000 --- a/app/containers/MessageBox/buttons/ToggleEmojiButton.js +++ /dev/null @@ -1,38 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import BaseButton from './BaseButton'; - -const ToggleEmojiButton = React.memo(({ - theme, show, open, close -}) => { - if (show) { - return ( - - ); - } - return ( - - ); -}); - -ToggleEmojiButton.propTypes = { - theme: PropTypes.string, - show: PropTypes.bool, - open: PropTypes.func.isRequired, - close: PropTypes.func.isRequired -}; - -export default ToggleEmojiButton; diff --git a/app/containers/MessageBox/buttons/index.js b/app/containers/MessageBox/buttons/index.js index 5046ca50e..8481a6de8 100644 --- a/app/containers/MessageBox/buttons/index.js +++ b/app/containers/MessageBox/buttons/index.js @@ -1,12 +1,10 @@ import CancelEditingButton from './CancelEditingButton'; -import ToggleEmojiButton from './ToggleEmojiButton'; import SendButton from './SendButton'; import AudioButton from './AudioButton'; import FileButton from './FileButton'; export { CancelEditingButton, - ToggleEmojiButton, SendButton, AudioButton, FileButton diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 063e7669d..ba06d3d58 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -2,12 +2,12 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { View, Alert, Keyboard } from 'react-native'; import { connect } from 'react-redux'; -import { KeyboardAccessoryView } from 'react-native-keyboard-input'; import ImagePicker from 'react-native-image-crop-picker'; import equal from 'deep-equal'; import DocumentPicker from 'react-native-document-picker'; import ActionSheet from 'react-native-action-sheet'; import { Q } from '@nozbe/watermelondb'; +import { KeyboardTrackingView } from 'react-native-keyboard-tracking-view'; import { generateTriggerId } from '../../lib/methods/actions'; import TextInput from '../../presentation/TextInput'; @@ -98,7 +98,6 @@ class MessageBox extends Component { super(props); this.state = { mentions: [], - showEmojiKeyboard: false, showSend: false, recording: false, trackingType: '', @@ -170,10 +169,6 @@ class MessageBox extends Component { this.setShowSend(true); } - if (isAndroid) { - require('./EmojiKeyboard'); - } - if (isTablet) { EventEmiter.addEventListener(KEY_COMMAND, this.handleCommands); } @@ -198,7 +193,7 @@ class MessageBox extends Component { shouldComponentUpdate(nextProps, nextState) { const { - showEmojiKeyboard, showSend, recording, mentions, file, commandPreview + showSend, recording, mentions, file, commandPreview } = this.state; const { @@ -219,9 +214,6 @@ class MessageBox extends Component { if (nextProps.editing !== editing) { return true; } - if (nextState.showEmojiKeyboard !== showEmojiKeyboard) { - return true; - } if (nextState.showSend !== showSend) { return true; } @@ -315,10 +307,6 @@ class MessageBox extends Component { } }, 100) - onKeyboardResigned = () => { - this.closeEmoji(); - } - onPressMention = (item) => { if (!this.component) { return; @@ -363,24 +351,6 @@ class MessageBox extends Component { } } - onEmojiSelected = (keyboardId, params) => { - const { text } = this; - const { emoji } = params; - let newText = ''; - - // if messagebox has an active cursor - if (this.component && this.component._lastNativeSelection) { - const { start, end } = this.component._lastNativeSelection; - const cursor = Math.max(start, end); - newText = `${ text.substr(0, cursor) }${ emoji }${ text.substr(cursor) }`; - } else { - // if messagebox doesn't have a cursor, just append selected emoji - newText = `${ text }${ emoji }`; - } - this.setInput(newText); - this.setShowSend(true); - } - getPermalink = async(message) => { try { return await RocketChat.getPermalinkMessage(message); @@ -615,12 +585,6 @@ class MessageBox extends Component { this.clearInput(); } - openEmoji = async() => { - await this.setState({ - showEmojiKeyboard: true - }); - } - recordAudioMessage = async() => { const recording = await Recording.permission(); this.setState({ recording }); @@ -645,10 +609,6 @@ class MessageBox extends Component { } } - closeEmoji = () => { - this.setState({ showEmojiKeyboard: false }); - } - submit = async() => { const { onSubmit, rid: roomId, tmid @@ -657,7 +617,6 @@ class MessageBox extends Component { this.clearInput(); this.debouncedOnChangeText.stop(); - this.closeEmoji(); this.stopTrackingMention(); this.handleTyping(false); if (message.trim() === '') { @@ -741,10 +700,7 @@ class MessageBox extends Component { } identifyMentionKeyword = (keyword, type) => { - this.setState({ - showEmojiKeyboard: false, - trackingType: type - }); + this.setState({ trackingType: type }); this.updateMentions(keyword, type); } @@ -778,7 +734,7 @@ class MessageBox extends Component { renderContent = () => { const { - recording, showEmojiKeyboard, showSend, mentions, trackingType, commandPreview, showCommandPreview + recording, showSend, mentions, trackingType, commandPreview, showCommandPreview } = this.state; const { editing, message, replying, replyCancel, user, getCustomEmoji, theme @@ -815,12 +771,9 @@ class MessageBox extends Component { > this.component = component} @@ -842,7 +795,6 @@ class MessageBox extends Component { showSend={showSend} submit={this.submit} recordAudioMessage={this.recordAudioMessage} - showFileActions={this.showFileActions} /> @@ -852,7 +804,7 @@ class MessageBox extends Component { render() { console.count(`${ this.constructor.name }.render calls`); - const { showEmojiKeyboard, file } = this.state; + const { file } = this.state; const { user, baseUrl, theme } = this.props; return ( - + > + {this.renderContent()} + { const { item, isThreadRoom } = this.props; - KeyboardUtils.dismiss(); + Keyboard.dismiss(); if (((item.tlm || item.tmid) && !isThreadRoom)) { this.onThreadPress(); diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 9ea68f7d6..ea7f74b13 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -292,9 +292,7 @@ PODS: - react-native-jitsi-meet (2.0.4): - JitsiMeetSDK - React - - react-native-keyboard-input (5.3.1): - - React - - react-native-keyboard-tracking-view (5.5.0): + - react-native-keyboard-tracking-view (5.6.1): - React - react-native-notifications (2.0.6): - React @@ -450,7 +448,6 @@ DEPENDENCIES: - "react-native-cameraroll (from `../node_modules/@react-native-community/cameraroll`)" - 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`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) @@ -586,8 +583,6 @@ EXTERNAL SOURCES: :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: :path: "../node_modules/react-native-keyboard-tracking-view" react-native-notifications: @@ -743,8 +738,7 @@ SPEC CHECKSUMS: react-native-cameraroll: 463aff54e37cff27ea76eb792e6f1fa43b876320 react-native-document-picker: c36bf5f067a581657ecaf7124dcd921a8be19061 react-native-jitsi-meet: 5bc06e8b65a7d04fd3705d5720f3b2ec66e49a29 - react-native-keyboard-input: 2a01e0aceac330592bbe9b3101761bb9d8e6d1fb - react-native-keyboard-tracking-view: 1ebd24a2b6ca2314549aa51775995678094bffa1 + react-native-keyboard-tracking-view: 4bb67b89ccd327c7d9eab87f722880d2103a25a8 react-native-notifications: 163ddedac6fcc8d850ea15b06abdadcacdff00f1 react-native-orientation-locker: 23918c400376a7043e752c639c122fcf6bce8f1c react-native-slider: 39208600e44f885e2d2c0510b5c6435a0f62d087 diff --git a/ios/Pods/Headers/Private/react-native-keyboard-input/Color+Interpolation.h b/ios/Pods/Headers/Private/react-native-keyboard-input/Color+Interpolation.h deleted file mode 120000 index 685267d9d..000000000 --- a/ios/Pods/Headers/Private/react-native-keyboard-input/Color+Interpolation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/Color+Interpolation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-keyboard-input/LNAnimator.h b/ios/Pods/Headers/Private/react-native-keyboard-input/LNAnimator.h deleted file mode 120000 index e1b81c3ee..000000000 --- a/ios/Pods/Headers/Private/react-native-keyboard-input/LNAnimator.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/LNAnimator.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-keyboard-input/LNInterpolable.h b/ios/Pods/Headers/Private/react-native-keyboard-input/LNInterpolable.h deleted file mode 120000 index d87d3b313..000000000 --- a/ios/Pods/Headers/Private/react-native-keyboard-input/LNInterpolable.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/LNInterpolable.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-keyboard-input/LNInterpolation.h b/ios/Pods/Headers/Private/react-native-keyboard-input/LNInterpolation.h deleted file mode 120000 index 399db4e8a..000000000 --- a/ios/Pods/Headers/Private/react-native-keyboard-input/LNInterpolation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/LNInterpolation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-keyboard-input/NSValue+Interpolation.h b/ios/Pods/Headers/Private/react-native-keyboard-input/NSValue+Interpolation.h deleted file mode 120000 index f0fb3a2db..000000000 --- a/ios/Pods/Headers/Private/react-native-keyboard-input/NSValue+Interpolation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/NSValue+Interpolation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-keyboard-input/RCTCustomInputController.h b/ios/Pods/Headers/Private/react-native-keyboard-input/RCTCustomInputController.h deleted file mode 120000 index 10196d208..000000000 --- a/ios/Pods/Headers/Private/react-native-keyboard-input/RCTCustomInputController.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/RCTCustomInputController/RCTCustomInputController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-keyboard-input/RCTCustomKeyboardViewController.h b/ios/Pods/Headers/Private/react-native-keyboard-input/RCTCustomKeyboardViewController.h deleted file mode 120000 index 254b600ef..000000000 --- a/ios/Pods/Headers/Private/react-native-keyboard-input/RCTCustomKeyboardViewController.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/RCTCustomInputController/RCTCustomKeyboardViewController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-keyboard-input/Color+Interpolation.h b/ios/Pods/Headers/Public/react-native-keyboard-input/Color+Interpolation.h deleted file mode 120000 index 685267d9d..000000000 --- a/ios/Pods/Headers/Public/react-native-keyboard-input/Color+Interpolation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/Color+Interpolation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-keyboard-input/LNAnimator.h b/ios/Pods/Headers/Public/react-native-keyboard-input/LNAnimator.h deleted file mode 120000 index e1b81c3ee..000000000 --- a/ios/Pods/Headers/Public/react-native-keyboard-input/LNAnimator.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/LNAnimator.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-keyboard-input/LNInterpolable.h b/ios/Pods/Headers/Public/react-native-keyboard-input/LNInterpolable.h deleted file mode 120000 index d87d3b313..000000000 --- a/ios/Pods/Headers/Public/react-native-keyboard-input/LNInterpolable.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/LNInterpolable.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-keyboard-input/LNInterpolation.h b/ios/Pods/Headers/Public/react-native-keyboard-input/LNInterpolation.h deleted file mode 120000 index 399db4e8a..000000000 --- a/ios/Pods/Headers/Public/react-native-keyboard-input/LNInterpolation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/LNInterpolation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-keyboard-input/NSValue+Interpolation.h b/ios/Pods/Headers/Public/react-native-keyboard-input/NSValue+Interpolation.h deleted file mode 120000 index f0fb3a2db..000000000 --- a/ios/Pods/Headers/Public/react-native-keyboard-input/NSValue+Interpolation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/LNInterpolation/NSValue+Interpolation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-keyboard-input/RCTCustomInputController.h b/ios/Pods/Headers/Public/react-native-keyboard-input/RCTCustomInputController.h deleted file mode 120000 index 10196d208..000000000 --- a/ios/Pods/Headers/Public/react-native-keyboard-input/RCTCustomInputController.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/RCTCustomInputController/RCTCustomInputController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-keyboard-input/RCTCustomKeyboardViewController.h b/ios/Pods/Headers/Public/react-native-keyboard-input/RCTCustomKeyboardViewController.h deleted file mode 120000 index 254b600ef..000000000 --- a/ios/Pods/Headers/Public/react-native-keyboard-input/RCTCustomKeyboardViewController.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-keyboard-input/lib/ios/RCTCustomInputController/RCTCustomKeyboardViewController.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/RNSharedElement.podspec.json b/ios/Pods/Local Podspecs/RNSharedElement.podspec.json deleted file mode 100644 index 76493a145..000000000 --- a/ios/Pods/Local Podspecs/RNSharedElement.podspec.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "RNSharedElement", - "version": "0.5.3", - "summary": "Native shared element transition primitives for react-native 💫", - "license": "MIT", - "authors": "IjzerenHein ", - "homepage": "https://github.com/IjzerenHein/react-native-shared-element", - "platforms": { - "ios": "9.0" - }, - "source": { - "git": "https://github.com/IjzerenHein/react-native-shared-element.git", - "tag": "v0.5.3" - }, - "source_files": "ios/**/*.{h,m}", - "dependencies": { - "React": [ - - ] - } -} diff --git a/ios/Pods/Local Podspecs/react-native-keyboard-input.podspec.json b/ios/Pods/Local Podspecs/react-native-keyboard-input.podspec.json deleted file mode 100644 index 6e46ffb42..000000000 --- a/ios/Pods/Local Podspecs/react-native-keyboard-input.podspec.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "react-native-keyboard-input", - "version": "5.3.1", - "summary": "React Native Custom Input Controller", - "license": "MIT", - "authors": "Leo Natan ", - "homepage": "https://github.com/wix/react-native-keyboard-input", - "platforms": { - "ios": "9.0" - }, - "source": { - "git": "https://github.com/wix/react-native-keyboard-input.git", - "tag": "v5.3.1" - }, - "source_files": "lib/ios/**/*.{h,m}", - "dependencies": { - "React": [ - - ] - } -} diff --git a/ios/Pods/Local Podspecs/react-native-keyboard-tracking-view.podspec.json b/ios/Pods/Local Podspecs/react-native-keyboard-tracking-view.podspec.json index aae1d8300..a402849d0 100644 --- a/ios/Pods/Local Podspecs/react-native-keyboard-tracking-view.podspec.json +++ b/ios/Pods/Local Podspecs/react-native-keyboard-tracking-view.podspec.json @@ -1,6 +1,6 @@ { "name": "react-native-keyboard-tracking-view", - "version": "5.5.0", + "version": "5.6.1", "summary": "React Native UI component which tracks the keyboard", "license": "MIT", "authors": "Artal Druk ", @@ -10,7 +10,7 @@ }, "source": { "git": "https://github.com/wix/react-native-keyboard-tracking-view.git", - "tag": "v5.5.0" + "tag": "v5.6.1" }, "source_files": "lib/**/*.{h,m}", "dependencies": { diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 9ea68f7d6..ea7f74b13 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -292,9 +292,7 @@ PODS: - react-native-jitsi-meet (2.0.4): - JitsiMeetSDK - React - - react-native-keyboard-input (5.3.1): - - React - - react-native-keyboard-tracking-view (5.5.0): + - react-native-keyboard-tracking-view (5.6.1): - React - react-native-notifications (2.0.6): - React @@ -450,7 +448,6 @@ DEPENDENCIES: - "react-native-cameraroll (from `../node_modules/@react-native-community/cameraroll`)" - 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`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) @@ -586,8 +583,6 @@ EXTERNAL SOURCES: :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: :path: "../node_modules/react-native-keyboard-tracking-view" react-native-notifications: @@ -743,8 +738,7 @@ SPEC CHECKSUMS: react-native-cameraroll: 463aff54e37cff27ea76eb792e6f1fa43b876320 react-native-document-picker: c36bf5f067a581657ecaf7124dcd921a8be19061 react-native-jitsi-meet: 5bc06e8b65a7d04fd3705d5720f3b2ec66e49a29 - react-native-keyboard-input: 2a01e0aceac330592bbe9b3101761bb9d8e6d1fb - react-native-keyboard-tracking-view: 1ebd24a2b6ca2314549aa51775995678094bffa1 + react-native-keyboard-tracking-view: 4bb67b89ccd327c7d9eab87f722880d2103a25a8 react-native-notifications: 163ddedac6fcc8d850ea15b06abdadcacdff00f1 react-native-orientation-locker: 23918c400376a7043e752c639c122fcf6bce8f1c react-native-slider: 39208600e44f885e2d2c0510b5c6435a0f62d087 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 863f77e13..bed499a97 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -219,1797 +219,1777 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000347F73D6AC6FB65F78930F28D41CF /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA785C20F123D7AAFB30A0FD933A235 /* UMReactLogHandler.m */; }; - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = EC25F30193FE87CEA5708B5D8793D7C5 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 637B2905EFCA92F6B6F01A80EC507AF2 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4D4504A5E0169EEA9E1BD9EEE809BB /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D1EC5C7CAF9E367FAD46B57EBF977F /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 78541DB485050F75C0936807AFB8C357 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C7FEE81D653379FD6F11F5976D61FB /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 52D23EDA5F884C3239B077C15910ECC1 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 013E97EF0B110B48D15D8445F1D3C24A /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = AD04C1BFC9C5F281657981675CDCA95D /* RCTEventAnimation.m */; }; + 000347F73D6AC6FB65F78930F28D41CF /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 67E154936155C08F92F5CA8B3529FDF0 /* UMReactLogHandler.m */; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F34AE6ABA12371F3A514C456D4F519 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4839FD80055F0C6950231B58B46EEB /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 51344077DBACAF6FC443E8D1D5D1CE8F /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = ADEC67C2CCDE6DB26D8E0AB6E15E78B0 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC42B53E95212ECB870C1AFD0A290117 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4B1E99092E36615F101CE0658D0426 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FBF5A4822BDB431BABE233D633F13F7 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 013E97EF0B110B48D15D8445F1D3C24A /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A50A2C3C989CC92D5AF7F8E1A132F72 /* RCTEventAnimation.m */; }; 014A953E16242C5C2D97728BE5EB3FED /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 549CC56FC99AAB064C41404A60ACDCA7 /* FirebaseCoreDiagnostics-dummy.m */; }; 018BC758F67618B02AE7AF70B2E5D29B /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3B6A5615D38501C12A332422F0D8FD /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = F006204547FEC6498B166EFA2D35B2B8 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EEE078A0BECBB045605975E76C3299 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A7499C46BD5BB476EF2A1E4FF6BA25 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F024B7B00960653B25CA52215FD5491 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01E9290B5AF4EF792AF0770821457C81 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA1AFC7815DE289321DB234082AB133 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = A2309B02D4CBE5D68836BD94999C64E2 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = BCC4CC6682FE82D7FD68D5C478533F62 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 02995B31B424D53935F8576996C9F306 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = FCC11573AB7D5B652772C6126FE31C36 /* FIRCoreDiagnosticsConnector.m */; }; 02D340EA0E9D8C59CB3B6584EA53BCAD /* GDTTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5EBC9A5E12D5281CC29EAB37CD1E5E /* GDTTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2C6B4E466B4DA131D5D01DABB9804E /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AB2D10B5EA5FBAB4565B783C80C9A12 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 033394FF64D05DACD31B10A0BE4E0F67 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277D35BCCDA3CD69ADA70C694A988723 /* EXVideoPlayerViewController.m */; }; - 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7E00DBEF80A2A87BC5A2C4198D0CE /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09340D593FCF156D56EC788C9D61A56E /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E36B6104ECCD9D037D65F133A90B34E /* BSG_KSMach_x86_32.c */; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BC78EDC760B450A885614547A7428E /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 289FDAE476A89BDD5D67514FF6353737 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 691822CFD4F0F714CE44F57239754CA3 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1A3CECFED1C7D7337226CAB2DA9727 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 033394FF64D05DACD31B10A0BE4E0F67 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4321D8DDAC0A5C536A86694B7C0B4F9E /* EXVideoPlayerViewController.m */; }; + 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC87DE5A96C161413FB1A21675879EC /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3FB1287667DDC194E4D8E21DD0BAE1 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = A8C0BAEBF82B7932F04EEDB15268D083 /* BSG_KSMach_x86_32.c */; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9F87D3F74668A90265E7ED0F1AF4E1 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B155B4CBA225A01329F11933E3BACFF /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04AA55BE7FB64746D55ECB9C8714BE6C /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C4B8A7FB6E16BCE4CDCCB39D680712 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C6F803ACAD8D922F711576AF18EB36 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = DC7FE029A87E01A42AA3C04688EF9568 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = F762F0A56AD644160EE40F2C9ED7DC7D /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FE49070AC3414D65AA9228AB7579A7C /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFBF28E523A1352725A68B4DC545592 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 870525D77085BDC7FD874AC0C6EE096B /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BDA12CC1F9BEBEA8803C87DD3AB8EE /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 32272DA9DC56D2252137E11DFDD0517C /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 669FED7B0C83E29684D6A0598821FBD9 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 826389E051DB9F5DAFC23A5ED7B18FD8 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E32D2C37782B12BE3B10FE71504A987 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = DE53658AF11CD49486D35DB8F2FE3A22 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B90B4942E1ED0199158E5ACC0EF66E35 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0671E55285B4D24FE81A73F840E8C7 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE60F49EF77406B156BFE39692C9CCF7 /* nanopb-dummy.m */; }; - 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = B13AF61B2C73376A40B9B8A94305983D /* ARTRadialGradient.m */; }; + 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = AC648412AF4600F9C1EDFB18BC08768E /* ARTRadialGradient.m */; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C1BC541497F9D69CFB6FF7A5F1D16E5 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D9920325F1E197245EC5E2DDB3E2C6 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DD62AC3EB3E406698321F90D62839E7C /* REASetNode.m */; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = E44F908151A562A3AF20B69A1D54098E /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 250AC3F1C3E28195B86681506026C1B0 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DACBBFD5AE208D906D6F872DDAA9F25 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9686F2C0DFDCEA8AFF625734140E786E /* REASetNode.m */; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = A2D800D10618A0144F1DD5864B687C20 /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E5A3078F36287C0F1AB13ED9B084C9 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 063A7D878ACB2A6037E13C4A23179557 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = D685191518CCCE8477FBB30EA847D2D9 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0642877CFA3BABF6838B380EC90E850C /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5080E1E9F662041ACF60804ACBB04CE3 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0679E8A1EFD1528B6DD85FD80C935105 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 31AE9C83361780E6B38F68149BE8ED27 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0BFCA3863288C619E65898BB7D3E5D /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0679E8A1EFD1528B6DD85FD80C935105 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2919DFFA117989C2D9E741D42C74A2FB /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 574E7D76BC41B088CC91942C613E7B7E /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = E35994BA61AA03850DB1775AB78F5240 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B87E9F95E955F70802BB09E14E71817 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 06DB6A5EF09D9417BA180FC364973426 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F07AB9A93907E76E3C570F14ADF3E275 /* SDImageAssetManager.m */; }; - 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 06C809B8549057A07FF4A8E38A64FA53 /* RCTProfileTrampoline-i386.S */; }; - 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = A46CEB0D88622A4206E1436F9F31EB39 /* QBVideoIconView.m */; }; + 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 392E52760A362EB0A97D3E6EFB27B76E /* RCTProfileTrampoline-i386.S */; }; + 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 719E827F4B7A0B9B515251615F0BA995 /* QBVideoIconView.m */; }; 0769A9F39A25A9A976CCD0C87C3D2CFA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A3E63A13602882E51CE5359C7B370400 /* 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"; }; }; - 0770FB987A4D038938191C2B33C4846C /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = BF5CBB0DE4D0AA9DE287CF7AE6A51CEF /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0770FB987A4D038938191C2B33C4846C /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D44E75F76E72B5F892FC80EF09CB91E /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 077A5F8C4B9C33DFA15873A399B2597C /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = C476CADBE585CCBC4E285BDCE9C9B9B6 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 078E653C3724A2179DCB9018B3F7CCFC /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 38306BBBC3C64D7DF03BEC71BC608DBF /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = FB6EE44FA7F3B55552E8366D392E5AF7 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BC71A5918A997F15CAC9126B3C68E59 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E90BFCAC2CCA2B39AFA188E4C7C2A8 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66447F01620F433C283D8DDE6B50310E /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 081768B0FABD06884FD6F65643672F1A /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 960C7132FDACCCBC602818FF9F87C10A /* SDWebImageDownloader.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F3473B6568C15F43FDFEAEBB5BC8625 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8540E2CE4399AB56BCE33B40A8623314 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = DD6F5C8059A379F3D8E9999821DBE3E8 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0831A0057F646251FD8B9F72008F0F52 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD9D6D015FBBB5D23A16236EFDC21EA /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C392ACAA16564F1646887DF81113EF /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 086D30EE631E6CD8A53B13E30037F880 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F2C682FA6F99D67928F8667235A3CF /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 445ECA9E6B1D54EE4EF38089336C8C17 /* UIImage+Resize.m */; }; - 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E6F08FB7B0D37C62C09B09E8F8FD092 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 773D91497860302EEC08AB5AEE213413 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 459D354B128A5B3FD0717608572663F7 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 090CD0CBDC7A1A0ADFAF53F574E31D2E /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF45BB6462C515794294F19F13B4BB37 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1784A6E36638A744A6E22266E32D2132 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 086D30EE631E6CD8A53B13E30037F880 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BF8113D2588CA88EA9058982CC76FB2 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F9B41F73DE3A642B7685B934EA65566 /* UIImage+Resize.m */; }; + 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 66EE284016BCA0CF8AEAF406584719E5 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA8B0F8C06DC33CE0CAAE1D66DFFA08 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = D66670C419919DDB229F45998FB12523 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 090CD0CBDC7A1A0ADFAF53F574E31D2E /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA005FB055FB73CB79712030C59FDD4A /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0923FD3747647148D132AB7CCB7B375A /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 593434FB0205C22E5A950A80442758C9 /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 094A110F9B7125E1ACA5C55D97CE3305 /* GDTTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CFDF61A090051FCE603DE9E0332AFAC /* GDTTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = F40A68A5A790E9F7437AC7A11A10E049 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09E32B915F68813180BCB425D417A907 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 514A2F253442115AFA4B6EDDAFFFE085 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3972A87C0C31E6D865566FB1C97594D7 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0A1AB2547E41AAF64E97BFB18FD29C6B /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 067D5D2C99221EB0A3B9E22F7DFD06BF /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5409CC27E1D7E6A8BFA8708EA2D391C0 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A1AB2547E41AAF64E97BFB18FD29C6B /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3B5B33D7B3E48D320C3A06E3B9A455 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A6BA0F3B42A8F085AD76A71AD742B25 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3786DC3F685C9387F570BEF33D84FDBA /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = F7C90F3A98224D6DE3458CF9B4592563 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0B02E92152D5231A7995E9D166C4C0 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB9AE11058DF3D5E963814F2B6902E2 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B8D84E9C430C8D1138F1F0DB1AA81A /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3106BC87F2CAE5827507F197753E8093 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 590A991CA39320D61338A86CD16B61E4 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AA78930FB447031AB93AD2299273FD1 /* RCTVibration.m */; }; + 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B22BBE455DEF05ED888005038069CDE1 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 87C57C3DE95B81808FD91387F9D57573 /* RCTVibration.m */; }; 0AE630EDDF3087755FB7900375791D51 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = B37B061BCFAEAF0A54D7854C6C0322C7 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = CE5C53A1B492CD6BA850C71383973F6E /* RNNotificationCenterListener.m */; }; - 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D66376417C047FE531FA96D8FE8291E2 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0AFF41962269C89779046793E1AE0FE7 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B5FE04EF96F3DBDA6FA2EACB05DA49 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D6700C73A21F270ADADE2937AD41BE0 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 919802DD5EA1842AF2787476A69A3CA9 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5915477795932526EEFC89FBEA7B82AC /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0BC16804FAEBD375BEC98962EA320575 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E7BDED4CA237BA0E4E1B8DA70EDF15 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F48F0465A6D63E3E02891CE558A1DCDC /* RCTActionSheetManager.m */; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DFDDA9B1A315696FB654E1F37F4A0A5 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 892DAF84D0BCCEFD111C94D7517BC3C9 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DD372A7560FF3AD51637124739591F8 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C73059A5A5BF889CEB3C2D0FA5595F9 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D79F012210D6A13185A51BF8EB1209D /* UMReactNativeEventEmitter.m */; }; - 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4A2E27DC374E4005C34F5376DAEBC0 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FEE8F6E31EAE99F618E0E353B1E2DBF /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 3083FD8E4D6460DC8673F63185D156BE /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E2AA0ED6787A5B84B6EE8F547631B88A /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D2E9528C15F34FC663E46FCF92A0ABB1 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = DC496485D777F6D3290CCA3FA6008196 /* RNNotificationCenterListener.m */; }; + 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 66523D431756F5E9A7D84399DBABC82A /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0AFF41962269C89779046793E1AE0FE7 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C6FD5F50751A07FAC17D258A658563 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE13E4C86559B451B3E35488EF986B7 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 906BB38A481B01E252CEC5C4D3A5FDD6 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BEDD37A8070C2259A52C4B87FF220F4 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0BC16804FAEBD375BEC98962EA320575 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B92DBA600B84DBA79028A2D7ED337C /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DA3A6319D375F4D7519673B9CEE18A3 /* RCTActionSheetManager.m */; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = CA770D6C8EC9D18D035B8DD3A4669190 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E159BE489695C1D64837AE29E2B78B9 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 669AACED5451B74A1B173F8CF58715E7 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C73059A5A5BF889CEB3C2D0FA5595F9 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = C915CE4C5E850639992421BBA978984E /* UMReactNativeEventEmitter.m */; }; + 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6BD37D56DF74D3FE593DA2973E4095 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB54D1729F8F16A934E77D5B4B9D643 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 24E4C2778508D437130213216EDFBCAE /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB6129BCC7D282C67A293E66DCB09D2B /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3195AB95D70C5E65B55CF799C8C31B41 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CFB0957C67C24787E5C546936BE3550 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E16FB85FF0BDA0B29022320BDF1B66 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D0B0F672F1016D9C9B72AFD4E83E04A /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = D54A835DCAEBC10A120B48CEBA085CC1 /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D225414A45DFDEDBA19BEB5F0A30704 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5540001EC3C541DE53A5E0C4D860B9 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5631191D62E5021A68942E823AA434E2 /* RNPushKitEventHandler.m */; }; - 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4FEADA75A15417B8AAAADA6C46C6DBB7 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0D6DAE408F66820DF20E6D416582ADB3 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1275E79B06824B79F8ED750B4F349A74 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6734A0CFBB5B95E3415B8A0886DF0C46 /* RNPushKitEventHandler.m */; }; + 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D956427505125B9D0424549715F1C38 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0D6DAE408F66820DF20E6D416582ADB3 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4388EECDE2562AAFC163F54674F482 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 88DEDF68D8C60CEAF48D94503FA3FA5A /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0E620510126D852FC371F7F9178AA6F0 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = FCBA8C8C8D9E02658B2AAA645469C0A1 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 309BA5AC5996A59987DC5FC2AA555F5F /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = D800362A1EAC706DB637DDDA815FCB64 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF1BE452932FE40346A576C71DBEFAE /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B98247EBB5782CE8051AFEBEAAF257F5 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0EAC2ADA214241BD4899DB8B47726FD2 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F62027A357E86846B1913AE4D9178C /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 354570A9B75704AAC869CD4A66F043E9 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DCEA70A8455AC7D4E35182D9A7F4ECC /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE8F8D657B4AD8D68519848C7E00D6E /* SDWebImageWebPCoder-dummy.m */; }; 0F199BC919DA606852559D57EF858777 /* GDTLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 13721102B03A8ECF1B4691430FB78793 /* GDTLifecycle.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 49D8B4ECBCC3CC3CCA6C5A1B97D266F7 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 36EA2990DB0BEF0EBFC83DF98C1FD56A /* BugsnagCrashReport.m */; }; - 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AF880EA4E6EC46A565A469E7BBF10A /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3A35B3C486393401E3F04F277F938938 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0F4D40CEBE58229EC7B0B854D6E5FAD9 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 75FB1004D9B7D67BB87C20ADF2E6B934 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EE0DB3A20DEA4CB06D26C4EED1FA386 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 453BFBFF505B9D71BDE641972519C1CD /* BugsnagCrashReport.m */; }; + 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6022927CBB877F9F4F1956FB8289B89A /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0DED9A673F38976D3067C9FDC5F2C87A /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F4D40CEBE58229EC7B0B854D6E5FAD9 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = C67D8DD64EC1C6C8765D9D4BC2395E5B /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = A57F6995734EE8ADDE7F8FEFA25AC49C /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F7CB1F6725B33F8063BD453A4435278 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E3F75CCBF052877127694AF8D51F61 /* FIRComponent.m */; }; - 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0BFBA628CCFEC71D915A97EFB96799A7 /* ja.lproj */; }; - 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 444FAA0588008314F1EDA1458D4351C1 /* BSG_KSCrashReport.c */; }; - 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = A1D0CBD754DC34F014D38B05008B8745 /* BugsnagSessionTracker.m */; }; - 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CF58F69ED2387D3A40D3B251FE60953 /* NSError+BSG_SimpleConstructor.m */; }; - 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 82E63E35E28925985F52851F5E7F7A2F /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF99ADC4DDE3984F46775A1AC8A3678 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 679C432647D258664EB921B077656E54 /* BSG_KSJSONCodecObjC.m */; }; - 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 70E03B7B4E15C9359D458397CC5D05CD /* BSG_KSSysCtl.c */; }; - 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F7F35B41FAB9FA37A2B5968D68D8838 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 388EC556317ED0A5D2EB3EAE9B62567A /* RNFirebaseAdMobRewardedVideo.m */; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C358DCFDF7DB17909BE6CDF6AE5AFF7A /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FC91299498ED4C8360B3FA9F79E38D /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F783017BFCE6D8957205E2368080555 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = BCEAF35223D82BA11CD63E498B46EDA1 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 32ECFD56D4C15CD002B0CDFB5E599B13 /* ja.lproj */; }; + 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = DA367791D3EA913EE63D4B6186F07065 /* BSG_KSCrashReport.c */; }; + 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C3F88398F08E7A0BB3F689B3A6315E /* BugsnagSessionTracker.m */; }; + 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 64EC8F31F816629DC84D37C40236EB06 /* NSError+BSG_SimpleConstructor.m */; }; + 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1A68332B4403E04672865D3E4A4B10 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = BC29B87A284654FBD1548DA33E5BB01F /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7203A22D67980F79BE1F48F851142 /* BSG_KSJSONCodecObjC.m */; }; + 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D9866C2B6D5302A3C3DD327DF644A82 /* BSG_KSSysCtl.c */; }; + 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = E67BD43E770B4E91B853ECC3643A444B /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 276F0467ADC55652D42C9B8EDF691B7F /* RNFirebaseAdMobRewardedVideo.m */; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D589DABDEA669C1310CAE687D4DC0B9 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A12A109DD4E22A0DBF6FF579E66843B0 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8346DFB8C8499D03B29FC1954F4BFF35 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 57A797186849ECFB74F87D1A6D679040 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11129F1CB005A708A117077C32350240 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7864EB1FCB4EFCCDE103F9D8F50114 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACF74694A6631E1862E7387FF1FE94C9 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 116192D11F0F7C27B891EC46BEB67776 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D673843F637BD65A1677DB94EFD1975 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEE2091ED266224B958D1DDE10E9E00 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA05EC6E19DAEC1ADF3A0DF92A21E143 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 116192D11F0F7C27B891EC46BEB67776 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = AD54B5D28CA33D8094D80425CD549FBE /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D22BB927D67620FDAACAD659A22B72D /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11AB86078F205218D679E1C0BB086684 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = F6BC72E7DD48A1994CDB1E6FFF3B439E /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11B33B2F8BB6CFADE2A5ED140CFEC8C1 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 971B256811855BF0D6867E3A723FA37E /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = B11A55FD8328E6DD365FE8FE004FCBC7 /* BugsnagErrorReportApiClient.m */; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3693EA1280CB5A156C4A5F602F068CB9 /* rn-extensions-share-dummy.m */; }; - 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 991F63888F0DADE5B74E325A8A6BCCE8 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = D8138F80FD52EEC80E47EADAFF73B580 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1231B98DC8FA463C5147C87F53A7B0CD /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FB900A939C4D5CD6FC137C114524DE71 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F07004F4E99EC50DDC8128E5718F476 /* BugsnagErrorReportApiClient.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 792F3DE9224A1DD993CC8210F6D61535 /* rn-extensions-share-dummy.m */; }; + 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 556F4CD155ABD3629764F7AFABB657D2 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D15D28FF47C2931493135B573C3C6A6 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 734F3CDB841342C878472876A5DB5FC0 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F95CACA4782D0191B641D0B5B56A6685 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12B4CB2B1F8A425ECEA73AABB12E7A30 /* SDImageGIFCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B3125C414316843B2D464D1AFF4A848C /* SDImageGIFCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = D50D717ED039514E7E3EF72E9ED56463 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C3AF558283E7E128FB626F24EDADC103 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = C2F4266A6264DC9E74BC7FDFE139661B /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA585537C5D6D7BE71A56655065B6DD /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12FA7519507285624A8F734D8A3939CB /* GDTDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = F1EFD5B46A034F0A431926E8B5FF6501 /* GDTDataFuture.m */; }; - 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AA8EAD8C2A634C8B211DCA3C84C4BB1 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1328941F49991BEB7900B9FAE0861076 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F0FB6B1D273917FA9C0F1B70ECFCB3F /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1328F683A4C0D079350259A18A68938A /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5DC588802B42ED16EAEE7DDAA94E6D8 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ACA86B0CE6802F5303BB625FF3E0F4 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 517BA8A3ED2645580577976899A3448A /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FF4B60E416BC2B631C047F702F4A746 /* REATransitionValues.m */; }; - 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F433C626104248599C9F6319D3C54B /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 6803EF30AD795DD46BE07598CF430D32 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BF0CD01193D197C93A1A6EAC1C8C7F2 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1328941F49991BEB7900B9FAE0861076 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A1AE9B39C7652616C8D6BB801552498 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1328F683A4C0D079350259A18A68938A /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08188343B2338130885FCC76CC0F6134 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEB5577CD1899B3F7F5F11FBB09EAEC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5E05FEA913695F2BCA3940A68272DAE9 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA7070E8C3E015DE88259B3A3CDCD83 /* REATransitionValues.m */; }; + 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E9D43A734EECE32504BF5D855427517 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 603941194F777E870D0AC0BE29F18E51 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; 13CC63F0A5CAA2C7909B84D3C6D4620B /* GDTStoredEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 772A0E739DDA6F457BF35D3662285A59 /* GDTStoredEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C7E01E3156F2137645C0D6C51F90EB6 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 141CB062270AB0D64040EE9FF7CCDFC0 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A55F4A869D8A3E299746A434C181C2C9 /* RCTCustomKeyboardViewController.m */; }; - 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D75317127DCA2E50611CDFF673C98CB /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = A819EBFAB8718BC7B0C8F260D76861B5 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 20BBB7E03E30C29DDFE9DF994DD64251 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6594216D34B0923DA2F6C563BBC9113E /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = EE17E3347487B607CBD9E7DA3FA9DB1E /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 34BF1241D53E178690864E349AD0D6CB /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6539F776FBDC5E175D59AE2A055A008D /* ReactCommon-dummy.m */; }; - 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 959628BA0DDBCCD75C7AC43F9F4BEF8C /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = B28DFCB28C906E2A2ADB0BBBAFA4E945 /* RCTSinglelineTextInputView.m */; }; + 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C00ADCD67CFC65D0CE6E869E4F049A /* ReactCommon-dummy.m */; }; + 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9184892A42F009B99FA3122EB8A01354 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E107DEEF88FC5E34D4C5DD2128BCB77 /* RCTSinglelineTextInputView.m */; }; 14E29E6C822F8A5CB16A6B5EE716D81C /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9837BE777B812E8919321296E0674F0C /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DC44227D6FBEFC40745BD6F81A94947 /* RCTInputAccessoryViewManager.m */; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 782FA60B47AB3C13BD5A739B4E7D0267 /* RCTTypeSafety-dummy.m */; }; + 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FD1D6D3BB71EB2CB31EFDC5BA4267748 /* RCTInputAccessoryViewManager.m */; }; + 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45153428D47F26ED4C633C5D69AE6175 /* RCTTypeSafety-dummy.m */; }; 15320769AD3A12888272E5E141BFCC9C /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E96D93EA3C646CF7B21BA5C5B356EE /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C89C4FC2E607369BF79A14FC2B68643 /* RCTValueAnimatedNode.m */; }; - 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7AFB949AA68523D3816D43F5D0B6829 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BDF14C570382A8C3638F41F2E56EABB /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 794262CC6F2E3398361EF16166E8B3B2 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15CAF5C633711E2C121CC6A30FEB1848 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CBEBBFD992C37A25A483B4EBEF43B1 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42DF9032CA32383CC1CF121CF6BEF124 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 222BB3AB878D6D9C701CF7B0DF973ED8 /* RCTValueAnimatedNode.m */; }; + 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3EE976E7FC3CBFB77EC5F10244D571 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A096543D66724C493A712068089CA5C /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D3EA5253A7172009313C0537219DC2 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15CAF5C633711E2C121CC6A30FEB1848 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B7BE3A6DE33BC60B85F162748EE3ECD /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6003F7281C2606475FAA67EFB05A68B /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D84307C5CFE93C1EA2452F993A5334 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF61105B6BE647061B73DB8202543064 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE77122A910065EFA2B5CC41D22D6077 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B3821D4D649D9795E1609C4D166AE59 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B3ABC7A04102C3F682D13E316B99260 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = A9260E377C17898766A665275BEC9B96 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1669AFC658678BE6CCD8B55B48F9C97E /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A06434A333E319EE6F329F7AD16700F /* NSButton+WebCache.m */; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D97133D0DF5D8D360CB13EED21FEA64 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF4B5710E91A0F3799C82823FC25226 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168EBAAD25584C70CA9111D5CCB8180E /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 18083C0F8FB874B63881DB343401FE81 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 258615144280F905E5F66A4A8335502A /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 839EED11FB8088ABBAFBAC2C6C429809 /* UIResponder+FirstResponder.m */; }; - 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE0EFB192D6A4057750293E76172B93 /* AudioRecorderManager.m */; }; - 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 49348BFD9292A3FF67B1B65C396AB7EB /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C355DC38001EC1DC404881B238ADC3B4 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 15D44666109AB3610BC6DEF28C5CA237 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 120634EB9136888379CC2EA67B466B54 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = CB88591B689B15F32DB8F6DA910E1845 /* UIResponder+FirstResponder.m */; }; + 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E4399DCEF88B24744A6CB0886F4BD5B6 /* AudioRecorderManager.m */; }; + 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A37D6F518A96C60FDAEA4CB5AD111EC /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43EE7C13715C24845916FB3DB7EF7B1A /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = B19F2883CDC6C609DB643BCC2F776E02 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 178E75DE2938CCFCEE8DE1C3A13FB126 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3844A27E41E7C5F10BF14FC9A7929A /* GULReachabilityChecker.m */; }; - 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 94074BB665964C130EF3AEAD5903C1F7 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB93FDA28697B267385637DDC0B84FE /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17D2A3D9D174A9BE8815BCA3EC73B4CA /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF904877DC532C867E65B62EAB5AC8DD /* GoogleUtilities-dummy.m */; }; - 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2968C02EB2F9DA9CFE11523D853F0E /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = B96641B5D9DCA4C6DE1C0D7235BAA942 /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8330AEDA932A6AD8E031EF0C641E5DE7 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = E09BBD190BFD8F1D383C10221631F5DC /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ECDC816BB62DE08A42E843F9CAAF3E2 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = FD1B095061113BA335473EB4D464C2D0 /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 799C0484186D15DF5F4FAFEB7C9FE65A /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = C5BEED58E8DF46B6F6652CDFE70D044F /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 18E054C5BBDA83CCE21A718C8DD17262 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4576431923B32B28E848D30EB34BD00 /* 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"; }; }; - 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DA9AAE44CF3B1F9CBD5F932B34C3A912 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = C486485423B3730492ECFD48D1453907 /* BugsnagCrashSentry.m */; }; - 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA80193E1A0EDA3D3A4B103FC31B051 /* QBAssetsViewController.m */; }; - 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 961650D89213F585C40D63EF23FC4767 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1948B4CBDE4703BC5BDFB832E73A0A1D /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5E31C57EE60147EDAAE3E31B1D19AC /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DC6AB09782FC3C60D8E082174E26072 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 19A77F5198AE35F6170EF743E166358A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 304DA1D0C363EA0FC991F52EC05BAB2C /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E0927A2CA77A93D1A338FDD1DCEF0951 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = C31B55221F2B6E3FB40232421D286F52 /* BugsnagCrashSentry.m */; }; + 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 50F1831D0AC780D0347D52C97AC86B78 /* QBAssetsViewController.m */; }; + 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E38CF5FC87ED1774808BBFA4FCD021D9 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1948B4CBDE4703BC5BDFB832E73A0A1D /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E03FDADD8D087B539D2F8619A00F2DF6 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED72BDDA2E61954E4B0F244A58766C2 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 19A77F5198AE35F6170EF743E166358A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 438397C293ADBF8CC042C10E1F2B29E7 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F73448C5E41D0B6AED5A89E493E41FDC /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 69B055354EAE4BA62853C728881ACD3A /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A10FA3F9DF4CDF788BDB424013C402F /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4DE1B54DC18B7BBDAE769BF3FDFB56 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C97DDC0573F567F53412E83F064BC52 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A39045EC7A8504580AEFC75EDB56CED /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 325884761AB5F277A663E791EA9E1138 /* EXVideoView.m */; }; - 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A82C63712B42E185D5C270BBDB629E32 /* react-native-notifications-dummy.m */; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FCCF3DEE4FAB690782F0F7F0ACA51C41 /* RNUserDefaults-dummy.m */; }; - 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 927C17DD6B309124DF54EAD8D4F887E9 /* RCTDecayAnimation.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F318A1FC11A1A8E05DDD499EE7F877C /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9554C2907C9D9E8F76D8D70EA7EE6249 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = E16B31693808D9810E08D38B3EF71479 /* RNFirebaseMessaging.m */; }; - 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = B99E5695594CBE8CFD931027DD3C667C /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 69356F2622014AF7DC2A3EA2A07BB2EE /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DBCA195BCAFC9C66DBE902BE6B9EF2E8 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 86EE36CDC5C5F64D89A484D13F9B47C1 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1A10FA3F9DF4CDF788BDB424013C402F /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 858F57F74E0AC2BB2AFA035AE21275BA /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CACD9244F81FC25B9A30004DEE0FABA3 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A39045EC7A8504580AEFC75EDB56CED /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C16EA7E15A3F35AFF502EAD788FBDD7 /* EXVideoView.m */; }; + 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 239227450F1F8CBF02753D7FF58066D8 /* react-native-notifications-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F34D0B0B362BBF100ABC690E2B333422 /* RNUserDefaults-dummy.m */; }; + 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1471E2A418417AC26B11432CDCD16371 /* RCTDecayAnimation.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 889593AB6526E061881B81EA8AA9CCD8 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DE60479DDCF059AD1F97AEF0AF8D1DA /* RNFirebaseMessaging.m */; }; + 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 912E9582888DE46FA14544290249F7BA /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CB3D8D0C1C5A6A650DAE7E59E04DEDC /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E942377919BBE70AB48BAC4D697D4A /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = FA224BD245F6880CF82A97B34F57EA47 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EECAA76F5023729BF7A8A99CFF1F073 /* REAAllTransitions.m */; }; - 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D3ACA5DF26B64D8BFB86382C59C225C /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1BF555E94A7BE625ACB1CF2549EA79E4 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCC74BBCDD1FFF31B5B035F9074E4CF /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = F05866DFD17F00D85C0E2FE3F063EF12 /* REAAllTransitions.m */; }; + 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = A93CF72DDD91639E5E0D4F9AE2FFA261 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BF555E94A7BE625ACB1CF2549EA79E4 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CCCF7627EE1A93D9A80F2A155E016155 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C5BDB058468D11E68A6B18163FAFD43 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AC3610A19BBC0F2EACD04CBA96AE998 /* SDImageFrame.m */; }; - 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4375BD13925DDD566F3381489293DE18 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F3001C57F8CC737DBD4A431068E0CC5 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = C9473900FC498C6D5B513A6248DD89B6 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2F75CCFA4725EE9D410580E837D823 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D0E9D473AE2CA5B3C418987B185FD40 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B1C72E3F0EB30F5121B546F5090E9A /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF7C413C7FA2654A5538A174E57FF11 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 07460367788943CC87A5DEBC9F0BE2A6 /* RCTTrackingAnimatedNode.m */; }; - 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F1591CF497A71B0B4B05EFD3E3656A52 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 75595DBD8618D15D864C395D2F159A4E /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 92620368652A910DC0D6564AB68741B6 /* RCTTrackingAnimatedNode.m */; }; + 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5EFE352D1378B557468F64D9E5D2B9 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1E39EB7CE27A1A84AF4831760FF1A643 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8FD8F174DBC0600594D0ACA475512E /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1E6C0F4ADDB7C8B2B268AB3794E30791 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = B30EC1C70EBBBF1AE74DCF889632A04B /* SDWebImageOptionsProcessor.m */; }; - 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D0BC95ED6BBB430597CE23C417B542E /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = C8CDFAE1DC19C13D3DA945619871BD92 /* RNSScreenContainer.m */; }; + 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = A8256F9EC248B879F85E9850566E0A1A /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 728F432ABDFF53A7BCABA3B3B2FD610E /* RNSScreenContainer.m */; }; 1EE29AF938E8A2AA9DB15EC2CF341FA8 /* FIRCoreDiagnosticsDateFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B86658594281C1E99C699518F4B8838 /* FIRCoreDiagnosticsDateFileStorage.m */; }; 1F0C67962D2BB44987FD1B99593098A3 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = EED9275A1D632EBAF320EF1A80E7B5C2 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F8BD67D3120D5BB19A1CB41C1B94BB1 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C1F1702169DF372D6719CB18B37FE6 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 615B854A67C7167ECA294B3EA4483A71 /* NSTextStorage+FontScaling.m */; }; - 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE079E5E70B4BA4B86DB31EFEA492E6 /* QBAssetCell.m */; }; + 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A4496C6492E8BA45305A1FEEEBD6901 /* NSTextStorage+FontScaling.m */; }; + 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A41056D251493CFFD991E186AEA9B74F /* QBAssetCell.m */; }; 2001857FBC4E5A92A474A1694AE23BD6 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6219DECE46FCBA0B37B214302C278F1 /* 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"; }; }; - 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 46AFF8864BD2A72064697C0A599996A6 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD79D0F338295E977F4D316A76EDFFD /* UIView+FindUIViewController.m */; }; - 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B244A2A0B9030A23EFCCC664D154DC51 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC251573210046CA55ECE59BC216F8F9 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 209B337BCC8D29242D29EDFAE0AC53E7 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 678B533B72684A0D8700B5E2E66C5D4C /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EB8D3B71BF713EDA4402769F375825 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57264E8B1036FFCCC26FD7A98BC652C4 /* ARTGroupManager.m */; }; + 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C4A6060F80E34DD9B50B2DFE0C9BF2 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B3BFD28DAF8B6FAEB60A962321E432B /* UIView+FindUIViewController.m */; }; + 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 845A0DDCB7399C26618185BC79192F34 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 379BA6AEA045508F8CC03B6CD8FE31E5 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 209B337BCC8D29242D29EDFAE0AC53E7 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6EB0B824AF84B8E153BF5D7B66B29FC1 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E077631EEEF1BAC9D4F61506BE04F689 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0911296088AE811974048D99C4DE46 /* ARTGroupManager.m */; }; 20B48F4438783B90D6ADAB673582DD9F /* GDTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 42EE7E5F427054E1DC3D903A71DF485E /* GDTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD28EB1C5665AB87CD4B715CE0C3EC7 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = C887A99E09489A56DE2379D37D1AA86E /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FA1D4486566CBD662DF2E1BA3D046B8 /* RNFirebaseAdMobInterstitial.m */; }; - 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F544C6F4427F61DDF85089E22844A7F /* BSG_KSCrashC.c */; }; - 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFAA9D3ADEE4875D364F0EA50C4098C /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA0BFB9CED579761C61A19D4B239A6D8 /* REAAlwaysNode.m */; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EDBD7760CAAD0BDC4B18C56EE630607 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 90CED7693DC05D50A140637839883E72 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698D552A903060218AE893510C4D8C1 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B9D904F1C8064C21F44FCF652E65AAA8 /* RNFirebaseStorage.m */; }; - 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AEB1F91EA369268AF481BB6B67FD95 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C648EE5AAA2B5DF6168714E9EFEBB57 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D63C370B1F5F00787DBD1CC533D8DA /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = C29328094405CED92A7C7819B81EC90E /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FF34E16BF85DD97F2E55FE764F2285B /* KeyCommands-dummy.m */; }; - 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A11CFDE7065490F90641B26838FBD7D /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 231AE8A6F71E9002C1051DE440D06378 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FC803D1BE9A2CB384D5AAB212AFFCFB6 /* EXVideoManager.m */; }; - 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA0CDC92F4D7E062A8E3BD5ECA5BFFA /* LNAnimator.m */; }; - 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CA225D5A2E6D717CD7870ED6432FA37F /* RNNotificationUtils.m */; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 978DACD044797636B6F45E9EE5148512 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B38EB267EC8DC49342BD5DF77B29E3 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D80F066681376DC133CD76AB2A21EB /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 90030DCE8DC7A2BACCABC66A85C65CE0 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = D9889D226D2264511A5C8C617B3E3CC3 /* RNFirebaseAdMobInterstitial.m */; }; + 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = E294DA72BFCD10B1152867AA7571D454 /* BSG_KSCrashC.c */; }; + 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = A6ADC0ED76E75FA14818D598B0C9A7EF /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A308F58A40A9C554C16D0992E95FC01 /* REAAlwaysNode.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 7289EBA43CE61C39F11A9834DC343282 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B50CA41243E0F44D3881FDC85707F465 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = E6081276F8812A230AD5917A50AE93FA /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A59F301DCC2311D365E74EEA05FBABF /* RNFirebaseStorage.m */; }; + 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9C39623A46A8D8A570BCC7F55A69C6 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB6BDFB3FFC45D52CADDD63EC71C494B /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D97D708516454AAC9C946326909AB2C /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0CC1E09FDEEDB50EA52B13CB949F5E /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA7950AA6238AB2B349BFC5CE37C26B8 /* KeyCommands-dummy.m */; }; + 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DFBFA7AA68FC31844095C0BD269181C0 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 231AE8A6F71E9002C1051DE440D06378 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C61958EEB32970B6FD85C64E5BADAD0 /* EXVideoManager.m */; }; + 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 79FEF5404E1BAB09D2F241B48A4DEE31 /* RNNotificationUtils.m */; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = E49C3AE28170447EBF2AEA8764FF1E92 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E483D55FB2AEBC8ED11136875AEB2F /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2455449FDD13A5BD6B015D9B25207EB9 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 9113EA59A61B4CBF5ED6E953CCFA9F01 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = F789322912D13D98F15BEB706E0A630D /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 405EA870C2BB4F89E5D6CD159F4CFA9E /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6467BFC418094BBA82ED699AF2F84AF9 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = E99AFBF30A3D56FE587EF4FDA58BDAC4 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D376DCB0CBDF7412C0B00C8968B66E3 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2520BA6FFB511E1F3B13760E919E35B9 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B9F452F697190C881B95C6137E24274 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = C80C24196CA7E3B278CF17DC2FAC5AB3 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = A60FB87EA02412732DBF2EC5E7A6A199 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 779726D959215FC66398D2A7BD055CD1 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2520BA6FFB511E1F3B13760E919E35B9 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = EE869A12F535871BA33512B4E9E9E46C /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 38A4FA5B11D3DBFA1186FAB230AC87CA /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2565B9310EC364F58EDF6D7C3E9D9E74 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9307A5FA57000E38FBF9EC08FFF8A2BF /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A8DFA1F864C62F0877DC2857424EDD7 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BEBAA5D1ED553CB8FCF2B22DF6606C /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D6DDF8F37CA9BCAD772E6D5DA49295 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A49957A6E59C86F1A4F1583FB7FD8F4 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25ED384032B9D13C5127B75C00C81489 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C57C3B759A5EEBA851D9DEC243E07D0 /* BugsnagApiClient.m */; }; + 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DB8E6E524E93AA1E17AC170DA85BCC3A /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 06C337547CAF801A9A2D2CED641A5482 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 902AE98327A861832B4BA137480FA0F4 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = C9882F9D0C1F75D8C5013E75A9C5BE28 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25ED384032B9D13C5127B75C00C81489 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB0A7EF39CCD02905815A0CC25C4DE9 /* BugsnagApiClient.m */; }; 261E1575F07D66992D6993C4AB9699F0 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA2D4D1364530875FFC9C34F5E9DFCE /* SDImageCacheDefine.m */; }; - 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = D89B07927047B4DADE70F271874C1179 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = AD3015F3E07D474D457615D397B24B94 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2672B79116AA34F158A2BF9BCF83F014 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = A90EEA3E24B6338A093526F3631E6B57 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26CDA6E509270CC32B1FF34C4F7D0DA2 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09930B6AF4D29B74B05A4AA77C3AAE /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C936AB33DF656FAF2C5EAB8138CA869 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 772720108593E953F4093B30981FFD2D /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F095906BDA3965C76D41B3547C91D8F5 /* RCTVirtualTextViewManager.m */; }; - 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 60133F456FF78804F9AEE4D2C3B11678 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A951EB4F09E6AB0FE2D903F6DF0CB5 /* RCTConvert+ART.m */; }; - 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED0B61A0303FB3177736862FD78448E /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 062446A5926322219204F38CBF59BDC9 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F9516B4B5D2BDED1D66108948E2AA2A2 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BDA0D59E0FDFD4916DCD98BC7C3B04 /* RCTVirtualTextViewManager.m */; }; + 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = A524FF638100AC45C33EF88339FC17D4 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = FB79C32615B9E1BA3D70C5E2C249C340 /* RCTConvert+ART.m */; }; + 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BFDE11CC8A7D89ECAED75A3463CC42A /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 276EA1438A750B1EB0094AC03C85B9CA /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 70890F33DE7A2F89F7A6D02F11156613 /* SDImageCachesManagerOperation.m */; }; - 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 376ECD23699FC3A77877C59FAF661064 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 565940AB6D57C8F2B22C29AEA65242DC /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 27C583D37081F7F3510722DF66158B32 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CED23C3BC4B8F1C25E48EA10AE1A89 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0287D9269BE2F2D523F799AE70389190 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7B76FE61248BDC8A1DCA4580361BB582 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 27C583D37081F7F3510722DF66158B32 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC8F93B70A554F4F421277A6DBBE90E /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27E5457CDA9A021B29AF532A8477DAB0 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F3FA0B1FB5B9C2F68BBAD227716F23A /* SDWebImageIndicator.m */; }; - 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = C88FF80CF46E6A7B8FF8FD176C8397E0 /* RCTTextAttributes.m */; }; - 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E92E29D5A6756A75844E6E90EB02976 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = B7F0074FC2D8A9EA66D202D5DCE0A2A5 /* RCTNetworkTask.m */; }; - 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 306350DC6B344211A1A7511A3235860D /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 24E9CF082676CAD594449D4A5283465E /* RCTTextAttributes.m */; }; + 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A0AADB2A4FA5488B3B5199F7C8EEBF /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFA9D5359BE1E4E260426F1C13F2D01 /* RCTNetworkTask.m */; }; + 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B8A6812933BF099464A855BD022D03 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA57940434E3AAD7AEEE00A590613E6 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 723F636C015B98033D45BBB786F18DAD /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = DC898FA019A3F25EA6F04D68DD84E834 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29B5E0AD4C8BD0DB9E1BF5D8AD913CED /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 28FD7F961165BA72E393450F992F2048 /* SDWebImageManager.m */; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E16F32AB7DCAAD31BCA1ABF27AD35118 /* RNRootView-dummy.m */; }; - 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DD67F63242CF1116E18DA6D1483E77 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = CE0615B53F7227CA93A036AB3700D8B3 /* RNFirebaseNotifications.m */; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F19F79B8441F90165D2F5B44C1CF1A88 /* react-native-document-picker-dummy.m */; }; - 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 10250D78C60056D203D235E04EEDF191 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD4EE6B665100A595F0DC9AF28ADE115 /* 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"; }; }; - 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0552660F46727BD283F8A428044D8013 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2AE22261C2F0CC82CDFBB9435346A3A8 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 985950B5EA8B80D858D6759A4C297DAF /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA716AE7868435F42751B7B9FAD16593 /* RNRootView-dummy.m */; }; + 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BA8FC4DB05E336592DAE5481E5D58A /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = C8E27E3B1EA80180B17EC246D3E403E3 /* RNFirebaseNotifications.m */; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C28AE6EE2A7481C0B38297CAD41AD83 /* react-native-document-picker-dummy.m */; }; + 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = D80CADE0F1DF09047AB3F7B0DCE2CC49 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3AAB2DF9FB83B7E1D4F00EC2B58AF10 /* 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"; }; }; + 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FDB38AF4E7E9413184E7F9BF4D847424 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2AE22261C2F0CC82CDFBB9435346A3A8 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = DD1F61F7805C3FC9FF12CE56031B83D1 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2AF1ED3F44A359AF4E731231E6CFAFE8 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C599D37E0638CACC8F72727A8ACBC6E8 /* SDImageCodersManager.m */; }; 2B18BA16E70FB8CE8D1CBA9F53F02241 /* GDTEventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 236BD84A3D7A0BCA0879CEFAA83975BA /* GDTEventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = C3311B35B5431B68BDAD6D00E792EA16 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = C382C4B6DF1722D9953FF2B3DCD27F4E /* Bugsnag.m */; }; - 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA1FB0F407E17C0D9E1776F51DB8395 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = F06E69D19CB17124A98CAC4A351F247F /* BSG_KSCrashDoctor.m */; }; + 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3FBDF55D00D79D9DBDF0808838A45E /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1BF582D5CF57769176D237A441CF48 /* Bugsnag.m */; }; + 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BFAF164315614188720AF2FD4A9D2270 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = A3563F6253B3ADA72FC5A1180FA6EB55 /* BSG_KSCrashDoctor.m */; }; 2BCCAFD974059ACAFC22F751ECDD2AD7 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C312E4CB1D08B208EAE28642C3490978 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 693DA1F565A6FF66C8393EEABBBBDE86 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B6B7BACA996C70663A94C0AC4B349908 /* fr.lproj */; }; + 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 54E38666EED87DA6C2D2AF27054A6575 /* fr.lproj */; }; 2C301F59E16291961A53C6EFE487CBA9 /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 90EF6699ACCAB7C72CD5324F892A9215 /* FIRInstanceIDTokenFetchOperation.m */; }; - 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C5B614F2C0CF9203952EBBEA501F8B /* RCTDataRequestHandler.m */; }; - 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F8AAAFDC375A850D80E66702DD4BF52 /* QBCheckmarkView.m */; }; + 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A00C735FF3CC0126B0373B8738EE83 /* RCTDataRequestHandler.m */; }; + 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = EDF6B7CD599FD39008641CE2246FD008 /* QBCheckmarkView.m */; }; 2C447F128915ABFDC8E0CE94BEC794B8 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 663D8A7DE61E19F411CA269EABCC27CC /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B515C88A882F49E4AE51F40CC365F3 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC1D16019A96C865667CB57CCF23519 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2C4AB1C100D4C8F549F3B391F96BF82C /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C711D324C097D28645BE1368E672C76B /* RCTRawTextShadowView.m */; }; - 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A73B6FB820D5DF2EC492B1A4D6037F2 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = D65685F530E8F51BABCEE69624EBCEEA /* BSG_KSCrashState.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E2AC07FAC1F2E0091A4C47C3EEBD291 /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 661D96F33813C29F39EAA5A247C1BE48 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D78AD78AF6AB6F0BE0B02B4408976AA0 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D59AF94D98ABE63F8E9F9432A8E0B6B9 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C4AB1C100D4C8F549F3B391F96BF82C /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E6977FAA63F6CA6D8FDBC6AFA3B9E98 /* RCTRawTextShadowView.m */; }; + 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C326E06124A6D1EA1B7089D5E7E9F8EC /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = F8B82E7DFEC57F3F2BF27DFD687B53A4 /* BSG_KSCrashState.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1DFD392887AE2AFA6838B1794DD535 /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD4ABA5CEBCCE553E9F6A570051F14A0 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2CFEE3C68DF30B10733EB873C39AD7CC /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 326F4393F9730A5FCBBD861903F4E98C /* FIRCoreDiagnostics.m */; }; 2D5C8E1419E3DCF259A42E81A1EA56F1 /* FIRInstanceIDKeyPair.m in Sources */ = {isa = PBXBuildFile; fileRef = F84CFF851919F4C8C90C7A0A02A4EDBC /* FIRInstanceIDKeyPair.m */; }; - 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F269EA1A423BE65A1543239DB727E92D /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F7C3364F0E0F6F42CB93E2B0560C2DA0 /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDFFA47C755F73800F680EE4AC433EE /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 513F5F8991E9989A90D11A4EC14A87AF /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C181B7F718B659FB9482CFC20888531D /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = D57EEC60392CEA5042D268D64C5D6928 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2DD5EF0EB4B7DC767D1006CA43D91FA3 /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA316AB9B1E087EE087129012E3ED1A /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C6DDEA9DA8FAA71B8F5563B3C8BAE3 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = A96ADDFAE20DF4F9B514874EEA3709EB /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E834C1C8872637F95200FF9269927E5 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D62B7A3B4AF1152F21105D3B2E827CE0 /* UMSingletonModule.m */; }; + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF5A7DFF4C37F2500DE0FAC62F58DAC /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = FF35F109D7A309C754DC5062FEEADBEA /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E834C1C8872637F95200FF9269927E5 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A9758E0A04F5FDB62647A27C76C331E /* UMSingletonModule.m */; }; 2E97E8985D7EEA0ACA621F03CBB618E0 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = F534DAFAC571CC5B019C05580EB1FADB /* GDTCCTUploader.m */; }; - 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B06766EBC90E7AB98A11548494111AA /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2FF0EF6A719422A08A1E74AA5C5D136 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EF1C5548F3F0E3DE7BEF6390805DEB1 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A180D1561EE0153CEAE325FB966800B0 /* FIRInstanceIDLogger.m */; }; - 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B2FF77B343827C35C7332825DF9A585 /* RCTNetworking.mm */; }; - 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F79445FDFB8F1C28B17B142380CA2575 /* react-native-video-dummy.m */; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAF2F04ACCF39BF7E4DD7FBF6BE4009 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C0DEA996540B56EC22001BD80BF8094 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4D3CB5530FEDC8D599D0FC2A883DF8 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A3909AF4DCC56DEC8BD614F01AECA9B0 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 258615144280F905E5F66A4A8335502A /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = C3320471C1E5BA0EB07F380A0B91F931 /* RCTNetworking.mm */; }; + 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8DFC07E101B9CB1761F16757FB29959 /* react-native-video-dummy.m */; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F74E6C1B371D11676E56E1E56343C6F /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B4599C606497FF6E3DACFA8FDB506A3F /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4D3CB5530FEDC8D599D0FC2A883DF8 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C07B23C852AFA33E95ABF5E8127209A /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 120634EB9136888379CC2EA67B466B54 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F88FBA4BEA00215CDF33A4CB5C1AC70 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D66EB87FF1052564109710F3EC6D0F /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 697331A145A2D7B271EF0AF6035364AC /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F2E9045B2AC258C5B8DFB25414CFD3F /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3035872384B71512B8644A2C9491AD6D /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BAA7D6FBDA74E2838646EFC29397B571 /* RNCommandsHandler.m */; }; - 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99D8040F6EAEAB257B9664B10F8BFEDA /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0246FD45FA1E925C01BDADC66A69BC39 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 66679F7DD5C25FB6D5A0FA4B91A6CD05 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3035872384B71512B8644A2C9491AD6D /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EEF52E683BE96395DCCFA4E115E9CA /* RNCommandsHandler.m */; }; + 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B0C02F0BE5E491D1B2A5DA0E71329CDE /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 30BBF147562E0292D0D75BDC762DE85E /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 884C00138AD3CAF3B4B0B63BD80BED30 /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30C27B25CE11FBFEC253B678435C2261 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 50C7E75DE032D780D996A33E74AA1D42 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 066DAB200485098245D5EED0B1FEF098 /* InspectorInterfaces.cpp */; }; + 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E19616DDEC3B522B13FDEBA40986692E /* InspectorInterfaces.cpp */; }; 30EA63D0E95EB523F359EAA9BCADC1F1 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D9E1543EA3F83B6350BB339D31E74A42 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 250CF8B419B162FB992D8736BE4DBC17 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 79056B8415873E79B2C8F6C636A96E00 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7612E5357AA20DB81B79395E816B4249 /* REACondNode.m */; }; - 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1164A57691AA9276B0B6AA6CF9EBA52B /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3166FD3754F038B8409AD57568FD58B3 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CC8FBDE81778614DD8CE5DE55460D4C /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 966AF84F0F33FEE812FBB4E268EAF1E9 /* ARTRenderableManager.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 90F4B4F539C60A30B094D1DF65FF0527 /* RNCSlider.m */; }; + 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CFD43F02444B6C40723BD79FFF466909 /* REACondNode.m */; }; + 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E34620E132E57727C78694C1145B21 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3166FD3754F038B8409AD57568FD58B3 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B90DF08CDA37A586424E392B137748C /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ED76E274BC8A26B2EA07D940C8625E4D /* ARTRenderableManager.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 80765060C6525FBF1EED7CA98F21F067 /* RNCSlider.m */; }; 3195DB0618B1CA79C84E8D42C590DF57 /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = E4ABD4161A335B5730AA14BC21DFBFD1 /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A72D7CEB55FEA06E30120F74D720E54 /* RCTFileRequestHandler.m */; }; + 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 211F6AF473FDA2EDC014A6465966DFC8 /* RCTFileRequestHandler.m */; }; 31F3C1F1C0E29CC26D3A6B81776FC9E1 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 097257AFA6B9ABB50D1D8D460C297CE1 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E5385A8D8663E76400E26DE09608AD04 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 74E4529B98FEDAACF3150604E65DAAD1 /* RNForceTouchHandler.m */; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CD830FC15460173E593D0931A1CFE15 /* FFFastImageView.m */; }; + 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09779D39FC51C49ACB1E7CCD2C280164 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CCE0A0312367F91E8898886D48805D2 /* RNForceTouchHandler.m */; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CF2C83A24C569BB24ADED4DFC7EBF61 /* FFFastImageView.m */; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 89160B8C3B26D7474A95630C72EA1E5F /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B6747F959C73C69CBFA6EFA290C150 /* KeyboardTrackingViewManager.m */; }; - 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 21F7F0D642A4BE155F53A6D1027A76FB /* RCTDiffClampAnimatedNode.m */; }; - 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = B6EE70348525F32720F5513A236840CB /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E4D000D9915C53B5FCAF941E7972F69 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33B34720C076709D0AE09FBD66D845C3 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A37385936A3AF6975BE19B5E37A6A63 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = B755B5DEA69CA3FE94D40CD2B3D5BDA8 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 585FC8608495994937895B8A2591307F /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A479634950702320BDA8537F995EFD0 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 04281FA56489A7CCB9EF40362A453BBC /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 551C4E17EB7E93FF7EAD018EEBBBE162 /* KeyboardTrackingViewManager.m */; }; + 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 83B6C0233215E1171F424FA442B1C37C /* RCTDiffClampAnimatedNode.m */; }; + 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3CB5D4AE81D2072000C6007CDF99AA4A /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C93FA1DD9321D910CD997E66BC84B7 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33B34720C076709D0AE09FBD66D845C3 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7126E6E76F462E83CF064A5963F6274F /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D56772272E17B920E932842A3E95ADD /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF7226A7D0B0BED3A80AB543C95186B /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 81599712D9998041E4E6DE0B92E9F991 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2ADAD932C0F08CC127BA9AE2952BCE /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 52FF01E96854D8F37412901CC140380F /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = E969E0281AFFBB8E4657559C0100F794 /* RNFetchBlobConst.m */; }; - 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = D115542288AF9DA2B7799D6CCF398704 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E4C192890231485B12830210B5D7DE2 /* RNFirebaseAnalytics.m */; }; - 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 070F4DA174D42E2375C1E26D009B3DE9 /* React-cxxreact-dummy.m */; }; - 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8498FD18C19E0FE18E529B9AE9B2DFBC /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 302504B5F4CBE43404E02F9264F9C6BF /* RNFetchBlobConst.m */; }; + 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 9896F4C12D99D9D3F35B8D83DEA54726 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 91965C85CF66D8EA20BA211B8836235A /* RNFirebaseAnalytics.m */; }; + 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 188B99432FF8F2E8F4F893A9C38BCAA0 /* React-cxxreact-dummy.m */; }; + 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CC91BDE7051E43EAEACD33F3C2D0E4E1 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3585CBDCF731A7F68C48BB6AD9A70AFB /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8175885836544CD4D80DDBE66EEFAA45 /* FIRLogger.m */; }; - 358BABC6CB59A971C1E83090D568F1FE /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D4EAD8BE22D1A60AEC57B78752F6185 /* UMModuleRegistryAdapter.m */; }; - 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4E865392D14D7F9AAD27DDB39B8F642E /* zh-Hans.lproj */; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 222E3933ED98940FBF6250CAF9E69A01 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 358BABC6CB59A971C1E83090D568F1FE /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = F3D6F56C79F582CB8EE3851BA74DA5EB /* UMModuleRegistryAdapter.m */; }; + 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DEBC889B15F04209C3F46BA6C73C3923 /* zh-Hans.lproj */; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 832A6EF418F653A14F74FC571CD08688 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36919C052E22A8130A9FCC27694A61DF /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9423585289F0FEE1EDBF88CC077C5BA9 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = B330D7E6ECB96495FE5D9E5DCC9EF7CC /* RNBootSplash.m */; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C38CA7B81ACA338D999FE3C0EAD78B7 /* RNBootSplash.m */; }; 36BAEA5FD99090F9ACDB8246FAEF9A44 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = C662555DEFDD7CFFF2487F4277C6C686 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E29BD840C7EEDF0C2224CAE90F3EF14 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F242E15D7BB04FE6B21F6E867AB5261 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 370F54E7E5F99ECD931AF474471A530F /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 69479128234A29F965EAC5E5AC7A110C /* SDImageCoder.m */; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 5807EB6D92C08024B83553174ACA5DD1 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E33DB78328A822A9C5D7101BE31F544A /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37BE852FE436F3F6397F550D19500530 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 719678554CEA5B56015186C2FDB53C4B /* SDWebImageCacheSerializer.m */; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = E86EAAE85254BEA5727D1E88DF730008 /* EXFileSystem.m */; }; - 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 21FE77054F9C254ACCD4B873EF82A437 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BB33DDB089C0F391FE215CEC01FBC2 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DFC4B8E6E0E43682B3D1525E51D6D97 /* EXFileSystem.m */; }; + 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4CBDEF8F1A47C67AEB2B155630AF019C /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE943BCB921CC4D2A39818594F0864D /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DC1ED14685D94D7B65AD30A55F657B68 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 38442B0F8709B30A6EDA4CD0454A21A5 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = C993DF06793B7954B7AE6F9F0A64ED07 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 3577E0616DA660D725D6546620A9D780 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D6AB77C2053E9044D3C2DA81EE8E08D /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4D50C9905DD81CF3A3FD3D2B7A8672 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3916D8D75559CA9F46FA11A981903A5A /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 31EFC03F02EFC58D84B8AE95618C2233 /* EXRemindersRequester.m */; }; + 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 391A024B4AF1CBDB1B929B84AFA72DA0 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F7B73C7BC6EDE9052F07E04DB0C417 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A49C65DA0B4CDCEB3AF8F86EA15A81 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3916D8D75559CA9F46FA11A981903A5A /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C372D568CD6870CC01830B85A92C17B /* EXRemindersRequester.m */; }; 395183D9069FB94B71C8E24EA8A21FCD /* FIRInstanceID_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A346F7EB324ED60BD0277D524F7464F /* FIRInstanceID_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = D093A63288644F13E10F340EED802CBE /* RNFetchBlob.m */; }; - 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30BB975B57CCC177196223E03CF5753F /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = F330F62465D1AC3978641F665A77320D /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E5385A8D8663E76400E26DE09608AD04 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B33D4B3C5357A308EFE99B01D9DB5C /* RNFetchBlob.m */; }; + 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B375FD543CA64F20CDE3F99EA6CDA070 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = B21AD03C6F6CD5601C5D12A8A809308A /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09779D39FC51C49ACB1E7CCD2C280164 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A32F3DF1F3A28FD3A9E28078BB3EB2A /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B418D43F61C1B419AB3F337FC541B6 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A38B322CEF5C4F1F5C90CDC284CC7AA /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 019EF2F3E1EBEF4B63B42F53A1FE1122 /* GULSwizzler.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = FC77272D5D1D48B43F12E55DDD9F80C1 /* EXConstantsService.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B7D656B7E53C426674B3FA4433A48F4 /* EXConstantsService.m */; }; 3A90F40F02279EE028931CE48514D66F /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70A2C57EB51078DE137D607F34867F54 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AD46E5BD03286A699768842ABBEB548 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3AA635385D2DD6AF7B23A198E1851B06 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 6927644527C531D96A463FF647B863B0 /* EXRemoteNotificationRequester.m */; }; - 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A674AEBCA76215CB8F991FFDBA16AFE /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A1B67C83BAF844E6860075F41D052A4 /* BugsnagReactNative.m */; }; + 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = A74E5A3A211DACFFD2A246748236E82D /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AA635385D2DD6AF7B23A198E1851B06 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 76078A91E7480FE1D7343FF920B5264D /* EXRemoteNotificationRequester.m */; }; + 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = A6A1637BE29A75F7F13B5F7D4D060A05 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0146D2D9664F29180B202ADE2141F3 /* BugsnagReactNative.m */; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B1DED816870AF0C0B03329B34DC15BD /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = EFE587B647AEA797A88F2C365DAC8EC2 /* RCTKeyCommandConstants.m */; }; - 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9599ABDDBC657553636D3A5F8EAAEA92 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 0320F5C6D72B329B0682338615BF7493 /* RCTKeyCommandConstants.m */; }; + 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = D27ADF8C1E1379A4F7E0518AF69FCA06 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BEF5F842EA4316476D9252C81E7D100 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 00EF713613E649AF69AC589CAB985955 /* GULNetworkURLSession.m */; }; - 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = F54A1DE8FD0FC45607B56E1634615E88 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A1BABD4B412A0953C577E058336334A /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6155B18D8CF4FB456DC33C47918C8895 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 08558881FB7059A61C52EBC5A08E176F /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C9923B6B84D38A40767A6E529CABE0F /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 703C19B7DA7D14697A7DA9E62F10EC52 /* FIRComponentContainer.m */; }; 3CD9657B5CDE67AE647DA7FC86A341A7 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD02FE5A2E5FEA9FC370768CE07C74A3 /* RSKTouchView.m */; }; 3CDB4A31E6703CFF32E72D3638BA11B4 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E6E78446D4C66AB49A9367C4B33947A /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CE0729079D17BAE2A3F5C0904B3FEC8 /* GDTTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = BF97D9E3AB424B03E0D472FE750E447F /* GDTTransformer.m */; }; - 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEF007F87D815FF9DDAF8260B117C81 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 30F18E9133C9EE4A81CFD2687ACBCD7C /* RCTKeyCommandsManager.m */; }; - 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 706F9976E2D7AAA380D98FA3C76F52EB /* REAModule.m */; }; + 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F95C1AC7952AABE43BB6B15937845E /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A78B54BD3246CB0BE36024F0436A9F16 /* RCTKeyCommandsManager.m */; }; + 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B03B81844C54B2F42409680420ED0C /* REAModule.m */; }; 3D8BE5BF644BE9BB4F41CAB6B7D79A09 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B74342AA866FE731DC0FDD2C2028F04 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 23EFDD9E4FD7AF73F60CA08A78677637 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AADB8C895E14A4EA0A6240AEE3AB200 /* NativeExpressComponent.m */; }; - 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8905113572F8576DEA7D37FA11A60F0D /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3C78B7160EC7119BD39667D355E1DD /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3DF2CF12BAE1442A3F18E366DCF1E367 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF6908128D9BDCF36D9E9E2CBC0256D /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F30FEDE839FB7BCCC1244D32E272745 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0357F2904793AF75BF705D34080B39A7 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6768535B8CB61B9497D7BBBA40AA61 /* NativeExpressComponent.m */; }; + 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 321A3EB0FB64C5D2F763BBDD94BE0F90 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 294BA87825E43C860BA3FF3E8C1F7CF9 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3DF2CF12BAE1442A3F18E366DCF1E367 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DAED8D93FB784B6A38B458D84A1A917C /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE3B0E6E0B73EFFD9494512EFE99A81 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F066CE260AE8BB1CA397934C287D3E /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E4147890AAABB96969C70E0D7986318 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 095C3A99BAD601DEF79FEC7E58053AA8 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E6E2A5941481ECA8D947D329A8D5E4D /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = FD7691D43748739B72817CB68865006A /* FIRErrors.m */; }; - 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = C64D7B0743BF13D2875ED1AD6F5B1BBF /* 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"; }; }; - 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C2517F65DB4D4963955B79BCC8FB2A1D /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C478C7C78C67B422A383B902C940722 /* REATransformNode.m */; }; - 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B4D64374C7E6A0B63625C1CDC038AF1 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD16FE4BF18987F2ECB83E4922B98E /* 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"; }; }; + 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B3CD7D9E23BB664217C58C5B2DDFE2 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F545B27E704F27558A9ED01F0D7EAEC2 /* REATransformNode.m */; }; + 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E104A26AD02F9440154BF5C9E00FC5F6 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 85DDB9877837BA0AF9B0F7B6DEC362A9 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F23A9C8F4C6D6FC2240003C679F1D40 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25DBAFC7D6E6CECEE0D8BD212F907826 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8640F657DD2122ADB8CAB8319C9279 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = FF707174B2503E5C71F8EF8F5FECB06F /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 215BA62B612524467633014B1E139B0D /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3F23A9C8F4C6D6FC2240003C679F1D40 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8648B9C836C15BD4F95DBE953307BE59 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5361A2510329205326BA29FFE3D2F208 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DE69644D073CA86DB782623084C070F /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1124C23FB2A502A12201876226BE9C90 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3F9160E52A4D137A52DD2A7FE857193B /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FF3ABBB86D23C6F4AF464146BCB44E /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4299726BEA3130042018922655CEAB31 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8E3D039A6E89BD03F7A33FC8D634F4 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FD14FDCB0DCCD257A3AE028913722A1 /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B086A0ED5925BD59CEF6134AF11EEB4 /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C01777BFA2467300977CA3FEF913D5F4 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = D38935DB2A21836A8A17D87C02FE8DCC /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 37E9F851FAD48A36030E29145906CAB0 /* RNFirebaseAdMobNativeExpressManager.m */; }; + 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0A48F2D1FD4AC2E2748195E43184AF /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7EA3F448F269ECB4D8A2DA730F685A /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 889DD58E7BECAD23FDAC21530CD7D0B8 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40D19B3596F2AAA91C871A4C0827D6E9 /* GDTEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = AFD2AC81AC5FA51E82EFED1BA17B7573 /* GDTEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB78CEE69FD01B802877A116264D902 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = F18D82D105EFEAF96ABEC19B66F0AD0E /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 834F1E69F45E280B37AEF05EA066A85E /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0AE4FB9E24E5BDDD8D43EE986510AF /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 861C44D58795A70D3338BEA3807EBD22 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 094F4CDB49A7800ACC684C08A72D2F40 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 53B83BCA17D88BD5FFDB71FFB4F42D3B /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 41755CD0FA73E9E757BBF62F21F0FFF7 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 838D7C69C1B531C642465B4BAA4320CF /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93F2C3F2346A8BEA7226DFFDF8F4D52E /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E22FF3121770287992115335C6CBFE83 /* EXConstants-dummy.m */; }; - 41EA0669E9251ED0B3F27FB92F566757 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CAA6046B8BF4952D41D2078EF3C87D /* UMModuleRegistry.m */; }; - 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 0783991BC3A821F01ACDC5B0CE3BB3F0 /* RNNotifications.m */; }; + 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2C1CFB0B5D7CC8DEC9559EE6FECE03EA /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DEEC3D9F2E40D15DA7BD5D4C0CDA7487 /* EXConstants-dummy.m */; }; + 41EA0669E9251ED0B3F27FB92F566757 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B2B0E4488645CBAA1205FA83BD9FD9 /* UMModuleRegistry.m */; }; + 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C03BAB420BFBD15A329D14E96E05043 /* RNNotifications.m */; }; 425F4D00564CD45E8BAED4DB2AA48455 /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FE9D8DD53AB4F688CFE58BF275771887 /* FIRInstanceIDTokenDeleteOperation.m */; }; - 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD3AC16BF3F92264910DB70EF0406EE /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E6D6E6AF7AF5CBA6B44DC028DFE6B0 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A47C0CBE5FA1A3C612E50398D72E3288 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4401917CF3FFE099B7EE236875BE77E1 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 685D707D72CF9347E0B77A3C59D950EF /* BugsnagUser.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E662EF8BD891FF57BD8D395276CB1C6 /* RNBootSplash-dummy.m */; }; - 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9671D357015F3C5567606DF3014E76 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 1588722AC1F1877FF162DB4503545D65 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B654E9C1528E014D67AE41F31A1A810 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C76485E7EAEA78DB78AC4C425CAA0C /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A27782AF48BDEA48AEDB672971EA809C /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4401917CF3FFE099B7EE236875BE77E1 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = D52A9FE57B8A72DAEA47F53A8FA6159A /* BugsnagUser.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DCDB7FF91ACEE4C175EC491C6ED0E1C /* RNBootSplash-dummy.m */; }; + 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D9BBF8F7A5ABBA78708605ED38FDC3 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 4017661D8F5B0682D15202454DA35C9D /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4434D48196A179E01B13B1B9B532A0F4 /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 21E202A7C5AD705849C005996A458957 /* FIRInstanceIDAPNSInfo.m */; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5801DFFC0C6A59EA34122FA75E352C62 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB95667D17C2DA212FFA19BCB94BDC6 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44964FA9DAF14AAE03807F2BC8800146 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D51687A4FFDF194B556DE4B2DD8EFB /* NSBezierPath+RoundedCorners.m */; }; - 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = C003E82845B79893D5C223AF9F0D9547 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = AC65625B781057D8733A1F09D482D2DC /* RNFirebaseCrashlytics.m */; }; - 44D47F1B80F64630143457D5E61D30D9 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA61EA52F6BD937338BB3E55FAAC5537 /* EXAppLoaderProvider-dummy.m */; }; - 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1D3A7E4F081812185DAEB37EE6E065 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BFE4C44B6733B9C2BEAC7A14FBD13A9 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 8517462EC8191891DDC4C090B5F149BE /* RNFirebaseRemoteConfig.m */; }; - 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9C065145AF9F65D3F2ADEC6D33A0BA /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = DFD3782750AD39CED57012A2129A55B3 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = C3BDF4648814948648C45BCB5C609DFC /* RNFirebaseCrashlytics.m */; }; + 44D47F1B80F64630143457D5E61D30D9 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26CAF031053C08A190DF071A82843657 /* EXAppLoaderProvider-dummy.m */; }; + 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B38F45AC5E85864AA2C7BD66B068E17 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = E9DB9A7CD9DA43DDDE88315A08E9FA82 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = B0FF906552B5DFC796F25F2644B3B20E /* RNFirebaseRemoteConfig.m */; }; + 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A5E819E3CFEAF51E6D807ED7FE5A93 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45D3939CDA3B11BAB3744081B5730AC1 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 87A2920C46D0CC20B60A655E9FF18B0F /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 07FAC8AB14356BFB7EC74487EAE16C04 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = F254BA39B80F635278F87ECA06DBFD0D /* ARTPattern.m */; }; - 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1A41557D9711A38CCC49769B2E64DD /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8378290C00522D0CAACC653F2E273213 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 453DDF07237BD816BB5931DE332C50DA /* ARTPattern.m */; }; + 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 264B5E7D4C00A43280E5A09AFF8A418D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 462B7BAAAE0B254BE9E648E5CFA0C6A8 /* GDTUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EBE5F53B6247CF96532AA0FDA3C827 /* GDTUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB98F90F90861D1A9C0D3B322EA9646 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B776E20C9A189F93824B81E78FC45C39 /* RNCSliderManager.m */; }; - 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 236C579C9D265168EDE8DB0F896CBBAA /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 094800FF4F03E576562FEE945F9DEFD6 /* RCTHTTPRequestHandler.mm */; }; - 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AEF51CFB5D2A21518EC339F1438E9B5 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = B539A7B9514BB8308B7BC00D8903DEAF /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A4BF94965D3CF5366FE94F4CFDA5E147 /* RNCSliderManager.m */; }; + 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 863D42949D725AD8F8FB5CFA588995E6 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E3FBD127ED49BAF37B1EC06723A345E /* RCTHTTPRequestHandler.mm */; }; + 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 8770AB17E738B4F085184720FE8337C5 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D8DE40890B03993214743DE35B6BD58 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47C1D14CAE63EFC8B07A816499198552 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 310B5509506DB448A66995284AA9A9CF /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = EC6526582EC82F315F21184165A9D33A /* RCTConvert+Text.m */; }; + 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = D74C97B2031F3ECE61A82A6769BED2CB /* RCTConvert+Text.m */; }; 48589406024717DC104D8F0B2585FCC4 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EA8FF5764F81F464D320E1177895992 /* FIRDependency.m */; }; 48A597F6B21D3A8BD625F3BCA9DFFBF0 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A39EDD3E7E23D5FD4B1E1E340CE326E /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E94BA0660B13CFD23C2EF1EEF9BB88 /* REAValueNode.m */; }; - 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AB2D10B5EA5FBAB4565B783C80C9A12 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 536F45DD82C94CE6D96EA437C0C21BBB /* BugsnagHandledState.m */; }; - 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A5F2C64929287D8852E8AD60EECEA3 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 1546D22C2C8EA6AE11F39999F64BC710 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E6EE62BB2BE77CD3706F442B1016283A /* REAValueNode.m */; }; + 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1A3CECFED1C7D7337226CAB2DA9727 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AA46780CEC70D7786498183F37B8B5E /* BugsnagHandledState.m */; }; + 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C7A64D97AAB42E8C3FFE71EDD468CA4 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F73E4F9C9156EFB76337EB94A78AE1 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 495B0B15E14BC401DE45CAB2A4674C02 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC714DCDA38C719574933AD4BB18BEA /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 496DEF54A340C16E4ED8ECCD3ECA0479 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = F83BFECA194D5D3A53CCA3AF2C359335 /* SDImageTransformer.m */; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DBD19985FDA6E09B99A41FCAEBE6B1BE /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = DA3AB05FE90FFEEA3D320C38916D44AC /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC7B2F4677382CBD60210CA455E8F86 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75184F86F3E79DE210E71936545C57D /* 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"; }; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 232B00A456185E68EA56676298BEEC30 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5BB3FFB9D166893CC95BD6DE247464 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 603517CE0433967A9489AF7139F3570B /* 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"; }; }; 49CDF4B546A26C030AE55779EF9F63EF /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9598C47569571A616A8E6DDD9E675729 /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = C4632797BCED5CA7E43264D6EF175EB8 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = EA972EEF98A6E6063A59FA70C8963000 /* RNEventEmitter.m */; }; - 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4F35BD813347FF988C6039F938EDE8 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0D37E1B7CD8A752787DF9DE90D01E9 /* REAParamNode.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A7320CAB16DBE6090FF9162811B32F /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 55CB8ED6E5E99276F3E2FCBB99A5CA19 /* RNEventEmitter.m */; }; + 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = AE2922524544A62E72CAE556CACF8353 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E617782815CC6EB6BA87C34D052D87E2 /* REAParamNode.m */; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = A81D42162A1B05AB9ABCFBB62054D5BD /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 16539A1962C2EA438882C01AA585AA85 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = F4810CC9A18EA364361E1F4DF90E27D0 /* RCTTextSelection.m */; }; - 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9935A42776FF18709A2F382332B44DA /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 49255696C1CCEA1E1242C663239CCB89 /* QBAlbumCell.m */; }; - 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FB6F47EE770C3A9B0C5AF899D94B955 /* RNAudio-dummy.m */; }; - 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = EA27D397082A0630D8A137FE7CE51625 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4CC0FCC24DC626AA4562DB78E899CF18 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 29296F8F060C36B7C0B8B12AD859654B /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = F0768952D4F18BC4C51E4263BEFCE3AD /* RCTTextSelection.m */; }; + 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = E2FF1CA18AA8296FAF4A280B99B6C657 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C48F1E63F753961050D0700AC95A8CCB /* QBAlbumCell.m */; }; + 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE1DCE5E476F4EC8A2EDE5C906A1053 /* RNAudio-dummy.m */; }; + 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = A6CD8A31EAD691BECF392DE6526D8B16 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4CC0FCC24DC626AA4562DB78E899CF18 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 892AC60839C08FA6A779EE5D826A90D5 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4CC6BB01FCE680CDEDAC061A4E95DB8B /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EF7C77B591898E327390DEE0741690F3 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CC8A1271887F77848976D93CA74D44F /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 463FBAE4CC12986BA5E6A2BF56A0D785 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CEBD6ED3BFF38C9053CDFC2E5FFE8C2 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = A21747766DD83B697F1247CD235A13CD /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AB36A81419579DFBE653B56BFDE10B /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D316D26515A766E0766CDB80274FFD2 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C40E7B6B5993D70A5D70F7D30FD3B4 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B122B1EE8FD3AD8E8CA73EA280DF17D6 /* Yoga-dummy.m */; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = FA12DD048A9A27567FE7075E7732FD3E /* RNFirebaseAuth.m */; }; + 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BED625EAE4AEAD64837D244E161559D4 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D316D26515A766E0766CDB80274FFD2 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = AC69360E61A151E205754F6D669DF8FC /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 21E66246E2002B85194EEACF48230410 /* Yoga-dummy.m */; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A17509973FD1326B45C36373AF7A1B8 /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C3933A150F307BEBEA5276E79AE9939 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 803AA4D060B960BE2E1541EB7EB0A8F8 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DD64EA045883AD0A4E597F714F32B30E /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4DF24B425494D2F5095463CA148CCD40 /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B31C55B0080450813DC71445DA97515 /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB6DE0D9A1824EE199A41E34D2D0573 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 486937403C032E7E7D7AC3549ADD9FF9 /* BSG_KSCrashSentry.c */; }; + 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 406CD355AB6F9E4DC62563E186D3F918 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = D22C10CEED1C85CB5A398973AA4DA705 /* BSG_KSCrashSentry.c */; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = AF6E7AD32B0CAFD0E83AA25B15391D05 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E502DC6E1495B0AE526594133F643B6 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B7AD9152F3BD8FC9B15BFBC1B66AA7CB /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 190B39A0F3F2FA4A66BF58DD49E9BCFB /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E13F2680B890F89ED3CAA5AB74573C4 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A3C30FAD3141239D732D294DFC5598 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2906DDB1F14278AA23677F8338948411 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D6430F396C6EBB6638714FBB10315CA /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFCA0A9FD3E48FABC0516EC7451EA72 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18D62828B76C669E2E6ABDDE49B89B20 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A6EBDF50F21E6881419963C4BE04A5 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29BAD75CE92E205F1B7146D5AF67383E /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4F1F6CFF3B9C457F73F5B8AF1AF79893 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = B3D892AE8597A9B7DD8584C0AA7DA67F /* GULAppDelegateSwizzler.m */; }; - 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C92512161C2301398F3E08A8BDCC12D0 /* RCTImageUtils.m */; }; + 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D99106F99C2321E8893D8DA292E47E07 /* RCTImageUtils.m */; }; 4F396B6DA5545C2B06340E9BA79EB498 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A984D3FECA3FC20063DBB2260C3340F6 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F7E32A059ED4485D7CF79F3B74CDF01 /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD51EADE5D09DE44C32D69103CFDC53 /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F823185A6F682685710B9574E32D3AA /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 1213AB99B5CC77DF90E77DCF5420383F /* SDWebImageError.m */; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CCAF055E529752847C75826F77E9416 /* react-native-appearance-dummy.m */; }; - 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 89E51AAA62F862E9845F3BCEBA4471BA /* React-RCTSettings-dummy.m */; }; - 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6173C9FF424C99E39122BE128ED09B /* ARTSurfaceView.m */; }; - 4FD4A078850E697AAC9FE5093FFDAD53 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = AB872D6F4881170DA344D4B5D2B8950C /* UMAppDelegateWrapper.m */; }; - 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 807A779FAE2954A7DEB36EE202F2B50B /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17F6851DC28623E575D7C76BF479E719 /* react-native-appearance-dummy.m */; }; + 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A7CDB360BB0FD9721CC760A160197E7 /* React-RCTSettings-dummy.m */; }; + 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D622E70BFE4596FFAEA5CF31E9934C6 /* ARTSurfaceView.m */; }; + 4FD4A078850E697AAC9FE5093FFDAD53 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = C8CE94D59493536AF3CB0E93B9F4E55D /* UMAppDelegateWrapper.m */; }; + 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = F87780C5D21584A689500D4650F93D40 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 502FAC1E08336ADB908FABCC6692BE90 /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 400C4C1D16088D9B17F94F449FD66EEC /* FIRInstanceIDStore.m */; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = BF75FB52132595BFDC41B0278ADAEE91 /* RNLocalize.m */; }; - 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 50AAD7CC4F251E199BD4939630F9F528 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA8125439F97A566317021EC91B6DDC /* RNLocalize.m */; }; + 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC8572BF2E16B04BA4F3A190A018428 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 6978AE3655589E7A3736CE24EF459AE0 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 84BE2C7443B6C5385B9E1464E6B32E3E /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C586BC0DF66C36E1AABB8413CA6512F /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 50BFDEC0A6599CE33073B7F1245CBDEE /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = C2F2A0EACBCFF372BA3D861762FA3918 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50F65A7405BEE517EC658FE55ED70018 /* GDTConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = EDC3EA1DDFF95BAE78F476F4F6CF2874 /* GDTConsoleLogger.m */; }; - 51093E66FA7DBDB281D906D26D9DC378 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 19284D31BD342A64F8E638D6F6DD5F87 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E20BECAAF117D13FDFA68D903AB2823F /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51093E66FA7DBDB281D906D26D9DC378 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4376097CE1A7C16E9D6C0633029DB2CC /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 21E9E7E8DAF0F91B6323AF172D8BB02D /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5127828C12F9E9715810F9D02C1CE720 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FCF58272F65ED034BE22E4A8C0456B72 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8494ADB2C4035D2B22513419C51B5517 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 170A74C6C2C5C22A8B53386C9837E276 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E66962C9572CC3ABCEC3D5589A4D7E /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E88934084F444413DF57BC472BDC278A /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE61C4AF25127D6859F596F3C6F351B /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F8899F2A764A05C333FD6EE951873DBC /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52FC0092CAC6137CD80C517EFF257494 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB289DB92FF1A08F326924844309EEE /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AD45FCA84FB2434143E5D1850C67D1C /* RNFirebaseFirestoreDocumentReference.m */; }; - 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = CC3A25758C48E41849D21816D17AE1E8 /* ARTBrush.m */; }; - 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E136A7DD0501D2920AC6E751907951C /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB5F578E2042E693A3F18E5B3DA855A /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 545434BD6D2216C6F09893FF449649DD /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 75A708AD80219699E2A645931B9F0274 /* BugsnagFileStore.m */; }; - 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA2EA1E087459E4C63B1E4E71562822 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0728DF55B0762E76D1988160FF42272B /* ARTTextManager.m */; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F89B896216190DD0A5FF95236D3952B /* RNFirebaseFirestoreDocumentReference.m */; }; + 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = C6689062F276838BBC2F836F080ED20A /* ARTBrush.m */; }; + 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F154F7B21FADAAE48D8A5EF90D8771 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4726D6A350DD59E705BBDBE02E6F1C4D /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 545434BD6D2216C6F09893FF449649DD /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C053CC04ECDCD781977B106A7432143 /* BugsnagFileStore.m */; }; + 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = D3ECE73C933780D042B8EE7211C45B3B /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1291FC965C192E24A543F85F6E15968E /* ARTTextManager.m */; }; 54A9246371027B4CD3B43008884FA90F /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BBC2EA548E00A132F008D4552E8CABD /* FIRInstanceIDBackupExcludedPlist.m */; }; - 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B824CABD58145BAA085DEB425D763CD /* RCTPropsAnimatedNode.m */; }; + 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F8181461CC2DF673E9BDE56D1819240 /* RCTPropsAnimatedNode.m */; }; 54B6D082D028EEFE1E4A1987489EA682 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BDBE26D1AFAFADA908C7EC0D26845579 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A02C799EB03CF97350DD5854B811C0C0 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D0889914C2EAB592A088E57E532DCD1 /* BSG_KSCrashSentry_NSException.m */; }; - 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A9288615ACA0BF93301A73914C47FFF /* RCTStyleAnimatedNode.m */; }; - 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2057AABFC66C0A8C7AE0D06D345C2B55 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 556A5B3489033C319EFAFEB961E2CB93 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA490AB8CAED42668DC35D43BA2575D /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277399C556AA4B46C25A19AC1B29F616 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EFEE57B5E9B7E6FFAE0FBB71BB7F7C04 /* RCTConvert+REATransition.m */; }; + 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD854995D38FE5CC19A6220E243CBD9 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 860855E436D35942C26311A1EDC230C9 /* BSG_KSCrashSentry_NSException.m */; }; + 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DA7F8DC9E7232AE33A3B2AEC203F95A /* RCTStyleAnimatedNode.m */; }; + 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE21D1F9329F6DF829E93F254C78685 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 556A5B3489033C319EFAFEB961E2CB93 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4179534C459643FB4412416844CC4852 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FA7B11D82F4AC9EC688E6F5E93EF8B2 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA45C455C082F94549D0DBF86BB2CCB /* RCTConvert+REATransition.m */; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 79CB84FBC11AB9D21E3012451C45CB96 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F4BDB1C1F0DEC616F4EE2565D81B77F /* RCTConvert+RNNotifications.m */; }; - 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CDC22B49EC8B76E4EE023F1313845C /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27F11528898E1C09AC16B648A3466810 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 56E7702B98F46346A3D240054D939E7A /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C651F8C614465833939221AC4CFF9313 /* UMReactNativeAdapter.m */; }; + 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E1D92A2A25290A8009B682BC4C4134C /* RCTConvert+RNNotifications.m */; }; + 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 12AB074EDFEB194615BB707DA4AD99FD /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6696F502F0ADEED65B1265EE1098AF6 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 56E7702B98F46346A3D240054D939E7A /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AE3F020CCF5349A5E74731A533AC3A5 /* UMReactNativeAdapter.m */; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 51532E710DF75FD878886A5E6C8F1977 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B5BF6F5C3F36B03310C16BB02AE92EB /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D60EA0918D362F64BF181AC1602969 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = D563B3F8B5F2EC3024FAB3290E161100 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A23231E02523DBE1CEFD142A4EF57119 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5750428B5929F173BFFC86913079ACDA /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 17E5E5C0406A43442395C6499FD4DC5B /* ObservingInputAccessoryView.m */; }; + 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D928C35584F765127D20446C78F11B68 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5750428B5929F173BFFC86913079ACDA /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B48FE90950FBE9D03598F7ED94A8579 /* ObservingInputAccessoryView.m */; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = C5E50AFB60DE75A7F2AE919BBEB66E7E /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = F52AF8FBB89BF50C43022FA550FC224E /* BSG_KSJSONCodec.c */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76107D98663D0AAB38C7B9B963D90872 /* EXFileSystem-dummy.m */; }; + 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D7ADE2250A60420B8F1966F40B91BCF /* BSG_KSJSONCodec.c */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0426B8342173670C364646932520A584 /* EXFileSystem-dummy.m */; }; 57C8A26C5E905E0B125AC142E720F5DB /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A72FB0A1AC1D24670509A274650EA2F3 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D6261E82E694F6E05A3A75BC4BAA45 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 456084F44DAA789CB020F8A2FD5DA431 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A5CD301CBCF12623517092F643A8D4A0 /* EXHapticsModule.m */; }; + 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = DA806E23EF7BF0703730663A39D90E5F /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79B54A87EB90E5D5FCD13D86CF79D24A /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 44BBF9EF1FB11C0E45E60F790B280FA8 /* EXHapticsModule.m */; }; + 587B29B1F811B3DCAB8C8282B1756BEF /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 323084A9C7E3739A9C9108ABE90C5364 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = B1F55CCBE67BE68BB69741B56329314A /* BSG_KSCrashCallCompletion.m */; }; - 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 170794365051DE61C2F27CA071918980 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AA86777BCF757519048D2B2F0BB57062 /* RNFirebaseUtil.m */; }; - 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C356E403E5757FEBB5F6AC59AF8A36 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C77A66171B0F52A43427229A0D2F80F /* BSG_KSCrashCallCompletion.m */; }; + 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7AE31CA026D3F48692DCBCF9E5CD469 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 806C5343C0317E08A089C45067953B61 /* RNFirebaseUtil.m */; }; + 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = CD508363E2FBBA6CDE5F78761320AA6B /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4575C76426903C742BF80B5DC5361E /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = D54F6EA8F501C29E00AD8D0F3E53A1CA /* SDWebImageCompat.m */; }; 5A59A50C6C6459D108D357CE53F2156A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D46682E47471017D25EE31D4CD7C097 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B44F6867FDC888D9B3E778B0CC86DA /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BBAF83B7BD347FC1D67A49FC2E8FE76D /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A81696564F736AF85CA0CF8BA37458F /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 6750678139A1A6899CB0DEC8000545FE /* FIRDiagnosticsData.m */; }; - 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A50F74C42C3DD6B4A9F69B23D3E82AE /* RCTImageViewManager.m */; }; - 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = F58489410FF77E18D59457505B9AA8F0 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F141C90BDC5ABFB362C6A910458B2E /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 622C2298B9560A8972BADB00740D62C9 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C51D6EBAB67D41940C272A7960AEFC9 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B49E81F49E66F6505E50F99424D1C59 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 77327992D03EFF43D7486B0D4DF8FFAB /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 00D78A4B0214C7CF7F25E5312572EE0C /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B58EDCC67B8226268F1E5A7EA115AD6 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 861210F0BE7A71097101B88DB973BF08 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 5986E69905D8ABC7C1508DA89704548B /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C44808963FFBF4FFE9F3634F30135C4 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F822C1A6575AF76012BB0B1DD559D82D /* RCTImageViewManager.m */; }; + 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 62ADAC22FFD0463ACD02E37B3CFEFF3D /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D73F0E04F999B91AC0744CA12FC382C9 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 833BAE32AB1B8F713242C9FE5F3E6B40 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = AEAB7139C9DEA683254F207803C2F25D /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B49E81F49E66F6505E50F99424D1C59 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 258B91E715DED0A38A9452BD4B766218 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F044DED62A1D2EA266A2B01BDE3C5DC /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B58EDCC67B8226268F1E5A7EA115AD6 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E3FF9AA367DAACB6D30CB31A02C1B5 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B4EE72259D70A0AE81AE8ABEFBEC05 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 17141239540AA5069F72F42CBD467742 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5BC9846FCBC634C69EDB99A707469D35 /* GDTStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 824F6DDB5733946BF470102D4A2B06CB /* GDTStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = E7B3640BF5E94E328E51EA79A6AAC58F /* RNFirebaseFirestoreCollectionReference.m */; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 00D70F7C8A81CBBE063917E7D22CA9E9 /* RNFirebaseFirestoreCollectionReference.m */; }; 5BD3E450B15ADCEE0FED33892A3EAB5D /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DD77BC4C9F446030612C2B4AB20317 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C10DFDA2ABBC6171DFA658A947A46EB /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F27874372F3317E7A40B56B92674FF9E /* SDMemoryCache.m */; }; - 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D392E813171E4AF47DB543E300F51995 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCD5401FA368574693A20794B33DA3F /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D13D45E4F101B31DA3BD58850C1D938 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 37033FA3AC8B8C8B77DDF486CC951EA6 /* EXLocationRequester.m */; }; + 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F8ADAD4AFB1AE3D9D85434F6AA021B /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 15DE42D6FBE822740A0DB393AE4121BE /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D13D45E4F101B31DA3BD58850C1D938 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = BE92589706D64B12F90B176B6A57652D /* EXLocationRequester.m */; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7223382B9B79F03CB07B899C151304FA /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5D95EAD37D2BC74E84D6596CE99FEDEA /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 23EECA421B7288F614E7ABE957561AC3 /* NSError+FIRInstanceID.m */; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = DFF060107B7AABE7F62B8FEEA39C3610 /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DC9D1C270941A5E3230DED269BC7D5C /* RNFirebaseAdMob.m */; }; 5DBC3155185D22F3124C211FB656A452 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DD593F04D58A5F3553692C25B27A02 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DE8971BB473788ABB370255ABF4AED0 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0C13DD5B14F39844489AA533439C11C /* UMReactNativeAdapter-dummy.m */; }; - 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4247D0FCFC11B26EB8C2B41054DABBDC /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 53FE4C651E52A4B096600F1C4BF1EF94 /* RCTUITextView.m */; }; - 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4A2E27DC374E4005C34F5376DAEBC0 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA02CA63D47384905FBB2F9305816A4 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 03CF8B129F84A67BF7EDAEC900572B62 /* UMViewManagerAdapterClassesRegistry.m */; }; - 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 715704BCA6396E7B6D2AB56C7F7FE3B9 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = ECC27A56848B03CC648EC2BF28BCC55F /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A570D229F7770410099A7C1A9BF2CC0 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D2126D3931AD02B5F31B449780DB9354 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 25C61855D9E009FBDE973162823D5B7D /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEEB6FAF21D0BA92AC0A04AE4DDD428 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DE8971BB473788ABB370255ABF4AED0 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F478A516B3DE1209CB2CA59579797CA0 /* UMReactNativeAdapter-dummy.m */; }; + 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EA5632C7E11DE7B34148BF301EA18B3 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F657137562B5AD78A592972B88CC8C /* RCTUITextView.m */; }; + 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6BD37D56DF74D3FE593DA2973E4095 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EA02CA63D47384905FBB2F9305816A4 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C86DC2194454F6FFCCC4AF94718B89A /* UMViewManagerAdapterClassesRegistry.m */; }; + 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4739DFACCC07C40C8C953D2127D2B057 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = EFF1AFD3BE2AA2D61B8BF0C534C1FB7C /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE8ECCF1A7DA6B23075F3372ABAC5A2 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA872ECA2364819229F49A28DEE38C2 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E8CABCFD0D7D4B97C69980A82C1F688A /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 80508BF83A805007058178A772178F5F /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FA6DDEAD9030CB81E2D371A17F7C4BF /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A9619333FE09CF2DFA4A5A7A719200 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57D38BD8CA32B091EC53F86C2CB7E8A8 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D69FC46A221AD8AE24A593B9B8D3CB /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FFED67AC7B45A372C816803664090C3 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 357F2F1FC1E767EE78BF6EED5BD212E3 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B3EE1E4659F5906B7939DB8EB030CB /* RCTUIImageViewAnimated.m */; }; - 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20B89E66A01DCF69DB5C84DFEAF3C692 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 484F116868006BD6B32BDC972A8A5370 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 262A578D9D6A95FA9D2C63A74A12B843 /* RNImageCropPicker-dummy.m */; }; - 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = D31D1C26D5CC77343AF15248ADE7F6BA /* ARTText.m */; }; - 61CB6A0224314655A5CD350A3663ECD4 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = EBAB452EFC2E62AC9BDDA0C948A39F1C /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 280F25C6B97C9C0323AD07C0C207CAA9 /* RCTFileReaderModule.m */; }; + 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB4A7A6D8A9C6355F2E0F64975E742C /* RCTUIImageViewAnimated.m */; }; + 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9D7BBFB1A3C4386C89106FD16D456A /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = ADBFCA4EE8B961405264FE3B72430ABF /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA51A1007797DCC6ADB9381AA484EB2 /* RNImageCropPicker-dummy.m */; }; + 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = BC1CF879F6F28A1206E11A2A7270FA83 /* ARTText.m */; }; + 61CB6A0224314655A5CD350A3663ECD4 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 204028BFF03CEE94591E5D30DAD1F291 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCC460723898206A9DEFFCA2B534551 /* RCTFileReaderModule.m */; }; 62266D8BCAC4E742B934F054A012CEDC /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = FE95110A46FCBDDFDF5AEEDAFE1C082D /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2979D53A359A99A42391A537AE1B5B75 /* RNFirebaseFirestore.m */; }; - 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A0C71A8BF755B047A6CF93AE27D962DF /* BSG_KSLogger.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 52AE2804AFFB99408789C12004AD808C /* RNFirebaseFirestore.m */; }; + 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 89A39DE88338276E8C9480D3045D8099 /* BSG_KSLogger.m */; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6632004F2003DCDE912F11C44CEA56 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62AE5C4EFFF8C486F27736EA796AC818 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7990BC8A7C7229119CF767CCAD9AAF62 /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 28681FF7EBC6A6EF86791B05CBAFC5BF /* REAEventNode.m */; }; - 630C91DF5FAA47CF56146710CB25C67F /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 62D8299947B104E2F2441F8B8F224296 /* EXPermissions-dummy.m */; }; - 635F0F813C7322171ED9EA180443A241 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F44086620DAB6F77CF3BD6506D06798F /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11FE3D70314F711012EF0BDE4979BE00 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AE587803218535C46E1EEDB2CD30D2E6 /* REAEventNode.m */; }; + 630C91DF5FAA47CF56146710CB25C67F /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D3642C76C7142649802EF585F7C52D8 /* EXPermissions-dummy.m */; }; + 635F0F813C7322171ED9EA180443A241 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DF6764FE9A5AE522B6E100964D5369 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E5AC8B98C098C0C26E995038B4A120EE /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 814BC5DE2797DF0C936CF03839974699 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 736077A8246C8154580EA08DB05C35BF /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAA6411C85426B36C85020C4B1C208E6 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = EF12E615FDDDC5DC67C7B27029CB52D3 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1B654D254C7E1810BADC1CBB4306B8 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = F208CB3F8E89D985AB203CAD66B7B0EE /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EBADEA41150AD86AFE019C4CD4E2FD6F /* react-native-keyboard-tracking-view-dummy.m */; }; + 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 006A91ACB3FAF05E02C0BB84902EB5B9 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F3DCB166431895CB3E59A1036BDF02C /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = C27DEF5F9FE096244CC1CE7B2955404E /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = A78C923BC5709560F8846C114C67703C /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 240CE76894A4EBC442349F15E8162B57 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C17E36E535E6F0C1AE18EA84D85A981 /* react-native-keyboard-tracking-view-dummy.m */; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E258A8E46A886DA9F51CC133614C1696 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = E4376CCDB1E042F671C3D5BABF69B876 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E878C1F2050BF8CB9FC08C84EDE84445 /* RNDateTimePickerManager.m */; }; - 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B8D5E98E85919D0D2AE0E7AA270542 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DC4210CA6076B3BBC396A83535BD17 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EAB41B780D55D6439A222820C17B09 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 494D7C6BB2849CCECF2A7719596A60E9 /* RNNotificationCenter.m */; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E56E65AFB8D31A73252F026A0E7F196 /* RNDateTimePickerManager.m */; }; + 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 67EA3A462AB02756F4A170E38D803C67 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9741E151BA40B8E4E4D9F2C2D48A97 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E933BD1ADE84DDD2ED8C4B6FE7EDC96C /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F2C89500F70BB848974CF0857C5128A /* RNNotificationCenter.m */; }; 6580CADB1B58D051496B7FFEE2B1C22E /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C507B3571991755F03AFAE7FAA0A698D /* SDAnimatedImageView.m */; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = AC67BC726D036DB665F8D256B87CE29D /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65A7CF7828FC4B009CBCEA5EE57938E3 /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 169C59D4B7CFD8544456F26E526BB4F7 /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C19055FA15FDF3D592E684CADBB0FA2 /* BSG_KSCrashSentry_MachException.c */; }; + 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 6CB3691D736C53E5A5DE5AD740CAC09A /* BSG_KSCrashSentry_MachException.c */; }; 65BC1D89895A4D5A4630CA5940E4A018 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D51E11A724780AD122EAAB74D10317 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 0729A290877CECD5381E28D8670BA702 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = B79D1587D505AC41205B1956A58CDE6D /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = F10EFF0CD575AC43A53D01C7D23AD50E /* RCTUITextField.m */; }; - 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = FF905AF5FDF55125E6D055EEB4E6D87B /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B414D8CC65221A132C98C29A03A19116 /* FBReactNativeSpec-dummy.m */; }; - 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C529F93BEAF01BDCF314272A97D5A2 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1C3016E3389BBCE59AD8B7649F0956 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = D1F10B6309426F814E403630CA560E9F /* RCTUITextField.m */; }; + 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = F709179D786BA8906C86B1B39489121C /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0253BAC39F6722E8D400C8BE3B7CE8 /* FBReactNativeSpec-dummy.m */; }; + 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7AA6A16D7843F9B9969258D09BDFD6 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = BEBF8A5C3C70FF514639936DDF8BFEFF /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 612EB3CB4B257025F648D62D327C6602 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = BB9605D1B5460502B2344AE8267BB8CA /* BSG_KSDynamicLinker.c */; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC1C9BACB409258D55795F22EC30E614 /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1E231B5D85FFD8717EAF9D9C711B2A /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 69553ADA0240020F66CCC3166C6C9541 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BBFBE789BEF0674A3F1A44F89494557 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F89473948C947E5DF0BAAC2B2AD27FA6 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 80F3F35A797B25DFDE641031727EC3C8 /* BSG_KSDynamicLinker.c */; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 58EF93B049742B7FB0AB00B73E81BD47 /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = CA48529D6657E08F27B32CA412904B75 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = D2697AD83F5B73AB4C4BC8973A1EA808 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A53BE143693748F97B1EE4DB8C7E59 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7BD2FB34C066034DC699D02D096524 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67278E9F64F6827638B4D52D8CF71F42 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64FF2026735EBE214C8F6A877CC5B06F /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 70FC2444F6223914BEA560B3136110B7 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 673EB44F71F2C6F4FBAD5C2C8E7CFEFF /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5B7CF80A43E501BEA20FB90FF049DD4 /* FIRInstanceIDTokenManager.m */; }; - 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F60BC6A0E8111DD5ACBEF3CC5959ECD8 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6760547C035C32836135CEFD5839CC3F /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = F29860ACF6D3192CE27B72D8D9BF7CC6 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67B899B04D895FCE5864571871AB2137 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 82A93793123AD90694C5D13F9796A9C9 /* EXContactsRequester.m */; }; - 684521B0CA1B1249C9ED804F3A62D6B4 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = DE374EF524BADF6A8BBCC5700C4FF753 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C17ABAB606722715420D6708B76E113 /* 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"; }; }; - 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = F341B196FB24869F5A0581AE42F32956 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = BFA466318F7726718D3485D2E96C30E4 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 68A609DB01B156CC5ED6B85013BBE883 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B33802F7D7B84AA0626D079F70601A1 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B751FDEDA4C9C7FCF33C059FA22C747 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C5830D6BB7673585595AB8BA414214F /* RCTBaseTextViewManager.m */; }; - 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1AC7446DCA0665C90D621BE057E9256 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 68D189344FD730D7E96118DB6861819D /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = E07D0B943DAD7D7AB04C7BFE016DCBFF /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6923B013228EE34EFB46111B344612C1 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAFA15E541F79750341AB85EC424250 /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F0764D02B42AE9C956D2AF6C3B6B62E /* REABlockNode.m */; }; - 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0BFCA3863288C619E65898BB7D3E5D /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B74BF4987350560342F9A6664F21F93 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 604B9E77AF347C8E1577DEFB739855DA /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6760547C035C32836135CEFD5839CC3F /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 77179EDD9CE141817B39B53F94D45C7A /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67B899B04D895FCE5864571871AB2137 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5C664F173298F179719BB8D48AE9ED /* EXContactsRequester.m */; }; + 684521B0CA1B1249C9ED804F3A62D6B4 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E004B0F0A38C5ECB4EC9C44607962B40 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = FDF03B342108C1A30921382AA6BBBF1B /* 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"; }; }; + 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = C16F9643A5F548F5343330F102BB2FCB /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40D46DDA157EBD324FC6343D6E49BE4D /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 68A609DB01B156CC5ED6B85013BBE883 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA50793B08D058C4A9FFBF3CFCC8CD0 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = B476C336F3457258FE5885E0F7FE3132 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 80D76D9FDD4369B868CB483CA0860B0F /* RCTBaseTextViewManager.m */; }; + 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB3316D4381F7AC386AB594BE1C1C667 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 68D189344FD730D7E96118DB6861819D /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = D875A699D4BC489D7193B900F1E9CE14 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6923B013228EE34EFB46111B344612C1 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = C2611120AF9BC964206E3F47E1F91CBC /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EDDF6D87D982647DB11D09144BA7E1D /* REABlockNode.m */; }; + 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 574E7D76BC41B088CC91942C613E7B7E /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 36D528F38BAA0FDC768332E41BF77B55 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C23762E4D32B627E18AA019E5F8F2B /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 98517DAD4810F45ED8FA59BC3F947354 /* 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"; }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BB2473A3C289774EC32A321472BCE1 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D09A138AD3EBED1B44789D6A93DCDE /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A0AA1945B09A957D7980D6F9663E262 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2626AA8E24B62228D329C312E5C13F1A /* SDAnimatedImage.m */; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B4DE5FDBADC18037B2EFE8D8FF57828 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 6A85D1B26E9CDC97E15DE8C824A82736 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; 6ABEAD7FC928CF7779E132A291D0B0D2 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9969CA71BDB274B67CCEA11C0020C2 /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AECBE5205C7FE40901C60D3BAC2D475 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D81EE7F5F3714858C7FF9A5982EA34 /* FIRInstanceIDStringEncoding.m */; }; - 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 77624AAEF0034FE4363472281260D6F0 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 055D6F3674AC43C692134055A0114233 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B002A09EF5954BBC84674762FAA72AC /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3205E89D7E14C616E752AE578B2DB3 /* SDInternalMacros.m */; }; - 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DE90F6D33BFED95077AB0A667A87F14 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E68BE7F4B132FCD9FC730DDAE3630F8D /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D88E63A793A46AE2A8E4914AF3394BF /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F41530A1AEF5C778E22C8EE5E839813 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9004F0CE6969B980AB15394D57C6EEE4 /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B2955D4AD48DE04BBCC5DB14A864B06 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BBA73E13C75ECE9DC1C78077C4C87FA /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = A211DE5FFA61917BE4C69FFF1971DEE6 /* SDWebImageDownloaderConfig.m */; }; - 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF5E0FDB28083ECE7863DC7831470AA /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = F8F37064246BEE9F8C7A69671281433B /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA625835071568485C6933C1EA918A2 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EDDF3D2DEA48D4BF148E990ABD5611B /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6BF455BEAC6B3B63B7043B2A42FFB241 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B591EBDB62B59175625167A78E88D03 /* GULNetworkConstants.m */; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C3E12A134EC7FB4105E2FFA8E68E22 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F76D69EB4D0BCF989F0EBEC6EC9B52D /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EC832A43F0BD80A7DCD2D42A6A83BBE3 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 33CCB852DAE0F4F830E760AA67856FEA /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2531016461C8BC32A2D395A027A648 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EB44B226ED52831CC256D3AD059682 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 834A4198AD7AF564A3B63F8008730F29 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 44AB2B396BB3B4317F6BDD93D2B92941 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF4251429A1B57F5019122FC3B9C1D3 /* REACallFuncNode.m */; }; - 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D41701D90D5307954B1742BDAFC0654 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D0CF30D57D65E1F68DA583AF4EF9CB2 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E46B1AF5E106478A68F22A098B1BEC5C /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9D529BF5731E3078C6EECBDF867328 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = FD46A0FA38F89A3EBB4D1D8F2C6C82B6 /* BSGOutOfMemoryWatchdog.m */; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA51AA814F79E0F98AD9D0B888A5DC0 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0AE59F51A1DE1759E3E500BEC37AC1 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 702D442BFAEEBC53967590E478172D81 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B4FE9F9973F703E076635C26942E1DC /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = E959B131DD2F53B153D0497CFE2C40B2 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A90B1A629720AA5F418DFA00D3D2F3CD /* REACallFuncNode.m */; }; + 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E4633000BE8B3F74A598CC87147A882 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D0CF30D57D65E1F68DA583AF4EF9CB2 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F81DF2D006C52D3C759F0C2B994DB07 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC725872F6FD1C53517FFE99D1685CD /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = C89BB9FBFD53EF25A96FB696D4F46934 /* BSGOutOfMemoryWatchdog.m */; }; 6DBB75EF7423F09AD44E2573CAF35AC4 /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 366329A40E8A1E715FE041B79A1E789B /* FirebaseInstanceID-dummy.m */; }; - 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B82C747E2EFEE16D2A007D5E678461 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 333C8FCC3D51249171A72DCE9A5EEE18 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E0A2A93EE3C8B6C6DF5074AB6077827 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 6454BB72AC441E1494905BF8E25039FD /* EXCameraPermissionRequester.m */; }; - 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = C4F47A60F5BCB7F76EED93F1C33E870A /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 382DE283EE37D981E9C8F0FD22CCFA48 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D86B87674697BCE5BC5B2C09E088521A /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C412DF6D6AA359967FCC8E3B29F01C2 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F862CB52DCD0D46C3E12B5EF581B4BE6 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E0A2A93EE3C8B6C6DF5074AB6077827 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = EC7D36FD91ED2E6B4A8CCDCF84BA5019 /* EXCameraPermissionRequester.m */; }; + 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = AA993AC1DE31C550AA0B661B0D876BB4 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBB48236A20094745DF341AA5823AC1 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA89DBD479FF053FE7C1BCC9E3C264D /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6ED99836BEA0FA40F40EB3E5E64786DB /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 44049E08C2816776C227F1102380AA46 /* FIRInstanceIDURLQueryItem.m */; }; - 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 675F6D25A6A38C0965EC0E8FFF68F5E6 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 30486FCD09C0FB413C2B73A34AB04757 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 177DDED5760D29524F4FB9784CE2D2E4 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B7A4EBD7C821FECB435586412D39FCE /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0F7834E6C0999B04A1ABAE902B1297 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C66EB41246D9082724732E634930C37D /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A65519711D7E6514127CE6BBFACA6EE4 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 718AD05B5CD0F909A8FBD59F728158E6 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A68B8844C7EB5008E2C239A40008B60 /* BugsnagSessionTrackingApiClient.m */; }; + 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D535CA1085AD8AF6A3992692BB8C5C9D /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF61CACE577B9A39BB90412673094B7 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F7D9D99B4940A7F42D3E2832FC1B2E4 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C1004F9B7B201455C573DF6B8B445748 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A26A9AD1A38C028993D2F38F74CEE2 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FC8394AB77ADDA84BEC1B75204CA938 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA02C1E29CB6E36CF2F968FDC1B38B00 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C8D565173D60B976B9B818CC8BDF944 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E3926FB7983526101E6FA1CAE59830C /* BugsnagSessionTrackingApiClient.m */; }; 6FAB807DF62D6E61E6FB5A290B898F22 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = E25C54E541F5F5072F951EC6F023180F /* SDWebImageCacheKeyFilter.m */; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8959AF48FDC941E794274BEA913493C8 /* EXWebBrowser-dummy.m */; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E1D04848A28746CF8F086916F0FF188 /* EXWebBrowser-dummy.m */; }; 6FAE08276981C05988B6748DB0CB8ED5 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 37911D6525A8CE75A5166F52B23B3851 /* NSImage+Compatibility.m */; }; - 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 37ACBA7F8BB60C087B592CF49B2BDCBF /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C89316550F291AB37CBB8DCF16C4945 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 49CD23BE81224DB8D95529CC8205EBAA /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 194DF9C69A78D93A7716C6FA7B2DA705 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = AA736E438B04D91D11B081155E2CF4E0 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E6F08FB7B0D37C62C09B09E8F8FD092 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 66EE284016BCA0CF8AEAF406584719E5 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7088EB44CAC740223920BA8B46908860 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D691A336ECF8181AE201DD7D26ADEBD4 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63AECF618A1E2CB8D3F97014A3D37AB8 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 71843254E106F2D1E4F467A04B343EC3 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BF331DB7CC77F578419968BD700F17 /* EXCameraRollRequester.m */; }; - 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30BB975B57CCC177196223E03CF5753F /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0BF9DA931342C7564A2F989F329C44 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D71A3992E7CF3B86949CE9209EB49D59 /* RNNativeViewHandler.m */; }; - 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1628FCE1C0BA5C53ADD4E56D5A762BAA /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8AE855DF15457AE0EE7496F380CB6F3C /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 71843254E106F2D1E4F467A04B343EC3 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FDD80D6CB21836252E49CED7041D9F /* EXCameraRollRequester.m */; }; + 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B375FD543CA64F20CDE3F99EA6CDA070 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FA83CA39CA4E9E0F2AFE4C9760160D /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B463DBFE41C24BF5FCE50CF65E6A3DC /* RNNativeViewHandler.m */; }; + 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B71F97050C5447905B69A1EA525371DD /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7213D525B6583565A1285BAD6519937A /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A08F869266F38519AEA0AAE93ECAD2A7 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 659DA3653F4F72A99996761FA56C4DBC /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = BE09031574CDEACBB49CE1AC66544EDB /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BB23806F75FA779CDDC924FA7F9C555 /* RNFlingHandler.m */; }; - 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C5AB60DB5E0886BB2ED862637A07EF4 /* BugsnagCollections.m */; }; + 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = BE0FFCFDCA1E8A5EF2264985059D1E7C /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6546E9FD98E3BE5EF35E4FF590C91A /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 576A3C54BF9B2F039E680D2B94139C6E /* RNFlingHandler.m */; }; + 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B70AD79CEF216119DCEF93A6305A36 /* BugsnagCollections.m */; }; 7264B177FBB9E819FEE3AD4C00E0E102 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC5880EEB4755D48F83AD2787FA78EF /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 726F398FE3050CFFAB6C42E76FF5B72F /* GDTReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D975F4A710D3FF97114CA725B087D04 /* GDTReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F1831FDF795AAFF008805D1C8B5DAF7A /* RCTSubtractionAnimatedNode.m */; }; + 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E0979954FA91BF2CF3A2389DE8400967 /* RCTSubtractionAnimatedNode.m */; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 941713D7F2ED661F6F62848161C4ACCD /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = CB45C71AA8B34A612BAED8BF10703C66 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 02153101DD015A798818C151A182F4DB /* RNSScreenStack.m */; }; - 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 48609FC6A9DB5548BDEC23FCA011708E /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 864D63C1C3348D6FFBDA77D0EC206085 /* BSG_KSBacktrace.c */; }; - 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB731F52BCE9B41E27D5C618E184F494 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73A68ADFEFA00CDF462544E0CABEF84F /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C2DC0411F3D040280C23BA49ABA4BF3C /* UMReactFontManager.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 00909459C52E57438B89BF650B1ABC2F /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = A13D5BEDDB728C3BB3CB41EEDD61707A /* RNSScreenStack.m */; }; + 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = EFFB9E6DFDC83EB069C6B62933495D8F /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = B3FB53A8467ECF9DF9A7D394D04E7018 /* BSG_KSBacktrace.c */; }; + 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 40178512F5E8FD6AA27D2F87DA2D04D8 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 73A68ADFEFA00CDF462544E0CABEF84F /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A7A3F93009F5C4B541284A373C6C8B5A /* UMReactFontManager.m */; }; 73BC222F96DC7059E988EC0D2EB7779C /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C56B144313F11160699FC870103B147B /* GoogleDataTransport-dummy.m */; }; 73E18A09BABC8E09E5AD7EBEDE40D69A /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 270B61094921448E80F733E74AF42855 /* SDImageLoader.m */; }; 7416EBB83257207F58A9B56829018B1F /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 42AF09E5E83635479F79553B7BC9BB92 /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = B1BCB56DF0243718905C4F01C56AED89 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 880D12E1D949FD2BA1A1E9FB172B2B09 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEE9A0BA7E271016CEF50622ADF9914 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5300827367CB8363939AF1B14CB87CC7 /* RCTAdditionAnimatedNode.m */; }; - 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1530FCAA091AB1F8F8F266BFA7BDFA14 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = CE61B3F28EBD3E2F62F2C9156F67624B /* RNUserDefaults.m */; }; - 75FF28886473C6483EB0B468863B7E67 /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 30DD51C39F8D20A1631E4174BC225270 /* EXUserNotificationRequester.m */; }; + 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC9484B688043BA42E6BD03A9BDA17E /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A0A3C365D6D9695020F22E89EE0829AE /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1405744478739E45790735E1263FC0DE /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B13B1365EFD333ED252C39A303169F8D /* RCTAdditionAnimatedNode.m */; }; + 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = A5453BA67D5A8D1265CC4D4F25D4ACCF /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C94089E22CE7D7B4F7A353EDD64A4CA /* RNUserDefaults.m */; }; + 75FF28886473C6483EB0B468863B7E67 /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E7E099045D89033E9894F6EEB30D1A15 /* EXUserNotificationRequester.m */; }; 761E0A568CDCE9B772917B337430A542 /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0499B8CE4FABCF6E65F81D68962C5DA1 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 762FD7831F24C457DDBD8BA67F2BB1FC /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E08255D813D805A74DF0E2AC2D562207 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 762FD7831F24C457DDBD8BA67F2BB1FC /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 65752C4D6ABB6358E54726DBF9C5EA18 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7636AEE9E430997447356606B9B1CD06 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = DF1C9C2F9BBA22563F68A4571E4CF429 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7563DA5563314C4D44215ED308EF7C77 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F80C9501800379D69EFFFD9BC11E1F /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3DF60D378DE3375BEB8A1BB072B390 /* RCTRawTextViewManager.m */; }; + 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 93BB4FD17EB6DB2AD4173FC15D1041F0 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A7CAE3BE3E4DA6F072F8361E730C28 /* RCTRawTextViewManager.m */; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4556E026447A016363B5E448CCAC7EAC /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EFE1A74567BB328FDAE023C043DA3D3 /* ARTGroup.m */; }; + 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 46ACE3213293642B56CCF42F0E434F07 /* ARTGroup.m */; }; 773B4DFAC559B7F58017017433245601 /* SDImageAPNGCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F02235FA0AF90E49431E197512A6AD01 /* SDImageAPNGCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 776B301441712DAA37FBF6A7CEA93C7B /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3F600AA82D949DC333DA5269FFB8FD /* SDWebImageTransition.m */; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C47D1D35F481ACA0F8701C734BA781B /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 0499506163E27FDFE72BF36433C9AB81 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ECB3CB65BE3B38AECE4AD0A9A6AA3CB /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77A6EABFF15EEE860F7EC832E59EDD63 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 67947E69A5ABC8DF1DBF4B86B362C3EB /* FIRInstanceIDTokenStore.m */; }; 77AD7992233DBE12F405310EBFC991C5 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = EA6AC78AD06EBD597B03B38F91D2D065 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77EFFA9B1F1ED908799FD6F3C6DDEA77 /* GDTEventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5ACC036BB30F9E9969A8E34135F235 /* GDTEventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6B3569005FEF35CBCD397365AD669B3 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C56DBC1C1527639250735A3D334D465 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 783E0F7BD819E79560DB35F639B8019D /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 3031A7731A02E0B42E97610B692B2468 /* FIRInstanceIDVersionUtilities.m */; }; - 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCB561D274C78BAB42BDF5266FEEFF6 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F929DC989EF54C2701ED2500CA281D /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = F1278B603ADC956F51E3304081668BFE /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E90C52FDDD70CBAC0C2A6596C9C1FE6 /* RNDateTimePicker-dummy.m */; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 95DC10A30ABC3BE3446C6B462168101A /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC6A489F663612912637752A205910D0 /* RNDateTimePicker-dummy.m */; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3900FF87C77F47E0065CB6103276BD /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78B369DDCE73212FDEF4DFCF3C3E28CD /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D7A46E2069BF2C08EB125AB419D0CA /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78B9DE85D610820ACD6ED40A11F08E58 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = A6554CAC66AB58DD6D06EC2E8F89E196 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E10089B334000D673BD63A61590F275 /* RCTResizeMode.m */; }; + 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = ADFF87B6A82B2208F2E36CDCF7DF9A10 /* RCTResizeMode.m */; }; 78C2DFE99D6F7A1A274E9D8EFD165643 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A9FE38B282E70BB60453725831AC9FB /* SDWebImagePrefetcher.m */; }; 790CED3B2746C8BF72B9C0F037A74EB8 /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = F44EE0313A65B3D0BB64ECA3C3C7D0E8 /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7937E82C07AC827E3A6244D5DD2CF44B /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF28F20DB25164617538A4344BB107D /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 23754EA75C4611DD841F9D526A5FE05D /* EXFilePermissionModule.m */; }; - 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DE98B4DC71DC91B5858A13E77D55B21 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 799D7BAD6B61F711CD5DC85E8FAC19EE /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9301A696465A7B138B63C930CAF7BF14 /* UMNativeModulesProxy.m */; }; - 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3C674A38DA149BA329634D1B2F2B08 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F52C1187542EE6BDDCA763ED03072E5F /* RNCWebViewManager.m */; }; + 7937E82C07AC827E3A6244D5DD2CF44B /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = CB9367A1D1DDF5E7789E9E0C94700A5F /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F432125A1B3B8BEC00831CD879D6FB71 /* EXFilePermissionModule.m */; }; + 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D777A08F9ECF58B5FBC7A5B8F6F98A /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 799D7BAD6B61F711CD5DC85E8FAC19EE /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D442CA9F738EB55C03CA6B4B7FAEF05 /* UMNativeModulesProxy.m */; }; + 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 9690640B113C26A03045E4735EAC445B /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 257FAA10FD8901F9CC7B43BBE01C8824 /* RNCWebViewManager.m */; }; 7A773ABDF9C553C818BBEA466D3CF195 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1583CB301D61E5B65FA78359FE12CAD9 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = C9013C562EB93A1E3B006E509A27A411 /* RCTLocalAssetImageLoader.m */; }; - 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D6F407857CF8E797D83CF81B4DDA0B83 /* RCTDivisionAnimatedNode.m */; }; - 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 03CF224C0391812834F8FDCA55B544F8 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F172B9DBE8D23302C6B8A44AE928388 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 8520DCC90076C2D0C0481EAA947E98F3 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B3178BD5429274B120B63E4B5484C9D0 /* RCTLocalAssetImageLoader.m */; }; + 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F40101D1628C0185CC6D5FA7384BEB /* RCTDivisionAnimatedNode.m */; }; + 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1939F7B6A9B5EAE0A54DEB9EE153EADC /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E579EE2A835E3A78C32B26DCBD2BB27 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = DE92F2943DFD9A02BBD45FECDDD74E13 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B469D1BA649E2A3DEA56273C87DD9B5 /* FIRInstanceIDAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 609D910B5A8FEB743D2A62CDA193939B /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A0D6200CDFA3971E6F29B76348B333 /* react-native-cameraroll-dummy.m */; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C4DFD1278075E0235297783391EC0B /* react-native-cameraroll-dummy.m */; }; 7BBEF92E70F2EC74F3D43B7D1E1E3B5B /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 302B8DE670717BA41E14F4F5F4905743 /* FIRApp.m */; }; - 7BDCFE0383194CE86013170AD313EA03 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E2967FC394675462ECF917E020B88494 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 43003C63AB6D53D8F0C724F05E07DBBF /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7C43967C261EDC8D9DF9C4FE6F0CCF03 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 481152DCF8381BB81B4CB5E318542A6A /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BDCFE0383194CE86013170AD313EA03 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4846E1686CC5A723183D3628D1403B61 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AC902E69B0101545635BA89305C80F27 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7C43967C261EDC8D9DF9C4FE6F0CCF03 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F8061B0D5177ECEA9F92BD48600E8B8E /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C87A0BA4406932C036C25C471937D6D /* GDTRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = EA728C8DE06AF12632054567A645AB9C /* GDTRegistrar.m */; }; 7CAFE1BF52F8DE2D0BEF15A33CC19C7A /* GDTTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AB86A467AD7828E4F2E55DA0BBDAD3A /* GDTTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EDA5479E41E41962A4F9C45DF4B942 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B41D65D1A862187B442D7073FCE7DD1 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7CC52F3DE61510F717E8B0BF7FBB3FC3 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 487A7C585227E41DAC704B8715A93237 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E8B0D809212EB4C96F0CCA0F7F3D37 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D1A4DF30C9801FD64301020561FE612 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D46C93427AA896BB7DD3EA1E842373 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA0A28433AF58C83F14445039924E4C /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D068CD903B1F0FB3C9BEFCC029D9EC2 /* GDTUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E63334E9E147920AD55E8F4B08B6FDF8 /* GDTUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C3A03091625137666805ABD9CD63C4F /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8E530C7B07419F2B4A9E63EFBA44C7 /* RCTBackedTextInputDelegateAdapter.m */; }; - 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C67C17F481D7F02D7C3463B2411DF5A /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 721871E7D8498F4B8672EC761AD2C99C /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = E86D949368DBA5DAD2D805EA66DBEDBA /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 020C902A4C9051EDD49E7F5C0A448148 /* RCTBackedTextInputDelegateAdapter.m */; }; + 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC310ACD5DBE33D3108FF1205BEDB15 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 289E33179454D7E3859D7E6A9BB5E1FD /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF5A90B3B77B36A07954CA39856C1A7 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B4880B22F4A12C9C9791F4B32571F9C /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 39524F3CF000F1C3772A2EB4FB6EE525 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C91B68631AA428B8446308DCFEDA2732 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EDB9BED917BCE27EE5CA97BE801B215 /* GDTLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = AE60B3A27F287887508D97080546ADAF /* GDTLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0390AAC82D88B6B9496BEB754DB6C1CB /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F5B8AD4B5BDB6069DFFF93AE08F5A20 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C7699AFD882E9DB82C6396CD2B33D5D9 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62478E8291C36E2AE31F0D147E8F7124 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7F5B8AD4B5BDB6069DFFF93AE08F5A20 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B29F537D673D77BD4D336B4E863EF7E4 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F653669B6A69DE9841ED9138F3355A7 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 31D6386A910752DB6206410DE1299650 /* GULNetwork.m */; }; - 7F7EB20C894667526294CC1DDC90976E /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 165085416BBB22C24BA508984FD6C6DF /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75E7950EB27C6E711A5E1791BD815BF4 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 8937DEA30EF284C0AAC3EE9008F4AF8D /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FD6D859CDD113AA532232F2E50E074E /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30ED0B77780D8EE9E497B0F89B035B5F /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AA33A165E8A21BDAF2AA4E1482AD12 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F7EB20C894667526294CC1DDC90976E /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 831583B9B9FF6EEF6E65BC060213F4A6 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3D4D637150DC931587C9C81C3B6E693 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6BC54EC1F7EAAF55F5D4334D82B7B1 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 942338DC48BF17577A4C1645A502C3FA /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DAEE5347F791D316AFE66FAA3FFF311 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = A932D6DD5352974EA8656D48EED5823E /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 803FFADEF322BF208B7C37C7368C3A1B /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 338364BF8659B692A5C38072A7EEDC55 /* UIImage+ForceDecode.m */; }; - 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC744DF840B073F67D86E407066568C /* BSGConnectivity.m */; }; + 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = ADBF60C609CBA63C10B9AD7A1B763FDF /* BSGConnectivity.m */; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1479715D7848A8E4C2D19640161BB45D /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BE368005DFD93C79A814B8743A0E9A /* READebugNode.m */; }; + 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1AB8196BD52F9B393CF60B88CBED5E /* READebugNode.m */; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D420AC726A223105A3A66DD59C7E9A6 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8164D2DE9EA9493CD176F2BEF6966635 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E4DEC78771EBC06D1CC9FFE168FB912D /* FIROptions.m */; }; 817AD6EE8D4389A94BC361C34B67C504 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3E48665DAFDDB3F7A5623962507725 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81931D53BE00E8FC4B75DDBAC7C86185 /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = FA33B60640BF328BF0DFC68784B43B8F /* FIRInstanceIDCheckinPreferences.m */; }; 81B0ACA7DCE8C57A1D20F5F0671367A1 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E6B460E72CC20396C19DC0B73930E7 /* SDImageIOCoder.m */; }; - 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 117823082507FF2CD3810DE8A924654C /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 81C9A77CF5BD40BF99B2953E95A037A0 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 31603209831682D8D8E385789AD81326 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 75A3991F723F7E84E6D7328336BCDCBE /* RCTCustomInputController.m */; }; + 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86E76DEC6BC5EA597C6615549CE52739 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 81C9A77CF5BD40BF99B2953E95A037A0 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 48AC1E9CAAD52CBAE99B50BAD754F84A /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81D1A8068B0BE495C688E5DF7DFA63BA /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FACB29702ACD77D66D657A8CCAA16447 /* FIRInstanceIDTokenInfo.m */; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3FDBF5EADD2E3AD2936BAD2E5FBA95D0 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8208754E5259F6F76445FDE11F5E84F0 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AE4FFEE6A9488A6CE72466623293BE4 /* 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"; }; }; - 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BD46AC5385CC84A5952D1E255FF9A689 /* RCTAnimatedNode.m */; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 17842AAA69394D97DF4C5ECF3A8B42B0 /* ReactNativeShareExtension.m */; }; - 821ABF75DF759E8CB4B34AE575C39D2D /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A06C9573800BE82290BC622570CD2D16 /* EXSystemBrightnessRequester.m */; }; - 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 833A6A67ACF149F280F8CE95DC6D8B09 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 657929BA048F6BF2E57ADF4C9CD39799 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8D67059CA3241FF449AFB5ADB16969 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = D3CEBF185736931401D88D86C390B09E /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 16E6D00B240E8A6875583B15B09C0AD0 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 82BA825CBA44E0261A4B02BB37342B26 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F65F1F278B0F93DF76C27745779138E5 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C1E9AC90B7DAF68E7C5B579D368FF30B /* EXFileSystemAssetLibraryHandler.m */; }; - 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = DF18B8EFC438372BC3B6F6B072B43455 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 12AF02A793F26E562BCB5474EC337429 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B08911BD2433DDBEA93304013A8022AE /* RCTAnimatedNode.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = CE9D4FF02B9F1E69EF139CEED6C5798E /* ReactNativeShareExtension.m */; }; + 821ABF75DF759E8CB4B34AE575C39D2D /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = D48EF3CAC65B53B0E0B1CDACE8FDE8A7 /* EXSystemBrightnessRequester.m */; }; + 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5753527F498AEEBC128DBA42E80359 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = A73B61118A7A2771EA9034045466E257 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE241FF3367B3DAC3C5D168BD7B35DF5 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A95C65E7B11A9B5F40027478A2EA091 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B70D784967BA4951852CB5F5B8062BA /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 82BA825CBA44E0261A4B02BB37342B26 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F7C298AE307A303912D4493997FA6582 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A3A1F5ED915DC00717D0F67ADC8098B /* EXFileSystemAssetLibraryHandler.m */; }; + 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9080FD4A5DF9FCC85CF16DC16AEBE022 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2DDD2A4611C4ED7A7F07F2C9CFC9B2 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B20C33D2A8CC7A30CD500AEC10C4EA /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83408F01EBA71440E6C97BDAC6DFD142 /* GDTUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = E7D311016AE55CFBF49595940BB2F606 /* GDTUploadPackage.m */; }; - 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 255B228CCCED6DFCD0C46C088AC3FFCA /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A35296FF3366B73A70A2FD24B7ACCE6 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = BC9B332A6829DBEC2A6BEED66CA30C36 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 836F27D41A90EDA63F478FC8EC9B6B2B /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C73BC466081F293E4D01A6633E29FB0 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4380E4A384171BCA37835AB57207EF /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C4C62EDE5BA4D7F161B54E1D83F566 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F1900409CC2C3BD6C8622C9BAAB311 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 481B13E2DFA8CE66FC4D3575DC863D3D /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83943BFAC59E2196EC1FF4D2E942776B /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB4BF48A648AF492AE8FCDE9F4545A29 /* 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"; }; }; - 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A79B9769DABF5D747621369F882A30A /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7F2D94E3973F2448BF2399A82AEAE0 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8010543593DB676E328C6E1277BBA6FC /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E5C63C60D30DA96765FBD72D37FF76 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 84A56F291D661D21781412F8874C80F5 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9C297AE3F56D077125FAF26B6B5DE7 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD1FD19EEAE5B49A97158541191BFCD4 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C62EE627611C937E0EEBF789C755F28 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD6BFF2AC7F77775631A869327EBF543 /* React-jsiexecutor-dummy.m */; }; - 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = E411B627C7408136EA1D39A3F6696869 /* BSG_KSCrash.m */; }; - 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 700ADDD491EDA1DA1D8263D8F9DE39B2 /* BSG_KSMach_Arm.c */; }; - 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = D75C4193CBE762C23A5DC2FB6DFF2462 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB96A3C68259FF4D2301FB0F118B702 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE94B45B20EBA3A79B75B576DB1CE5B4 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 852A8ED13AE3501F4B2C7DC7F2136F1F /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DD644175A669B738B4231111B5F113F /* React-RCTText-dummy.m */; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = C0422BBB11687EFE612D490B8B0C77DE /* RNFirebaseDatabase.m */; }; + 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2E5B3203EEEEFDAB9079DE4F5CB11E6 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA5866DCD3136661203018625FF4331 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDB0E86D85831000375A7EC4A0024AD /* React-jsiexecutor-dummy.m */; }; + 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 7520309124E264C55C6F0F773691957D /* BSG_KSCrash.m */; }; + 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = ED8F038F0604465D39B4B862FD4EA87E /* BSG_KSMach_Arm.c */; }; + 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE70D1389E6F764B944D5A2B92BD6A5 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C3AC10CB012FE8FB31E95320947EEE /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 072A229515E67856918919BF7026D719 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 852A8ED13AE3501F4B2C7DC7F2136F1F /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B506EC4F45536B9E3416460A49B876AB /* React-RCTText-dummy.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = A9691ABB37712E5FCEBACD419A31BD2C /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4C9226B4D3A7B6A7E8418CF95CBCC4 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA134F0EA1537EF10FFF6745288AB2B /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CBAE850177822CAAF0B0484BB32822C /* RCTMultilineTextInputView.m */; }; - 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F5AAC602913992146864B8C3BB903AB4 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 91634D2EBBE9FF97B1E1D92DA46FB7CA /* BSG_KSCrashType.c */; }; - 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2994EDB8FF27036011F13232C65E0 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 369CB7A25D42618BA1B87244F710DAAE /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2321EA1129CD7B9A3C570468E6AD70 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 29CA433545EC6BB3C9FD13334F15C7FA /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A3CF70A53EF1E392D30C064F7E3F82BA /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 869D6314267C36E72B3921B72B2CD745 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E992D8467813492D50B1E61EBFBE6A5 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = B312FE5691799113B85CEF8AE9BB6290 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D0277F480CE09A082A86B5E0AEDE50C3 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = D10C46D86FB6F512B5AFC678EBFE4802 /* RCTMultilineTextInputView.m */; }; + 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = B446B989F75F5B50E56A3C514BEF3880 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = FCAAC1F8A1131F406346B5AE3D886ED1 /* BSG_KSCrashType.c */; }; + 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F78421D7F509EA03C278FDFE4E1C45EC /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C60BF5F47430ABBD838F517D9800348A /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 59956243013DCFA9A85894DE86ACB589 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 732E1BAF94E188712C21BD39B96FCE26 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 900F5C1CB44D295409FB2FD55AA0D482 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 869D6314267C36E72B3921B72B2CD745 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC4EDA6C0C5156BEB199765F0D7F162 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 91E1C0D9D1CB06F3C953E8596A22B4DC /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 874A19430FD98697B7C5E8E8AB50513A /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5893DE036925F219400B1B91DDA49C /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9D96339CB00FBFB4B25ED781F333A880 /* QBImagePicker.storyboard */; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D27DC1954AA7BF4D04B07CAA3A188F /* RNFirebaseFunctions.m */; }; - 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B7A4880C2EE835771E9D06A2BD538F35 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 46AF21F851A2C82B2BEC5949ECD6817B /* QBImagePicker.storyboard */; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF4724D34046529AD96F0F28AA1168B /* RNFirebaseFunctions.m */; }; + 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8663152A86CBD0E6F27A6A4B70814E /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CE8A788BAAD4C7C8CF9143DFD3B9506 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 68467E3CFE2F10ED67841ECFBB5F6447 /* RNNotificationsStore.m */; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = A9A87A0830B20D2F1D739F76A9890AE3 /* RNSScreenStackHeaderConfig.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4047D0C13164557A75A75548DC31B4AB /* FFFastImageViewManager.m */; }; - 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8F6E5BBFA697FF0669A137F6C69EBC /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 610231597FE89D6C746C21903334B00D /* RNNotificationsStore.m */; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = CD1BEC727F858EF9794F6B8E4B755D98 /* RNSScreenStackHeaderConfig.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C572628581AD45D5616C05090F280293 /* FFFastImageViewManager.m */; }; + 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FF96AF347E208FDDC78D621A1845E023 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87ECC4C043286D06A575B38448A0A66F /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B8408F86535310EC07AD7AB9FE1B5212 /* UIApplication+RSKImageCropper.m */; }; - 87FD74168A6EB497B23A90B90518A5CF /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 0260B1705B12BD97512D92AAB1D975A2 /* EXPermissions.m */; }; + 87FD74168A6EB497B23A90B90518A5CF /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B32571BC38D836A16A0BB4F1DDE12C1 /* EXPermissions.m */; }; 8809B9F0FAFDCD89CF323E1489AA3660 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B66C3CAF05853DB459D7E95B9AA823 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BA906CC25277C293D1CFF35A617152B4 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7460AE9B4CF1269C34BDB7CEA3867B /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7737694E9B3A951E07FF7E8C2E7C4880 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CAA09D43AF1B4C9D679CC18454CE6CB /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE341097CBB8D299DFD9626AE233077 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1051BD6ABE3D9D8468852541ACCC872B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 887878B7F152531BC505CBCDD925D20F /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F234F18B2FBFFFCBC641916943E9642B /* FIRInstanceIDTokenOperation.m */; }; - 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3263CC7CDAAC78D64ECE2AF8DF05354 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 02FAA2A82FF5E7F69641A48ACD60B8E9 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC049C90E0046B1BB61D933AA01747C /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 357EE4430484C005819F04B685F87230 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0A69B6FACD7C8A7159992BEA265099 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BA20ECA608A4F959F161F6314C07143 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 890192B34648332B6C6C09A75D978B0B /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 79617570F1EDFDB1750EBEF9D40FF152 /* UMViewManagerAdapter.m */; }; + 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E87BDE5CB74061628F9F4808B9C5CE1 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 890192B34648332B6C6C09A75D978B0B /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 611E604DDA03EB97411EA5C4F7428A67 /* UMViewManagerAdapter.m */; }; 891E992D9EB633B92E3DF27F9B310C23 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9951AFB14B84D5988BFB7DC34F63160E /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 85DAF0ADF9D871D10FCAD5FCC5B53E0B /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 893655588E502C049519BB8E65C6C606 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = B41590C1DCAAA35C248A956F2B3F7929 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 9093F4A1D9250501ABB301205E1A0256 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 893655588E502C049519BB8E65C6C606 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9003C0E642AC5527E363092F6A689EC5 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 893A87DB2A3762C63B0FAC772BB3EDC1 /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EAE9AC10C7125CB916DA112DF625F6C /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C0AEECE68F91F9D53BF643359BA6740 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 02E3C8E65AD549B618E9A95B19DEE4E4 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8992866FD890EAB7CCDC06AF809602BD /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E697151248E9D0827AB6DF49ADAA73EA /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89BD4AA4D3B1EE870D5BC99EDB0FD812 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ABEBFC8AF8824A623B2CCBDA9B3EDD3 /* UIImage+RSKImageCropper.m */; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 222A34B911FF9FCFF752C596AE492C54 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9504A2A6B1C25558882AE62B22F9A5 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 96480671261E213E5388603EC64A5CC3 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = EEB2E8240966298FEA727263F58AF026 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = B2EDF1DFD33ED220F0315B82842BA8C8 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BBFAB8C771DD0FF985331B81372155 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17C501E18A92D84749D865D5BC99708B /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 902E2339E7F9CAD6C410D04B1C8FD1A5 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D05EBAD11E8517ED4B7F16934E3577 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A68269623B19233944EB5E4EB7A1DD0 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CF2CA478943CD6319CC326CBC7DCA605 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9983282CE3F72F1D2F8E5E39DD900556 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E29BD840C7EEDF0C2224CAE90F3EF14 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 33EC0E5B8B9ADDB4838EADB7A50AE5A1 /* EXDownloadDelegate.m */; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 29111EDC9067117B4EA9376BF35DDAE2 /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 343F28199569171A7F9EEA6E15511B0B /* RNCAppearanceProviderManager.m */; }; - 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 9622F1F5AFBF1DC9D2609B287A97CC29 /* RCTProfileTrampoline-x86_64.S */; }; + 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22EE5AF94F841B64FF2A89BC1DEB0721 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F242E15D7BB04FE6B21F6E867AB5261 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 22C109EEADD4F8B96EE22C868CE3C14A /* EXDownloadDelegate.m */; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CE53DB147D7CE3A21529D14E09DBFBC /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FB98E155E9B39BC732FC65B0AF382CC /* RNCAppearanceProviderManager.m */; }; + 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D7BB9A9986EC460E6DA90011D792EFD /* RCTProfileTrampoline-x86_64.S */; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FC2D6D369BA24B26EF115DD14D1CE2 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0C8D915DA3564FD6B5B7B18703D8C2 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7F28B7C648243F665EB4806AE5569F6 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DD39E122714ACA80347AE0123C2496B /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2C6B4E466B4DA131D5D01DABB9804E /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE78D02DA919C9E41B39F91B858B386 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F8B0F84983E057E85E61BE1578A994E /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 691822CFD4F0F714CE44F57239754CA3 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C2D09AB3F7E78DEEC2F574DCBA8DA1 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C947E3F75C661809C8E3BDBBDAB7593 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FAC33E8263E9BEFAC11A7DFF34AD0BE /* FIRAnalyticsConfiguration.m */; }; - 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = B6577B973299B70BE40F64482567C803 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 28AD009D7AA520A7C1D6D17FD2291045 /* BugsnagKSCrashSysInfoParser.m */; }; + 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B117D74D971589A64829864A8AE6FE0 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = D219E66FF0B33F4DCD86F88A47C6DDD3 /* BugsnagKSCrashSysInfoParser.m */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 62E3416996F9DBED8A49ADD5F352C1E1 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC7A3F5A971D81FA783C0205E1D4005 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = ABDF8913C48CDFD3513678263BD2FD3A /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C6FD394B6095FA5812033C28A9AFAA /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F31A0471859CCA5EAC081F7810DBB406 /* React-RCTActionSheet-dummy.m */; }; - 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 13FC99CB679FAF0B279975B449E1D487 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F03951255FA20CD20B62D3C45CFB53 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC5E3712E1C400257D80CFEA826DFC6 /* REAClockNodes.m */; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B1E61C8897F35C71329E692391DC89 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5553295AE6D49C6BA686D1E0A7046384 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6FBF657AFCBC0CE992F27A287E263C /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3A3B3F8D4F01934A892D5E018B54300 /* React-RCTActionSheet-dummy.m */; }; + 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D189DE6A6BF262777E79201138018E7E /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD90088ED71F765AB3DBC0CB8751846 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE4519DC88D45E3E2863002F2F5C975 /* REAClockNodes.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = CBBE0652EE9A9CDDA0DF797B7FDA8F59 /* UIImage+WebP.m */; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A4AB4466400E7177CD81A00D56EC7D /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F5340F41B48EAB99948E68E58639D98A /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = B40F0C3B301F32AC85B84546178CE0CD /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = AA0B72A9927C8B436461731558241482 /* REATransition.m */; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6562F2DB054F9F4800DEEBF8FFAA8C95 /* RNDateTimePicker.m */; }; + 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F981A44843741E1934B59DC554F4110C /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3920FF4039951E358CAC46318B161D /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = B895124FF14733D7CEBA9349AA9E6180 /* REATransition.m */; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = F379F672762AEC43E947387F93AF42A0 /* RNDateTimePicker.m */; }; 8EADE023E455AEC580E9BBF11138B13D /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46B502B21F8455A7A211D7FB38182741 /* glog-dummy.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0143E920C1C46322DEAACDA3FEED6B7A /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B2AC5E2196CD9B6DD211636809906426 /* pl.lproj */; }; + 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A385FCD9093C6C9907B533D8CF292798 /* pl.lproj */; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 369C36A413EA1CD682B6C7998A87C369 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6868214DF95F6AE6EE828BF02EC30D78 /* react-native-keyboard-input-dummy.m */; }; - 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F0B94896794B69DE9ABBAF3A6A4531A /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B69490D4E712916566E0CCCDF08953 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA03DD2917BE1F12B9532EDDE505149 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = AF99F8B9785ABF57CC3B10E0C100B565 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 45DF188108DEEED5638FCF676355F54E /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E350C264AE4803D6EBD9A194FEC1259 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F67D72452129D5639844135A9C40BAD /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C45BBE85AD818400CB1A3129182DD6CB /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 8F7658D209B9A78E163D3E9613B81255 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 065695C3888176DAC6E68FE097DC6565 /* EXReactNativeUserNotificationCenterProxy.m */; }; - 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F76035A1C60156C30D8C7AC85A25B87E /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F7658D209B9A78E163D3E9613B81255 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = EDB13CDBF9633B4AF3631C1FFA784113 /* EXReactNativeUserNotificationCenterProxy.m */; }; + 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF04D957CB2106269632EC5407EAD35 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FE94733E89900C932AD73103E1ACFE1 /* GDTClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA4A743371045970B504A8B2B3C56BF /* GDTClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 735BAE5A99D22558195015309934BF9B /* RNCWebView.m */; }; - 903E5806AB43CC9ECAD1243D2FC12279 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 82CB5E38F32F0666135F8A6821A7FD7A /* UMUtilities.m */; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 498A4FF6CFAD1B94EF7A4801EFEB3957 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 36769BAED6E76E3E195F3B0E0D4B6A88 /* RNCWebView.m */; }; + 903E5806AB43CC9ECAD1243D2FC12279 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6231DFB28457E562F707F544065F7430 /* UMUtilities.m */; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = E0FD752F00F4A92F465D342153DF5684 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7336EA76552B82F831BCF41D5DBFC597 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 9096C4C0065EF00C6C31D3B59172092C /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ECB58F32CD17FF9912C0569E7AAD5E3 /* GoogleDataTransportCCTSupport-dummy.m */; }; - 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = B60EAD97AC08615CF8BA89493710EA13 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C498039C0E6E39E7ADD5FAF1803B9B /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90B80FD2A60F9E1D7768435E7B3FCEE4 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = F021A39527BED58621A6690E610B4A40 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1A81F1252B43F5F5ECB2C3F5872E62 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E921DC8EDE043AA484BBA1A749AC157E /* RNReanimated-dummy.m */; }; - 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08ED12117BB4332C204661E3C9D293BE /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A24BAEB84CCA43C84F63BB520EFF73 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 100FF80E511A702C2D76B13996B21E9C /* RNReanimated-dummy.m */; }; + 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FFBBBCAB0B8D08F6F43EED34AA665FC /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 90F1C6C9EDDF2AE141098A4A5712A3C5 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D4A123FC94E7410BEA6E2DC48D0926F3 /* UIImageView+HighlightedWebCache.m */; }; - 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DF81F714471EE2EDA81F05870FC7BD /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C31F8FC51B67099F8B276DA2E2C77161 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 911D35D4C93E94049058BE6695C7FDC7 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = CB747B3063C14FFE271EBE8037CAC091 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9174043F2C5C946E391930C776A8F658 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA00F20CD47382A4E8F6B2B57C44447B /* 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"; }; }; 9178482012182F62E4C5BA3F50334C91 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3600E8FD97B8F09E8E346C5FA16D9774 /* SDImageCoderHelper.m */; }; 91C83C1367409A169B8F743002D07A4F /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 69A4DE0309583DD90D1046C5499B1BF4 /* GULMutableDictionary.m */; }; - 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CD2D78E8F41D39A64B4383E335683A /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EEAC5F08D6B4D9AF7534012B48BB559 /* ARTSolidColor.m */; }; - 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FC5241CCA8BB67252A090DE9D5C0CA6 /* REATransitionManager.m */; }; - 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 62EC6787AD86A09B5DAECF891CE39554 /* BSG_KSSignalInfo.c */; }; - 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 541875FC146A3D4AF7C305C9CC783C28 /* RCTInterpolationAnimatedNode.m */; }; + 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DA3AE16A57E70E50580A389DC412033 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 351492E3C14B88EF2F44583F4F1097A5 /* ARTSolidColor.m */; }; + 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D15ED0D3FBC255024DAD806706032C5 /* REATransitionManager.m */; }; + 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FFCBCBFD75ACC4049F27845EE8AA91C /* BSG_KSSignalInfo.c */; }; + 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C93EC000089594FF099C665C0CD5D1B1 /* RCTInterpolationAnimatedNode.m */; }; 92855A1748072DD76EA73BD74B968795 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E01B3FF47FD4437F8126BA499140720 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = C18F74C4680E509627B27F971FFE7F07 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 044BD12F427599BBE8E662876B3B0E62 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3DFF4DA664C9CAA3AE8F80888BBEE863 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89AFB173CF329C6B51A398514E06ECCC /* RCTVirtualTextShadowView.m */; }; + 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30C1742AE22CCE53FAE08FFBF0D3F9E3 /* RCTVirtualTextShadowView.m */; }; 92FD213052E29CA5F30B41AAB84AB5E9 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F057988909AE054F78191124C83EE28 /* FIRComponentType.m */; }; - 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AEC8DC13EE046F3C8DFBE136D8D798A /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 932A63E4F9AB03993C4F2C40333884E6 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = E50F1BDB59560C2208BC53CD88107847 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 216893CFBF0D3469A9E59DD22589ECA6 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 932A63E4F9AB03993C4F2C40333884E6 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BE5A5F512431AE95BA20D966590C69 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D307D68C68FE4F52BA3146D3C90DDE83 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 9360604531512771A9FD089A9837C676 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 48D13CE06914C02A51CA1D66E14B9F40 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 93C54730DD440D3D44E8805D830A196F /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = FE5F61B11785B4AF3CB9741A37B367DD /* BSG_KSMach_x86_64.c */; }; - 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 150C87055CDDB34CF656770A6785DAF7 /* BSG_KSCrashSentry_User.c */; }; + 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18909AF21641E5BC9DDFF07FDD182C3E /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 93C54730DD440D3D44E8805D830A196F /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 61BBC7554C8DDB2D24939E02DD216B6B /* BSG_KSMach_x86_64.c */; }; + 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 6341E8525984ADD7C1E022B6761DF55E /* BSG_KSCrashSentry_User.c */; }; 942A1E450047CD3D7422D1A33226A320 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = A1392FB10E0827593617B7AA05394353 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BCA58A32925A1E4400F2B1ADFEF0972 /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E147E303AD172D0F1385F1896F47B2D0 /* REAJSCallNode.m */; }; + 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = D858D60B19B15DD3B37BFCFA9D636CAF /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E40A00C8C3ED2A93E0EE23547A78DAEC /* REAJSCallNode.m */; }; 947E227575A4E6B2587914526363901B /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = DB99F2676D30EF6AB07A50ACC6AD4D23 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8852B603985EABAC100BF0A6427C4ACD /* react-native-webview-dummy.m */; }; + 9498774D036082A8B4E197579E6016BF /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C012FB7B0BC76B0C6B7C8D565A27D68 /* react-native-webview-dummy.m */; }; 94C13AEE39D1D80619F968CCE5C35616 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = E55949C58B399743C8A2FAF2397938F2 /* GULUserDefaults.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 66BF521E492F11C1AAEE17475971CB70 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C0A3B289A8E8C397553F8B5795D657 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 959628BA0DDBCCD75C7AC43F9F4BEF8C /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A58D7780B1E3A13BA1C9211FF6D72D1 /* RCTImageShadowView.m */; }; + 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FCDE91DD0E99392CD557F45E12BF7BE6 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9184892A42F009B99FA3122EB8A01354 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E453555479B0F9855094D1421408F0F /* RCTImageShadowView.m */; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C993823267D96AA814B7C38AF6C7369 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B40E769968DD2143FE155AD49707E9F /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9551B84E7109A022EA783B45C2038FBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA144FF00D58E014F32E879A876E5E39 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9555FA1629B54E6CE10F84AD1CFEC491 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AEA1F7442A8A10E9F7719D981A6B89F /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC31182A2D26CD330A9E68DDF5CAF70 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 59DD6416FA43F3F675F005EF8FD3F328 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0E03388EBACCF6E9B6F9671AAF2F55 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B5FE04EF96F3DBDA6FA2EACB05DA49 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 94880BFF0112585F7B888B90817CC653 /* RNFetchBlobProgress.m */; }; - 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 97BC1C8A76869E6D037D92F566BDDC8D /* 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"; }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 687A41FEC3A047663FAB081DC2F60CE6 /* RNGestureHandler-dummy.m */; }; + 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 449960A6C936728969A3FAC54D3AE584 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9551B84E7109A022EA783B45C2038FBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FB3372EB8247BC640B24FF491917B03 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9555FA1629B54E6CE10F84AD1CFEC491 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C54199B51007F1E812208D8DE3387CD /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8195DD85B930F93043F9BD1EAC646D90 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 74A79C14BCB87394D8AC086FCC4B270A /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B9483960D0898B710053D59BDE9BFC1 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C6FD5F50751A07FAC17D258A658563 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 558F3A1F827E2A4227105B723DC14BC1 /* RNFetchBlobProgress.m */; }; + 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 19F236EFD656CD6ED1BE2782FF78DE63 /* 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"; }; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8676E7BD06D3F128D9D5C6B7E96FC999 /* RNGestureHandler-dummy.m */; }; 960BB6A747C122E41D0F93EEA6E0624C /* GDTTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = FA981CB894230861E709B35205EE9407 /* GDTTransport.m */; }; - 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = D638C2BB3396581FAFA06A88C595108E /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = FD013A881AB7C8A0B88A7917FB4BCD7C /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 962F246F4D86BCE82B9E3A33080D44F0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1A278B5D9E61566522B152532F1034 /* UIView+WebCache.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 784124C11142E87DB1D3FCA0F0DF8284 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B1701CE791ABE0B135B42558643BA83 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 810388610405CE414D68E0FF0CFF62B4 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CB01CE9E07412C5A22C1E15F8F4859 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 00F8B0C7A4D6446D5585DCDC4DEB566C /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86679E2183EABD35F9E8AB9DA3D2A5B0 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = F6C495F26CFBEFBC26967005E92B0173 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C71CC06056DF5AB069ED78C35A7CFA26 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF5ACE10E5F64B3AA4D2DEBD41A9A8B /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97094C87F27838DB2641D5B3F6F747AB /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3A1CF3578311FCD5BB2B8C51729FDB /* RSKImageCropper-dummy.m */; }; - 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1A41557D9711A38CCC49769B2E64DD /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 264B5E7D4C00A43280E5A09AFF8A418D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97A46257E974C4FCF70DD15A759720F5 /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7AA5171F7BFA958025DC698C194776 /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97C623DF2BD61587360EC3B26A8F5CE8 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 417D73313E1EBA932B71E1DD4ED1E357 /* FIRAppAssociationRegistration.m */; }; - 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB2BCA0F0DD370D4283F50B7F88290F /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E63C65400C7C42AB2ADFD6A72C8D8036 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 48B9ADB111EAAA20CF02AC1AC415BD12 /* Color+Interpolation.m */; }; - 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DB546F80EA4C8F664F7D34B6D539816 /* RCTVideo.m */; }; + 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EB96561AD27EC387BE84DE11A59AB7B /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DFB4980F144207DEE8438AEA10C2137 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 29C330A7AC446512DCA73AE8F317A6BA /* RCTVideo.m */; }; 987941CF7049804341214F98475B275B /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C4C342770D787159225FE9960204DBE /* UIColor+HexString.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A821A52E6888BC7CFDBC1BC5865C0C8 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A5C8ECB83FF0304DCCF72970E2ED09 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A2DBABC7465D5F548708424FEC0D92 /* GDTTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FAF80891432F62857FFDA6B6F8ABC8 /* GDTTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = F24F94A3FBFBBBA8ABCC077D41D91AFB /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F93E285BE4F106BF8932B2B288E0B96A /* es.lproj */; }; + 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D04E51B3D9AB1AF4BA1C8CF4B613264 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0204FFA6DCCD570CDC31DF830ED0B68B /* es.lproj */; }; 98D876A1A244F466F67E906E6E55EF82 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A239E55139C2F75E79338C50AB6FC8D /* SDAsyncBlockOperation.m */; }; - 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40D5ACF5208F52A2EC8E91E5268F9CCE /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDAA11E01E3769D1548AD0B426B4B73E /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 6608F2F8DDC7A9422458F90A885EA723 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 65513BC7EBF5BE3D92B67A6AB24F90B7 /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = FD53D519FE1FA635BC4159992519AA07 /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F30855EBA5C5D5DF32296D69B4CAE212 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFF6B66AD8BD4CED51BA0C7DB2168BC6 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 361BA81519E68DE00DC1EE1C2CA4F5AF /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFEC36A329F7F411B66663877EE221E /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F83D90C0F4DB00C007D20D4EC47E4C0 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3590D43479C716D7A9556447867485FF /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE75D7FCAF52DDD6FACC196FE4C0616 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C914260E14BFC206DFDEE3734A44F64 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD664106AF32EEDF8E76346B113250C /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A3099BF1A3303D97FF4B77EE8FA453A /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = F7F1E72F15A3AF0C35DEF0C1A2BDD5F3 /* firebasecore.nanopb.c */; }; - 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EF7332D22F963E1ABDF5B443A56C2AD1 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BA484BE2D968B51B86CB86188515DDB5 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A1B0E64A972AF42DC39566FEE8C89F /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE02055864DF5DC8FADA071B185C63E /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D6CCDC79B5BCFA6A83676FEB2DF2AC /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E2A92E98E8DBDA927A8118442EA22BB /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A0E90B7D6DE800A18779640EC834AA4 /* RNCCameraRollManager.m */; }; - 9B0328A157A59821F094F7E47F1F3543 /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 5298D6BD91CA975746993001F4AE1E6E /* EXAV.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FDAAA44D197DF276FDF2ABF423F2849B /* RNCCameraRollManager.m */; }; + 9B0328A157A59821F094F7E47F1F3543 /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = F68B894BFB676E3DB6ABFF59C9420AC9 /* EXAV.m */; }; 9B328C7EB8E9F91C9E4940B976F51EDC /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2DD08031380836E714D119660B0C71 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E40D66AD3F0AA0EC528EA8FA8910211C /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 66459DEE8823BB0B8D11EA3D6DB2307F /* ARTSurfaceViewManager.m */; }; - 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FFF74A046BF8D427EF7C90624577C41 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BAF4F61A0D2E6C36FB24A5850AF641 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 665CD2C5AC1F6E6C2D0181620B03609F /* ARTSurfaceViewManager.m */; }; + 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = AED110A21816296407A6A61AC9990E5F /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9B8FF798D120C0131DAFE922F8FA3326 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = D68865F99A8F6659659285B0079FA045 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E1B228189E45D0324E55F165C73F0C90 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 65394E91B0674DD8D11B74FFC7530670 /* RCTTransformAnimatedNode.m */; }; - 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DCD7924BE0A9DE6A96D091A46DC54D9A /* RCTSinglelineTextInputViewManager.m */; }; - 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A4061ACF38DF7CD0EBA4002BB78F6207 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CC2B03F77FB7F47BA4D5716181490FC /* RCTTransformAnimatedNode.m */; }; + 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 39FE672E234A0F2B4D3D2F49800483F2 /* RCTSinglelineTextInputViewManager.m */; }; + 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 336D45C35F2EC445F9ED02E3142446F0 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CC8AF94995AE4B94A792BD1BEA1358D /* GDTUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D30A9F40B2A36F04D29DABB3C01B945 /* GDTUploadCoordinator.m */; }; 9CE103A0E1FF2B3FAABC3B449BD8D735 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED36BC453E7E9F44D4DA76E824785DF6 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E41231EFA93F8A6858FD06F87921644 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 10781EC5358906306658F75464CEAB50 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A1E96E54A74B0B1F1F972417852D401 /* RNRotationHandler.m */; }; - 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF65FA367DB5F4C1958D5274B4EAB64 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B96040DC69901B1C2CD26E570EEB47 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9DE4DDE399B842FC926F9E57D9A45942 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = A9229A056CB0E4E9B46213B6DF6DAF7B /* RCTInputAccessoryViewContent.m */; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F29936E7E20B3CFD89B9C48AE3C54A /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E00A71835F74BD9E7791965749B0D68 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F9101373978C3B83F589B7777250231 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 09FB1013F78A7AF3DC2546F7CC3D152B /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = A84BC45100C1120943994118E8BC0CB0 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 74376EC07D3F975FD1FE66CAA2ECD8BD /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C6BBB9126F7034482276766B5771AB71 /* RNRotationHandler.m */; }; + 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = D77D2E2EB87638F70AEF59D57EDC5A5D /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 672898C13A0510836C2C646CC6EAADDB /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9DE4DDE399B842FC926F9E57D9A45942 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA71924A53FA83777C47FB39771A3AE /* RCTInputAccessoryViewContent.m */; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F6F32C376A26E04D4D608A0EF649DB1 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E00A71835F74BD9E7791965749B0D68 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 757F0D30455E5095FA1113AEA1646E4D /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 49D61BB85BAC2312EC6A84C93F5A2CB8 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E26D5D25561683EEEE343BA59A8D932 /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 241E57CE7B8A8A9A0C30B2F4727E17F5 /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2770744B1EE09E021F4D15CF3C5BBF74 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 725C9D7519C9246294964E65F09B5F2C /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF57F5F08561D32276CA6C41C7BA677 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = ED72CB75EE41F1699A55F0A56B38D40E /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E66453D10A11F0164593AD596E0E8E0 /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2A85A735F523B7B67CE1ED2DFDF5D8 /* FIRInstanceIDCheckinStore.m */; }; - 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 103AF3B67564C17BFFE8AC3251B444C2 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 38FCC55495F3D29D189C63059801F701 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = A98D3BF786F423F9CC492FAEE6A1D1A8 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 265C960F3781EC699D265B371CEBA7C8 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EB60143301349BE59FEEFAB98C50415 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = D57BF655F31F1339675D0B395963F052 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = D798488795753C7103E292B908093381 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 81685809005A13FF186E65DA6FFB1463 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = DA46EC3F7B4ACC9EE9EFC228D62084F1 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9513FFCA869AD68880C9933062162BE7 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = DCEAF7E65FCBB127E2095642489CD6B1 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 94606D3881606D2E4B349880A5E20253 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 57368F2086DD6FE94DE31D75C66B6F6B /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = C571527543C1C6A72236C840D24CEE16 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6BDAF7F393697F29CD3C449B02F883 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ADD572631A373CB2207CC0B924D2E6F /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A40D49376282675A8A1608198C4819B7 /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4FBA22B542402775644ACFD00D2E66 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 144E7B8B4EC7AD69B7B6F83260E103C4 /* react-native-background-timer-dummy.m */; }; - A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2BDA32F9D8827CD2E9C6BD3D8D811F /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A0927C05EBC9079407AC005BC6E1373E /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5CAFA657156AFE1D21437C7A8D7F6D5 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF7143096F238E5F373CE201997766C /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B54D91E86F56F1BB3D59F4544FB2B9B /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 408F22F3F444319857776C2C7864AF7A /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57AECC27F567DD3DF4C93EB41CFC289E /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3B1522AF71F1928759D062C6264FFA /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C85E4F5792725A2ED57B07340ABD5A53 /* react-native-background-timer-dummy.m */; }; + A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A5ECDA009BD274EE01826A8215EB1488 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0927C05EBC9079407AC005BC6E1373E /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7E25A5F3D83CA32E225BD43B8747E2 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3E17E0CCDE635FF68B7283FD6BAA75 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 13AA84F9F00D832C6E61E3ACDF57FD58 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EC2141037CFBBAB3FA9E1072F9D6F23 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7D43AB936D50A81723BA9C97BB3326 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 94AC1D09E69C8916A504293625DCA441 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; A141899125367EFBDFABC1D40258574C /* GDTTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 950A1A041BCF19C89D591AA28F944791 /* GDTTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1AF2DBE1AA6CF8976C7C0407363E187 /* FIRInstanceIDKeyPairStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B17E24DB6A1D37F25B7A56EC2AD431E /* FIRInstanceIDKeyPairStore.m */; }; - A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFE40F14A73EA2B443AA4CF44DAD50B /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 16E1B3D3F1C9A20AC3EE3B0DEF23172B /* RCTConvert+FFFastImage.m */; }; - A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DB42004B240B79A0FF03409A8928664 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A80535764F86459CEDD667CCB4F197 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAEE0C9CA8E2893756B368AB756A956 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F09B22862988263200E4BCFAC2F8A8 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 405CD50CB99B3F8DFEC76511A7B8A317 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 089F1F40063F07FE13D63877ABB48BEA /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 67964FF6376567E1802FAB5BA7EA7E0D /* RCTConvert+FFFastImage.m */; }; + A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 58974D4D725EC1A4B787E7889D894B95 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9D4B49AD96280E32CA151E0E090A0B /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = EC14B89EB09A6697A2C3F755E6C05789 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B24A4F04BD786E652F6B1B34DE094A /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 11D45A50423950FABFA8813A4308CA5F /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EE1A35EFE4C42EFA941515040AF2489B /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F923DC4CEBD2EB6AAEA9D65B8BE85B /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = F908B6D3318ECC8CB21079076A97D721 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A351627E81A36765AB4C00CFCECF3F17 /* GDTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = D9C066C867C0E4440BCF224357AEA143 /* GDTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3023C9C83AB3D0B89E41DC5070F26651 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B15308932FDE37573BAB54F144DC5B /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; A381D018508DD7639E2FE4C1A93036BC /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 729A38040F88573F71437BC50CBBB96A /* 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"; }; }; - A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9754CCB1B41C75728B6A02F4FFF969B1 /* RCTSpringAnimation.m */; }; - A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EDDC8849FFF32858D86EF726C43EBADE /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5CAFA657156AFE1D21437C7A8D7F6D5 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 466981B0F2B17C3B1AA31B8F0306798B /* RCTSpringAnimation.m */; }; + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A87D294F6428C7EBBF8E362A82C30DF8 /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7E25A5F3D83CA32E225BD43B8747E2 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3CEEA552FEECF9935C60A49F2245451 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 08605099D3DD551B75AE7B66CA074A26 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E1768101677ED3E062B092BABACCADF /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D5EB99574208D9F9DC8FB859A56BEFED /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1AE7B678524F7E743A927A062A7551 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E8628D665ECC3DE993D7A1606537068 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CD8755AF098A173E00AA86509262962 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = CDAB2A362C37E561051D58E59B8C6295 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 606613496D858DA774ED2305077A99F6 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 930D4F04D29FCE7F407D31112767117C /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A48A78367616FA23CDE0EE8BFD8C2870 /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DE96E733840BAB2944ACD371EAEE2C12 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFAE57E367A65A55C2FD1C7F38C1E2D /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB201F23A57E266A0E92BEF7B46EB16E /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 77CAA27A0F211D519B85CBF3D079AADF /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 183650D3199739FA3BADAF479DCF1BFC /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ED407286D3EF4CCC9D9A30176A89B2B /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E07ED57ED920D977BD81B3CBD8D42FA /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 514F3A9AD50449219C6E0E6AF2186349 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = CA1241D3B5EEE4FD5C20C761219A6335 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D0C5CD61A7E538AAC42D172FDE227FD /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FFBE109A12C58D1B77F06CCD5095525 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 24AB6FC2865384C38825BC95C65B5813 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; A57DB7FFC1AA6AFF3337FCE567C2DFFC /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4465E9E8D02F3CEEE80D33E736D98665 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 30905185B2307B24C83D044B5E756944 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C62A883CE89818A80C430CA55152373 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = A88F186F604A06A6BAC80604088762E3 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 35507195B669932A80E9BC3CC8A78C3B /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = D2ACF36489C9B96840468D3F72ED2479 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 064AC547DFF8127EEE541F3A1B437236 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 98081B33E4A04202E149C0287D3A2C30 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A65AB6AE536FAB89F8BD54D22A3270B9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EB73F92E6B3CAF9B57FF76C5040D0C /* UIImage+Metadata.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E96099942FD1BC96E81912D52A2DD99 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE9428A6197F293955DE9F6417A0F5F /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBB7BBB84CE072F72C306CB1A339DAB /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = E6F1D1E9706AB9D1DCDD8ABE42EB7FE9 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A817D669CAD6CC063C6C508C72A5D55C /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CAA2DBF00DFE036CB71047FCE811813 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A820309FE601A2C8F95EEEAD890158B6 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B6E180F517D3B5E97B2822EB303FCEE /* SDWeakProxy.m */; }; - A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B9853EEABB86B11759DFCB1EBCA3B8 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A851FE5B4FD2E5AC7FBC0358BAE014A8 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = F96DFC58F11AE0F9F57A856E86C307F0 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC20A9871EB97B9E51FD4F2F6D7D33B /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFB1F7C8CBE3A90D885A2D9F791D56A9 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A851FE5B4FD2E5AC7FBC0358BAE014A8 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE92919E35EA25DF553ADAD467A35D5 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DD017B1997FF374261163E158159F2F9 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A86F7C0A488320ED06BFA2B846DA26FA /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 773EFFD9502444FAACFF9DEAF0B811F7 /* RSKInternalUtility.m */; }; - A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = FD38B2E5F8FDC009EE3930FE406607A0 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A891EC8D3D003F2BA49992F3FD7EC76C /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD234B82B5CCAF78C77FA9DF5E9585E /* UMLogManager.m */; }; - A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 13DCAC04D657A2082E265DD6149414DB /* RCTBaseTextInputShadowView.m */; }; + A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = C66CDD18D336271F57E64297A9DE5943 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A891EC8D3D003F2BA49992F3FD7EC76C /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF95B1F3299788509771779271ABDF95 /* UMLogManager.m */; }; + A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6497159F3C2792A83DA23AB246A07150 /* RCTBaseTextInputShadowView.m */; }; A899878ECEAE82DA6084010973FF7F21 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 479B38160D59438D69CC69BD7C3FCCB2 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CA21EDA115C0A41E286ADB005D6A38CA /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 12EC3DD9CD28EBA910DC357466A9268D /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E90ACF398CB3D713895AFC1C26A0FA6C /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = A605D1F6B49B045296942CBA5DE6616B /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; A8D70235F433DF4ECC825AFE0E7D5DD7 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D5FBAB8AE41CDA37DFFF760ACFFB922 /* SDDiskCache.m */; }; - A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAE4E2BC7E0C20A3AA1DB5C880F2695F /* React-RCTImage-dummy.m */; }; - A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = D7E4D46622518C9F84C86F8D27596A4A /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8F850B0755D926B58BF8EA8DD0A7EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5503461EDC3D0BE3934EEE5DA1BB9088 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AF55E15E2C3E4E070679685042CA4096 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 2ECDDCF7A859B3FDDDB907DBDCCDE589 /* RCTProfileTrampoline-arm64.S */; }; + A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA226BD14A22B9CE3BDFE2C44E4B410 /* React-RCTImage-dummy.m */; }; + A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = A6298B7EC5E6F59CA4115EE8F575AB45 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A8F850B0755D926B58BF8EA8DD0A7EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 523AC19F6A6A3FAA6B9C8468EED05F1A /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A60B62926F6005BFF390DC4D2797C72 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 1418C7E922900E5DE839F18D991C3B84 /* RCTProfileTrampoline-arm64.S */; }; A99D016A3588F636AF86A6D2FB1EC3CD /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 87668906696C273A559873C1EDF6F7AA /* GULAppEnvironmentUtil.m */; }; - A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7E0EB48FBFC098528F3AFFD3FF860C5 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28265B29D617FAAA311A5A948A405705 /* QBAlbumsViewController.m */; }; + A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C009003B7CE339561B3DAA7A118DAB /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7752D13C7DAFB1DF6B209E93E5D5B23F /* QBAlbumsViewController.m */; }; AA7FCA9F298C4986D79923FBC1807573 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A324E400A01F6B751011F6DE9698F6 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F364C673640804FB74B70CFC3E3463 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B4707E6C2B2E5939A8D58E98A7930E /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B8CC2A6D6C06177C82A687CF5D7CBA08 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FF812C33AF0646DB394034654C8C6836 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEA399CF91DC9F45F91622F9ACFBB2D /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAA2E740FAE2A61A309C985C858588D9 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 623D5F4BD01E3D890087793ED0AE50C5 /* SDWebImageDownloaderRequestModifier.m */; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 0945BBC48C6E6DA34300929C868A3F41 /* RNFetchBlobNetwork.m */; }; - AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6688D83418759724326835A4BDDC9 /* RCTTextView.m */; }; - AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CC612AEFC201E55CBF50D8F1C40E3C3A /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = EF2E9C0AB9A9570651210E25D28D6B8D /* RNFetchBlobNetwork.m */; }; + AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F2821F039B7C781208D6F11549AEDD7 /* RCTTextView.m */; }; + AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D289E948BE7E930A28010FC8E9FB03A /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AD02169BFC7C99B84A56BB3FE5948E4E /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 30EA317F2FE8EB6FA84DCD6525D08D40 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 067D5D2C99221EB0A3B9E22F7DFD06BF /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A5BC46FD11ADF1251BA46820BA26460 /* RCTImageCache.m */; }; + AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3B5B33D7B3E48D320C3A06E3B9A455 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C0A4784B7A41EB53E38B3BC83A5D6C5 /* RCTImageCache.m */; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = C78D47F722BB1CAF44A836ED125A9FD7 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EBD648ADF08580A26F32BF867B6458B /* RNFirebaseDatabaseReference.m */; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 94E57B5ECB870EF9C65BE0DB598689E4 /* RNFirebaseDatabaseReference.m */; }; AB6DA83EB836653E7E835FAE9744984A /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = ABB5C981E713091255D71AAE8FE466A0 /* UIView+WebCacheOperation.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 776B81695F3B63E689B69A224988541B /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 9046E8F29610D14F5BFA1946206DA373 /* BugsnagSession.m */; }; - ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 721871E7D8498F4B8672EC761AD2C99C /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4518AAEDC4391458D6489E7697479069 /* RCTFrameAnimation.m */; }; - ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7CEE5036E73D34C54DE51B53DA7EE3 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 635FA568B7B1A010E7457351BA789F89 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A231ACF11EBA9485481AB9D965D579B /* BugsnagSession.m */; }; + ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 289E33179454D7E3859D7E6A9BB5E1FD /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E9E4DE789DAC5D2AB6D882B5808F6DE9 /* RCTFrameAnimation.m */; }; + ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E2BB89BA761B35A863A3495F2A3AF0EC /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = C8441C7C956DD16F599D219757963B47 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC1391E438DA90477947F994A68517C5 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 63FD78AD9CEFB2DE5FF77E72C8C7A453 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1F199CCF5EDA47DFCC987B9A28801E /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 251B90FB835BD1A6E355999584A8E017 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 804AD74736151223ADA3BC5674D5EBD5 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AC7E6E3BD2A7CD3A72D5C70405E31DB7 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = BC76E2FBF45298FFC195C1BACE29276A /* FIRInstanceIDCheckinService.m */; }; - AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 151FCAEAB01057A6DFAF66D7094DF371 /* 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"; }; }; + AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 27BD052E627B478D6051402BFAC7F93E /* 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"; }; }; ACA88DFA5AB4A617551CF5306214183B /* FIRInstanceIDKeyPair.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B18AB04CABC858BF04C827C6B5470F5 /* FIRInstanceIDKeyPair.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 414C5BD92F1BAAE19A219BC6610A5C77 /* REANode.m */; }; - AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA44C408D387162B22E4CD223D65C7B2 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 170794365051DE61C2F27CA071918980 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = EC56C96F70B24D207A22E3C32799721E /* REANode.m */; }; + AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A9044317CFED7D37B46560668B46ED79 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7AE31CA026D3F48692DCBCF9E5CD469 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; ADC8D3D65F0543D6DEB99FDE0CBAF90B /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = AEA0DC5B6845AB5B1AFD86B44151D246 /* SDImageCacheConfig.m */; }; - ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D798B4EDDC375384A075DD5D1B7403 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBB39B796A50E11C5772196E909F6F5 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; ADFB5CBF150ABD49A5569C139D2F926E /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CE22CAD125F9462C815704C23AB8010 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 92C67CC10494D314A41B3C2CEA9A697C /* RNNotificationEventHandler.m */; }; - AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DFFEB90D12B0A3D0EC41CA71AEDD6485 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 562C20F9B0C661B7B7CD7311659AB2E3 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 748FC8EFDBC62C2C86AE00238C2E8EED /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED6FAF56D3ABCA19813CBD037348E6D /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB722BDDED6433A2C613BC46BF7D51A /* RCTBaseTextShadowView.m */; }; + AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D4EAA0DC0984DD9F7A1BD49ABF23B9 /* RNNotificationEventHandler.m */; }; + AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F02EAAEEF7B345DE2117CAAE39DB7E6D /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = EC3AF76A540E9FEEC0757B1E194BD55E /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DE22AECE308A60E233BECAD44F36439 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 184BEC56074C469A06B101587D2E9AC1 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DC7CE3319FDE21DCD68690CEA070AC18 /* RCTBaseTextShadowView.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 07917CB28CC07843C9E23E4D4CB0FE07 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D2AE3583762C93008AC2DBF600FA03A /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 95002A3B0A2E1A89A06DB758C12DCFC3 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF4E05A1A05A4A91C9B5C88FF89DE11 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65270F773D1F907E9E884457D88A1E97 /* SDImageLoadersManager.m */; }; AEFF8C6DA7000185BFAB86FDFB63E0F9 /* GDTRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B73D30EBF2384AD1F89DAE90DD80A5 /* GDTRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF077EFEC522E29FF8D788B663D300D7 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8733A840E5BF5CB7160E71BC70F136 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C9A31269E81DF965C0EFADB2012AC4 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AAEDD8926E16F91B42B1BEA3D26DB35 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF783557C42133FF18F4E366E28EF300 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBDF0BB8287EE7675B3313716DA7CFCF /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; AF79242E97FCF340E1D5266D69041821 /* GDTReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A1CA7669FE65C9DB40A235FA8026681 /* GDTReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 965C8488F60641681C8FF2D2BBD2B298 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 26657F01A0E5510FEABAEBCE1DE12D1E /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = A61A2F8B6DF63BCB408BA44CF8062CE2 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3129CD842094158C6171DB963DE8C2 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7919F19F0C6DB06ED41EBF1BAF2F55DD /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 4973755A5C8153712ECB14D21BA02D68 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AFBB31CEBD7272995FBD79E1E4B97615 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = E003996EDDFC4DAC0E9DA2A7A151C5C9 /* UIImage+MultiFormat.m */; }; B03C42B044033F100A1E04809ED61FD2 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05C2010B25DD2DBB84A02AD7D9CC3D4E /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F389B285F0B865DEAD7629FED2F9AC /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0929481204407C90D1661AFC8B0305EF /* REANodesManager.m */; }; - B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B3BB883D8A8C3E696C572EF6EAB59284 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B038F44ABE2A3C6093324D530ABFE312 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E6105005932822D378CAAC5CC045CA7 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EFA6FC05F95DBAF0B63C85E29EB10177 /* REANodesManager.m */; }; + B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EC83CCAE0ABC8D5018B3924A1FE1BD96 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA52432AC0F92647A05FD7AA1853188 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0D9EA67A437C2D4F14606D128C1A666 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AF26D3C24076E62CEE06B987C6D1D6F /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EF2A4E69D80B6EDB5E27EAD8CF0618BF /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BA407E1C13578F7B43F9461BB02A73C4 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A210A44A558DB4BE0D609D7D770FA3B /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C17BB0397F61A1876AEA6689322C7C09 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19E284EEDADC2AAEB838E15A544C93A /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 081DBE46ED8562B7ECAEDB8FBF8206C9 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; B19F2B637F6B23E5352C351E7F9D5AEC /* GDTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = A35FD940F25DDA9B77B7AFCE50EF51FB /* GDTAssert.m */; }; - B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = D9BE4D1608A09FE10A9E3B412A392C07 /* BSG_KSObjC.c */; }; - B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D8D6E02317F787EC529CB53BDD23902B /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = FB7BCEFC749CA8C6FC0E8F8A35708B1C /* RNFetchBlobRequest.m */; }; - B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F3001C57F8CC737DBD4A431068E0CC5 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B879CAC09D6F374AC38D18476522FB1 /* BSG_KSObjC.c */; }; + B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C60D767A0E2981AC2AEC4A34BD00C76A /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C123446557587F2421C8A680B0D6AC /* RNFetchBlobRequest.m */; }; + B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2F75CCFA4725EE9D410580E837D823 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; B263A4FE744BB18A7C7B543C66725FA1 /* GDTReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = FE63103F5165EC0A1900FC6BD658D52B /* GDTReachability.m */; }; B2698816BE03D78D782DF5520083AA26 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3751758E274BD3C87E1AAE2DE4C1B366 /* 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"; }; }; - B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F865083282FF0E3E2499A9C3C003673 /* REAConcatNode.m */; }; - B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFA4E87052B6065E039BA191735CB91 /* RCTAnimatedImage.m */; }; - B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 98EAAA5831E0ADD5E9E3BF6BD82CACBF /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F13B1FF9E413876B860A45982F190268 /* REAConcatNode.m */; }; + B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 270CAD43892181D91A753FCCAF11032B /* RCTAnimatedImage.m */; }; + B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = A3415E38D5E1DBC30DC4BCACCD73D64E /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2FA0A7642EEA39E75D3D03EF2E15B4C /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E7B62E6910F30CA5877D34DC7AA5887 /* FIRConfiguration.m */; }; B350DA3DF951BFDFC56331C90C01E200 /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = E715A7145663F9339D4E7F52DA5E3932 /* FIRInstanceIDConstants.m */; }; - B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 23911734DE7C1D39EC583D4B98597944 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2860113F8A165287F78B379A7E7735F1 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA02F2BDAC2181FFE353B2B8F23A3CB /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9D7CFECF0E1016A7AC15B8E44E1539 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 60E41D6EDC00DE5F7FDFD06E86F1A2C5 /* React-Core-dummy.m */; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = D63D5DE507EB9E643CA55FF3A3F4B965 /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 734AEA6C4CABB5DD9F8F3707C6300538 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = F8752475D668F72AEAB301382F7113DE /* DeviceUID.m */; }; - B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FBA0A0A797AF05C4739D1E5917DD321E /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BB0BC0862B3F52AA1F1D2EF8400E41 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53927500D9DC1655D81F0333D4DCE74A /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 11AAB6FEF0C884E8DEC640CCCB8069F6 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = E44831143F1E82C6D1D56459488C91A3 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E89C137986FEDF89532201F6C541E8BA /* React-Core-dummy.m */; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 34392FE0FAF6B26AA1A5D0D334E0B009 /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 61DB6721AE305D83B24E136EF4B371B7 /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 56B736E929813BD04E3FF23F394B3A85 /* DeviceUID.m */; }; + B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 044407784524ADF30EE59D2E8A6EB492 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; B4AAF4E42C54B9F9F4FC2D9F8A46B29F /* GDTDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = EBF3A066DD720BB3B76A4D77BDF40D0F /* GDTDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E014ACDCE6AE8C590470F9FD99628A5 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 208B535EFA85EEB6BCF38C0A82906751 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; B4C3A72600CB8D619C537CCA7E59FFD7 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B8E0F7766A408C07F547DE4D5D2B2979 /* UIImageView+WebCache.m */; }; - B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 696551F58422F0488F0E1AC2D3222089 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA243F65BEEED50FE367D2DA9EF79D8 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = CE21A33BDDA440B6E28DB4EA198320B0 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B72C33D070D0F03288E76E1DA1BAAEE /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; B53803E0BA4AF13B0CAB686D6FE5D0FC /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D131A8E4A5603427F19241AF701AF94 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = A2128DAA3DAC64937C1E6568A67A7439 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFBBF90E279EBAC6C6E5B68B7943051 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CFEBAF532B2306AB0D9D98A93F0BDD4 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2C4C71D65E4EB15B7280625E88E856 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5BD49BAFD353D954E0840F64E4A2821 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11B31E00DF16B6278B172C44FA57D3DA /* DoubleConversion-dummy.m */; }; - B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC051E8E39A958D85281DA2232549E0 /* RNBridgeModule.m */; }; - B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 10F3C58AADAD3BF820F4B6EA52544515 /* ARTNodeManager.m */; }; - B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DDDBCF3CD0C36D993D2A9B90128F76B /* RCTImageView.m */; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = F07161B28792B01620ED2BCCF6E0BF02 /* RCTConvert+UIBackgroundFetchResult.m */; }; + B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46D3022953A6C8DDD7E8E48D01BF7CD2 /* RNBridgeModule.m */; }; + B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F89729CA148D97F54A212DF19E375D3 /* ARTNodeManager.m */; }; + B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F02258C3025220FE4B1B6D0B34DB477 /* RCTImageView.m */; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 14AB6E124BD2B583021797BCCE2C01DA /* RCTConvert+UIBackgroundFetchResult.m */; }; B64FA42E184A0EE28D65B959449C49FA /* GDTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BCA88F7ADC8587075F74C4BF52094A /* GDTPlatform.m */; }; B65ABCAEC3B324AFF74CFC314E05D488 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DFBB6DEF544E77BA121C1D1031EC0DF /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 27099028B8D9CD2C8368F70BDADC79D9 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 604A3C8D67086E9A3ECCB0B7BF40E782 /* RCTInputAccessoryView.m */; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A091CBC32EF17A8EEE1A0C5F34273A /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 02D0DC8F9713A3D0EEAF9E51D2A7C23B /* RCTInputAccessoryView.m */; }; B70FD1F085F4B1DAF7EA12B132D71569 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 18765F99260DDACA363C4D54C9396C3C /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; B719B6CE8FDBC80C42048ED1A4510024 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 36980163009EA4BB2A710FDB6500AE39 /* NSData+ImageContentType.m */; }; - B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7521D31F3A9E79D6E0C978B3EEC1436A /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3227B4916513844D43733B4A452ABCE2 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B72B9DBE5446E5510A628F76A191A0C7 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FEC3F7B47F6DD538B443A895DD5D9591 /* SDWebImageDownloaderOperation.m */; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 78F3FBD7C471BA4C5B6D151E01926216 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 863D399BA928C8368D2AC66969BA7496 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6902BF644B6D22E65F917FE0AD95F867 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 243C7E6E9AAD9EA0A3101707AE96006D /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B9F9868FE878EA3D72E95B136344BEC1 /* REATransitionAnimation.m */; }; + B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE8DCB4FE3E2C79C8DE1682C04B4EF4 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = C53D620466FA934E2DEFED95435D8B35 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F6A4A32003BE13755DF6A7C0A164DCE /* REATransitionAnimation.m */; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = A942963ED07E6DEB650FA128366D8156 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C3171701218F19BA57771E76E4453E /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0060ACFCB7F4DE84A9C2625491EA6A6D /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B88B8A0DA96440AC08B05788BE89D5FD /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76443512452314B81C8DF7C0C0027E31 /* EXAV-dummy.m */; }; + B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C2B5D1ABE022EB310ED1302019A45B5D /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B90CBFB4AC716BB821DF3EFE150151 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B88B8A0DA96440AC08B05788BE89D5FD /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 829EC048CE8EFC4CEF32EF085705F63C /* EXAV-dummy.m */; }; B890C8FA91883956E89ADE3B6B17679E /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A43A3193B00F38A7A85002BB97B1AC5 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31A1E826694B6213C448735FA7D15E1F /* RCTBlobCollector.mm */; }; + B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4D8A8570768D18EC6AD9A98D3769B00F /* RCTBlobCollector.mm */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 567FF870D1397FAA1691FB0CD6CB3562 /* libwebp-dummy.m */; }; - B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 200B410FC52ED1D49FB3C784185B8F03 /* RCTVideoManager.m */; }; - B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 57D32BB2DCB9D84442AFA5534DF2D526 /* RCTNativeAnimatedModule.m */; }; - B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ACA86B0CE6802F5303BB625FF3E0F4 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0C99EE7CEEF2ECF943384B07DEFBF58 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AFA2D3EFECF32CC9AADB24226A3B73 /* RCTVideoManager.m */; }; + B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D7B672FF680F74FBCDC5832FD405BB8D /* RCTNativeAnimatedModule.m */; }; + B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEB5577CD1899B3F7F5F11FBB09EAEC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1923765E1722B016062233F42B81720 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B9C1E38AD3D1F98B5403FB50A6003E43 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = A47B0FD5533369CBB8D4F5907D6C95B0 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2870DD1B6E957DCCFFE20D03678B0CAB /* RNFirebase-dummy.m */; }; + B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 87769C291A4B1E7C8702BFE93FFB588B /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = DCB22A38791F748AE8290C77D99CCC56 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 9603D56149DCC0F2A9E3930B1929F72A /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 607C651864B81834E926AD131165E5D2 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF370F773F98172EBCFDD5981186996A /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = CA94FE7C1ED0D22930A83476F47FE470 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = DD58587783451C7435F9C0C28BFD89FD /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 108085D07F03684CEBE9F4B088890C70 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B1B6D5299F4C34E1103231A3B70571 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC5EF86275F965D3421C5818AB69340 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = E1468AC437F1F375A17C5232350DF95F /* BSG_KSMach.c */; }; - BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 920F14D05D427385C4CFA10C28574833 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E320C50D0CCAE45C2D45611E61C085EE /* ARTShapeManager.m */; }; - BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 57128606D41041DE0DE7DE6C3FB04801 /* BSG_RFC3339DateTool.m */; }; - BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C25D35DBEAD6FD160BAA8C91BC077A /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E085DBA7E97CE3E2B19A40F6AF0571 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = A9F51DCA8E22B93E3861AA519FF984C0 /* BSG_KSMach.c */; }; + BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3062E4633098D6C28215AB25C0E5F2AB /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1130F68B29467DE52EC99D8CCF2EF03C /* ARTShapeManager.m */; }; + BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = CAFD426247162E8929B3CEA147364142 /* BSG_RFC3339DateTool.m */; }; + BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAABE70DAA2A74A695D0D9165F0D036 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 47F13B34B5F0D50BE1C2DECA8367236B /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBA5C37A4DA22F35E2BFE079AF8D4D97 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC55BDAFCF76EF408F711747E2104F6 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBA5C37A4DA22F35E2BFE079AF8D4D97 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA3C918BA42D4D94F6C111302EA8A21 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBB9BBD85FD78B7232142ADE3AD15BD0 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CE49DDB2DF81CFFEFD9BBCC492FEEC /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A6843A5A11A1F90BF27E91E750F962B7 /* RCTMultilineTextInputViewManager.m */; }; - BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 783B06CA56E7F31AAD0E0144F28CAEDA /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC123B7D5CC70DA3800E61D7EA4C4F38 /* RCTMultilineTextInputViewManager.m */; }; + BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 000CF4B07323DE0DF96F8E98827BD0E1 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC39A14139D09DA09D179898A87CF021 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 7138C521F354FCB1A269DDA495C7D2FB /* GULLogger.m */; }; - BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 945812BAFCFBCA799CDA6828A3F43720 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8D6D629A6E640F6D69B60F695979A2FE /* en.lproj */; }; + BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B0004424C9E955B20F52B9D72F35A4 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A83563ED1B8552B3023F8496D52DDEC5 /* en.lproj */; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC69F9FE2E8DBE28E99666C455B61BD /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D75317127DCA2E50611CDFF673C98CB /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = F75E382715FBE5250A79F0C98DE6E678 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6594216D34B0923DA2F6C563BBC9113E /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 118846E156FED3C748B4D00BEDCFDAC5 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD65B77B25285655EFA60B4C9F3F23F9 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F51256112D9CF93FA314D5523249742 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDAB014F5408461B18E0134D71B273FC /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 551309157E1F140AD78CCC739864810C /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDAE1642C9CF0B63DF602E868A7970E1 /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 9265904108AB9D3393DC3CE7F91A9B47 /* FIRInstanceIDUtilities.m */; }; - BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8494ADB2C4035D2B22513419C51B5517 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E88934084F444413DF57BC472BDC278A /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE37FB1F5349BFBD966F5B1CBB9B24B0 /* GDTUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = F416804666984323CB6BE6671AB4FE08 /* GDTUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AEA1F7442A8A10E9F7719D981A6B89F /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C54199B51007F1E812208D8DE3387CD /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = AC615868BE8E9F48A3A6A126EAA7DA56 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BE4F13C44F376AE339DD73231DCFBACA /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EE710F6055B8126303056B0BE1B60B /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE5DE257A36811BEFB4F2626DFDBD03C /* GDTConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2497D5165EC0A35BD96AD57FC55949E6 /* GDTConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 881868D218B5223A2DF347CA1DFCFDD0 /* RCTModuloAnimatedNode.m */; }; - BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 08F60035D9582D5CA9D282FC2589628D /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 272EDD435D37F6C2EFA2EC5FB49D400D /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DB80D7BB15CD01DAEFB5F0208B83809E /* RCTModuloAnimatedNode.m */; }; + BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BD7B3943400B212E1BF3647FE4BE60 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = FCC4B8EC049E11D4661A38DF88D67836 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 3653B913D7CA70CA4C51EC4C9CA27F3A /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEE4B0E524B825FBF453B242122800F6 /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FFA8CB977BF4AD6E90224C3F5F650B0A /* FIRInstanceIDCombinedHandler.m */; }; - BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3370FC1317B276B98782F87182B739 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 834E201ABF2061E6D473BE35CAB450C9 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B56838A8EB055CC8F57F87833A58B50 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8E04118ED59087038A3197896170AE /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 665E4D5175A646C08F3D216295A530A2 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 520CEBF422EA2532B8E674FC815BDE24 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F60AAAB9F2D287AAB07027D4D88BDC9 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F79843AA3A02D490BDAA1334DA7D9E3 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1069B42DA1FEEC4E4FBBBA3AA384AF0F /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB237C3B5518083CB337FAE3C6A6EDA /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF6C73488638D5E9B195DC5890E36369 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 617CCEC26BE49CEAB04CC0C3BD375E6C /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF9530B10724263A128DDA21ACFFAD41 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = B54554CA08243B0445BEE89CEC127C6F /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF9530B10724263A128DDA21ACFFAD41 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B90B45428596392B758EBB8172173C2 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; C003FCC72FC7B55D846E71062A6AF1CB /* GDTStorage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F08EE550D1AEB06952E8879746FC9947 /* GDTStorage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C00BC444C909EC94EB7A0B9972BE02DE /* GDTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FB7AC3B2DAC233057078CA6A102339E /* GDTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06E0853195162D78F258D0F541B2CAD /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C698118A106815F6AB507E9C315C27E /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E9EDB57C8A7B9A567D2B7E1DFD51750A /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = D7009140009F7E9B686F2ADB91FDB555 /* RNFirebaseLinks.m */; }; - C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CABE6C371A0BFD0444B9F27A64F4F11 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 473AE24D3E8882A18AA205365D6D55BF /* RNFirebaseLinks.m */; }; + C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A1841F077B29D6A80EEDBEA24DB2C322 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0EF38E2CC4F5D1AA2CE7684E58C542D /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 830A9E503A916D0977B7C704E7CDDA7D /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F983C121F9E77FD46B5A5C230669F6BB /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4FCD746909AA36FD59C8BE52573CC6E /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E13103EBBAC3CC02469B4EE37E8FCDE /* RNVectorIcons-dummy.m */; }; - C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 00D6267DF2FF73D1AF8C5368C1C5E270 /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E0F498276475AF9EB123E331A4CCB2F3 /* RNPanHandler.m */; }; - C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F983C121F9E77FD46B5A5C230669F6BB /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D3902FEAF386765D6D0AE0F129445AC6 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F923DC4CEBD2EB6AAEA9D65B8BE85B /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = D9515AF621FACD624F464EB9B8404E4F /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3C9C05A2745796C90E164493003F98 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1C42D2A161E005AC9884543F93F9990 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6BBD2D4446D917DBDE428BD8190405 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D659A8989A7924F422EAE8E671F369 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = EEEDC419A034A36ACF434DC59091C087 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4A44DBD0125EC6C933C43B0821CE950 /* RNVectorIcons-dummy.m */; }; + C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D03AF7C4AC28A8E342483AD0C8FFFAF /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D76E43186948D347E816B807616C51 /* RNPanHandler.m */; }; + C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D659A8989A7924F422EAE8E671F369 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A10597132CA42828B1C52EA27413A5 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = F908B6D3318ECC8CB21079076A97D721 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E382CEB69582D5A3E1D1145FB53E2E /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E8A42F0D1F9D6C089BAFF542B55AF0C2 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C1C42D2A161E005AC9884543F93F9990 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1514FB448C3792F9B079996C9A026869 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C207569F8719A271C767D198587CFF0F /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D280BD85D66E4E6F08E9D7AF3638731 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE049BEA86652F24D0A2D756241E35EB /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97DB1F19C9F90AA0129AD54292C01F4A /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C22841039EF7FCB0A38C0A4BEF6E233A /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = BB9490D5D6C2A4D58F4DE53CA64B65F4 /* SDWebImageDefine.m */; }; - C244C4AEF749407B55BEB89F8A908791 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = A598C0208EF4B24378EBB0A461F36DF0 /* BSG_KSCrashSentry_CPPException.mm */; }; - C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A3DAD382322F1A249BFB52E044950B /* RCTNetInfo.m */; }; - C26D1A4CB64ABB25355919733FA07F67 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3869402970ABB5803B20BF44D61D87 /* UMModuleRegistryProvider.m */; }; - C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = A798D3BC0A968E1D468B9F1BE57782DE /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = CCEBD8208E1F25947DBF57D76B5C55C5 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 951C3D1141215236BF3E717E98972F20 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C244C4AEF749407B55BEB89F8A908791 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 406385383204B2936DA6EBE77C582A39 /* BSG_KSCrashSentry_CPPException.mm */; }; + C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A261E6DC47FC78C346E476DFA901018 /* RCTNetInfo.m */; }; + C26D1A4CB64ABB25355919733FA07F67 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CEBD833E7C29EE188089973C078FB8A /* UMModuleRegistryProvider.m */; }; + C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 877DBBAB43FAAE182840481DA1DC1A07 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B271CC330D29F0587211E3E531EF9E /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE42B1EC0E9A1434434EBFF0E914EC8 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 353D6BB05EF772EEB577A534B8E2C1EB /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD8727BFD3898AB37FF5C02D3A2019C /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A1BBC5DD1139BE603E1CF95CC888B2 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3D1000FE91F1ED6637A85A0B3393FAE /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = B2735CE302680854AA3529AFCC29CA03 /* GULNSData+zlib.m */; }; - C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4BF29BFB9DBF4D660B3789F5576D82 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C426E7406D39F8B9DC748D66406DE5D9 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 9982F863CF3571B41EC3DB02755C53D4 /* EXAudioRecordingPermissionRequester.m */; }; - C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 50980AAB9368C75899714BEE65A19973 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = E99010208DB40FF5DE426252C8136019 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C426E7406D39F8B9DC748D66406DE5D9 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C18F5EC1ECED083D3F569C093B78AA /* EXAudioRecordingPermissionRequester.m */; }; + C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5139D60632AE33D4BECAD013650BB15B /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C463903550363F2EC8E73556C301C2CE /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD6F0184C9B0D921A0733BB5A058FF11 /* FirebaseCore-dummy.m */; }; - C46CABA6A326F70D7624EF26233C77BE /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4D3029D489B9CC30FC5E9DFF1C63994 /* UMCore-dummy.m */; }; - C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 94249BEAC1A4D633C6807346A8070F3D /* QBSlomoIconView.m */; }; - C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E13BA75043295B8C6EA26BBCE451CC9 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CB3C0F55397252230780C99F95841B /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C46CABA6A326F70D7624EF26233C77BE /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A04378B750390FA9197CE08773E8A6DF /* UMCore-dummy.m */; }; + C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6AC73FCCFC33703548A833FF9B4DE87 /* QBSlomoIconView.m */; }; + C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E8E8563621FE972E731563A3DE02B7 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A7CF65F52705E88A875E0CC391FDD9 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C50BBFD660177E04410B43D6C45ABBE7 /* GDTEvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBB7D5FBD7D716F754F9E1C34C1EC74 /* GDTEvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = DF9802471B3C38BE71E6DFC462B60585 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCB0F44C93968319F5B2F7B8EBC8DEA /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B5D99728B4D33D9FCDDC665DB25379 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = B64ABAA2ED051F4D59C5A0E249CA284F /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FB684571273849A8C02F5DD444715C62 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5B18DC66089E744774E2B7348260CAD /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = FF93806C208335D001155DDC1F559DB7 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04F043ADCBA901864BB2FAE209E915BC /* 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"; }; }; + C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E22BC49ED73C86D9E689D04CC9A5DD81 /* 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"; }; }; C5CEDA86340AD47E9F861BA2E90C0098 /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B1A1C95AA27C1D36C6270D41774B010 /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B2F2858776435BA97A8EB0ABD8287F /* BugsnagReactNative-dummy.m */; }; - C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1C1F5B1636218DCEC267CBFC409026 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 97B0C12188F70CE990D5D85626F3C361 /* BugsnagSessionTrackingPayload.m */; }; + C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B10126DDF1E91DF886BCD3FF29934C2 /* BugsnagReactNative-dummy.m */; }; + C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE22117442F8A974DEA3541D0275D00 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 9966DE0E10ABF4993F33D5ED0512725A /* BugsnagSessionTrackingPayload.m */; }; C65E95799529526B6E7D878BE5A8C15A /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 313C94AD1D24DABED4DACECE329E5171 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; C679826BA06A7E8AC3F0C873125401AB /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB41289CA45FAD1326154C61667467B /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EAF7D54D08571323E5F785BD3EEE /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 086682E66D534C5C4E564B6A5873DEC0 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = D88A8CB93215FC62B8F7F4B729D1A2D3 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 455FAD484583221C129C0EBC0EA0384D /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB77BF2CDF722B873EF17E6A605E2E5 /* RCTNativeAnimatedNodesManager.m */; }; - C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B2AC099629C46CC93F0E91ADFEB8830 /* RCTLinkingManager.m */; }; - C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BAEFD4C4562C5D193B2D14D21D30A0A /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7A978DE2F048385786BB530A47BB2DB /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF350EEF9D4CB89A936158E831C3E76 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 247F1B869B8C5B1B67219E38EFA3D3BE /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0CC7EFB48352588D0BB4E513ADDE0F5 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 943D7DEBC82207F41DED0ABECF1EF62A /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = E42C397B7AF23652BBF8CFC531689C07 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C10B157B3F1BE0EDC78CE7A467C73BF2 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 460E788B26005F112CA7C460BBB151AD /* RCTNativeAnimatedNodesManager.m */; }; + C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D69B7ABE2DBC0A78DC962D27E4EDF17 /* RCTLinkingManager.m */; }; + C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A1512754E862C64B6D673A29DBA48C95 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7A978DE2F048385786BB530A47BB2DB /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = FF007B97ED4825FB5DD4EC5B259F585A /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8F1BA1DDA2334913E97483188FDB0E /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7D3C394C908F36CAD5033116E989AAD /* GDTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = E1EEF36D6AEB82A30BC411B8B360BF77 /* GDTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B7263BADCFD744E32F1CC23ECA5549 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FBDAC9AAE6212A5C0524E6F1220950 /* BugsnagBreadcrumb.m */; }; - C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A7DBD047D8132A53973B81E8A3B6CF4 /* RCTMultiplicationAnimatedNode.m */; }; - C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 13779FADE8C2EEA8185E90141DA3E5D4 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 767E6879FB85AE1BD7163A0997745F42 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 046EAA9D5C971AB9315DEC235D649530 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF8E2E2B0217A01CC5F953744A9DF6A /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = C955FB070DCDF20A68E7E994CD2E2C37 /* BugsnagBreadcrumb.m */; }; + C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 564C16A2CA784571D3210C4B095C2683 /* RCTMultiplicationAnimatedNode.m */; }; + C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDEB86AA4CBF37EB549FD6D2B73580C /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C9AE40190AB3EBC24D73C2F8717CA8C /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 42652246EB8597BAB9ED797AFDB29830 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; C94DC516C2F48A7868DF9193BAB277CA /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AC64561B534482CCA37BB93EC068B7 /* UIImage+Transform.m */; }; - C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = D02317A1264D11D9C88D834F0437492E /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C98B27F94C0BFAA23B39DF31B94E96C2 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3421F26D424268F958AC092714AE40E4 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B71E231DF5F88A2F4ADD98F62EC79D /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C98B27F94C0BFAA23B39DF31B94E96C2 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C01F4B19B6A1A3774F2B63B6832C793 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; C9C06DB7739CC4EDD00EE60BD45AB526 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = C46905CBF59E505239D2FBEE8A2482ED /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA8BCB483CB0B37699373BE5950DB82 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = EDBAC99A7274E858D9F6D3A2910C2E1D /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = CE2680792DF7834893B2F58F450A3ED6 /* RNFirebase.m */; }; - CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCD9EF2870E34294630AADF03530B74 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 58CF79F99A87A127F56E24875D1F96BF /* Orientation.m */; }; + C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F2E8CA46311C82685B3649AE8679F9 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 05D05EE0108C878FE066A6ADC6A0C45E /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 39FB342F2915CE4D0C45B748FB848277 /* RNFirebase.m */; }; + CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 8726331AF6FD5A9A46E6D76C69CFE1BC /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 229B69F7A2BA93AE5530A6099A73B0BD /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1AE985C329624758A2E5C9F691D7D1 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 86E1E63B15248196AFB2230744A465F8 /* ARTRenderable.m */; }; - CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C1F15DAD777D61E47556A49390A2CB1C /* BugsnagNotifier.m */; }; + CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = A33BEBEB9296D799A5CC2F6E1DA6868E /* ARTRenderable.m */; }; + CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = FCF92E92E2BF7480E08D527E3B6B32B0 /* BugsnagNotifier.m */; }; CAF7B83A9944FC42D125FD8531A69A20 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 080E2FD90E9D759670B5110850479F74 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB451FBD339977E44FF2FC313068B5EC /* GDTStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B9229E59D5CCD6CED8B744A44D0EC198 /* GDTStorage.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD1E67D6C1F41C818BB20DE61AAF67E /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A791612F5D338BBF660CFE92C5102F3C /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB58C69E5D7000D8AE64ECC794C216F2 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9697CB449E3F9E17D2460CE1D27DDBEC /* SDAnimatedImageView+WebCache.m */; }; CB64648C0E1E4414FD4489211DD002D7 /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 685DFF57A1534B9C433EDBE0B2A0B0D3 /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13CBC0BC2FB3CE717B2C0EAE3A88C1A0 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FD177916C7B57614C5F4BEA61F8CE9 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C840FED49BB6E4503D0250D4C7345A7 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CAFE524CDC0EDA7E418B7CFA9669422 /* BSG_KSSystemInfo.m */; }; - CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B3036C135F1DFCE419D5AA9B4DFDEC42 /* React-jsi-dummy.m */; }; - CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B96C2FB80F4A61F7610D6663DB9DC0B1 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CC5C5748F588ED764B57214FD01FA6AF /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = F0171EC8BC3009153E594A4B4AEF8326 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6375D5B3B39A6B2703BDCB2AFA1279B /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 520596168666727BFEF67125B5710510 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 421749BA2F7571D99D820BC166D7C111 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59C5D3D4BAB635C84E35AE51D051C7F5 /* BSG_KSSystemInfo.m */; }; + CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCEB923E2F3F8EE5A58153C6B1EFCD5E /* React-jsi-dummy.m */; }; + CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBEF4F6A79D7A337F2E745F009A9A77E /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC5C5748F588ED764B57214FD01FA6AF /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 94A1DC650FDB78B22851D3136118CEF9 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 56326E64636C5860ADD9D8717D8B8C9B /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCEE7F22ED3AF3050046C3DA5CED35EF /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BEDC16EA249B3BA4903141B600E8AD4 /* UMViewManager.m */; }; - CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D463BCADAB0CD3FA585E82382C4841E /* React-RCTNetwork-dummy.m */; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 21A88474A311493C0251BB4E0C560C13 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = A2551752B23876F7D9DC4F441A5A45F9 /* Compression.m */; }; - CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 237B12B1A4532AE980B5562F14F00BD3 /* React-CoreModules-dummy.m */; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 600CDEED2BE217BF314CB38BE1A0B171 /* RootView.m */; }; + CCEE7F22ED3AF3050046C3DA5CED35EF /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 38BDE49EBDF3B0498562F79B151051CB /* UMViewManager.m */; }; + CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F12B9FF4727F1E046CCC81B567800DA /* React-RCTNetwork-dummy.m */; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = D42B454EEB792E0824116D8112F0E504 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D827844647E7A17CE8BDBBE80B4D2FD /* Compression.m */; }; + CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 544B62EA9E3FF7693056DAD8F825DABE /* React-CoreModules-dummy.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99D483AC9B598492130F46428DEC1739 /* RootView.m */; }; CE2605D3A74C9DCC6A5A1C6ABC04ED98 /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC329653A5CE5C65DB4A68C3E2D5C2D /* FIRInstanceIDAuthKeyChain.m */; }; - CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 118A76D5450D2D9A30DAD8E065C92CCB /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F7F3D2B934D43010E5A45CCE146A345 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2FB31784E1ED7F7C9238D0C311015A /* RNPushKitEventListener.m */; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = F8ED706A6936A4268543107344BFAC7A /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B45453F410B75D4C4E47E4EA8F3068 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CA86EC02704792F80A09983025BB31 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = B3EE8748D4C2705B971758111FD67780 /* RNPushKitEventListener.m */; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A45AB7007FE9A17DBCAB986A38929C /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEDCA25A4B55E64D9A49FDE6D20C638E /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51C0EC44F93E37F2F7956B7F1CF1BD7A /* 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"; }; }; - CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC8958D94FEB92227099ACBE9C9FB36 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D7051E2FA1D497B53CFD225B3529F4 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF2DBEFC8F676A6C89BCFA1DCBC02491 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1205BF8DB94D1E1D3698CBE66EBF47 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = F20F066B0F018C6B2B233B5AA947D408 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = C305168FAD215519274F2AE6E43577F6 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B2535034DE2FFF715358C483D50EC8C /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D02279BA02BD4E067A2468A5B6213A6D /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = B80484046E542C11B4649FCC8CAC9C52 /* GDTCCTNanopbHelpers.m */; }; - D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE900AA535F0A0D529C23A0FB77C1D0 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE6E85653366321A31E90396130F69E /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E0EA2AA36E21EDB27E8CBCE76EC31EEC /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D093A116E9E3D56CBC4CCA3FB53A374C /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6AFFF17DED4DDFD06E638BD2D35B9F /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B1BB2341170C48622677C2029A72A6 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EFFBC728DA46B2973369B908F1716CA /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = A21E000F1B505340A3B129180C852E2F /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D093A116E9E3D56CBC4CCA3FB53A374C /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C44DA87EDE4AFD3E53692BCB10D754 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0D1E7C0D38F8F07555211A4AA20537B /* GDTRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 130BEEABCFE093EE423DDC47BE879AA4 /* GDTRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 78503CA382C9D43329DC817BF54894EF /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 92B78D29037CAC24AA19C7CF8C13DE91 /* BSG_KSFileUtils.c */; }; - D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9A3DE004CEEA3336DB958021E968A3 /* BSG_KSCrashIdentifier.m */; }; - D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C46431CFE02C9A38B7F8ACD3747A235B /* React-RCTLinking-dummy.m */; }; - D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CF13AE017A0A23961BB8B7EB170F98A /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D1531DF670F8F9F3756453F2D690D5C3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = B250BD041FB5381BC6D982CBE9174EB7 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF766D888AA238D53B541FBAAE7402F /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = D6B0FD592EEFFD8759575ADFE9D2E87F /* BSG_KSFileUtils.c */; }; + D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E62FAC3EFD4396EB4C691B8C82D1BB /* BSG_KSCrashIdentifier.m */; }; + D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B3449DCEB6A78DADC97D79F2ADF6AF0C /* React-RCTLinking-dummy.m */; }; + D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B6469FF91BE35896A0F7C4A257B67385 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1531DF670F8F9F3756453F2D690D5C3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 90CD3FFBDCF208693762B2A5AC6EEB83 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECEDE0D5F2E5C9837501F2C507064EC3 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 520DD62AD62FC1C83839377841D5519E /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D1E312DB375D99286F30D9A1B11166DD /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = E569D86CD050677F1EF7A85AF453CFA7 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA0DE37FB10CB00B4D9968FF00394365 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 39DC876762D2607F9452231B276AA8AD /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 77416528506225EE2972EBF70D15691C /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F8F307FF3CDA1C47B9333A1B34AEAEBC /* REAOperatorNode.m */; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B3EA2ECAF632E137336F97437D3E6ADC /* RNLongPressHandler.m */; }; + D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 55CA4E692BC7BD9A9F71C4BE789286C8 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 67D7E900DBA9B68E7900E940C0659DFF /* REAOperatorNode.m */; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EF4F651BD7B0A9243D1AE528F276FE3E /* RNLongPressHandler.m */; }; D2BE8317E9EBBE5FD4ED18BA5C53794A /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27471F34AEEB9F553D525EC2E01F3CE5 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 00FFEC094BBA2326B97D61C8A235B8CF /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2896DB1C66C7E0D6CEA401311DFC3CE9 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3191A4541B60D766573C867948163D7 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5990557900A945AC96315DA636E0AA47 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F9990659AA32C3B809F59BA64EFBB47 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3191A4541B60D766573C867948163D7 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1EE2C6E1E03203FC6FDDEDD82CFB77 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D3427935755BF962371D067EFC408DE4 /* FIRInstanceIDKeyPairUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = C52620374CCE79F63474832E84684EDF /* FIRInstanceIDKeyPairUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 86EC7D9587DCAB7397F8A9650E3DC500 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F6B060FA7384859BC82F1A012092389F /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 6CF1F51F10F527FFA49F8C35BCC08D4A /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 922FE223C439FC87898DD0C6C980A908 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3E2973E1A77B52217E5151ACC4C40F9 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F60981B496FE1E2C360A984FD512294A /* 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"; }; }; - D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 789B2C68D8DD160298CF3C4290405EF4 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18D46CE6DE6E232560BCA20F7347F9C9 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 57AF6757550CBA0DA8B885582F80FCBC /* REAStyleNode.m */; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 696BBA70437E1206B8EEEA5A283B2A2C /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC0503DB47829A176423B81E76574DC /* RNCWKProcessPoolManager.m */; }; + D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2F65AFBC02446295C8D9339079109C /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 953A33B5E32CC3880041741D2A8FA707 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EFA32A5C363DDBFEAEFC4923CC52A8A5 /* REAStyleNode.m */; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FDDC614E04C209F9A810B734B77D17D5 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E898E9CA1257AA2D50D0F4AB5D00E3B8 /* RNCWKProcessPoolManager.m */; }; D5459FA80234303AA34ADFD42867D41A /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E84014E280F5F6717F909372864D169 /* FIRInstanceIDKeychain.m */; }; D548578B0B4BAB40AA2F67986DD948C2 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E60844790501A0F180987D73BF7982A /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 621A33C1A0AB8647038FFB213B6A9135 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C94EB297A92A55040CCC663A864437 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5D452E5668A65252CBD1865BF47312A /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA4A37B4969CB37F3A28EC8850F7C400 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CCA75C4910342977B6F64CA73A753E66 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 14731FC3B97E813560708C5159C23846 /* RNGestureHandlerModule.m */; }; - D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C71C5AB1403BC17521FDEF0FDBF14CDB /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BEF46DC557E56530FC987ADAAF32C09 /* BSG_KSCrashSentry_Signal.c */; }; - D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D7ABCAC09C0A0EA009BA1246F79595CB /* React-RCTBlob-dummy.m */; }; + D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C648552A2843B71224D3B125A45C15ED /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 55C8FAA62929F7E42A17E3A23E51CCCE /* RNGestureHandlerModule.m */; }; + D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFE595C13AAAB67AC3A8220900A1F521 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 776BCBCF522610A96F3CFCBF6DEE681B /* BSG_KSCrashSentry_Signal.c */; }; + D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C52A38A26D941F72597DDE9F0A37A8DC /* React-RCTBlob-dummy.m */; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 62F518EAE564CDB7FE22608053F08839 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 361F842C0A5EF8D666D840B6B25D594F /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D4FECA372334C3D52C8947F1B7BD3417 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7182C0FDCAE8B97CE1BCDC7866C69FE /* GDTEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = B843C0444B6E7D0D440EBE7179AB662C /* GDTEvent.m */; }; - D72C629D929E02F506B34837A3FEFF23 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AB176D8CCC282389777CB23AF55DBD /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AF233C32A5B68544F43556A0B7CB71 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 489E83582CEC6E57822FE6F259E47CE1 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D7ADEF068518F7CE4F646F7EBB7F384B /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F45975E2E2B867B4476E71F8FF0F6EC /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 6712574FE9AB8B30436ECA7A7C94F647 /* BSG_KSString.c */; }; - D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 63CA9D423FCE56F4D01566C1F2DE4FA9 /* ImageCropPicker.m */; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 97972524746DA8617FCA6204735F0A0A /* RNCAssetsLibraryRequestHandler.m */; }; - D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AA3DB01D4A037FAAA90E9701AD29232 /* REAFunctionNode.m */; }; - D854B8FA66DD93A12832A8A313105AD7 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AE285F585889CD45B47600280D33AB4 /* EXCalendarRequester.m */; }; + D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 15568C3777E6B052056920480BBCA7F5 /* BSG_KSString.c */; }; + D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E82BDB2C9F5873A72BD92FC76E564A /* ImageCropPicker.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 521C88E2759E9B2855F905651137C3C6 /* RNCAssetsLibraryRequestHandler.m */; }; + D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EA909502101D3AE04F68B5C959DDC78 /* REAFunctionNode.m */; }; + D854B8FA66DD93A12832A8A313105AD7 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C169DD6C1D791F5E0E6CB9652B22112 /* EXCalendarRequester.m */; }; D8657431950ACD09CD921390BC208E99 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1F108CA515F3E008514F1B556040E00C /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C5775E7F823B6BF19C0FBAAD82D5A41 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = F72659CDABBCCB4186E4ACFCED8EC514 /* RNJitsiMeetView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C6195A96E3126C5962D909EFFAE81ACC /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D0FA4CCB2D15F90D716627CD0615088 /* BugsnagSink.m */; }; - D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03FF3F73FA8FCF5C8B6299B130D5BD70 /* React-RCTVibration-dummy.m */; }; - D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0075391F3315DD5C0B9E7632576E32 /* BugsnagMetaData.m */; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EE8FD87FC265122514D84E9883251CDD /* EXHaptics-dummy.m */; }; - D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FDAB07C74E234EDFEA1553BDC5637B9 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = C4195C5EB9ADB2FC214F4309E79ED4B4 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = FA7013F86AC1B2635A36F1539E9D6E7C /* RNJitsiMeetView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BADF8A407B32FB661517543C4601901D /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 75821AEFB274CE7EE561D7735AD191CE /* BugsnagSink.m */; }; + D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E3CF7892CC7C6FA030C21AC76C7DA20 /* React-RCTVibration-dummy.m */; }; + D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 34015CA38BB5BA35EFAF66406D6EB08E /* BugsnagMetaData.m */; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B48917E09F92A52C67B660D9FA644D7 /* EXHaptics-dummy.m */; }; + D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 88913338ACA6DC036C7538B1CD1C9DEE /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 52EA42A6C8276F0CBCB74687737707C3 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B83181F58997E709D2CF0ABFA639CB6 /* RNSScreen.m */; }; - DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9B0E187AE7B7F3A377AEDB612C6525A /* React-RCTAnimation-dummy.m */; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F02B6475E7D1C3486094F8F388E148 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = B4CF19A59BF2AB048C20E2B532EBB24E /* RNSScreen.m */; }; + DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 952FA733AD9398172DBD62B726338DBC /* React-RCTAnimation-dummy.m */; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C44DD9431AE1E29AFDBA1C962ABDB2B /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAB5F47E749603B8C537105E02546533 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1493995A8BFB7373CDD744F29FB45E51 /* cct.nanopb.c */; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EB0F6B7E8EBD84A141C3AC167835CD7 /* RNFetchBlobFS.m */; }; - DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 10E726AD9B950953523428C107B73363 /* RCTAnimationUtils.m */; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D78B3652AEEB759EDAC023ECDC4296 /* RNFetchBlobFS.m */; }; + DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A935FC058BB1092F0600E4B45DFBAB74 /* RCTAnimationUtils.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 358C919544CAD4E88269535A33E18FBE /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 02B42F19719F9070E89F655242EBF98B /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 61CC90A251F8AF95EFDC9FD2376EB1D0 /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 31DA2DEAFF7CA55FF764092648AD9567 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6CC27D06C2F4E622045B5742E243A4 /* rn-fetch-blob-dummy.m */; }; - DBAC39F36BF2EACC60A1426124747D6C /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AB152A216EE0183A2D0E61D446A9F071 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 30F16B599AF32757BBF394ECCF64BDD8 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EFD93CB1C504172257BB2FE144734F7F /* RNGestureHandler.m */; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 59600445D29019B4CCD9DB295FA77D45 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31A0819CE730668349638D7ACDDFA74B /* rn-fetch-blob-dummy.m */; }; + DBAC39F36BF2EACC60A1426124747D6C /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B5EF6B4894DC78CBF6D44A1AB93091B /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DBB2215A03529D784DE3DE650A02FD45 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD312A444D75714EE72AB0FD34CE7F1 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 589776A89332278D423D6755E1271325 /* RNGestureHandlerButton.m */; }; - DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 49FCA9266B011C55C9974E9B7F4FE352 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 528640D7FE2EA01495E9E94ECC43F9BE /* RNGestureHandlerButton.m */; }; + DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FA5E0CA44BC2E324B39B0EC61089027 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = C49BB1DB9017B92D7A60FF49B674F10E /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 45202BBAAEAF335F1FB60BBFC69380C2 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 8271C9F25D065390D27CB1C226B200EA /* RCTJSStackFrame.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 = 2CF2534628CCC7E0CB60511001A24B96 /* GDTStoredEvent.m */; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 958A538964B046F5FC63A884FA9D441F /* RNBackgroundTimer.m */; }; - DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B177BBB89F7A58B6A2340B1CE785CF7 /* QBVideoIndicatorView.m */; }; - DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 64F18790A50A2179CC7BE6090135313C /* BugsnagConfiguration.m */; }; - DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C973C976DABFE0D0D35D45FD5F1D8A /* REAPropsNode.m */; }; - DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A709674F346A7BEAE13B2A5EE18C22 /* RCTVideoPlayerViewController.m */; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 6584C61C82381EB1B1004D7753C0212E /* RNFirebaseInstanceId.m */; }; - DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B0CD88C65A8CB1C23C2AEB4992F49E0 /* LNInterpolable.m */; }; - DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76037B0C94833300AFE005BC53E81964 /* ReactNativeART-dummy.m */; }; - DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 51D8FBC70FC85BD127175A57572F50D1 /* RCTBaseTextInputViewManager.m */; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 24065647A62A3DECE21E112C839B4127 /* RNBackgroundTimer.m */; }; + DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 49A2D404AC4D74C64E1A8085D9DE3117 /* QBVideoIndicatorView.m */; }; + DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E4BB0067AAC10BE3FF096C81F729231 /* BugsnagConfiguration.m */; }; + DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F9F9856573A9F0E720439BFED117A6BC /* REAPropsNode.m */; }; + DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F480CF72190A5432EC0591BE01C139 /* RCTVideoPlayerViewController.m */; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 51A0C4031412087072E81B9C43CD18A1 /* RNFirebaseInstanceId.m */; }; + DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCC9D44B399C950B10E39F7FF3CDCEC6 /* ReactNativeART-dummy.m */; }; + DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BDB2777A153A440E591DDB62FFD6226B /* RCTBaseTextInputViewManager.m */; }; DE2209CDBBB1FF739DD3AFE8D7EDA04F /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9397687440D5BA05368492717B39B5C6 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB2FAFE4C12BA32A8EADC9720F53E34 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = A36C6638183A9E748FF37DB421B76D3C /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF96AB8684D15E8B522B32E3C4C0040C /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = C31E5FC96B7E9A28293CF0E6C071B867 /* FIRInstanceID.m */; }; DF9AF82CFD185E9405454B58BFB1F031 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 73E49B69B89A89D1209D071D4F21208A /* FIRVersion.m */; }; - DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = CDBBCFB76DC32DEC120D50C17B098C0E /* RNFirebasePerformance.m */; }; - DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 395C8CCD6F5671524B172C22324D82EE /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 386D96C4A5C67BB0C24B8E6238C2268B /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0776128501F7C2B856FEFE2DF2F62C93 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = E7855F1C527C5192F72CFF6A5D46C931 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 83DAE10D283CF1B5841474AA89EAD9BD /* RNFirebasePerformance.m */; }; + DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 16997355997FF89EB81DB7F1CABB6005 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = B07EAD9D7D7567672292BBFF00972542 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4375ACCE1A55127C013DC61A09C35CB3 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 62B90B40E38C4E29C3373CDC938D0309 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E06FF2EA4D8E7057808DAECF514487B2 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2132ED6BB290718E77492CADF518EEAA /* RSKImageScrollView.m */; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 17341144B555A03C5EBEDD81B0B832E0 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 36999B1C693A37D0A3DF3636859D8874 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = A472BB9384B83E73AFAE0B367EE088AD /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3160870786078A4A7F5F633B5D8BD57B /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E11D90E3A741AFE59213CF41F60AAFC3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = C3A398FB2047D8FB5C115BB7C9C44E07 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4ED99A93F06400213D81873A377F33 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E240394A0054E5D7DFD99DE12ED70C71 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CADB33B0380B0BE330FCB93D5EC3AFF /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48FBA35354D453E0846D12030AD72533 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E11D90E3A741AFE59213CF41F60AAFC3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40DBD594869BA9260E1C5449E892EC /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E1266E09810540E459FD7D39AEA1D7BA /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 1874FFEDFA6B268EFD16DEDF5C0ABF72 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = C189945D9B7E0350FFF117B433DA54FA /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8ADAD4814C3F1601DDF0ACD33789F6 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; E136DCA9404C6709A708A1CDE213306C /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E44F680ED7C0AF205ABF2F732D5BF1E /* FIRInstanceIDCheckinPreferences+Internal.m */; }; E18AF3DECBA29CA26E94E3AA78232910 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = E6ADD528E5DC12441ED796F0C6E118D6 /* SDAnimatedImageRep.m */; }; E1C16957DAAF0BBC2BA568CBA21CB60D /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = C8F458DAF6DA4D546BAC86772B2CDF26 /* SDImageGraphics.m */; }; E1C350EB67C41B14911972FCE699FCA5 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3966AA9F1E79E5A7F4EBC038DB4558B6 /* 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"; }; }; - E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F174D9CC21F0D1762B87F5D148999515 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C883A93632C4771ABA985D21932C9C6 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E23132F7114B73DAB797C1605129F8FE /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = AB59CAFB02638F9819664583A263EEC6 /* SDImageGIFCoder.m */; }; - E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2025517BC8D557FB99809407956CB6 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F41E2631CD47BEEE466A1AA7D8B992 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E272409F0AB241D83659D93F160A6BEA /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D1BFEB2857C8000A201EFA5B2A22488 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 9073F0DA69D25921E861A82C234697E9 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A2EF3CE7CCD3FD7FA53533E22C686E /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 24CD51144600B32C8331D79B7265324E /* RNDeviceInfo-dummy.m */; }; + E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 33C3959E5BA1CD9C1C26809B1E202225 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 69AA503C26BF95F78546E43BB10103F7 /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1140F8AD8AAC4AED507E57F76A1AE751 /* RNDeviceInfo-dummy.m */; }; E2EE20BD16B60C9E9C8F5745895E4CEB /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 02C05262BFECC90910E7E70E31AD9520 /* RSKImageCropViewController.m */; }; - E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9D529BF5731E3078C6EECBDF867328 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC725872F6FD1C53517FFE99D1685CD /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E32657D4D707837BE7FF65E4541C0078 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD8C1567FE91AF3DC28C2CCDF841BCE9 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36F85C2049E33D0D5568D05E95D01C9 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB46ED09C638AB50343B0949E766343 /* SDImageAPNGCoder.m */; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C558069696C77025B946DE8910693620 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EE18524B7CE4A63FD1F28B6B566245C /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3B7CADB949FD1E05DE1D804627D396F /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 8492A0BD43CFF65B38C003A996898AFA /* FIRInstanceIDAuthService.m */; }; - E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FEB4A88EF0391F3499D3CDDF99BA1B8E /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EE9ED3F0DE7971647E51C981116F70 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 65D183BDB3EBB6B36FE89D8168848CA3 /* EXAppLoaderProvider.m */; }; - E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6249B422C72D40D5A073CF71C0AA86A2 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 801E99A21664D8D68B2DACB0704F68A0 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C75D6141B889C90F12173F1E3786508E /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2980F44EC4FCC6EA8AC5C12779A3544E /* BSG_KSCrashReportStore.m */; }; + E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B97FDE91A40943543AD4C4635C7A3C3 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3EE9ED3F0DE7971647E51C981116F70 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 689E9ED13FA93FC1C672AE63ED33A12E /* EXAppLoaderProvider.m */; }; + E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 98EFF7FAAEC379D26BBD541DE772ABCC /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9DDBACF725C8DF01B6EF485940BFA4 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C73766F708C9C34B377D7AE36CE2A4E2 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1042CE5347E5C69C05DF9654B6FC58 /* BSG_KSCrashReportStore.m */; }; E47C254AD48009FE84A72BF9BD0A2013 /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43DBD59E9011A4508B947E00654A82BF /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4BBDC1C561DC471AB6A780C063BBCC1 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E9377C29F942AF66A3D72A0AF35997BF /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CA0C9A7CC0AC4898AE2F9A566726C4C /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 827A734788ECFE9FCB7027E40BE94D5E /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E5216B6E62473377EA6E284532506268 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE0B90E0468091ECE32ED3647927E0A0 /* Folly-dummy.m */; }; - E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = E383A34BBE4DF7BC8C5EC68FB84DE350 /* RNPushKit.m */; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A389A9A7F2B314A8E20CB931728247C5 /* RNScreens-dummy.m */; }; + E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = CB52C85DE21D95127872FF79F7BEF816 /* RNPushKit.m */; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD322B2F806FBE2E5467AC665D66B514 /* RNScreens-dummy.m */; }; E56A382EFCB1212FE0C79493D0A3A9E2 /* GDTClock.m in Sources */ = {isa = PBXBuildFile; fileRef = A1D610CA53E44198C6CF77461DF107ED /* GDTClock.m */; }; - E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A3EF72729A0AE82B9E51807A201E88 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = CC54D90115AE3980D90920A76CC33A3B /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB68940C750201971089751E74F2668 /* SDImageWebPCoder.m */; }; E590557528529B8071B97A4AB8EDF4CF /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B9E8FDC0BB235B05F6736A33FD68B8 /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; E5B91C01861A4322F7F66723B878316E /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 37A87692EC0A3E0DAF1F246BF8094715 /* UIButton+WebCache.m */; }; - E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67540560D918C61609D9DD135A728D53 /* React-jsinspector-dummy.m */; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A2B979B49F7F0FD5CF0AFDC0EE85677D /* RNGestureHandlerManager.m */; }; - E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 16839A17E6F24246EC83A9E32C3C3AA7 /* BugsnagSessionFileStore.m */; }; + E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E91D161F0BA3532164FDDD5766C6B34 /* React-jsinspector-dummy.m */; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E0D2A5BA5EB89346ADCB47165DDEFFA /* RNGestureHandlerManager.m */; }; + E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 593D9447ABE229F0F932A3C3E67CA0B5 /* BugsnagSessionFileStore.m */; }; E5FFDAAF26DC2A5EE78AB195E68D7A6C /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = AEB04230EF187F0097DCADD95323A008 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; E65C399538D7D89567465C7B349F2C04 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD8773720268ECF1673636082B7B0D9 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AF3C51F7F66ECAC396AFBCE9033846 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = D87EC78B85E8485FBD61F0D265007A55 /* ARTLinearGradient.m */; }; - E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 62E11190F74476BB4254611B685A5685 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 91B847B706F1F1C054508E9D7DCB57C7 /* RNFastImage-dummy.m */; }; - E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 19D3732BCBA5628433B833B5D52F0700 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AA160054F5AE778946C6632CD3512B0 /* RCTGIFImageDecoder.m */; }; + E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 32BDC2A1CFE79FF6124482ABDEA6F705 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = ED878C79AD09D1D2CAA7EA3A80B0FC62 /* ARTLinearGradient.m */; }; + E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = D6177BC2A28363DFBB91DF58AAE3AF1A /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EDFAF1B6836FFC3204CA8080AA5A0A41 /* RNFastImage-dummy.m */; }; + E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5070D1CC29D0176C8834ACAF69563FFF /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6622351F2BB1E2417FE1CB93F0824690 /* RCTGIFImageDecoder.m */; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 55C0E8840659DD2BA9398CCE45C84796 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C3F265E963792B616A869437DF3D6F /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C1E533EFB2551229D5D8018377F547 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F21C0E0E5E6EDB0E38A20856E37E5CD /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4B85F10AD24144C0F4ACC8B52FE996C /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E7C43AA674EF98DB10295D5A0FDEF294 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2238DF0F9A33FE9E1C8F07154BC375B0 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A6DF1FEA62063EE8DE21E0184A2F1A1 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5920DE566BC7258D40EEFD900C8AF8A0 /* RCTTextShadowView.m */; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 358BD7B832116AF70901ECA85F519623 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 21199E18BA11E7D9DFB4E16A495239DE /* RNCAppearance.m */; }; - E89D6302F9CD369994133101A1FCE6B9 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6203E9A58EE92DF8A28EAE1798542BAF /* EXAudioSessionManager.m */; }; + E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF54A24D19FC6D0F35C0A4A592DC31B /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFCDCABAC89EB98D24C53BBA6FE3C904 /* RCTTextShadowView.m */; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBD4D04E771C54FA52A477EC9FC70CB /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 98A728E5AC8DB7B3E1E7CF2C81D5500F /* RNCAppearance.m */; }; + E89D6302F9CD369994133101A1FCE6B9 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FDF7BC550BC5054CE7AC008CBA17AF3 /* EXAudioSessionManager.m */; }; E8ADD9FF1D22894886D0DBD93EAB58F6 /* FIRCoreDiagnosticsDateFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD44221A26E3F51CDD22BABCB58B202 /* FIRCoreDiagnosticsDateFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D4ACA40E9618BFDDDAB6169A365CC8D /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E947B8EE3C12F59A7BE6DA22F4E43AC9 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DD854D6DCDCAC32BB6D0CAA3C459B62D /* ARTNode.m */; }; + E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 78B439012552CA142F16499426113545 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E947B8EE3C12F59A7BE6DA22F4E43AC9 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FAE8A210674ECD1F490A679D92AB54B1 /* ARTNode.m */; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 14A2693CDD9952524E83AD5C56A37DD8 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D02DEFE53D76538671483BD6ABAFF332 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C97A8650B918816C5DB9E8D08249AD /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D7ACE54F298811EB74DFBF05F996D5 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 61D68ED0DFDE8178B98F79C56AAF6735 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 116E27FCF5E3E7F1D8A46A5C3AAE1C61 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = B631F247E1DC396A1BA5E711C5F70F33 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9D7ACE54F298811EB74DFBF05F996D5 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B25E77540C1ECB1F55EBA082F649641 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA04E96F998EF83B5CA813705CFFA952 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B2AFFB16527B8EBEC2327785BCE1654 /* SDImageCachesManager.m */; }; - EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F65205BA8970F406183AF22BD3D344 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = C1BDAF7514D177B767F3850F0608EBF3 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B4146A68990B2CAB99DEB452A254F0 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E26F52227A31F8635648BD0E36FC4A /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 83F1B2BD4B45BF9CD1B13B3F8EE023A3 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EB3E24580BE08E5B95D8B26751FD5B75 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 939A7FD22EFE867355B9D8C52DC10ACF /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EEBF389C391162FA269F8E7D3FCB15 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9ED93A67C41D0D1C7735EA096A718D3 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB9924D58B07EE3EB3287F501A3E8DDE /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7126802A814DA73C4EAE011D1333A2 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E7C9A1C152FB2C9A1CBC1BE0C1D48F /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 38FA3FE49F8B797FECF2B05366D47C3A /* RNGestureHandlerEvents.m */; }; + EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F9632E5C13C4849BFB6A0F074B0389 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = EF03F25634FA473EBFFD4568F4930CCC /* RNGestureHandlerEvents.m */; }; EBD07BB27B77720C17D34C923052FCF8 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C33CB5AB34B70CE551120CF7195044D9 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBD86108D11313816DA5380B28BDF659 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CB27FF0D9774D66C8B17F15F7EF975B /* EXAVPlayerData.m */; }; + EBD86108D11313816DA5380B28BDF659 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 731F8AF10F09EE4C983A1BD142DFAFE8 /* EXAVPlayerData.m */; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CD43E6A24897BE60EF619B608BF7DC /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A74F82E6AB2138E825235952F1EB9D0 /* RNFirebaseAdMobBannerManager.m */; }; - EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2F2902D76123CD82980C10B19C6B2894 /* RCTBlobManager.mm */; }; - EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 51BB9A3334F8058B9CABF455F7363AFE /* RCTBaseTextInputView.m */; }; - EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = C72F668DD60E0AAB30EDB1330EFA94FA /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC299F3EA25843A6BDBB01C56412A6DE /* RNFirebaseAdMobBannerManager.m */; }; + EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 19F6FE449DB9762544352360A9B48419 /* RCTBlobManager.mm */; }; + EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = C96E41E77A36921F24F68BFB2F0C3D54 /* RCTBaseTextInputView.m */; }; + EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35CEE6892322D48927C3ECC84DC8438C /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC948F82EF1983AA5BEB6AF4EA40501B /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = D3FE0D74F6529795B2FC779F7DC99CF2 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E7073A9FAFCF672D8D03A15D3BB32D2 /* RCTTextViewManager.m */; }; - ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD4CB6111497F53E4A5BB288BFD3461 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6708E35DBB3D103F8267F825E34A5657 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 33DA9299DFA80FDAB63C5678B0DBC6BD /* RCTTextViewManager.m */; }; + ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4CC019C6A7F3AD874836BE32F5D7B2 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = E26B670C6ED60691A35CAFCB0458D24B /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DD9132B64FBE45A4C87A571D30B33B93 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EDC7C6753DD7336A6DAB5677E860B474 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 850EC46C044A0D75CF74813A69913DEC /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE23B71AEA719ECCE99E89E393DAE6B1 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCA613E270465CAFFEFCFAB5AD0872E /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE23B71AEA719ECCE99E89E393DAE6B1 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3362B1E98540EE7878B5FAED2A9FBD1E /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE4BDF8FB4021FDA1409408B21AFABCE /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = CE88AE68164F8E5A2B29F0E225DD861F /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 80E3C559E928DBF9CC5352937D0D85BE /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = B7B9CE3358A1EB2B6ED1D52185B4EB1F /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE5C2C00E8185B79989EC2EB1A7A1FA5 /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B87E79843B4EA59AB699E20F9EB2ECD0 /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4AC37404E19DE4B79D6A09FB3B4D274C /* de.lproj */; }; - EEE7B9655AA3FCF1C1B0294133926C5A /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8BED19E476483C03DEC417A2219CFE7 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A1C4DE3775731A6AEDD336067EEE03BF /* de.lproj */; }; + EEE7B9655AA3FCF1C1B0294133926C5A /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCA5FCE50407C37B8D0720FBEDCDD79 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D29688C643B920F82DE60C7F438D732 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5414AE6DDACD6C4C27220E5FF9C96EE1 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2263F17BAE0AB4165F7B27DB8998D0EB /* RCTSettingsManager.m */; }; - EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 167001BB542F875BB6AE6374CBE2F8D3 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D2B29920AA7C36258802B49B49806D /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB11279B4CC28B0171055B063B80E6FD /* RCTSettingsManager.m */; }; + EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 40B2931C67BF7582A73B702E4DC7B510 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E94CCAA4B5D0B31346AD905F24B5C788 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEEB6FAF21D0BA92AC0A04AE4DDD428 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 80508BF83A805007058178A772178F5F /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 67D1334CEA80F39AAF27FF022F320928 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C38C11207926949E1F8094DFCEE99F /* RNPinchHandler.m */; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 786B0356571432F408E5FB3F37CBA9FF /* RNPinchHandler.m */; }; F08217569EB41ACFAEBB6EA9A653124A /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA0269F260ECF8399E22CDBCE670D9D /* SDWebImage-dummy.m */; }; - F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D9170605CA60EF92BD30F13A4F040A04 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCA0576919667EC33DF985E4FC2910DE /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A15A67248330A5D84B310189C8F2CF /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6821AD88324905C058650AA19C37508 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F0CCBD5B1560D8D8B467FBFE07DF74A4 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = AA16F20ABE77B8DD649F24D5CD6DDC3F /* UIImage+MemoryCacheCost.m */; }; - F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5AA89B3283F17AD3F4DDD55C37A94E /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 4009C1F0F5E09AED73CBD13150E7352D /* RNNotificationParser.m */; }; + F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F06981DB3BCD3E98A8E0FE77AF1DAA /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = DD98818219FC4DD77E7D8EBF8CD6505F /* RNNotificationParser.m */; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = CDABE96C15F9B4FD9B3FA2B5448EFF61 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F19BF0C7860B5391D62C5E675AB146B4 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D58564597AD3FA1680CA444EE3153F /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = FBABE6A668BF55191A9D843480C414A5 /* BSG_KSMach_Arm64.c */; }; + F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = FFFD6560763ABFA470BF0EE6DF0E6FF7 /* BSG_KSMach_Arm64.c */; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 133986823449A7882523C4DF4CDAB704 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3406114BB84016C3BF3C6DD7AEF5D054 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9424315AD5F0B1426BE631E0E48A16FD /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F253676650181C9AB4472384CDCFE3B9 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = A6E0D58232EF1BE4057DF65FDD108841 /* CGGeometry+RSKImageCropper.m */; }; - F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B02DD65D05D4FFEE128900D4F7D0DFBC /* RCTInputAccessoryShadowView.m */; }; + F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 41564D8B06983A5341533D5BA4D59D16 /* RCTInputAccessoryShadowView.m */; }; F2826D6E1658277DA089B70D6A8EE819 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFB30ED854B8C01AD34F0014DAF9AF4 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DA588A88B35CE185D80006E62DBC42 /* RNTapHandler.m */; }; - F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 740C19CBAF1B7128836A086F6F400C7B /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC0E6E9AC18BBFC719102A5C56D9AAD /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 62E5EC542ED5433007F855277F236BD0 /* RNTapHandler.m */; }; + F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2318FAF8C6794819597B7DA736974E /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = EF7E231EA5F75269E1782545AFEF5DAE /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 281C56FBABFEE9C04A3535E9790A9120 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3D627DC15CA09424071F3BC53A106D0 /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = E33417ACBFBAB178C661615BA5AB68FD /* FIRInstanceIDKeyPairUtilities.m */; }; - F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C046E8B167E889528CF9671EC0A9C7CD /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B06766EBC90E7AB98A11548494111AA /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FA1D48D833ABB0A1B1615989E77633 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2FF0EF6A719422A08A1E74AA5C5D136 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40EA7396762A710141555DE1EF792D0 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 983D468F8C9A0B2C350475DFE638F4C6 /* 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"; }; }; F4227A5A22C299DB2F673D8875C42BAD /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 492152604E4FD300199AC37801C7C124 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F42576E538BA4EAD61737ED1918F7E19 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F33ED36C0322764AFBD658D2E32149 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E3F2CC88D9C0D9C761BCBC536541DF3 /* BSGSerialization.m */; }; - F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 34D3BA6E5E4F5BB82DBB4FE14B8AC264 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = CB47469B34FDDF6CADEFA698E652904B /* BSGSerialization.m */; }; + F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D026ABCDBD78619A4E476193AED5682A /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 254440D91C3A7ECA89F32B4582B454A5 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DBE578144365956009AA5CE27574C9 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E5496FD4962BCDE6FDFEF4257C4A257 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F5100582E3FCC4BD8A1031EFC2E7CF14 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = D32FD2DC67C23F6E6A8180188AD1592C /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 32BB45A38D44180DD5E2F32738B46DD3 /* REABezierNode.m */; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC5D879ED9F5C124C1039F164C7B009 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 6054DB5F045D5F8BD9D721BF98672CA2 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F5100582E3FCC4BD8A1031EFC2E7CF14 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 846233A24465EE0DD2BD8C6C3B578E7D /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 60D3B7C0C9BFFC9C91BBD426CBC1BF43 /* REABezierNode.m */; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = F97E853DB70D725BC3302A7AFF33C7B9 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FAEBE5D58863C9A3B5B59A94EA01F80 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1068FEF6E9F10FCEC7F7A0F102077F7D /* QBImagePickerController.m */; }; + F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = CCC3C579B0B11929E0551B33CE6C1686 /* QBImagePickerController.m */; }; F56B25509F8FD04924C91D993984B005 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6D764A8FFC016671C8031425E8EE2F5 /* 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"; }; }; - F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBD5251F075596E6EFD5A97D4DC0209 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BEAE0D1B153AF1E495632C5F9B28B59 /* ARTShape.m */; }; + F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AAA1105E0AC1F7C8117B494AECAFDF4 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = A72C645758FFD253BEAF84EF9815D892 /* ARTShape.m */; }; F5D27F49E8DEC09ED4DF62A5F2975463 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C702ABF343F6407668963298BF734C7 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; F60AFC502521A8956123317B2306FA2D /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D4FD56965FE3FFBFD0C50087FDE7D6F4 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A67786461370E185AF7874C96314135 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FCD506D4980CB5795E9063F3B3B82A4 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = AC4FDBC85BDB8D7D488E2A0A3D48D552 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F6B89787B48EB4A234BBEAD9D7FD761A /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 242B18E8C5CE1CDEE3BF9A0CCB1AC607 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 07DC285D33A89D30352C4C19C1746FEB /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF99652E3E3715C364F42DE991BDB1B6 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 1381694234412DEFC55FFC85C8859B3C /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6B89787B48EB4A234BBEAD9D7FD761A /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E959B9FA576284194DF49005EC2F3D3 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6BC3D6090988DED79B6F5CC48074FEF /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 273439589765A5A66AC272F5E174994D /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; F729FF2845CD5C8CA9F83BC033C4A4D5 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = E7CE121DF2DE02220806316553608552 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; F72BF847412E0FAF84E1A7E16EA97A46 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F27020B27DE70C7188CEEE5F520684FA /* UIImage+GIF.m */; }; - F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 991F63888F0DADE5B74E325A8A6BCCE8 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 556F4CD155ABD3629764F7AFABB657D2 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CC306A91677E008B485C2693BBF1C7BF /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC034D566D928405177A6168FCC656C5 /* react-native-slider-dummy.m */; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4FA44BC3F924DE88CACFA9DE0722A6F /* react-native-slider-dummy.m */; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 09597B21C975650436C74DFFD48A1EF1 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 39AD9D7041B853DF12888ADCD3801AEC /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7C3B037B97B6C77B9C02AA6E6A366CE /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B1FE0D366F6E3BEEE492394D7E4FD699 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7E5C972E05E7175549D6B5131A4AB11 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C3316057687A0E4CB96C6EADC68B8584 /* SDImageCache.m */; }; - F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EF1F0F24D6B249F14C0FFA5C73F33D1C /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 758BC65F26ABE0B8DB84F926F3833C6E /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7FAC1E73D94665C2A71AF67FE7A9930 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EF27139234F208AEE736571E47FBD2B5 /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = BE09031574CDEACBB49CE1AC66544EDB /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FAFECEA2BB7BEB6BDAFAF39FC426C6 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9F3BA91EFD2DFD1E498DEC5DA20721 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F141C90BDC5ABFB362C6A910458B2E /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6546E9FD98E3BE5EF35E4FF590C91A /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C12809028E6E70029F79024699E11BE2 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B63E9B12823AC25D79AE55FE6193299 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D73F0E04F999B91AC0744CA12FC382C9 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = C222210BC14529A331E3ECF70A2EED5E /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2DC1EB1095D3E80B97EDC6B974E66CBC /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F891A17F467C8B71420B0B6FC1B505FD /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D49F55D4CD4364E4649FFB0945D8B85 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20C12E6286482A074CE08F5EFAD1A07C /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F891A17F467C8B71420B0B6FC1B505FD /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC4C57603BF295EF4AB5458DCA3EEDF /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; F903E89A908134BAC586C99F1EFB8F92 /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = B956A57AB40A828151E2DDC55448CCB3 /* FIRInstanceID+Private.m */; }; - F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 6441110A52AC72F1F219FFC618E5E4C5 /* RCTProfileTrampoline-arm.S */; }; - F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CB3CBDAF4A37F5F1F72C5D9F58E4A34 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40F7FEF0E1BF9BFF10FAEC98C231FD26 /* react-native-jitsi-meet-dummy.m */; }; + F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 3C48EE00491A8A4B8EEFA84F944F86A4 /* RCTProfileTrampoline-arm.S */; }; + F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 850BE6DDDF399BFA44D2506B60C6E1D8 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8424053FF468644E6725083AA014F82E /* react-native-jitsi-meet-dummy.m */; }; FA0980CF93ACFCE4817D2934112E098E /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C35E7FE27DAB66CBC23CF55C160F9F81 /* 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"; }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DDE75E72B2E19F5B9CA9F1434A1B294 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 78BD83D02F69F9B51DEF7E9F6F62829F /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 444142B1C689CED6755F59CE2C7CC1E4 /* BannerComponent.m */; }; - FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B234A34E47BD553B1BBB16FE8E4232F5 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D25CB0CC8CE447B4C42427B04DFA8320 /* RNVectorIconsManager.m */; }; - FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = C211084854232733B6106F84F2060236 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 09030AD89CF96463AFDAC3E83AAB7284 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 41117C91F10139C28634BBC4671C93AB /* BannerComponent.m */; }; + FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 942B6B2732D9DDD27EEF21B934658816 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DF0BB256952FA1C74F4A0CA9BC1673E /* RNVectorIconsManager.m */; }; + FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = C366E75E4970FFB7A917CCD2CEA7C283 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; FAF4E061760C22B95BE08E8A7CB52005 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C12A2CAC51F8034811D57FAEE5A3A459 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 86EC7D9587DCAB7397F8A9650E3DC500 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDBF66A927B5F8A8DE3756BD792B701 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E9F56F343F2173D1A070E0EAE2A6A4E /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB8A58CBBA5D6FA69A71DD1E1075091C /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 226C067E41BA7EAEDA042F0161EBF418 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8CE45688575FF0AA028895BFDD852F2F /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F6B060FA7384859BC82F1A012092389F /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = C529C576975DCCF37B748202E826D322 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1500D248579B51E7855A20DF09D5BD70 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB8A58CBBA5D6FA69A71DD1E1075091C /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C2D159A8C3C058FE1FD797FBDD068527 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9E99DC06A4F55FF1045238A878165DA2 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBA3AD3723EB355128F93C3892B5514C /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = AD4C5E8F109E5073C9334BC16646134A /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D7233787C00DF7D995ABCCA5B3EB617 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC07A691B5C1F74884E31973463A763 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFC97154F73523F6603DD1F3EE64182 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 228BC5BCE6BEC2ACC9A23542C259CF7F /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC3D97DAF0161899EA3D1DAD4BC63767 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 407248094230C4CB540340AFC5FDF3B3 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 812AA095C1331B37CE0472F217A4945B /* RCTImageBlurUtils.m */; }; + FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 20F5484A1BC6E3A8CED6305F18B135AA /* RCTImageBlurUtils.m */; }; FC7637AE23AF20DDA06CE6C7CD5BC193 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = F913CAE0697648283B36B0E6B9F9E0E8 /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC8C65A5DB73DEDB0A5DD8610959D4CF /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 80E600CBC8D78EBFD0015D5E8839B40F /* UMExportedModule.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B21B0CE90EC97B3E7396A49F2FD743B /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9BD0857EE43DA88E1FB5A23EE203CE5 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC8C65A5DB73DEDB0A5DD8610959D4CF /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA35723F300F3BB61F1EFECA1F9C1C9 /* UMExportedModule.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8786AC01810ABD6981FF8F09682DAF /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25B45E8A0058E166563607A2FE47ECE8 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FCD79EFFF5C8B0950B52990E332E637E /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = DA29FECAE359C2F2950641F461432B96 /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F5E5B8A6650D84ACBAF57A8E248E85D7 /* RNDeviceInfo.m */; }; - FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 56539446BB3AB5B151AB3B63CDFD213C /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 06697F35D65B5CE61A7219DE075D036C /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD93A07171842B9645ABA0BDD9EC9721 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF132F48B2B8B5875B871C7C5A28249 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E59C3B11F5E8E852ADAE43B161CD71 /* RNDeviceInfo.m */; }; + FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EED0C203780706D41F1A222DBAC2AD9 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F351B21064CDAC40D1819490D7506A29 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD93A07171842B9645ABA0BDD9EC9721 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B8AEB36141E644A76869011D140597E /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDE0CFBD5BC520CB3EA47DAA8C5FAE48 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 48E62AAA99323AAF6FC8A4C5D988DBDB /* FIRBundleUtil.m */; }; - FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 987821AFFECE76690D223636B519ADE3 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DB7D908BC246E9CEF24903471EDFFE4 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; FE2DAFC3D1DB1C90CAD82D4C6CDC4BCC /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE6814863EBB3F1C85ACC78CD1A0667 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FFE620B4FE021148EFFE939FE7D675 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFAD101DE817A8C09E6DCDB6C006CB5 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D065F44C3FCA0A13F1C0E8FA5FBDB71 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 21A17FEC35C795A42DD06D5E212C1DA9 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEB08A0DFF9F7B151A3598DFABD3659A /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = D7AF0EEF43F86081748C36A1C9D9A230 /* GDTCCTPrioritizer.m */; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 738729E64B6A469A04A8534B490BC224 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6B3289F56C937FDA8C432D6F5B4B9E /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 29E6BDF2F5D56B7867030711E63DFE1D /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D49C8A04AF309CE5BE94686AF3A1831 /* EXFileSystemLocalFileHandler.m */; }; - FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 451C703CE7E8AC15E9472E9F32558A11 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C54CCB3443354957C01F6FF6B3003657 /* EXFileSystemLocalFileHandler.m */; }; + FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D39EF6618E16776E8A5371CD8547E9 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = D40726BFD729316AABE7209F9CE71ECB /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = AAFF9C0E0B5630B174793EC35C4C38D0 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 003661AEAD4E66005C2C91B02B9B709D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2017,12 +1997,12 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 03F2CA0672D70BC7FC09B4800D77E422 /* PBXContainerItemProxy */ = { + 01E1C2F0C1330276845541D7FCDE9D30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2031,6 +2011,13 @@ remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; + 0406A95038221EF8583EC3F1E240DE0E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; 048AC4BFC3DEB50A8114C3826879AEB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2038,6 +2025,20 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 04AF6DEA4DDC0ECB4D5934C8F3D182DB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + 05809CB8554B96BAD97A2522AA570BAF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; 05C70C130BBF2D57D3A41CA7A93B606B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2045,19 +2046,12 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - 07CB207984DC219C24E538EC07BECE67 /* PBXContainerItemProxy */ = { + 067ABF57021EB50D890483D4C8639365 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 09D593C9AC48DFD729A196FCE6B75766 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; 0A0B4D127A91E77DB469579CC4FF0F57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2066,40 +2060,33 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 0A6779856EFD086B16649D182E9E5718 /* PBXContainerItemProxy */ = { + 0BC9F2BBC9BBE607E7CCFD808A85B1F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; - 0A8EB351142067C2AFA6EFE6C8D65E73 /* PBXContainerItemProxy */ = { + 0C0C7E4729BB6DEC28583212C48D0667 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; }; - 0BD696FBF6A39FE97C13A5A1ABF55C11 /* PBXContainerItemProxy */ = { + 0E1E95272142A4DD4793E4BCC36AA7DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 0C15209CA320BC1EEA1AFD2ECE80B1E7 /* PBXContainerItemProxy */ = { + 0E5E035BD27C0F412A58C52F51728C4A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 0D42E46EADA1B8AF308F3DA9477ECF42 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2122,12 +2109,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 1044FDC2303CAF1C91892A68F2A8E4AE /* PBXContainerItemProxy */ = { + 10399A97EABB5F89BCB17ABF69CA87B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 104EB12BDB7CE9BB901088CB0317D472 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2136,13 +2130,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 118016450313151D29E6B9F4BBED8396 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2157,6 +2144,13 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; + 1412D08BDAECA61E636B62B94CE52078 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2164,12 +2158,12 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; - 181FB338D96357AC053FCCF2E154D0BE /* PBXContainerItemProxy */ = { + 172BDD77CDCF2840675DA947894A338D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 185B11EB8A27612A9B75BAA1ACDFBF0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2178,47 +2172,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 18C0E297199B88DF61080C55F0ED5D91 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 1B24397AAA61D5997ED3C946B22A9C7C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - 1B41BA61DB20B05AE8C29E182A53214E /* PBXContainerItemProxy */ = { + 19C33ED24FB49FC741E5471B79E46224 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; remoteInfo = RNVectorIcons; }; - 1B79B5551993EED6A2BF0FFD795171BD /* PBXContainerItemProxy */ = { + 1AE55B317D1952FD116D76CAAED7DF01 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; - 1B8D1B0DAC080E3B195827A9996B9FCC /* PBXContainerItemProxy */ = { + 1AE7005914E52A005F591CDE4E355B58 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - 1C0D4EDE54700E03EE76BD4564618F44 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; 1C84D35F43BF9C71C2EEE3812CDC5C8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2227,40 +2200,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 1D8EDBE4862F1172B067616AE92BC536 /* PBXContainerItemProxy */ = { + 1EFD775BD2E6D8EAB8DD4C12B10B98CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 1DF35873D24AE2A4B161722573B5E51D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; - }; - 1E6145CFB733B7389B3BA81B9496EE61 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - 1E7A4AD5FBA09FE19600612F7B68B50F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 1FD068163D38F2DB2240805C8E64EBE1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2269,6 +2214,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 2137D5AADC00C670BBF209C6E3D3878F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2276,13 +2228,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 226291D00695774450BE39CA7E709FE2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2290,6 +2235,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 2415652152E232D9A385F2BF06E30732 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2304,13 +2256,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 269E3E717CF09543FA138376C554E3F1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; 273EEB006344CBC3B742234147B60471 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2318,19 +2263,33 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 29C8498BA9401C29DCEB36F24BA3D821 /* PBXContainerItemProxy */ = { + 275184F18104D4E8615D6866CB29A402 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 2AA6341385C9D7D36A09008D60E9A168 /* PBXContainerItemProxy */ = { + 287A4B30D18582D993096165A60C3078 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + 293DBD979E37882283943EEFEBC776F0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; + remoteInfo = "react-native-video"; + }; + 29F3EB3D0DA35A5FE5FDF6DB921A8F6F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2339,13 +2298,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2B097729BC2B2F4114F1A5FAE154F4C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; 2BA87C80F636B0480FC09D41CB82927A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2360,54 +2312,40 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 2DFAC70FFB58083A50BFD74B8CBF7CB0 /* PBXContainerItemProxy */ = { + 2CD60693D39AEAE91E7ADEB448D65FD1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - 2EA7DE3C4E6319549E4C6A2EDEB40C37 /* PBXContainerItemProxy */ = { + 2D3326D620B6A39271C4441799294647 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 2FE2C35337A08515922901E0BF777825 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; - }; - 307ABBF2B56D8DE9A4765909763281AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - 30F5CE6A0AA7FCC1E9DA1213EF8E04CE /* PBXContainerItemProxy */ = { + 308CB2ED713BFA054D8EB2F0D06AFA16 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 31CE8D75B1A3392204FC1D0E200F8389 /* PBXContainerItemProxy */ = { + 320353F04E268962E404EC723479978D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 328188725A5709DCD846ABC6008CA4A4 /* PBXContainerItemProxy */ = { + 32E225C2E87590796F689CDA686A746E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; 32EDED458FEDBDD31B9D588BD688E1DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2430,19 +2368,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 35E83C6752758A15697A5C0764818779 /* PBXContainerItemProxy */ = { + 36305F240D87F3E11C4530F378963D6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 36FF4ADDD6EB9814501A10DE7E7E4C4F /* PBXContainerItemProxy */ = { + 382951586E78CC41044DCAD3F979C352 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2451,47 +2389,33 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 3944CB563B3BC5309021CA988FB39A42 /* PBXContainerItemProxy */ = { + 3A1E47E06590AD806904148A81674998 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 3AB947A007E4632E142CA898AB5D7D56 /* PBXContainerItemProxy */ = { + 3A6CA41075B8D579DF2C7C955B0D73AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - 3B1392E067C3E6A9242A6A3D71BAA7CF /* PBXContainerItemProxy */ = { + 3B37B34459C2896DAD51825CA8814EBC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - 3BCA64347C6160D30C274D72A09D9586 /* PBXContainerItemProxy */ = { + 3D2DFABD549FE6DC08A09E656D411E71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; - }; - 3C16780A980340108ED15E3B431DF62B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 3C43C5DEE85968F10ED7D2A1163F91DA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2500,13 +2424,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 3DB931A9B45692A33690F47416BD6AB8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2514,19 +2431,54 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 3E7EB2B3FB38137993A296AF74F3CA0B /* PBXContainerItemProxy */ = { + 3E5A84A1441859E921BB6CD461F5E265 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - 40722E20ED16E33A140CF7C78FC8B72A /* PBXContainerItemProxy */ = { + 3E83DA5CB5A4A4CBE5BC3B7021ECAAEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + 3F233DD877377E4E13A6102268F04D46 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; + remoteInfo = "react-native-video"; + }; + 3FC82A5B2AC222C7A7933B2CA25610AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; + 40084875DC2C681C72190ADA5D777126 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; + 402729C8AF71EB939F39BE06188B3042 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + 402E669DAC592D8549ACFE8A6016A9C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2535,6 +2487,20 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; + 40F1C01F63CD3B0F6E7DFA620AB8DBEA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + 417C4B37FBF10188AF7335F3FA18E334 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2542,34 +2508,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 425A35FF1C349923FBC60860170E6F98 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 43D3ABCC883084F535FB4C94AE270B17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; - 444BCD6C8D99EC76E2B7CA594F0CDDEE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 4470DF690078CCCFC5A0E26F8E95B5C8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2584,6 +2522,20 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; + 45AFA3D4740E3124EED9D5ED6B043C63 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; + }; + 4600504FAD268DBF6C7F7DBEF02F915B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2591,12 +2543,12 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 4615FE0733428BB0AA78E2EFE9089DE0 /* PBXContainerItemProxy */ = { + 46C442A90B3F4D2FE8F2908D8DF29193 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; 46C8DE13FECE137E1DF29D2657A15C93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2605,20 +2557,6 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 47450B6D8E3C6D80282F4B95884C03AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 4847E3B18791FE6E3E94AA5781F3C219 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2626,47 +2564,26 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 4936892D09C4323AC6969A3CBC57E9AC /* PBXContainerItemProxy */ = { + 4952A68A7EE0A73023C8C30F916CDDF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 49CBCEEC7CD88EA79F05EF04B91304B4 /* PBXContainerItemProxy */ = { + 4B07143B1B59D56632347002AAAA437D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 49F05BDCFA402317EFCE4D988B52E30F /* PBXContainerItemProxy */ = { + 4F27147283A7B89EF1C01CEFE599CB7C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; - remoteInfo = "react-native-video"; - }; - 4B1239845E12FE3A6B2DCCA12A519B10 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; - 4D75BDE4708454F4909FB10307068841 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; - }; - 4E8A822A3AC1F62151AB71510CEE0B28 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2682,40 +2599,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 5027C7B0A8DA8D038D576E67EEF5780B /* PBXContainerItemProxy */ = { + 517E95D5CAD03EA75E0C6617D9294D01 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - 50D43378AB82F90A88B706CDDC8BB391 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; - }; - 5133F757B57EAC5EB436A3997C0C2D4E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; - 519F2E56F6C82B6DBBE5AC50E62CD74B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - 52C37EC013797E043C65843C8114B04B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2724,12 +2613,12 @@ remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; remoteInfo = JitsiMeetSDK; }; - 53B0D573801F04727A5968A24DCEDB3A /* PBXContainerItemProxy */ = { + 53DA77F82575474462AD71648C4EDD36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2738,6 +2627,13 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; + 544592DB0AECB2E27F829CE6D6471112 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; 54A7BA384E80D5DB0269C827877FE175 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2759,12 +2655,12 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 57F3D7487917ADFE4B6C3F7DBECD5F8F /* PBXContainerItemProxy */ = { + 55C9DFEE64190DC5D7B659AEAC999467 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2773,13 +2669,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 592693EA8C81FF03676E6A02CFA16F14 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2787,19 +2676,12 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 59C6F419D816DC8DE859BF6E48A82937 /* PBXContainerItemProxy */ = { + 59BACDF507289F4ACB3A4077AC2B6A0D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - 5B62530741BD5714CD56AF19839463F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2808,12 +2690,33 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 5DC25A1D4E918E1675990CA1D8A67BC5 /* PBXContainerItemProxy */ = { + 5C185361F391575D4DA16E81E17B4A8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + 5E3D2AE3A5333B142CB68B67C4ACE095 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + 5E4B75F838EA6500E2F70C98C23329FC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; + }; + 5EA1635A7900F18827B314AB2066E54B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2829,12 +2732,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 63D13802311B32160BD8F47452967D30 /* PBXContainerItemProxy */ = { + 60309F1BE665B10103A75D922E3EC51C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2850,12 +2753,40 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 671DF5E465C47266E89D2307072898C5 /* PBXContainerItemProxy */ = { + 66891AB8C01E7C893EB7523B1B22AAA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + 670C372A32DD6F4E8DDE9DD208B1959F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; + 67FBEA74D4E3D03958D3FCA81395FE21 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + 68D035CB9631197AD6B6FD240C349BBF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; + 691A3865D64C68C472340C168D9C2400 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2864,6 +2795,13 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + 69B99B1CA02C6A7B7D1C6041F1A33EF7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2878,55 +2816,48 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 6A594DC7B924CE27B59981A75BF166DB /* PBXContainerItemProxy */ = { + 6B9EEBA2024E9C3E4A0B500A9656EFF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; }; - 6B353BDDA4C3E6B73BAC65854BC4EE5A /* PBXContainerItemProxy */ = { + 6C49B5F5AB63668362CD24681ABECAEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 2B8C13513C1F6D610976B0C8F4402EC1; + remoteInfo = EXAppLoaderProvider; }; - 6BE17AD7C555AE1C5F07FCC65FFEEBC3 /* PBXContainerItemProxy */ = { + 6C5D1AF94E953E4888BBFDC54AC217D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; - 6CFB67BBFCAC8C342352DF567A778A75 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 6DBAA7D492F6913D24F58658F0948574 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - 6EC5D99CB7C92E00E2D0CACD98349692 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; - 6F4298251BA281F74B8663156C4EA0E1 /* PBXContainerItemProxy */ = { + 6D703170549265D538B76695D9F11BDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; remoteInfo = "react-native-background-timer"; }; + 6E0CAEF0DF7688D83AECD74FACE0138B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; + }; + 6E29D6575C8DB48BCD6EB09C573D7439 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; 70056FCB7FB870FB7D91F161A3B6F84F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2934,26 +2865,47 @@ remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - 70506A22AE25BDD58151B717B0F4C22F /* PBXContainerItemProxy */ = { + 7065495626DCA21731426A45B790DEE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 709C87ADB203D2D492FF3D76F91A489C /* PBXContainerItemProxy */ = { + 707DBFAC0F367C91F7464F128FFF4FCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; - 71E5C85C32D32F1F04C800D5A703C49A /* PBXContainerItemProxy */ = { + 70E6CA166BBC98CD53E3C1C4431640BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + 71636DF82DE06D5DC5E3003E6877EC08 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + 717692BC65669812B7F522EA2187003C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 721D022BF7B7A864C121769CB1817B93 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2962,12 +2914,12 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 72FFCE6D24CC5C292B2C863ED19A3550 /* PBXContainerItemProxy */ = { + 731D9A76399671E525E2162EEEAED217 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; 7376C532C4FB647A107D7FD9698C24E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2976,20 +2928,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 73CE57915F8A37491D19934C8E3E3376 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; - 742668A6152D4A35E1CF8DA490FF864D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2997,27 +2935,6 @@ remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - 7545D1E8732C8A669C329263632A2F9C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; - 75A19794D437B8D5F82DF2363871A104 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 76CE472186ECE30C9667447E3C9E2A37 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; - }; 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3025,33 +2942,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 777A11160F4CB70685296C76EFEE6F3E /* PBXContainerItemProxy */ = { + 79FCCD3960B1C651CD1B8140E92861DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 78168902AF542C6B44CAADD59C45B2B9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - 790A470EFDD88EEDCB39C9CD7DC4A0AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 7946027880C17CF9583C761D484F3230 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B8C13513C1F6D610976B0C8F4402EC1; - remoteInfo = EXAppLoaderProvider; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; 7AEA5761B26CAEF1A0C0E82599059DA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3060,19 +2956,19 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 7B199FB4BE2CA58EA743C45D6609AC0F /* PBXContainerItemProxy */ = { + 7B759FB85F7C9C55DF0A284C85720963 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 7BCA53A464C3341E7A7D4AE499BBCE86 /* PBXContainerItemProxy */ = { + 7BDB8FA60F307DBE98E1A1BBBDBE8A45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; 7C309567C8843AC36F40EF4B09960A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3088,20 +2984,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 7CF567BF0FF9A2CA68F9268723F55DD6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; - 7D27ED6567EFD4F81531C72772720B9C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; 7DFBE4295EB2D14288E99BCD22619405 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3109,6 +2991,13 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + 7E544BF4B592599D7C926E03AF304B82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; 7F0C8BA205CDCCA50C905295C45878EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3123,6 +3012,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 813B2C49536CDF5D5DCDA2B2CA4D7449 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3130,26 +3026,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 83885E57E5842582AE0EBE125C789C86 /* PBXContainerItemProxy */ = { + 84FE32A6A58FF4DB1E40B42BF726D712 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - 851BFC34B414575929C9D05C084A883F /* PBXContainerItemProxy */ = { + 8513B0B23F501D30EBD770AE16DDC32D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 864D1D6DAA9D95E786FD868C53C055B9 /* PBXContainerItemProxy */ = { + 8584DE7BCC7ADB3BDB3FE89B61242870 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; 86FBD5BA95718ED6238A8919F42616C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3158,14 +3054,7 @@ remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; - 87197B34A43BDFD610E82071C7C49838 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 87802E74B4233E83A705E90C847E767D /* PBXContainerItemProxy */ = { + 8786903AA6F32475D724C105FB071E9A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -3179,33 +3068,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 8A1B4551FBF8F550985B968E5FB22C8C /* PBXContainerItemProxy */ = { + 8AD98246D0E79A443E9598472BA4C7AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; - 8BF89A917095D5157744CA3A3DDF0694 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 8C00AF0CF0FFBD1F03F368E59C0C6E49 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 8CD02B7BC7B52B650E994D6784D8F231 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3221,19 +3089,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 8D166E6DC97E66ECE4E146F8606FDF64 /* PBXContainerItemProxy */ = { + 8E4A3D572F553CEC53BF18485A903A9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 8D5515BBE0F7514C77BE5CBE42628BE0 /* PBXContainerItemProxy */ = { + 8F88FE0C04DC1C152B58E0361B149376 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3242,12 +3110,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 909FB4CB16E83CBC6C773C2E99E03EBD /* PBXContainerItemProxy */ = { + 8F92F098DAF2474862E1EAF580073CAE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3256,27 +3124,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 91E7BE7B7B4A92B30DDEEDB1C61491FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - 920BBBF84113CAE19E321EAAFE6546B4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; - 9221682DEFC433F52DC9D6667B00E8E1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3284,19 +3131,19 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 9340DA83B0AFC57D4B646B1D26FA2D4E /* PBXContainerItemProxy */ = { + 92C8167A0B1C0CFC5EDCB6A77E82F0CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 952D8D95F99846648150A4D15014D3F0 /* PBXContainerItemProxy */ = { + 954E0CCA5E8B480350E8436EE474FAD8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3305,12 +3152,26 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 96666480DE980C58BDF3B02926F87595 /* PBXContainerItemProxy */ = { + 95F202C16F2E096E63EA85E929C33A4F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + 96259237E6EF341CE2D2ADC369748D00 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 971EBA09E440DFF8F429A7118EEA8FDE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3333,6 +3194,13 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + 98D896D698F7491BAE25E198EB3446F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; 9999A457A3E364808C9E122EC64D955D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3340,13 +3208,6 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 9A0FD7307742DE0CDECD4DBA15DA10B5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; - }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3368,19 +3229,40 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 9BF5924BA9D17A4904D3454D2A86CF70 /* PBXContainerItemProxy */ = { + 9B4B943D6F7368C124A65870E1B5AA7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - 9DA910A181B4EDFFC52A91B769656CDF /* PBXContainerItemProxy */ = { + 9C9DCBD3CB2DE5791F27DCB8E00C5BB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 9D51D3FFD7C86A6A93E99C5CE65657CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + 9D7112820FE404AD3889A8C613EB673D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + 9E36FBA6389A33166DD5FC00876F9356 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; 9EEE23D6519FCEE6884F6DF117317D7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3389,12 +3271,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 9FBE29897B10BA3238B4E77375E53B48 /* PBXContainerItemProxy */ = { + 9FEB6FFD475ADDB7C8F4320897A09299 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + A219A525F7D89CB505775229778B9A36 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3403,12 +3292,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - A294E7323DF03350958C1AC67D2A1C0A /* PBXContainerItemProxy */ = { + A2FBD5133148A69D26BD3F8CB2963991 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; A33043B018A8D3B28DA9124A1579E13A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3417,13 +3306,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - A354CF663E4D8E78CD93FD1AD483AC9D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; A3B47DA7FB5AF667B2756DAC549D2642 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3431,19 +3313,26 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - A51B4E84523EE9025F2923E0EF9C8DF6 /* PBXContainerItemProxy */ = { + A3B60D1C518F1C8C813F5E32A75DD327 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; - A6C96CD915FAFFA438FE9774216C27FC /* PBXContainerItemProxy */ = { + A3E4D5683701E2A900C35ED966EB6653 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + A527A444ED21744AF6544777DFE6404E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; A6D3FBE192729DD81F271A1FC6DA3AC7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3452,6 +3341,13 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; + A6D422094C74D84634D1485AE974F60A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3473,6 +3369,13 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; + A9689D073775F19CC22FBFBEB8D401B0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; A9D92F68FAFAEBBE26C78B0172ED347C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3480,13 +3383,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - AA3D617BC33D3300EA85143BA7607626 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3494,33 +3390,40 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - AA683DBA0B2F417BE4B830F44E78DAE9 /* PBXContainerItemProxy */ = { + AB360A4F54357E0EF27BA1013DA95BD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; - AC929F6DB753F7A5A23136DC8A5AF1F4 /* PBXContainerItemProxy */ = { + ABCA878079204477F95ACF349B134A59 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; - AC9BCF22ABC537CD2D90BD3E179BFC83 /* PBXContainerItemProxy */ = { + AC8F1A49C5EFA6AED6CD03F6A8510E5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - AE0E1CA44BD2181F02740B57829BAD7B /* PBXContainerItemProxy */ = { + ACC1286B8334CEC95ACD1C3ABFB49E22 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + AD38898AC452DBA3DE9FE7EA27BCFF9B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3529,6 +3432,13 @@ remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; remoteInfo = RSKImageCropper; }; + B05729177D762B1484EA31FE2B192F72 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3536,33 +3446,12 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - B144A4DEF75CE655FEEF5DEDC873FA72 /* PBXContainerItemProxy */ = { + B28EF074B302B6A2D8F38DED8CEF9B05 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; - }; - B1D869B08EF0EFE10993521A96F7D391 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; - }; - B31A35FC99432556A392CA1D2ED5C27A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; - }; - B3BD5672FE1CCAABCE599CB125843D13 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3571,6 +3460,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + B412D7FD710901709A3083B46CF3702F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; B45BFCA094BB2306A256FB04420598F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3585,26 +3481,26 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - B5F1124F98DDA693985714257034E729 /* PBXContainerItemProxy */ = { + B68576AFB6F11BAD9DF77AAAB1786E92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; }; - B5F526CAA3A7B86FC6219266D5CDBAA8 /* PBXContainerItemProxy */ = { + B687C9A22D2D12EFB200C5D67C839906 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - B6188822A8A78712424CA19B932100E8 /* PBXContainerItemProxy */ = { + B78DEBEDD5ABBC8402DD51C6392DDD23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3613,6 +3509,13 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + B8970DFDF95002FD0A14B4D77503A214 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; B8E5BD7E0904D95225F1C6CC70ADE8CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3620,6 +3523,27 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + B9D79D20404B146AC29C03FE1AD96C03 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; + }; + BA3F7D36F6E5ECA2F4C8FAB2CB071D26 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; + BA6A87806E852DECE2417B12D5CFCFD3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3627,6 +3551,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + BBBCB452501F022F10A90B55CBEEE891 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3634,20 +3565,6 @@ remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - BC0A650988C15F16ACA71087737CD3F4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; - BC8C24324CBCCA7C9FD4E3E8423E923F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3669,19 +3586,40 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - C2F3CB80CD4B5FF1CC89D31492675B2E /* PBXContainerItemProxy */ = { + C007ACF14C1064044D9BD8EB35FEB43A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - C345B49DF1FD64A2511E8ADFB302CDD9 /* PBXContainerItemProxy */ = { + C205DB80B1CEEF68C92E6343357D7C8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + C41CF851F7FF52EAD14A31FC91CE44F2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + C48E979E1D0D6C5043ACA61F36400E90 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + C4E52F1E098EC9D179CFCEF2A3754390 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; C583A5691E3DAE99E4675FD1989CDA14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3704,13 +3642,6 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - C6A40FD5CA2BAE47C05F541530D2D070 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3725,41 +3656,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - C7DE1803713B58CB919CE3EB04543743 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - C8E7636CCA91128D75FBB3064C303CF5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; - }; - C8F31F27E885C7BF0CB0536D87A79750 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; - remoteInfo = "react-native-video"; - }; - C9AB9E31511613E7773ECD99B5BB4A25 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - C9C871423DD699DA51012B83751B6E82 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3774,6 +3670,27 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + CB9A1514A74BA6B294881C5D49B4BD56 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + CC390744717882FAF013326AE2225D8D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + CC7FEEE361E9E93EC0AF53DEA0487162 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3781,12 +3698,12 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - CD7D7CE64221D2F810D53644B5CD9D72 /* PBXContainerItemProxy */ = { + CE4A7DC33E0F6EA56EC03CA52580CE16 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; CEEAB0ABDC6919813DC4584C776CA72F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3795,6 +3712,13 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; + CF4C77FAF354C159D5D07A168021AC69 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; CF87F655D13B486B7A39F4A5166807A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3809,6 +3733,13 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; + D14EB4032B97D656CD01BDCE3A3390DE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; D1DD6F0528614F3F6A959C01AB7F7DCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3816,12 +3747,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - D2EEA6CAF0D8F9AE42037AE2CD98F08C /* PBXContainerItemProxy */ = { + D2C7310A49E77758AC413C2BF25CA941 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; D30AD787E43DE3AC8E24B315F185B31F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3830,6 +3761,13 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; + D4001BB8F0E1CC188062556FC8254A35 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3851,6 +3789,41 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + D5B64814EF2A440EB22C618F91BCAE0B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + D624DE6873C7905B1A1CADFD49663364 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + D70666205C99C6195B5678C376383933 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + D781C1652968935BF4F42491DC466AFB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + D8BA779B67C0609ECB59A0ABEA386ED1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; D9E3EDC835FCF7086651DEA02BD80CC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3858,6 +3831,34 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + DA4E0CF0076635A9C93366BE55B631DC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + DAE75970E173695ADA1DDFDF7503C0C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + DAEB0AF2BFDB8B949BE59A274BDCC56A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + DD9BC5B98128BCBE02EE7D0F305714A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3886,27 +3887,6 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - E0D98A8909B36864FA2933AEDDD2CF59 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - E1C421EE796DDA0903F9CAF48DB34D00 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; - }; - E349A2357A5D191D2BE6E5DBB91CC053 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3914,20 +3894,34 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - E60B916218717C921E5F11253059C7AD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - E6AA76FB869511C87C0F59AB5D2E0711 /* PBXContainerItemProxy */ = { + E566304553EFCEBA4F051E9BCAD0BB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; remoteInfo = RNFirebase; }; + E56C8CB5984F079F18A8A02FB8BDBFC2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + E5977561143FBB1F7FC7B0730E111BD6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + E72F93C5ADD69CD4E8122F4FCBFEDA4B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; + }; E7713748923D5218C5086559D4632CF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3942,12 +3936,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - E7F8B63B1F9D0C488BDB4D00E7E4849C /* PBXContainerItemProxy */ = { + E807FCAA63ACCD6E07113B2719C5CE62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + E879B118CC080DD7D9D9466736FD606B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3956,34 +3957,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - E9B7DE6782CB1AFA824686CE3F5E6244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - EBC7518B544F41E7D3EC6B04FD721254 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; - ECA29CD1CAAD5B626BAA69A224B592F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - ED8DF4AF781F646E01339F2EF18E2202 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3991,13 +3964,6 @@ remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; }; - EEEC9DA5A1F7E3749DE71EB47566F9D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; - }; EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4033,13 +3999,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - F17B4995C520DE461541A03295BDE1EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4054,26 +4013,12 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - F34982CECD4A0E7E5C361467B942AFD5 /* PBXContainerItemProxy */ = { + F526CFA1968B27B4BEA79732D19A8FDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - F43325096A500828490E85360829798B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; - }; - F50AB6D44713FB32A3096F258E5D75F7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4082,13 +4027,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F5C9C8DA4EF06D90E55CBF7F674BDEF1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; F60823557509BCBAD04769F2DE3B592E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4096,6 +4034,13 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + F66DF275B4674A769762AB96EE55CFEB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4103,19 +4048,12 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - F6E7B967BAB0CFDAF1E4584ABE5385FC /* PBXContainerItemProxy */ = { + F7E4A705A8999C3724E4A0F45D1714B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - F7197E8A78D91E6D03D445D2B44173AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4124,12 +4062,12 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; - F961935CF80EBDB232EE3BBE07180D40 /* PBXContainerItemProxy */ = { + F8D4D2CDF1354D450268ABEC07E1B256 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; }; F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4138,19 +4076,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - FAA688893F6F7C79DA3E8120E591ED84 /* PBXContainerItemProxy */ = { + F9FA9A4B93BE9BA6DAB7949C24BB5F24 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - FB8962C393814D899BA352B00394587C /* PBXContainerItemProxy */ = { + FAC02C27A0673C97EF1C046A21DB770C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + FAEB113988D078551DD440B5811BE6B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4159,6 +4104,27 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + FC2D8CDA8C6819244FFB8BEC04875A14 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; + }; + FC3D1359470801CE2B157C29ED51BEBD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; + }; + FC3F84C6724CFB62A253DF9B93BF2C02 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; FC9ECE85F287C504E4BF453D581199F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4166,2234 +4132,2213 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - FD6ECC61BA8F1EE2ED5B3BBDD73C7E70 /* PBXContainerItemProxy */ = { + FD95985655C01A2E05B291CA06AAFCD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - FE897A3B09C0C877C1425D2D0F0AE06C /* PBXContainerItemProxy */ = { + FDB0917B1E44BD76953F344AF79CA564 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - FED0787EF1320E02CB9E59A7A9F4D067 /* PBXContainerItemProxy */ = { + FF05F025FB43CF1DC5992E8D006B331D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 001747F5C80950AA3E7EC3CDABD93FE4 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 0060ACFCB7F4DE84A9C2625491EA6A6D /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 007FDBD5CB8F72DE12035951173C327B /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - 00D6267DF2FF73D1AF8C5368C1C5E270 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - 00D78A4B0214C7CF7F25E5312572EE0C /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 000CF4B07323DE0DF96F8E98827BD0E1 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 0013A8590B263E8EAA1ABEA919F20609 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 006A91ACB3FAF05E02C0BB84902EB5B9 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 00909459C52E57438B89BF650B1ABC2F /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + 00A24BAEB84CCA43C84F63BB520EFF73 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 00D70F7C8A81CBBE063917E7D22CA9E9 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + 00D9BBF8F7A5ABBA78708605ED38FDC3 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 00E59C3B11F5E8E852ADAE43B161CD71 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 00E82BDB2C9F5873A72BD92FC76E564A /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; 00EF713613E649AF69AC589CAB985955 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 00F141C90BDC5ABFB362C6A910458B2E /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; 00F8B0C7A4D6446D5585DCDC4DEB566C /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 00FFEC094BBA2326B97D61C8A235B8CF /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; 012242E4480B29DF1D5791EC61C27FEE /* 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; }; 0143E920C1C46322DEAACDA3FEED6B7A /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; + 015A05353455D1AA8609015B06590519 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 019EF2F3E1EBEF4B63B42F53A1FE1122 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 01AB176D8CCC282389777CB23AF55DBD /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + 01DF6764FE9A5AE522B6E100964D5369 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 01FAF80891432F62857FFDA6B6F8ABC8 /* GDTTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransport_Private.h; sourceTree = ""; }; - 01FD177916C7B57614C5F4BEA61F8CE9 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; - 02153101DD015A798818C151A182F4DB /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 024208975464F176E11129E3151BAB2F /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; - 0260B1705B12BD97512D92AAB1D975A2 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 02AEAB2464ED470DD8B2BED39CE7D233 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; - 02B42F19719F9070E89F655242EBF98B /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 0204FFA6DCCD570CDC31DF830ED0B68B /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + 020C902A4C9051EDD49E7F5C0A448148 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 0246FD45FA1E925C01BDADC66A69BC39 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 0287D9269BE2F2D523F799AE70389190 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 02C05262BFECC90910E7E70E31AD9520 /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; - 02FAA2A82FF5E7F69641A48ACD60B8E9 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - 02FD9DFB0AACA799D670E18E11F9B60B /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - 031612F602327B8E86998A9BFC8772FC /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0357F2904793AF75BF705D34080B39A7 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 0390AAC82D88B6B9496BEB754DB6C1CB /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 02D0DC8F9713A3D0EEAF9E51D2A7C23B /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 02E3C8E65AD549B618E9A95B19DEE4E4 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 0320F5C6D72B329B0682338615BF7493 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + 0344E7B3D81DCAC80D0E9F775A586C1B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 038A80AF4541A3218A844236F86DCA0A /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; 03B728F92DB283E8246EA83B5CEFAEAA /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - 03CF224C0391812834F8FDCA55B544F8 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - 03CF8B129F84A67BF7EDAEC900572B62 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - 03D63C370B1F5F00787DBD1CC533D8DA /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - 03FF3F73FA8FCF5C8B6299B130D5BD70 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - 04281FA56489A7CCB9EF40362A453BBC /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 044B27E89443DDAC94ABA4E73C48B168 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 046EAA9D5C971AB9315DEC235D649530 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; - 0499506163E27FDFE72BF36433C9AB81 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 03E085DBA7E97CE3E2B19A40F6AF0571 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 0426B8342173670C364646932520A584 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 044407784524ADF30EE59D2E8A6EB492 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 044BD12F427599BBE8E662876B3B0E62 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; 0499B8CE4FABCF6E65F81D68962C5DA1 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; - 04AF3C51F7F66ECAC396AFBCE9033846 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - 04AF880EA4E6EC46A565A469E7BBF10A /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; 04BCA88F7ADC8587075F74C4BF52094A /* GDTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTPlatform.m; path = GoogleDataTransport/GDTLibrary/GDTPlatform.m; sourceTree = ""; }; - 04F043ADCBA901864BB2FAE209E915BC /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 0506043E5C6B80ACD82C3F27165D3ABD /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - 0552660F46727BD283F8A428044D8013 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 04C3B1DD186B53182C077DA48835BE9E /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + 0559E4C614E870B6135748B7139B4706 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + 055D6F3674AC43C692134055A0114233 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 0595C8D67D9DB14FFA87BABD57DE21B7 /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; + 05B45453F410B75D4C4E47E4EA8F3068 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; 05C2010B25DD2DBB84A02AD7D9CC3D4E /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - 05C392ACAA16564F1646887DF81113EF /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - 05C6F803ACAD8D922F711576AF18EB36 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - 06247B3D87BBF857CA1826A54AD1E3D5 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 05D05EE0108C878FE066A6ADC6A0C45E /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 062446A5926322219204F38CBF59BDC9 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 064AC547DFF8127EEE541F3A1B437236 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - 065695C3888176DAC6E68FE097DC6565 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - 06697F35D65B5CE61A7219DE075D036C /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 066DAB200485098245D5EED0B1FEF098 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 067D5D2C99221EB0A3B9E22F7DFD06BF /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 06BDE908A3E04767FA0717BD6D74A719 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; - 06C809B8549057A07FF4A8E38A64FA53 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 06CB3C0F55397252230780C99F95841B /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + 06A091CBC32EF17A8EEE1A0C5F34273A /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 06A3F25B9F8C6B2AFBE97F39C69B8ED9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 06C337547CAF801A9A2D2CED641A5482 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 070F4DA174D42E2375C1E26D009B3DE9 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - 0728DF55B0762E76D1988160FF42272B /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; 0729A290877CECD5381E28D8670BA702 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - 072E531D9DB89866DCC6BAC3A7D5C874 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; - 07460367788943CC87A5DEBC9F0BE2A6 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 0776128501F7C2B856FEFE2DF2F62C93 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - 0783991BC3A821F01ACDC5B0CE3BB3F0 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 072A229515E67856918919BF7026D719 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 07715D946CC241035AA9330BD7314229 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; 07917CB28CC07843C9E23E4D4CB0FE07 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - 079D9854C6095ABD1C6BD151B14AC57C /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; - 07C973C976DABFE0D0D35D45FD5F1D8A /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 07D26F1F28317A664DDFCE95DE3C591E /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - 07FAC8AB14356BFB7EC74487EAE16C04 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + 07BB0BC0862B3F52AA1F1D2EF8400E41 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 07BE5A5F512431AE95BA20D966590C69 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 07DC285D33A89D30352C4C19C1746FEB /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; 0807A09287F78F29B2AC03E88390E82E /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; 080E2FD90E9D759670B5110850479F74 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; + 08188343B2338130885FCC76CC0F6134 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; 081DBE46ED8562B7ECAEDB8FBF8206C9 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; + 08558881FB7059A61C52EBC5A08E176F /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 08605099D3DD551B75AE7B66CA074A26 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - 086682E66D534C5C4E564B6A5873DEC0 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - 087D122178ED9A990BC9A3E85FEA2EBD /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 089F1F40063F07FE13D63877ABB48BEA /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* 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; }; - 08ED12117BB4332C204661E3C9D293BE /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - 08F60035D9582D5CA9D282FC2589628D /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - 091A9EF5FA607ADAEA341CEB89ECC221 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 0929481204407C90D1661AFC8B0305EF /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - 09340D593FCF156D56EC788C9D61A56E /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; - 0945BBC48C6E6DA34300929C868A3F41 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - 094800FF4F03E576562FEE945F9DEFD6 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - 094F4CDB49A7800ACC684C08A72D2F40 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 08FF8059D511801E5CF49090250E4859 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 09030AD89CF96463AFDAC3E83AAB7284 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 0922979F22D8BFDD8D76968A49579474 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 09597B21C975650436C74DFFD48A1EF1 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; 095C3A99BAD601DEF79FEC7E58053AA8 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; 097257AFA6B9ABB50D1D8D460C297CE1 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; - 09FB1013F78A7AF3DC2546F7CC3D152B /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; - 0A11CFDE7065490F90641B26838FBD7D /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 09779D39FC51C49ACB1E7CCD2C280164 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + 09FCFF00BF412129AAFFE0D12D62F1C7 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 0A1AE9B39C7652616C8D6BB801552498 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; 0A346F7EB324ED60BD0277D524F7464F /* FIRInstanceID_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID_Private.h; path = Firebase/InstanceID/Private/FIRInstanceID_Private.h; sourceTree = ""; }; - 0A5BC46FD11ADF1251BA46820BA26460 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - 0A674AEBCA76215CB8F991FFDBA16AFE /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - 0A7BA20B217FAEA21777E7F248DA1F6D /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0A82093132C2C256F2FA5D3B65FD62D4 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - 0AA160054F5AE778946C6632CD3512B0 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; - 0AD8727BFD3898AB37FF5C02D3A2019C /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 0AEE2091ED266224B958D1DDE10E9E00 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - 0B034A3847293DA3E577408BC6636FDD /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - 0B06766EBC90E7AB98A11548494111AA /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 0A4496C6492E8BA45305A1FEEEBD6901 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 0A5419ECC15C97412C523F0FBE0D4FD4 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 0A59F301DCC2311D365E74EEA05FBABF /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + 0A60B62926F6005BFF390DC4D2797C72 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 0AB95667D17C2DA212FFA19BCB94BDC6 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 0AE3F020CCF5349A5E74731A533AC3A5 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 0B1AE985C329624758A2E5C9F691D7D1 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - 0B1B654D254C7E1810BADC1CBB4306B8 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 0B2FDA18ED70A47834CCAED314AD0309 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; - 0B37F2001960B611D9EA5B02EA2CF2FC /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - 0B3ABC7A04102C3F682D13E316B99260 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 0B7460AE9B4CF1269C34BDB7CEA3867B /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - 0B83181F58997E709D2CF0ABFA639CB6 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 0B3B1522AF71F1928759D062C6264FFA /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + 0B467C86E865C0249EDDBA89932DC785 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 0B48FE90950FBE9D03598F7ED94A8579 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 0B4A47BDF6DAA71B28850F2F64C7F6C1 /* 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; }; 0B86658594281C1E99C699518F4B8838 /* FIRCoreDiagnosticsDateFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsDateFileStorage.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.m; sourceTree = ""; }; 0B87E9F95E955F70802BB09E14E71817 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - 0BA0CDC92F4D7E062A8E3BD5ECA5BFFA /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; - 0BA134F0EA1537EF10FFF6745288AB2B /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - 0BAEFD4C4562C5D193B2D14D21D30A0A /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; 0BB289DB92FF1A08F326924844309EEE /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 0BC20A9871EB97B9E51FD4F2F6D7D33B /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 0BD893EC03B684D4C3C45FECB2D8F98F /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 0BD001A7A37F01C00E5CC08101FD9FD1 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; 0BE6814863EBB3F1C85ACC78CD1A0667 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 0BE9428A6197F293955DE9F6417A0F5F /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - 0BFBA628CCFEC71D915A97EFB96799A7 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - 0C0EDBD3C842474FCA65748C7492A36A /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0BEDD37A8070C2259A52C4B87FF220F4 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 0C03BAB420BFBD15A329D14E96E05043 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 0C0A4784B7A41EB53E38B3BC83A5D6C5 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; 0C3A03091625137666805ABD9CD63C4F /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - 0C44808963FFBF4FFE9F3634F30135C4 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - 0C5EB83C9433ED1E5273FCC0D19066AB /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - 0C9175A9A1D7FD9E183957D35177133B /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 0C4C751BF74C5C8F4EB80CB3171620D2 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 0C6D02DEDE8278950D214006FA4E28BB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0C86DC2194454F6FFCCC4AF94718B89A /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + 0C86FEF56116E7B0BB1F17C49A61D4B3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0C883A93632C4771ABA985D21932C9C6 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 0C969501BDF38B00CC0121F55DA57182 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; 0CA316AB9B1E087EE087129012E3ED1A /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 0CAFE524CDC0EDA7E418B7CFA9669422 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - 0CB3CBDAF4A37F5F1F72C5D9F58E4A34 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 0CADB33B0380B0BE330FCB93D5EC3AFF /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; 0CE22CAD125F9462C815704C23AB8010 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = Firebase/Core/Public/FIRApp.h; sourceTree = ""; }; - 0CF58F69ED2387D3A40D3B251FE60953 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; - 0D237F74946A75E1540FAC09AF25BEB2 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - 0D2C6A295ECFD85BFE14D59F29FEDA84 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 0D42AF835132B8F359967AB88C1CF8EB /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; - 0D463BCADAB0CD3FA585E82382C4841E /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - 0D97133D0DF5D8D360CB13EED21FEA64 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + 0D15ED0D3FBC255024DAD806706032C5 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + 0D289E948BE7E930A28010FC8E9FB03A /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 0D442CA9F738EB55C03CA6B4B7FAEF05 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 0D975F4A710D3FF97114CA725B087D04 /* GDTReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability.h; sourceTree = ""; }; - 0DC44227D6FBEFC40745BD6F81A94947 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 0E10089B334000D673BD63A61590F275 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 0E1E1D08D52095E3F1AA160EA39A591A /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; - 0E3A25BE3F680D75F170C25CAEDE11CB /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + 0DBD4D04E771C54FA52A477EC9FC70CB /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + 0DCEA70A8455AC7D4E35182D9A7F4ECC /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 0DED9A673F38976D3067C9FDC5F2C87A /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 0DF5A7DFF4C37F2500DE0FAC62F58DAC /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + 0E0D2A5BA5EB89346ADCB47165DDEFFA /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 0E1D92A2A25290A8009B682BC4C4134C /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 0E350C264AE4803D6EBD9A194FEC1259 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; 0E3F600AA82D949DC333DA5269FFB8FD /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; 0E60844790501A0F180987D73BF7982A /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 0EB0F6B7E8EBD84A141C3AC167835CD7 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - 0EB20C8DF50E560049B18F49C648F10A /* 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; }; - 0EE0EFB192D6A4057750293E76172B93 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; - 0F318A1FC11A1A8E05DDD499EE7F877C /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + 0E6977FAA63F6CA6D8FDBC6AFA3B9E98 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 0EA7070E8C3E015DE88259B3A3CDCD83 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + 0EE4519DC88D45E3E2863002F2F5C975 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 0F8181461CC2DF673E9BDE56D1819240 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; 0FAEBE5D58863C9A3B5B59A94EA01F80 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - 0FB6F47EE770C3A9B0C5AF899D94B955 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; - 0FC051E8E39A958D85281DA2232549E0 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; - 0FCC74BBCDD1FFF31B5B035F9074E4CF /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; - 10250D78C60056D203D235E04EEDF191 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 103AF3B67564C17BFFE8AC3251B444C2 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - 1068FEF6E9F10FCEC7F7A0F102077F7D /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 10781EC5358906306658F75464CEAB50 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - 1079B8B6C30DFB82CE00FBEE2735966C /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 10890E9947EA5BDF4FA0F61021BE331F /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; - 1098DF3E0DF3277CE36F1C55214E28A3 /* 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; }; - 10E726AD9B950953523428C107B73363 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 10F3C58AADAD3BF820F4B6EA52544515 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; - 10FA9B0754D6B11BF211BFF613C14EAF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1164A57691AA9276B0B6AA6CF9EBA52B /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - 116BEB3EE21206B1D4CB59AC53153DE3 /* 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; }; - 117823082507FF2CD3810DE8A924654C /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - 118A76D5450D2D9A30DAD8E065C92CCB /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - 11A2F396A66ACC1494569521055463C5 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; + 0FFBBBCAB0B8D08F6F43EED34AA665FC /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 100FF80E511A702C2D76B13996B21E9C /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 1051BD6ABE3D9D8468852541ACCC872B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + 1069B42DA1FEEC4E4FBBBA3AA384AF0F /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 108085D07F03684CEBE9F4B088890C70 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 10A5C9EBB37A84F797231E27640E4BA6 /* 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; }; + 10BD7B3943400B212E1BF3647FE4BE60 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 1124C23FB2A502A12201876226BE9C90 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 1130F68B29467DE52EC99D8CCF2EF03C /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + 1140F8AD8AAC4AED507E57F76A1AE751 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 116E27FCF5E3E7F1D8A46A5C3AAE1C61 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 118846E156FED3C748B4D00BEDCFDAC5 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + 11AAB6FEF0C884E8DEC640CCCB8069F6 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; 11B31E00DF16B6278B172C44FA57D3DA /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 11C6FD394B6095FA5812033C28A9AFAA /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - 11E389E045BCBF83010393F69FBDC4B1 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 11FE3D70314F711012EF0BDE4979BE00 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - 1209EDCD114EE04E54BEB57C0949E700 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 11D45A50423950FABFA8813A4308CA5F /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + 11E5A3078F36287C0F1AB13ED9B084C9 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 11E882177D9D544089B62829B6126A2B /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 120634EB9136888379CC2EA67B466B54 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; 1213AB99B5CC77DF90E77DCF5420383F /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - 1231B98DC8FA463C5147C87F53A7B0CD /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 125C9C4E1B08E35E47F42EE6FABDA55F /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - 1262B5E77305E75F6C30EAA6032AD699 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - 1275E79B06824B79F8ED750B4F349A74 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 128DE5F176CD188ADAB62F25643F2795 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 12AF02A793F26E562BCB5474EC337429 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 12EC3DD9CD28EBA910DC357466A9268D /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 12359A981181A2EA6966C998EF5BB060 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; + 1267B6AD3D8D2F6ECC365F547ADADBE2 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 1291FC965C192E24A543F85F6E15968E /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 12AB074EDFEB194615BB707DA4AD99FD /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 12C009003B7CE339561B3DAA7A118DAB /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; 130BEEABCFE093EE423DDC47BE879AA4 /* GDTRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar.h; path = GoogleDataTransport/GDTLibrary/Public/GDTRegistrar.h; sourceTree = ""; }; 133986823449A7882523C4DF4CDAB704 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 13418D83B88F6337A936215291AAEFE5 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 13721102B03A8ECF1B4691430FB78793 /* GDTLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTLifecycle.m; path = GoogleDataTransport/GDTLibrary/GDTLifecycle.m; sourceTree = ""; }; - 13779FADE8C2EEA8185E90141DA3E5D4 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 13A2EF3CE7CCD3FD7FA53533E22C686E /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; - 13B96040DC69901B1C2CD26E570EEB47 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 13CBC0BC2FB3CE717B2C0EAE3A88C1A0 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - 13DCAC04D657A2082E265DD6149414DB /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 13FC99CB679FAF0B279975B449E1D487 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 144E7B8B4EC7AD69B7B6F83260E103C4 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; - 14731FC3B97E813560708C5159C23846 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 1381694234412DEFC55FFC85C8859B3C /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 13AA84F9F00D832C6E61E3ACDF57FD58 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 13D9EDE05DCF89A20656BCF72D7B8FCD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 1405744478739E45790735E1263FC0DE /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + 1418C7E922900E5DE839F18D991C3B84 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 146B9B9E6F19BF6A4C177FA9EE52FA03 /* 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; }; + 1471E2A418417AC26B11432CDCD16371 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 1474CF01DB622FC4F114F4F0AC297E3F /* 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; }; 1479715D7848A8E4C2D19640161BB45D /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; 1493995A8BFB7373CDD744F29FB45E51 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; 14A2693CDD9952524E83AD5C56A37DD8 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 14C97A8650B918816C5DB9E8D08249AD /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 150C87055CDDB34CF656770A6785DAF7 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - 151FCAEAB01057A6DFAF66D7094DF371 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 1530FCAA091AB1F8F8F266BFA7BDFA14 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 1546D22C2C8EA6AE11F39999F64BC710 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 14AB6E124BD2B583021797BCCE2C01DA /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + 14B6196CF7E7333C779345E3D8AB0DB8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 14EA82D8AF8E2D9B52189D6C7341EEDB /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 1500D248579B51E7855A20DF09D5BD70 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 1514FB448C3792F9B079996C9A026869 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 1545B2D238AD8991AA4F2778E2468B26 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 15568C3777E6B052056920480BBCA7F5 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; 1583CB301D61E5B65FA78359FE12CAD9 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; - 1588722AC1F1877FF162DB4503545D65 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 15B515C88A882F49E4AE51F40CC365F3 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - 15C1E533EFB2551229D5D8018377F547 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - 15D44666109AB3610BC6DEF28C5CA237 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; 15D81EE7F5F3714858C7FF9A5982EA34 /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; - 1615A42F724A8A0EFBB3E03DCA8989DF /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - 1628FCE1C0BA5C53ADD4E56D5A762BAA /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 165085416BBB22C24BA508984FD6C6DF /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 15DE42D6FBE822740A0DB393AE4121BE /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 160DF05E77457A4C987EEF31129699D3 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 161D18325784307CD792102DD6FEAB55 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; 16539A1962C2EA438882C01AA585AA85 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - 167001BB542F875BB6AE6374CBE2F8D3 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - 16839A17E6F24246EC83A9E32C3C3AA7 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 165EF85905D443770194085D1852BB5D /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + 16997355997FF89EB81DB7F1CABB6005 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; 169C59D4B7CFD8544456F26E526BB4F7 /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - 16E1B3D3F1C9A20AC3EE3B0DEF23172B /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - 16E6D00B240E8A6875583B15B09C0AD0 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 170794365051DE61C2F27CA071918980 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 170A74C6C2C5C22A8B53386C9837E276 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; - 17341144B555A03C5EBEDD81B0B832E0 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - 177DDED5760D29524F4FB9784CE2D2E4 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 17842AAA69394D97DF4C5ECF3A8B42B0 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - 17C501E18A92D84749D865D5BC99708B /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - 17E5E5C0406A43442395C6499FD4DC5B /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 17141239540AA5069F72F42CBD467742 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + 1765A5F8E66CC0295A7A923FAD7E1217 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 1784A6E36638A744A6E22266E32D2132 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 17A45AB7007FE9A17DBCAB986A38929C /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; + 17C87CC3D47C59576B910B2659EE7E64 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 17F6851DC28623E575D7C76BF479E719 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 17F929DC989EF54C2701ED2500CA281D /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; 18083C0F8FB874B63881DB343401FE81 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + 183650D3199739FA3BADAF479DCF1BFC /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 184BEC56074C469A06B101587D2E9AC1 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; 1874FFEDFA6B268EFD16DEDF5C0ABF72 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; 18765F99260DDACA363C4D54C9396C3C /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 18D46CE6DE6E232560BCA20F7347F9C9 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 18EDA5479E41E41962A4F9C45DF4B942 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 188B99432FF8F2E8F4F893A9C38BCAA0 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 18909AF21641E5BC9DDFF07FDD182C3E /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 18D62828B76C669E2E6ABDDE49B89B20 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; + 18E62FAC3EFD4396EB4C691B8C82D1BB /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + 18F40101D1628C0185CC6D5FA7384BEB /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 190B39A0F3F2FA4A66BF58DD49E9BCFB /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; - 19284D31BD342A64F8E638D6F6DD5F87 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; - 194DF9C69A78D93A7716C6FA7B2DA705 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 19BB2473A3C289774EC32A321472BCE1 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - 19C6B487FF09B7DC327E20B038C0DF87 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 19D3732BCBA5628433B833B5D52F0700 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 1939F7B6A9B5EAE0A54DEB9EE153EADC /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 19B2B0E4488645CBAA1205FA83BD9FD9 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 19F236EFD656CD6ED1BE2782FF78DE63 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 19F564B389F733F3CA3C7EA9890D9DE1 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 19F6FE449DB9762544352360A9B48419 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 1A1A68332B4403E04672865D3E4A4B10 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; 1A3205E89D7E14C616E752AE578B2DB3 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 1A73B6FB820D5DF2EC492B1A4D6037F2 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 1A79B9769DABF5D747621369F882A30A /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - 1A8E530C7B07419F2B4A9E63EFBA44C7 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 1A9A3DE004CEEA3336DB958021E968A3 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - 1AAFA15E541F79750341AB85EC424250 /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; - 1AB78CEE69FD01B802877A116264D902 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; - 1AB96A3C68259FF4D2301FB0F118B702 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; 1ABEBFC8AF8824A623B2CCBDA9B3EDD3 /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - 1AC5E3712E1C400257D80CFEA826DFC6 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; 1AE4FFEE6A9488A6CE72466623293BE4 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 1AEE9A0BA7E271016CEF50622ADF9914 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - 1AF7C413C7FA2654A5538A174E57FF11 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - 1B0BFCA3863288C619E65898BB7D3E5D /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 1AF8E2E2B0217A01CC5F953744A9DF6A /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; 1B17E24DB6A1D37F25B7A56EC2AD431E /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; 1B1A1C95AA27C1D36C6270D41774B010 /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; 1B2955D4AD48DE04BBCC5DB14A864B06 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; - 1B751FDEDA4C9C7FCF33C059FA22C747 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; - 1B824CABD58145BAA085DEB425D763CD /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 1BB23806F75FA779CDDC924FA7F9C555 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 1BC240C9C25F80D8681D0EEC22B07F84 /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; + 1B63E9B12823AC25D79AE55FE6193299 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + 1BB9AE11058DF3D5E963814F2B6902E2 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + 1BBB39B796A50E11C5772196E909F6F5 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 1BC69F9FE2E8DBE28E99666C455B61BD /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - 1BCA613E270465CAFFEFCFAB5AD0872E /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - 1BDF14C570382A8C3638F41F2E56EABB /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 1C372D568CD6870CC01830B85A92C17B /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + 1C39222F9FF2249656E383E3528D16D3 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1C3933A150F307BEBEA5276E79AE9939 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - 1C53CFE294908B03C59C10311B192437 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 1C89C4FC2E607369BF79A14FC2B68643 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 1C6546E9FD98E3BE5EF35E4FF590C91A /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 1C8D565173D60B976B9B818CC8BDF944 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; 1C993823267D96AA814B7C38AF6C7369 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; - 1CA785C20F123D7AAFB30A0FD933A235 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - 1CA80193E1A0EDA3D3A4B103FC31B051 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 1CABE6C371A0BFD0444B9F27A64F4F11 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 1CD28EB1C5665AB87CD4B715CE0C3EC7 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - 1D1A4DF30C9801FD64301020561FE612 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; - 1DC6AB09782FC3C60D8E082174E26072 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 1DD372A7560FF3AD51637124739591F8 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + 1CA8125439F97A566317021EC91B6DDC /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 1CAA09D43AF1B4C9D679CC18454CE6CB /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; + 1D0911296088AE811974048D99C4DE46 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + 1D12D0E6F3B8DBB744D9B0D77BD7229C /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + 1D44E75F76E72B5F892FC80EF09CB91E /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 1D589DABDEA669C1310CAE687D4DC0B9 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + 1DA3A6319D375F4D7519673B9CEE18A3 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 1DA7F8DC9E7232AE33A3B2AEC203F95A /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; 1DDEB27E88339BEF722E14FFCB3E3630 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; - 1DE90F6D33BFED95077AB0A667A87F14 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 1DE98B4DC71DC91B5858A13E77D55B21 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - 1E36B6104ECCD9D037D65F133A90B34E /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + 1E32D2C37782B12BE3B10FE71504A987 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; + 1E453555479B0F9855094D1421408F0F /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; 1E7AA5171F7BFA958025DC698C194776 /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; + 1E8B8C0C4A338088311A9CA4BDA0B991 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 1E9D43A734EECE32504BF5D855427517 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 1EA3C918BA42D4D94F6C111302EA8A21 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 1EA8FF5764F81F464D320E1177895992 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; - 1EAC930ED045E8B5E77D1C890D820095 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - 1EB722BDDED6433A2C613BC46BF7D51A /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 1EC329653A5CE5C65DB4A68C3E2D5C2D /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; - 1ED6FAF56D3ABCA19813CBD037348E6D /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 1EE92919E35EA25DF553ADAD467A35D5 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; 1F108CA515F3E008514F1B556040E00C /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 1F2E344E048B27D0A031047E557752D7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1F783017BFCE6D8957205E2368080555 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; - 1F865083282FF0E3E2499A9C3C003673 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - 1F9101373978C3B83F589B7777250231 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 1F2821F039B7C781208D6F11549AEDD7 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 1F6A4A32003BE13755DF6A7C0A164DCE /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 1F79843AA3A02D490BDAA1334DA7D9E3 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 1FA5E0CA44BC2E324B39B0EC61089027 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 1FC725872F6FD1C53517FFE99D1685CD /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 1FE3B0E6E0B73EFFD9494512EFE99A81 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 1FE42B1EC0E9A1434434EBFF0E914EC8 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; 1FEA399CF91DC9F45F91622F9ACFBB2D /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; - 1FFF74A046BF8D427EF7C90624577C41 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 200B410FC52ED1D49FB3C784185B8F03 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2057AABFC66C0A8C7AE0D06D345C2B55 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 20A99EE431CC3BD1E3C4AD05F7D59947 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 20B89E66A01DCF69DB5C84DFEAF3C692 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 204028BFF03CEE94591E5D30DAD1F291 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 2052B4878E563F44BB2D781DA948B9A4 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 208B535EFA85EEB6BCF38C0A82906751 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + 20A1BBC5DD1139BE603E1CF95CC888B2 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 20BBB7E03E30C29DDFE9DF994DD64251 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + 20C12E6286482A074CE08F5EFAD1A07C /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 21199E18BA11E7D9DFB4E16A495239DE /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; - 212DFA7D181040060D52BE908EF49DB4 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + 20F5484A1BC6E3A8CED6305F18B135AA /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 211F6AF473FDA2EDC014A6465966DFC8 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; 2132ED6BB290718E77492CADF518EEAA /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; - 215BA62B612524467633014B1E139B0D /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - 217EC25650E42C36B58D098A7BE98C37 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 215087140A560782E3D4183A4ACC10C2 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 216893CFBF0D3469A9E59DD22589ECA6 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; 219BAC5E878DD89ED1E40A58350D5474 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - 21A88474A311493C0251BB4E0C560C13 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + 21A17FEC35C795A42DD06D5E212C1DA9 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + 21C4DFD1278075E0235297783391EC0B /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + 21C76485E7EAEA78DB78AC4C425CAA0C /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; 21DD77BC4C9F446030612C2B4AB20317 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; 21E202A7C5AD705849C005996A458957 /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; - 21F7F0D642A4BE155F53A6D1027A76FB /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 21FE77054F9C254ACCD4B873EF82A437 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + 21E66246E2002B85194EEACF48230410 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + 21E9E7E8DAF0F91B6323AF172D8BB02D /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; 222A34B911FF9FCFF752C596AE492C54 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 222E3933ED98940FBF6250CAF9E69A01 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - 22320F19C8575F89296DDEDC8687B2D4 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 222BB3AB878D6D9C701CF7B0DF973ED8 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 222E72EEED1911A995052E5BF33D45B0 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; 2238DF0F9A33FE9E1C8F07154BC375B0 /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - 2263F17BAE0AB4165F7B27DB8998D0EB /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; - 226C067E41BA7EAEDA042F0161EBF418 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - 226FCB055213BA46EF8147CC03F0313B /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - 22D87ACD98A2F3752AA6A407B7C2F789 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 228BC5BCE6BEC2ACC9A23542C259CF7F /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 229B69F7A2BA93AE5530A6099A73B0BD /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 22B0E2535684B7CC51D81DE7C573FDC8 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + 22C109EEADD4F8B96EE22C868CE3C14A /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + 22D777A08F9ECF58B5FBC7A5B8F6F98A /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 22EE5AF94F841B64FF2A89BC1DEB0721 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; 22EEF06C78D16BA53279CA421CEED4B7 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; - 22F389B285F0B865DEAD7629FED2F9AC /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 232B00A456185E68EA56676298BEEC30 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 23566E6F78D76EF7DB7F33316861017C /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; 236BD84A3D7A0BCA0879CEFAA83975BA /* GDTEventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventDataObject.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventDataObject.h; sourceTree = ""; }; - 236C579C9D265168EDE8DB0F896CBBAA /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; - 23754EA75C4611DD841F9D526A5FE05D /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - 237B12B1A4532AE980B5562F14F00BD3 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 23911734DE7C1D39EC583D4B98597944 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - 23CED23C3BC4B8F1C25E48EA10AE1A89 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 239227450F1F8CBF02753D7FF58066D8 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 23C4A6060F80E34DD9B50B2DFE0C9BF2 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 23E2E604813E0A83C42F4CDDFD52CD96 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; 23EECA421B7288F614E7ABE957561AC3 /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; 23EFDD9E4FD7AF73F60CA08A78677637 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; + 24065647A62A3DECE21E112C839B4127 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + 240CE76894A4EBC442349F15E8162B57 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; 241E57CE7B8A8A9A0C30B2F4727E17F5 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 242B18E8C5CE1CDEE3BF9A0CCB1AC607 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 243C7E6E9AAD9EA0A3101707AE96006D /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - 245A235B6534FDB96D4BB92202CD55D4 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; - 247F1B869B8C5B1B67219E38EFA3D3BE /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 2497D5165EC0A35BD96AD57FC55949E6 /* GDTConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTConsoleLogger.h; path = GoogleDataTransport/GDTLibrary/Public/GDTConsoleLogger.h; sourceTree = ""; }; - 24A2994EDB8FF27036011F13232C65E0 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 24CD51144600B32C8331D79B7265324E /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 250AC3F1C3E28195B86681506026C1B0 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 24AB6FC2865384C38825BC95C65B5813 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + 24E4C2778508D437130213216EDFBCAE /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + 24E9CF082676CAD594449D4A5283465E /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; 250CF8B419B162FB992D8736BE4DBC17 /* 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 = ""; }; + 251B90FB835BD1A6E355999584A8E017 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; 254440D91C3A7ECA89F32B4582B454A5 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - 255B228CCCED6DFCD0C46C088AC3FFCA /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 254D39F8195B37A3224A2EA960FA0D26 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 258615144280F905E5F66A4A8335502A /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 25BF331DB7CC77F578419968BD700F17 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; - 25C61855D9E009FBDE973162823D5B7D /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - 25DBAFC7D6E6CECEE0D8BD212F907826 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 25F03951255FA20CD20B62D3C45CFB53 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 257FAA10FD8901F9CC7B43BBE01C8824 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; + 258B91E715DED0A38A9452BD4B766218 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + 25B45E8A0058E166563607A2FE47ECE8 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; 2626AA8E24B62228D329C312E5C13F1A /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 262A578D9D6A95FA9D2C63A74A12B843 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 26657F01A0E5510FEABAEBCE1DE12D1E /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - 2698D552A903060218AE893510C4D8C1 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 264B5E7D4C00A43280E5A09AFF8A418D /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 265C960F3781EC699D265B371CEBA7C8 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 26C529F93BEAF01BDCF314272A97D5A2 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 27099028B8D9CD2C8368F70BDADC79D9 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 26CAF031053C08A190DF071A82843657 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + 26EED0C32A6841FD93F64269146D86F7 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; 270B61094921448E80F733E74AF42855 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 272EDD435D37F6C2EFA2EC5FB49D400D /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 270CAD43892181D91A753FCCAF11032B /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 27341596529135D5692B7B7327999DD0 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; 273439589765A5A66AC272F5E174994D /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+RoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.h"; sourceTree = ""; }; 27471F34AEEB9F553D525EC2E01F3CE5 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 27549CDB44130D9F80FF997211B4967A /* 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; }; - 2770744B1EE09E021F4D15CF3C5BBF74 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 277399C556AA4B46C25A19AC1B29F616 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 277D35BCCDA3CD69ADA70C694A988723 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 276F0467ADC55652D42C9B8EDF691B7F /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 27F11528898E1C09AC16B648A3466810 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 280F25C6B97C9C0323AD07C0C207CAA9 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + 27AF233C32A5B68544F43556A0B7CB71 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + 27BD052E627B478D6051402BFAC7F93E /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; 281C56FBABFEE9C04A3535E9790A9120 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - 28265B29D617FAAA311A5A948A405705 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - 2860113F8A165287F78B379A7E7735F1 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 28640FE129348D992B19F5FD6192361F /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - 28681FF7EBC6A6EF86791B05CBAFC5BF /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - 2870DD1B6E957DCCFFE20D03678B0CAB /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; - 288BBAC2927744457CBE94EB3C4DD3F2 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - 2896DB1C66C7E0D6CEA401311DFC3CE9 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - 289FDAE476A89BDD5D67514FF6353737 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; - 28A951EB4F09E6AB0FE2D903F6DF0CB5 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; - 28AD009D7AA520A7C1D6D17FD2291045 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; - 28F65205BA8970F406183AF22BD3D344 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + 28544ADDE758E63A19E825585975E26F /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 2891535CE0C5C5D5FD18CE0D197050B2 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 289E33179454D7E3859D7E6A9BB5E1FD /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 28CDC08B6B4BBC47ED4C4C5B83A9988C /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; 28FD7F961165BA72E393450F992F2048 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - 2906DDB1F14278AA23677F8338948411 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; - 29111EDC9067117B4EA9376BF35DDAE2 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - 29296F8F060C36B7C0B8B12AD859654B /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 294EC95DF54C0C9D2047FED005B2E894 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; - 2979D53A359A99A42391A537AE1B5B75 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; - 2980F44EC4FCC6EA8AC5C12779A3544E /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; - 29B0448C6CE80B6F380BA65C5CC4814A /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - 29CA433545EC6BB3C9FD13334F15C7FA /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - 29CF9A5137C788E777B3CFA9D6621816 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 29D36281C1D290C277A09309802E40FD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2904388EE18E71E053600ABF483B1CC9 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2919DFFA117989C2D9E741D42C74A2FB /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 294BA87825E43C860BA3FF3E8C1F7CF9 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 29BAD75CE92E205F1B7146D5AF67383E /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 29C330A7AC446512DCA73AE8F317A6BA /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; 29E6BDF2F5D56B7867030711E63DFE1D /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; - 29FB7BDB0A111B602E396CF36196D450 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - 2A0E90B7D6DE800A18779640EC834AA4 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; - 2A0FB9521830D237F4463109251B0464 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 2A1B9ADB6A8B3779D38717839DA63A33 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 2A1CA7669FE65C9DB40A235FA8026681 /* GDTReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability_Private.h; sourceTree = ""; }; - 2A50F74C42C3DD6B4A9F69B23D3E82AE /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; - 2A67786461370E185AF7874C96314135 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - 2A9288615ACA0BF93301A73914C47FFF /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 2AA3DB01D4A037FAAA90E9701AD29232 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - 2AA78930FB447031AB93AD2299273FD1 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; - 2ABC22E6B64EF62F052874BF99B9EFCD /* 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; }; + 2A261E6DC47FC78C346E476DFA901018 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + 2A2C885A2496AC354FC80C3A218DF410 /* 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; }; + 2A37D6F518A96C60FDAEA4CB5AD111EC /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + 2A8F1BA1DDA2334913E97483188FDB0E /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 2AA46780CEC70D7786498183F37B8B5E /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; 2AD9D6D015FBBB5D23A16236EFDC21EA /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; - 2AECEBE83F3D166D80F0950412E1D8F4 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - 2AFEC36A329F7F411B66663877EE221E /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + 2AF5ACE10E5F64B3AA4D2DEBD41A9A8B /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 2AF7226A7D0B0BED3A80AB543C95186B /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 2B155B4CBA225A01329F11933E3BACFF /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-slider.a"; path = "libreact-native-slider.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2B403A7E880375608506A45DE05EC20B /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; 2B4DE5FDBADC18037B2EFE8D8FF57828 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; 2B591EBDB62B59175625167A78E88D03 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 2BA03DD2917BE1F12B9532EDDE505149 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; + 2B7E25A5F3D83CA32E225BD43B8747E2 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 2BA51A1007797DCC6ADB9381AA484EB2 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 2BAA4B4A8C57845FCA56A74CFFEB1621 /* 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; }; 2BBC2EA548E00A132F008D4552E8CABD /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; - 2BC07A691B5C1F74884E31973463A763 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 2BC5EF86275F965D3421C5818AB69340 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 2C17ABAB606722715420D6708B76E113 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - 2C67C17F481D7F02D7C3463B2411DF5A /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 2C8F6E5BBFA697FF0669A137F6C69EBC /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 2CB8BA9740E480CD8BFB467DB0901F58 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + 2BDB0E86D85831000375A7EC4A0024AD /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 2BFDE11CC8A7D89ECAED75A3463CC42A /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 2C053CC04ECDCD781977B106A7432143 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + 2C17E36E535E6F0C1AE18EA84D85A981 /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + 2C1AB8196BD52F9B393CF60B88CBED5E /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + 2C1BAB8F80E64E97042B59A1AC58DECC /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + 2C1CFB0B5D7CC8DEC9559EE6FECE03EA /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + 2C3B5B33D7B3E48D320C3A06E3B9A455 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 2C412DF6D6AA359967FCC8E3B29F01C2 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 2C7AA6A16D7843F9B9969258D09BDFD6 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + 2C914260E14BFC206DFDEE3734A44F64 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + 2C9AE40190AB3EBC24D73C2F8717CA8C /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 2CCE0A0312367F91E8898886D48805D2 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 2CE8A788BAAD4C7C8CF9143DFD3B9506 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; 2CF2534628CCC7E0CB60511001A24B96 /* GDTStoredEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStoredEvent.m; path = GoogleDataTransport/GDTLibrary/GDTStoredEvent.m; sourceTree = ""; }; + 2CFEBAF532B2306AB0D9D98A93F0BDD4 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 2D04E51B3D9AB1AF4BA1C8CF4B613264 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; 2D1BFEB2857C8000A201EFA5B2A22488 /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; - 2D49C8A04AF309CE5BE94686AF3A1831 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - 2D4D50C9905DD81CF3A3FD3D2B7A8672 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + 2D4B1E99092E36615F101CE0658D0426 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 2D8FD8F174DBC0600594D0ACA475512E /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; + 2D97D708516454AAC9C946326909AB2C /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2DC1EB1095D3E80B97EDC6B974E66CBC /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - 2E014ACDCE6AE8C590470F9FD99628A5 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + 2DBD16FE4BF18987F2ECB83E4922B98E /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 2DCDB7FF91ACEE4C175EC491C6ED0E1C /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 2DDAFCDFD09E406972EDA91F0BFA2077 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 2DE22AECE308A60E233BECAD44F36439 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + 2DE69644D073CA86DB782623084C070F /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; 2E0810763BC65EA4F8EEA770DA72C91F /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 2E136A7DD0501D2920AC6E751907951C /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; - 2E29BD840C7EEDF0C2224CAE90F3EF14 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 2E3F2CC88D9C0D9C761BCBC536541DF3 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; - 2E9C065145AF9F65D3F2ADEC6D33A0BA /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; - 2ECDDCF7A859B3FDDDB907DBDCCDE589 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 2E1D04848A28746CF8F086916F0FF188 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 2E7C00BA69A1BF912A5E0A5119A9DCA0 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 2E985151BC5A1D14982E940CFB852708 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + 2EA5632C7E11DE7B34148BF301EA18B3 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + 2EAC13362D230394D71B6F3EAA1D8491 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 2EE491B9F0B95B8A20B38302F6434248 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - 2EF65FA367DB5F4C1958D5274B4EAB64 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - 2F0027FFFA10DB9DCD0A6F3347CF8702 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - 2F2902D76123CD82980C10B19C6B2894 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; 2F3473B6568C15F43FDFEAEBB5BC8625 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - 2F3869402970ABB5803B20BF44D61D87 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - 2F3DF60D378DE3375BEB8A1BB072B390 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - 2F41EAF7D54D08571323E5F785BD3EEE /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - 2F7B12A799B0F82B2B5B1CC42F4C63CE /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; - 2F7F35B41FAB9FA37A2B5968D68D8838 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - 2FDD8B8A425787F2CDC1466F02017342 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - 2FF4B60E416BC2B631C047F702F4A746 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - 3023C9C83AB3D0B89E41DC5070F26651 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 2F3E17E0CCDE635FF68B7283FD6BAA75 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 2F89729CA148D97F54A212DF19E375D3 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + 2FB3372EB8247BC640B24FF491917B03 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 302504B5F4CBE43404E02F9264F9C6BF /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; 302B8DE670717BA41E14F4F5F4905743 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; + 302E37CD54C3F4A32229F63F22126C7B /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; 3031A7731A02E0B42E97610B692B2468 /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - 30486FCD09C0FB413C2B73A34AB04757 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - 304DA1D0C363EA0FC991F52EC05BAB2C /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 306350DC6B344211A1A7511A3235860D /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; - 3083FD8E4D6460DC8673F63185D156BE /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; - 30905185B2307B24C83D044B5E756944 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - 309BA5AC5996A59987DC5FC2AA555F5F /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 30BB975B57CCC177196223E03CF5753F /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 30DD51C39F8D20A1631E4174BC225270 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + 3062E4633098D6C28215AB25C0E5F2AB /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 30C1742AE22CCE53FAE08FFBF0D3F9E3 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; 30EA317F2FE8EB6FA84DCD6525D08D40 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - 30ED0B77780D8EE9E497B0F89B035B5F /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; - 30F18E9133C9EE4A81CFD2687ACBCD7C /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + 30F16B599AF32757BBF394ECCF64BDD8 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; 3106BC87F2CAE5827507F197753E8093 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; 310B5509506DB448A66995284AA9A9CF /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; + 3137B0446693BB23F7A1A2CB88F11B2D /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; 313C94AD1D24DABED4DACECE329E5171 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 31603209831682D8D8E385789AD81326 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; - 3160870786078A4A7F5F633B5D8BD57B /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 31A1E826694B6213C448735FA7D15E1F /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; - 31AE9C83361780E6B38F68149BE8ED27 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 314047BB0B970D4EBAD862DE50898BF6 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 3195AB95D70C5E65B55CF799C8C31B41 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 31A0819CE730668349638D7ACDDFA74B /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; 31D6386A910752DB6206410DE1299650 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 31DA2DEAFF7CA55FF764092648AD9567 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - 31EFC03F02EFC58D84B8AE95618C2233 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + 3203079066E7FCC33FC1DD60C01A38A6 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 321A3EB0FB64C5D2F763BBDD94BE0F90 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 32272DA9DC56D2252137E11DFDD0517C /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 3227B4916513844D43733B4A452ABCE2 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; 323084A9C7E3739A9C9108ABE90C5364 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - 325884761AB5F277A663E791EA9E1138 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; 326F4393F9730A5FCBBD861903F4E98C /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; 32AC64561B534482CCA37BB93EC068B7 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 32BB45A38D44180DD5E2F32738B46DD3 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - 32BF160962D90FD91E0B0D279057FEB2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 333C8FCC3D51249171A72DCE9A5EEE18 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 32AFA2D3EFECF32CC9AADB24226A3B73 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; + 32BDC2A1CFE79FF6124482ABDEA6F705 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + 32D2268A5D462DFB4C6F2459EAFDD6BB /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + 32ECFD56D4C15CD002B0CDFB5E599B13 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; + 33083449842A3D535CFD8872E4DD77F8 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + 3362B1E98540EE7878B5FAED2A9FBD1E /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 336D45C35F2EC445F9ED02E3142446F0 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; 338364BF8659B692A5C38072A7EEDC55 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 338D816078F73FF9542DDDBAED875FC2 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - 33B4AB78B50EFBF505827F11EE524DDA /* 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; }; - 33CCB852DAE0F4F830E760AA67856FEA /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; - 33EC0E5B8B9ADDB4838EADB7A50AE5A1 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; - 3406114BB84016C3BF3C6DD7AEF5D054 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 3421F26D424268F958AC092714AE40E4 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + 33A6EBDF50F21E6881419963C4BE04A5 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; + 33C3959E5BA1CD9C1C26809B1E202225 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + 33DA9299DFA80FDAB63C5678B0DBC6BD /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 34015CA38BB5BA35EFAF66406D6EB08E /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + 34392FE0FAF6B26AA1A5D0D334E0B009 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; 343CB5CAE5DB1DC31FE3E8AA6F13485D /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 343F28199569171A7F9EEA6E15511B0B /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; - 349385909EB01687258684FD4D22D127 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 3482CBFA3D85576FFEB8AC575C1468C7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 349D2D31BB70D54765B7F471065C958E /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; 34BF1241D53E178690864E349AD0D6CB /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - 34D3BA6E5E4F5BB82DBB4FE14B8AC264 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - 351675B33C756AF5361F3A72F375E758 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 35135DE07FA8F772CD7B17D5966C81F2 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 351492E3C14B88EF2F44583F4F1097A5 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; 353D6BB05EF772EEB577A534B8E2C1EB /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 354570A9B75704AAC869CD4A66F043E9 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 3577E0616DA660D725D6546620A9D780 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 35507195B669932A80E9BC3CC8A78C3B /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 357EE4430484C005819F04B685F87230 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; 357F2F1FC1E767EE78BF6EED5BD212E3 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; - 358BD7B832116AF70901ECA85F519623 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; 358C919544CAD4E88269535A33E18FBE /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; + 3590D43479C716D7A9556447867485FF /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 35BD743B7EC13A647309F11CDE0BF4B3 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + 35CEE6892322D48927C3ECC84DC8438C /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 35D80F066681376DC133CD76AB2A21EB /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 35F1D4307439ED1F6D8A7522E6ED147B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 3600E8FD97B8F09E8E346C5FA16D9774 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - 361BA81519E68DE00DC1EE1C2CA4F5AF /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; - 361F842C0A5EF8D666D840B6B25D594F /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 3621EF4F476C845F377BC235A6C838CD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 364E6BE95C52B8F35A7E3803788CEBDB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 362771703094659B197B85BCFDFC20AF /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3653B913D7CA70CA4C51EC4C9CA27F3A /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; 366329A40E8A1E715FE041B79A1E789B /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; - 3693EA1280CB5A156C4A5F602F068CB9 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + 3670E524463206499BB086DC52038A62 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + 3673646FE076F3F585CC9C312B99D021 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 36769BAED6E76E3E195F3B0E0D4B6A88 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; 36980163009EA4BB2A710FDB6500AE39 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 36999B1C693A37D0A3DF3636859D8874 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; 369C36A413EA1CD682B6C7998A87C369 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - 369CB7A25D42618BA1B87244F710DAAE /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; - 36A3EF72729A0AE82B9E51807A201E88 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - 36B0485A129186415B58A6B07016DAB9 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; - 36B4707E6C2B2E5939A8D58E98A7930E /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 36EA2990DB0BEF0EBFC83DF98C1FD56A /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; - 37033FA3AC8B8C8B77DDF486CC951EA6 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; + 36D528F38BAA0FDC768332E41BF77B55 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 370566C6368842C067A3BE398371EF68 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; 3751758E274BD3C87E1AAE2DE4C1B366 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 376ECD23699FC3A77877C59FAF661064 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 3786DC3F685C9387F570BEF33D84FDBA /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; 37911D6525A8CE75A5166F52B23B3851 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + 379BA6AEA045508F8CC03B6CD8FE31E5 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 37A4470DB7E5D6A62D784504743D0D14 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; 37A87692EC0A3E0DAF1F246BF8094715 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 37AA33A165E8A21BDAF2AA4E1482AD12 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 37ACBA7F8BB60C087B592CF49B2BDCBF /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 37E9F851FAD48A36030E29145906CAB0 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - 382DE283EE37D981E9C8F0FD22CCFA48 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 37EA7BC2C3DE6B10FCEBC3CE17342E4D /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 38306BBBC3C64D7DF03BEC71BC608DBF /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; - 386D96C4A5C67BB0C24B8E6238C2268B /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; - 388EC556317ED0A5D2EB3EAE9B62567A /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; 38A4FA5B11D3DBFA1186FAB230AC87CA /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; 38B418D43F61C1B419AB3F337FC541B6 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = Firebase/Core/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 38B977DE9FFF08C295B61F356F4DEB68 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - 38FA3FE49F8B797FECF2B05366D47C3A /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - 38FCC55495F3D29D189C63059801F701 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; - 39524F3CF000F1C3772A2EB4FB6EE525 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; - 395979489ACBA344F3B2C903E6230E32 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 395C8CCD6F5671524B172C22324D82EE /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 38BDE49EBDF3B0498562F79B151051CB /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 391A024B4AF1CBDB1B929B84AFA72DA0 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 391EF556A6DC25D83E9E837BC9F4FCA6 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + 392E52760A362EB0A97D3E6EFB27B76E /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; 3966AA9F1E79E5A7F4EBC038DB4558B6 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 3972A87C0C31E6D865566FB1C97594D7 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 39AD9D7041B853DF12888ADCD3801AEC /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + 398EE049FC6B737F72F29FC61E7A0601 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; 39B20C33D2A8CC7A30CD500AEC10C4EA /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; 39DC876762D2607F9452231B276AA8AD /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - 3A0DF83220F1B3829DBA4156BBB386E7 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - 3A1B67C83BAF844E6860075F41D052A4 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - 3A1BABD4B412A0953C577E058336334A /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 3A35B3C486393401E3F04F277F938938 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 3A9671D357015F3C5567606DF3014E76 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 39F41E2631CD47BEEE466A1AA7D8B992 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; + 39FB342F2915CE4D0C45B748FB848277 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; + 39FE672E234A0F2B4D3D2F49800483F2 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 3A0CC1E09FDEEDB50EA52B13CB949F5E /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 3A8786AC01810ABD6981FF8F09682DAF /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; 3A9FE38B282E70BB60453725831AC9FB /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - 3AA1B19BB56ADF960DF7D344F78BA8A5 /* 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; }; - 3AB2D10B5EA5FBAB4565B783C80C9A12 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 3AB044C3B7717953322047E450A71A45 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 3AB86A467AD7828E4F2E55DA0BBDAD3A /* GDTTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTargets.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTargets.h; sourceTree = ""; }; - 3AC31182A2D26CD330A9E68DDF5CAF70 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 3AE900AA535F0A0D529C23A0FB77C1D0 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3AF5E0FDB28083ECE7863DC7831470AA /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; 3B086A0ED5925BD59CEF6134AF11EEB4 /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; - 3B33802F7D7B84AA0626D079F70601A1 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 3B38F45AC5E85864AA2C7BD66B068E17 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3B6E180F517D3B5E97B2822EB303FCEE /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 3B7A4EBD7C821FECB435586412D39FCE /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; - 3BEF46DC557E56530FC987ADAAF32C09 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - 3C0D37E1B7CD8A752787DF9DE90D01E9 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 3B7D656B7E53C426674B3FA4433A48F4 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + 3B8AEB36141E644A76869011D140597E /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 3B90DF08CDA37A586424E392B137748C /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 3B97FDE91A40943543AD4C4635C7A3C3 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; 3C1BC541497F9D69CFB6FF7A5F1D16E5 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; 3C2A85A735F523B7B67CE1ED2DFDF5D8 /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - 3C8477FA3C58F5FB16CB4531DC9DDD56 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; - 3C936AB33DF656FAF2C5EAB8138CA869 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 3C48EE00491A8A4B8EEFA84F944F86A4 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 3C94089E22CE7D7B4F7A353EDD64A4CA /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 3CA50793B08D058C4A9FFBF3CFCC8CD0 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CC7A3F5A971D81FA783C0205E1D4005 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 3CCA71000CC3B0C0CF5C98C7BAAFA706 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - 3CCAF055E529752847C75826F77E9416 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - 3CEF4AFFEF71DC700182A251F237CCCC /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - 3D0C5CD61A7E538AAC42D172FDE227FD /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + 3CB3D8D0C1C5A6A650DAE7E59E04DEDC /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + 3CB5D4AE81D2072000C6007CDF99AA4A /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 3CC310ACD5DBE33D3108FF1205BEDB15 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 3CD171160074C2608374F363B5834168 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 3D1A278B5D9E61566522B152532F1034 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; 3D30A9F40B2A36F04D29DABB3C01B945 /* GDTUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadCoordinator.m; path = GoogleDataTransport/GDTLibrary/GDTUploadCoordinator.m; sourceTree = ""; }; - 3D4ACA40E9618BFDDDAB6169A365CC8D /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 3D6430F396C6EBB6638714FBB10315CA /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 3DC0503DB47829A176423B81E76574DC /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 3D6971B0E12F518CC9290AD6EF122EF7 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 3D6B737432CBA54A89E0AEFA22DF0FBF /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; + 3DB7D908BC246E9CEF24903471EDFFE4 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + 3DBE8B3D33D9F8CA62CB8F84B9CFD370 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DFC4B8E6E0E43682B3D1525E51D6D97 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; 3DFF4DA664C9CAA3AE8F80888BBEE863 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 3E13F2680B890F89ED3CAA5AB74573C4 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 3E37DEA736B7624538DEF328612A34EE /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; - 3E41231EFA93F8A6858FD06F87921644 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - 3E4D000D9915C53B5FCAF941E7972F69 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 3E3926FB7983526101E6FA1CAE59830C /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; 3E84014E280F5F6717F909372864D169 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - 3E92E96817582040994DF0D989214349 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3E9F56F343F2173D1A070E0EAE2A6A4E /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 3EB6DE0D9A1824EE199A41E34D2D0573 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + 3EA5866DCD3136661203018625FF4331 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 3ED407286D3EF4CCC9D9A30176A89B2B /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3EFE1A74567BB328FDAE023C043DA3D3 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; - 3F3A9076F8739B41CB2EE0FF58531B01 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 3F02258C3025220FE4B1B6D0B34DB477 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; + 3F12B9FF4727F1E046CCC81B567800DA /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; 3F3E48665DAFDDB3F7A5623962507725 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; 3F45975E2E2B867B4476E71F8FF0F6EC /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - 3F5EBF7213FCCDFDD47D7D283E3789CB /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - 3F6CC27D06C2F4E622045B5742E243A4 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - 3F803860EF7A3F44AC49B7C8BF0B7264 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 3F83D90C0F4DB00C007D20D4EC47E4C0 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 3F8AAAFDC375A850D80E66702DD4BF52 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; - 3FA1D4486566CBD662DF2E1BA3D046B8 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; - 3FCD506D4980CB5795E9063F3B3B82A4 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 3F74E6C1B371D11676E56E1E56343C6F /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + 3F8B0F84983E057E85E61BE1578A994E /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; 3FDBF5EADD2E3AD2936BAD2E5FBA95D0 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; - 3FEE8F6E31EAE99F618E0E353B1E2DBF /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 4009C1F0F5E09AED73CBD13150E7352D /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; 400C4C1D16088D9B17F94F449FD66EEC /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 4047D0C13164557A75A75548DC31B4AB /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - 405CD50CB99B3F8DFEC76511A7B8A317 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 405EA870C2BB4F89E5D6CD159F4CFA9E /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + 4017661D8F5B0682D15202454DA35C9D /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 40178512F5E8FD6AA27D2F87DA2D04D8 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 406385383204B2936DA6EBE77C582A39 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 406CD355AB6F9E4DC62563E186D3F918 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; 407248094230C4CB540340AFC5FDF3B3 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; - 40D5ACF5208F52A2EC8E91E5268F9CCE /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - 40F7FEF0E1BF9BFF10FAEC98C231FD26 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; - 40FB509BD16F952D8AB9647DE0C7E000 /* 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; }; - 414C5BD92F1BAAE19A219BC6610A5C77 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 408F22F3F444319857776C2C7864AF7A /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 40B2931C67BF7582A73B702E4DC7B510 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 40C2D09AB3F7E78DEEC2F574DCBA8DA1 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + 40D46DDA157EBD324FC6343D6E49BE4D /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 41117C91F10139C28634BBC4671C93AB /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + 41564D8B06983A5341533D5BA4D59D16 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 4179534C459643FB4412416844CC4852 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; 417D73313E1EBA932B71E1DD4ED1E357 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 4247D0FCFC11B26EB8C2B41054DABBDC /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + 41B32C718B311430215CF7605174A6DC /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + 41B4146A68990B2CAB99DEB452A254F0 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + 41E382CEB69582D5A3E1D1145FB53E2E /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 421749BA2F7571D99D820BC166D7C111 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 42652246EB8597BAB9ED797AFDB29830 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; 4285516BB63AD69A2F0BEDB2C5506374 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - 4299726BEA3130042018922655CEAB31 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; 42AF09E5E83635479F79553B7BC9BB92 /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - 42DF9032CA32383CC1CF121CF6BEF124 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; 42EE7E5F427054E1DC3D903A71DF485E /* GDTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploader.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploader.h; sourceTree = ""; }; - 43003C63AB6D53D8F0C724F05E07DBBF /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - 4375BD13925DDD566F3381489293DE18 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + 42F513FE353D63FC8714B2577677A819 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 43064E4BC1C1B15656FDBA53FB093DCC /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 4321D8DDAC0A5C536A86694B7C0B4F9E /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 4375ACCE1A55127C013DC61A09C35CB3 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 4376097CE1A7C16E9D6C0633029DB2CC /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 438397C293ADBF8CC042C10E1F2B29E7 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 43B50A48787EFE739696CE3942E1FEF6 /* 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; }; + 43C93FA1DD9321D910CD997E66BC84B7 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; 43DBD59E9011A4508B947E00654A82BF /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 43E94BA0660B13CFD23C2EF1EEF9BB88 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + 43E90BFCAC2CCA2B39AFA188E4C7C2A8 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + 43EE7C13715C24845916FB3DB7EF7B1A /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; 44049E08C2816776C227F1102380AA46 /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - 441A7D7E0BA21052E87E4AE003FC4562 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - 441D04F5C96E5CD130B6D300779AF435 /* 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; }; - 444142B1C689CED6755F59CE2C7CC1E4 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; - 444FAA0588008314F1EDA1458D4351C1 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - 445ECA9E6B1D54EE4EF38089336C8C17 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 441753624243B270BFBEB0C27AD71C50 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 4465E9E8D02F3CEEE80D33E736D98665 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 44AB2B396BB3B4317F6BDD93D2B92941 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; - 4518AAEDC4391458D6489E7697479069 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 451C703CE7E8AC15E9472E9F32558A11 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 45202BBAAEAF335F1FB60BBFC69380C2 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 449960A6C936728969A3FAC54D3AE584 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 449D8E55B20ABB9E090F330423D7A6DF /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + 44BBF9EF1FB11C0E45E60F790B280FA8 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 45153428D47F26ED4C633C5D69AE6175 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; 452318FDD594B5923B177B4FD6115A90 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; + 453BFBFF505B9D71BDE641972519C1CD /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 453DDF07237BD816BB5931DE332C50DA /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; 4556E026447A016363B5E448CCAC7EAC /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 455FAD484583221C129C0EBC0EA0384D /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - 456084F44DAA789CB020F8A2FD5DA431 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - 458E90426F582931D4E93F24EB75E6A3 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - 459D354B128A5B3FD0717608572663F7 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 45B1E5153BFC16DE9111B4152514C7A2 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - 45B38EB267EC8DC49342BD5DF77B29E3 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 45DF188108DEEED5638FCF676355F54E /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 460E788B26005F112CA7C460BBB151AD /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; 463FBAE4CC12986BA5E6A2BF56A0D785 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; - 46AFF8864BD2A72064697C0A599996A6 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 466981B0F2B17C3B1AA31B8F0306798B /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 46ACE3213293642B56CCF42F0E434F07 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + 46AF21F851A2C82B2BEC5949ECD6817B /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; 46B502B21F8455A7A211D7FB38182741 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; 46B9E8FDC0BB235B05F6736A33FD68B8 /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; - 46D4934D3AAAE6360F30A28A577FAA70 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + 46BA8FC4DB05E336592DAE5481E5D58A /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + 46C1F617267D2EA2A1D6C2F63B41BD65 /* 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; }; + 46D3022953A6C8DDD7E8E48D01BF7CD2 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 4726D6A350DD59E705BBDBE02E6F1C4D /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + 4739DFACCC07C40C8C953D2127D2B057 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 473AE24D3E8882A18AA205365D6D55BF /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; 479B38160D59438D69CC69BD7C3FCCB2 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = Firebase/Core/Private/FIRLibrary.h; sourceTree = ""; }; + 47B932A1E353FC65AD3F13D732A9DBD6 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; 47F13B34B5F0D50BE1C2DECA8367236B /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; - 481152DCF8381BB81B4CB5E318542A6A /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 481B13E2DFA8CE66FC4D3575DC863D3D /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; 48425DA2F01D82A20786D5E55E264A29 /* 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; }; - 484F116868006BD6B32BDC972A8A5370 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; - 48609FC6A9DB5548BDEC23FCA011708E /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 486937403C032E7E7D7AC3549ADD9FF9 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 4846E1686CC5A723183D3628D1403B61 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; 487A7C585227E41DAC704B8715A93237 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; 489E83582CEC6E57822FE6F259E47CE1 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 48B9ADB111EAAA20CF02AC1AC415BD12 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; - 48D13CE06914C02A51CA1D66E14B9F40 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 48A0AADB2A4FA5488B3B5199F7C8EEBF /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 48AC1E9CAAD52CBAE99B50BAD754F84A /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 48B24A4F04BD786E652F6B1B34DE094A /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 48E62AAA99323AAF6FC8A4C5D988DBDB /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; - 48E66962C9572CC3ABCEC3D5589A4D7E /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 48FBA35354D453E0846D12030AD72533 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; 492152604E4FD300199AC37801C7C124 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 49255696C1CCEA1E1242C663239CCB89 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - 49348BFD9292A3FF67B1B65C396AB7EB /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - 494D7C6BB2849CCECF2A7719596A60E9 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - 498A4FF6CFAD1B94EF7A4801EFEB3957 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 4973755A5C8153712ECB14D21BA02D68 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 49A2D404AC4D74C64E1A8085D9DE3117 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; + 49A5C8ECB83FF0304DCCF72970E2ED09 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; + 49C2A18A615ABAF44FA09A754BA7DD22 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 49CD23BE81224DB8D95529CC8205EBAA /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; + 49D61BB85BAC2312EC6A84C93F5A2CB8 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; 49D8B4ECBCC3CC3CCA6C5A1B97D266F7 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - 49FCA9266B011C55C9974E9B7F4FE352 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 4A0A48F2D1FD4AC2E2748195E43184AF /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; 4A101D6AA53CF88031BB16C9B3E7F9D6 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 4A49957A6E59C86F1A4F1583FB7FD8F4 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - 4A570D229F7770410099A7C1A9BF2CC0 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 4A5EEF4D9C31B72D39D28A48FC1DC2F5 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - 4A8BBA527E457F35F8E46F2F14F20039 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4A68269623B19233944EB5E4EB7A1DD0 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + 4A7CDB360BB0FD9721CC760A160197E7 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; 4A935CACAB35FE24F3C981E8C4A6A26C /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - 4AB9E9CA09E9781500458F00D906FB44 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4AC37404E19DE4B79D6A09FB3B4D274C /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; - 4AC9061FCE8499561BD404D6B45FAAC0 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; - 4AE285F585889CD45B47600280D33AB4 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + 4A93C7E6682A14BEFB0352C4A3CFEC87 /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4AE21D1F9329F6DF829E93F254C78685 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; 4AF26D3C24076E62CEE06B987C6D1D6F /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; 4B18AB04CABC858BF04C827C6B5470F5 /* FIRInstanceIDKeyPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPair.h; path = Firebase/InstanceID/FIRInstanceIDKeyPair.h; sourceTree = ""; }; - 4B1F199CCF5EDA47DFCC987B9A28801E /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - 4B21B0CE90EC97B3E7396A49F2FD743B /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; 4B2AFFB16527B8EBEC2327785BCE1654 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 4B56838A8EB055CC8F57F87833A58B50 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - 4BBFBE789BEF0674A3F1A44F89494557 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - 4BE8419B1C58F525F98D342793DF0787 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4BEAE0D1B153AF1E495632C5F9B28B59 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; - 4BEDC16EA249B3BA4903141B600E8AD4 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - 4C0AEECE68F91F9D53BF643359BA6740 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 4C0DEA996540B56EC22001BD80BF8094 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 4B32571BC38D836A16A0BB4F1DDE12C1 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 4B3C55887BB13263D09E361B415DB333 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4B463DBFE41C24BF5FCE50CF65E6A3DC /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 4B5AEF206802446F75201C8F0EF06A1A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4B6B3289F56C937FDA8C432D6F5B4B9E /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 4B7BE3A6DE33BC60B85F162748EE3ECD /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 4B90B45428596392B758EBB8172173C2 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 4B937D46CDC5241DE90CEAC1441A346E /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + 4BD54D115AC4D04723C9A914B5A09BBD /* 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; }; + 4BE68AF46DA008A28F8E6F06BCF21779 /* 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; }; + 4BF54A24D19FC6D0F35C0A4A592DC31B /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 4C1BF582D5CF57769176D237A441CF48 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + 4C2F89B03C226CDEEE59F1012D188651 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 4C4C342770D787159225FE9960204DBE /* UIColor+HexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+HexString.m"; path = "SDWebImage/Private/UIColor+HexString.m"; sourceTree = ""; }; - 4C62A883CE89818A80C430CA55152373 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 4C648EE5AAA2B5DF6168714E9EFEBB57 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 4CBAE850177822CAAF0B0484BB32822C /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 4CBD5251F075596E6EFD5A97D4DC0209 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - 4CC1D16019A96C865667CB57CCF23519 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 4CD830FC15460173E593D0931A1CFE15 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + 4C54199B51007F1E812208D8DE3387CD /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 4C586BC0DF66C36E1AABB8413CA6512F /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 4C77A66171B0F52A43427229A0D2F80F /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + 4C9C39623A46A8D8A570BCC7F55A69C6 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 4C9DDBACF725C8DF01B6EF485940BFA4 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 4CBDEF8F1A47C67AEB2B155630AF019C /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + 4CE3AED541AF574BD1A791A61A149110 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 4CFDF61A090051FCE603DE9E0332AFAC /* GDTTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer.h; sourceTree = ""; }; + 4D065F44C3FCA0A13F1C0E8FA5FBDB71 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; + 4D0671E55285B4D24FE81A73F840E8C7 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 4D22BB927D67620FDAACAD659A22B72D /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; 4D280BD85D66E4E6F08E9D7AF3638731 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = Firebase/Core/Private/FIRBundleUtil.h; sourceTree = ""; }; + 4D3642C76C7142649802EF585F7C52D8 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; 4D420AC726A223105A3A66DD59C7E9A6 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 4D4EAD8BE22D1A60AEC57B78752F6185 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; 4D6BDAF7F393697F29CD3C449B02F883 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - 4DEF529BBE88D3B9077D0B51680BC17C /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 4D7ADE2250A60420B8F1966F40B91BCF /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 4D8A8570768D18EC6AD9A98D3769B00F /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 4D8DE40890B03993214743DE35B6BD58 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; 4DFBB6DEF544E77BA121C1D1031EC0DF /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; 4E01B3FF47FD4437F8126BA499140720 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + 4E07ED57ED920D977BD81B3CBD8D42FA /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 4E08927F1B4152793720308645B87189 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + 4E3FB1287667DDC194E4D8E21DD0BAE1 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + 4E3FBD127ED49BAF37B1EC06723A345E /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; 4E5ACC036BB30F9E9969A8E34135F235 /* GDTEventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventTransformer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventTransformer.h; sourceTree = ""; }; - 4E865392D14D7F9AAD27DDB39B8F642E /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - 4E92E29D5A6756A75844E6E90EB02976 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4EDBF66A927B5F8A8DE3756BD792B701 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; - 4EDFFA47C755F73800F680EE4AC433EE /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; - 4F2025517BC8D557FB99809407956CB6 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; + 4EFFBC728DA46B2973369B908F1716CA /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 4F07004F4E99EC50DDC8128E5718F476 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; 4F3FA0B1FB5B9C2F68BBAD227716F23A /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 4F4C6E57AC99298022B09CF2374E728E /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 4F4EF7F276E9C28AFE4C8B18E83D15BB /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; 4F51256112D9CF93FA314D5523249742 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - 4F544C6F4427F61DDF85089E22844A7F /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; - 4F7F3D2B934D43010E5A45CCE146A345 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 4F9990659AA32C3B809F59BA64EFBB47 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 4FA872ECA2364819229F49A28DEE38C2 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; 4FB7AC3B2DAC233057078CA6A102339E /* GDTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTAssert.h; path = GoogleDataTransport/GDTLibrary/Public/GDTAssert.h; sourceTree = ""; }; - 4FC5241CCA8BB67252A090DE9D5C0CA6 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + 4FB98E155E9B39BC732FC65B0AF382CC /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + 4FD55DCA0DD250489F0D0FD30F73B3AB /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; 4FDA96879D96070EB1983E98E655CBDC /* 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; }; - 4FE49070AC3414D65AA9228AB7579A7C /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 4FEADA75A15417B8AAAADA6C46C6DBB7 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - 4FEB90EF485C158605741A8808C02EFF /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 4FE8ECCF1A7DA6B23075F3372ABAC5A2 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + 5070D1CC29D0176C8834ACAF69563FFF /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 5080E1E9F662041ACF60804ACBB04CE3 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 50980AAB9368C75899714BEE65A19973 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 50AAD7CC4F251E199BD4939630F9F528 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; 50B8ABB68528EF52A4BB054EAC5BC865 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 50BD6E199540DDD12A5346256325AC64 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; 50C7E75DE032D780D996A33E74AA1D42 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; + 50F1831D0AC780D0347D52C97AC86B78 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + 51344077DBACAF6FC443E8D1D5D1CE8F /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 5139D60632AE33D4BECAD013650BB15B /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 513F5F8991E9989A90D11A4EC14A87AF /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; 514A2F253442115AFA4B6EDDAFFFE085 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; 514F3A9AD50449219C6E0E6AF2186349 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; 51532E710DF75FD878886A5E6C8F1977 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - 517BA8A3ED2645580577976899A3448A /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; - 517E4B852FCF3D05CBE6ACFB7CF0123B /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - 519FDD9A11E683C5E9C8416C35F89D5A /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - 51A5F2C64929287D8852E8AD60EECEA3 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 51A0C4031412087072E81B9C43CD18A1 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51BB9A3334F8058B9CABF455F7363AFE /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 51C0EC44F93E37F2F7956B7F1CF1BD7A /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - 51D8FBC70FC85BD127175A57572F50D1 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 520DD62AD62FC1C83839377841D5519E /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 51E8ACEAEA103C718A8C10D32293AEF2 /* 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; }; + 520596168666727BFEF67125B5710510 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + 520CEBF422EA2532B8E674FC815BDE24 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 521C88E2759E9B2855F905651137C3C6 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + 523AC19F6A6A3FAA6B9C8468EED05F1A /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - 5298D6BD91CA975746993001F4AE1E6E /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - 52C5B614F2C0CF9203952EBBEA501F8B /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; - 52D23EDA5F884C3239B077C15910ECC1 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 528640D7FE2EA01495E9E94ECC43F9BE /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 52AE2804AFFB99408789C12004AD808C /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; 52EA42A6C8276F0CBCB74687737707C3 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; 52FF01E96854D8F37412901CC140380F /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 5300827367CB8363939AF1B14CB87CC7 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 53441B3DCB5B9E117FAFCF7CE71424E0 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - 536F45DD82C94CE6D96EA437C0C21BBB /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - 53D6DDF8F37CA9BCAD772E6D5DA49295 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; - 53FE4C651E52A4B096600F1C4BF1EF94 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 5414AE6DDACD6C4C27220E5FF9C96EE1 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 541875FC146A3D4AF7C305C9CC783C28 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 5361A2510329205326BA29FFE3D2F208 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + 53927500D9DC1655D81F0333D4DCE74A /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 53B83BCA17D88BD5FFDB71FFB4F42D3B /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 5409CC27E1D7E6A8BFA8708EA2D391C0 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 544B62EA9E3FF7693056DAD8F825DABE /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 545098F00CC2DD2595A6C7709C984478 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 549CC56FC99AAB064C41404A60ACDCA7 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; - 5503461EDC3D0BE3934EEE5DA1BB9088 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - 55B2F2858776435BA97A8EB0ABD8287F /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + 54A7499C46BD5BB476EF2A1E4FF6BA25 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + 54E38666EED87DA6C2D2AF27054A6575 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + 54EEA75BABB0472447C17F94D9E6F567 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 54F996004D749A8C4E92E03115DB9971 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + 551309157E1F140AD78CCC739864810C /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; + 551C4E17EB7E93FF7EAD018EEBBBE162 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 5553295AE6D49C6BA686D1E0A7046384 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 556F4CD155ABD3629764F7AFABB657D2 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 558F3A1F827E2A4227105B723DC14BC1 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + 55B03B81844C54B2F42409680420ED0C /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; 55C0E8840659DD2BA9398CCE45C84796 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 562C20F9B0C661B7B7CD7311659AB2E3 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - 5631191D62E5021A68942E823AA434E2 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 55C44DA87EDE4AFD3E53692BCB10D754 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + 55C8FAA62929F7E42A17E3A23E51CCCE /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 55CA4E692BC7BD9A9F71C4BE789286C8 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 55CB8ED6E5E99276F3E2FCBB99A5CA19 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + 55F154F7B21FADAAE48D8A5EF90D8771 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; 56326E64636C5860ADD9D8717D8B8C9B /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - 56507E226A67C4F068E52F755465710B /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; - 56539446BB3AB5B151AB3B63CDFD213C /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; - 565940AB6D57C8F2B22C29AEA65242DC /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 564C16A2CA784571D3210C4B095C2683 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; 567FF870D1397FAA1691FB0CD6CB3562 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - 5694FC989089BDACE6DB56D0A3036311 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 57128606D41041DE0DE7DE6C3FB04801 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - 57264E8B1036FFCCC26FD7A98BC652C4 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + 56B736E929813BD04E3FF23F394B3A85 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + 57368F2086DD6FE94DE31D75C66B6F6B /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 574E7D76BC41B088CC91942C613E7B7E /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 57AF6757550CBA0DA8B885582F80FCBC /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; - 57D32BB2DCB9D84442AFA5534DF2D526 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; - 57D38BD8CA32B091EC53F86C2CB7E8A8 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; - 5801DFFC0C6A59EA34122FA75E352C62 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 576A3C54BF9B2F039E680D2B94139C6E /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 57A797186849ECFB74F87D1A6D679040 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 57AECC27F567DD3DF4C93EB41CFC289E /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5807EB6D92C08024B83553174ACA5DD1 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - 585FC8608495994937895B8A2591307F /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 588755B3754A6DB230AE8F9E6402F292 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 589776A89332278D423D6755E1271325 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 5874B2F6DA9A577BFC6A5D16E5A4CAB4 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; + 58974D4D725EC1A4B787E7889D894B95 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 58C1F1702169DF372D6719CB18B37FE6 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; - 58C6DDEA9DA8FAA71B8F5563B3C8BAE3 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - 58CF79F99A87A127F56E24875D1F96BF /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 590A991CA39320D61338A86CD16B61E4 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; - 5915477795932526EEFC89FBEA7B82AC /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - 5920DE566BC7258D40EEFD900C8AF8A0 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 58EF93B049742B7FB0AB00B73E81BD47 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; 593434FB0205C22E5A950A80442758C9 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - 5986E69905D8ABC7C1508DA89704548B /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - 5990557900A945AC96315DA636E0AA47 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - 59D02771C01E48498F859538F8184216 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; - 59D7B48D028CE1B663314427A679E875 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - 59DD6416FA43F3F675F005EF8FD3F328 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - 59EB8D3B71BF713EDA4402769F375825 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 5A1E231B5D85FFD8717EAF9D9C711B2A /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - 5A479634950702320BDA8537F995EFD0 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 5A748EE26C98D9E0EFD4F248FC2C8D02 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; - 5A91CA6D6022705DA88BF6B6A1C7879A /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 5AADB8C895E14A4EA0A6240AEE3AB200 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + 593D9447ABE229F0F932A3C3E67CA0B5 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 59430B683315F2ABC59266E84F8E18A3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5948590484661ED346810957D895644F /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; + 59600445D29019B4CCD9DB295FA77D45 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 5976BB582FC1B576A8E541CD9CF1247E /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 59956243013DCFA9A85894DE86ACB589 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 59BAF3A23CAA66E951CAF91ECA82D36E /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 59C5D3D4BAB635C84E35AE51D051C7F5 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 5A17509973FD1326B45C36373AF7A1B8 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; + 5AB0E53DCFD78A74897FBCDF72CEA817 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5AC3610A19BBC0F2EACD04CBA96AE998 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - 5AD45FCA84FB2434143E5D1850C67D1C /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; - 5AFAD101DE817A8C09E6DCDB6C006CB5 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; - 5B0CD88C65A8CB1C23C2AEB4992F49E0 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; 5B2535034DE2FFF715358C483D50EC8C /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; 5B3821D4D649D9795E1609C4D166AE59 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - 5B40E769968DD2143FE155AD49707E9F /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 5B4D64374C7E6A0B63625C1CDC038AF1 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 5B6173C9FF424C99E39122BE128ED09B /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; + 5B48917E09F92A52C67B660D9FA644D7 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 5B5EF6B4894DC78CBF6D44A1AB93091B /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; 5BB41289CA45FAD1326154C61667467B /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 5C19055FA15FDF3D592E684CADBB0FA2 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - 5C4D4504A5E0169EEA9E1BD9EEE809BB /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 5BB54D1729F8F16A934E77D5B4B9D643 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 5C01F4B19B6A1A3774F2B63B6832C793 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + 5C0A244BB6D03816A12C9643F95C5777 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5C56DBC1C1527639250735A3D334D465 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; 5C698118A106815F6AB507E9C315C27E /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; - 5CA8F1A20B87DBB263F925DD7FE29947 /* 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; }; 5CD44221A26E3F51CDD22BABCB58B202 /* FIRCoreDiagnosticsDateFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsDateFileStorage.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.h; sourceTree = ""; }; - 5CEE7A85BBF78894CD063886D710B60C /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; - 5CEF007F87D815FF9DDAF8260B117C81 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; - 5CF132F48B2B8B5875B871C7C5A28249 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; - 5D376DCB0CBDF7412C0B00C8968B66E3 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 5CEBD833E7C29EE188089973C078FB8A /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 5CF2C83A24C569BB24ADED4DFC7EBF61 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + 5D221ABF0773197F72042B933F72EFA3 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 5D3129CD842094158C6171DB963DE8C2 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; 5D46682E47471017D25EE31D4CD7C097 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 5D49F55D4CD4364E4649FFB0945D8B85 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 5D4839FD80055F0C6950231B58B46EEB /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 5D622E70BFE4596FFAEA5CF31E9934C6 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; + 5D69B7ABE2DBC0A78DC962D27E4EDF17 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; 5DA2D4D1364530875FFC9C34F5E9DFCE /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 5DD39E122714ACA80347AE0123C2496B /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - 5DFDDA9B1A315696FB654E1F37F4A0A5 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; + 5DAEE5347F791D316AFE66FAA3FFF311 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + 5DC9D1C270941A5E3230DED269BC7D5C /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + 5DE60479DDCF059AD1F97AEF0AF8D1DA /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + 5E05FEA913695F2BCA3940A68272DAE9 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; 5E2A92E98E8DBDA927A8118442EA22BB /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; + 5E2F75CCFA4725EE9D410580E837D823 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E4A2E27DC374E4005C34F5376DAEBC0 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - 5E4C192890231485B12830210B5D7DE2 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + 5E4BB0067AAC10BE3FF096C81F729231 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 5E56E65AFB8D31A73252F026A0E7F196 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 5E5BDA84D301CF329B44E3FCE9CC0FEF /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; 5E7B62E6910F30CA5877D34DC7AA5887 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; - 5E915B2F24C81B9195A87F6E9D1A0778 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; 5EAE9AC10C7125CB916DA112DF625F6C /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - 5ED2602F1EF06CF5A9D27031D2DD580A /* 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; }; - 5EECAA76F5023729BF7A8A99CFF1F073 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; - 5F0FB6B1D273917FA9C0F1B70ECFCB3F /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 5F172B9DBE8D23302C6B8A44AE928388 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - 5F3001C57F8CC737DBD4A431068E0CC5 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 5FF6908128D9BDCF36D9E9E2CBC0256D /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - 600CDEED2BE217BF314CB38BE1A0B171 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - 60133F456FF78804F9AEE4D2C3B11678 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - 604A3C8D67086E9A3ECCB0B7BF40E782 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - 606613496D858DA774ED2305077A99F6 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 6067ECBC099C5610EEA24A21E6891249 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 607B8AECF50CAAFAD4C6F8282C23B37F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 607C651864B81834E926AD131165E5D2 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + 5EB5166BF595DA8635E95DE8A24E84A4 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5ECDC816BB62DE08A42E843F9CAAF3E2 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 5ED72BDDA2E61954E4B0F244A58766C2 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 5EDDF3D2DEA48D4BF148E990ABD5611B /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 5EED0C203780706D41F1A222DBAC2AD9 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 5EF8BA089342CCEB075E7ACFAF247861 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 5F6F32C376A26E04D4D608A0EF649DB1 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + 5F9B41F73DE3A642B7685B934EA65566 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 5FC8F93B70A554F4F421277A6DBBE90E /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 5FDF7BC550BC5054CE7AC008CBA17AF3 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + 5FFBE109A12C58D1B77F06CCD5095525 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 5FFE412BBCB497A02653CCEF6E3B6E83 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + 6022927CBB877F9F4F1956FB8289B89A /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 603517CE0433967A9489AF7139F3570B /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 603941194F777E870D0AC0BE29F18E51 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 604B9E77AF347C8E1577DEFB739855DA /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 6054DB5F045D5F8BD9D721BF98672CA2 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; 609D910B5A8FEB743D2A62CDA193939B /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 60D9920325F1E197245EC5E2DDB3E2C6 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 60E41D6EDC00DE5F7FDFD06E86F1A2C5 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; - 60EEBF389C391162FA269F8E7D3FCB15 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; - 60F5DEBD20C0F278287C5CAE35F3BF74 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 60B66FD3173CE2D9C8DDC3BBDEA29F89 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 60D3B7C0C9BFFC9C91BBD426CBC1BF43 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 60F27F0D9825020A92FCB19B3C1C90EF /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + 60FDD80D6CB21836252E49CED7041D9F /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + 610231597FE89D6C746C21903334B00D /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + 611E604DDA03EB97411EA5C4F7428A67 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; 612EB3CB4B257025F648D62D327C6602 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 615B854A67C7167ECA294B3EA4483A71 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 6155B18D8CF4FB456DC33C47918C8895 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; 617CCEC26BE49CEAB04CC0C3BD375E6C /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 618FEE7E80275A17BCFEA3FD80389667 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - 61BB33DDB089C0F391FE215CEC01FBC2 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; - 61CC90A251F8AF95EFDC9FD2376EB1D0 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 61D68ED0DFDE8178B98F79C56AAF6735 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - 6203E9A58EE92DF8A28EAE1798542BAF /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - 621A33C1A0AB8647038FFB213B6A9135 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - 622C2298B9560A8972BADB00740D62C9 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 6193C4CF848277CEABC0376D78E333C0 /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; + 61BBC7554C8DDB2D24939E02DD216B6B /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + 61DB6721AE305D83B24E136EF4B371B7 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 6231DFB28457E562F707F544065F7430 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; 623D5F4BD01E3D890087793ED0AE50C5 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 6249B422C72D40D5A073CF71C0AA86A2 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - 62C356E403E5757FEBB5F6AC59AF8A36 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + 62478E8291C36E2AE31F0D147E8F7124 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 627934D84A321E70D21A4A2309919B17 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 62ADAC22FFD0463ACD02E37B3CFEFF3D /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; + 62B90B40E38C4E29C3373CDC938D0309 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; 62D58564597AD3FA1680CA444EE3153F /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 62D8299947B104E2F2441F8B8F224296 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - 62E11190F74476BB4254611B685A5685 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; 62E3416996F9DBED8A49ADD5F352C1E1 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 62EC6787AD86A09B5DAECF891CE39554 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; - 62F433C626104248599C9F6319D3C54B /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 62E5EC542ED5433007F855277F236BD0 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; 62F518EAE564CDB7FE22608053F08839 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 637B2905EFCA92F6B6F01A80EC507AF2 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 63AECF618A1E2CB8D3F97014A3D37AB8 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 63CA9D423FCE56F4D01566C1F2DE4FA9 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 63135348BCA88E81210BF2E20DE7230A /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 6341E8525984ADD7C1E022B6761DF55E /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; + 635FA568B7B1A010E7457351BA789F89 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; 63F33ED36C0322764AFBD658D2E32149 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; 63FD78AD9CEFB2DE5FF77E72C8C7A453 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 6441110A52AC72F1F219FFC618E5E4C5 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - 6454BB72AC441E1494905BF8E25039FD /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; 645711EC4391753669A172BC1C7B1F65 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 6467BFC418094BBA82ED699AF2F84AF9 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - 64AB36A81419579DFBE653B56BFDE10B /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - 64C3E12A134EC7FB4105E2FFA8E68E22 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; - 64CBDA488A1F1D418FBD4EAADD1F9647 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 64DE20E29967B6096AD7F97229DB7A6F /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 6497159F3C2792A83DA23AB246A07150 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 64AF8E771E815B62C58FBE8427581AAF /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 64C18F5EC1ECED083D3F569C093B78AA /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 64E3F75CCBF052877127694AF8D51F61 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; 64EBE5F53B6247CF96532AA0FDA3C827 /* GDTUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploadPackage.h; sourceTree = ""; }; - 64F050E38604CBA15A49D6322C1171C6 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - 64F18790A50A2179CC7BE6090135313C /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 64EC8F31F816629DC84D37C40236EB06 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; 64FF2026735EBE214C8F6A877CC5B06F /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; 65270F773D1F907E9E884457D88A1E97 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 65394E91B0674DD8D11B74FFC7530670 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 6539F776FBDC5E175D59AE2A055A008D /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 65513BC7EBF5BE3D92B67A6AB24F90B7 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; - 6562F2DB054F9F4800DEEBF8FFAA8C95 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; - 657929BA048F6BF2E57ADF4C9CD39799 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 6584C61C82381EB1B1004D7753C0212E /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; - 659DA3653F4F72A99996761FA56C4DBC /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 65752C4D6ABB6358E54726DBF9C5EA18 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 657975F7B4BE548D53BA70808D19A6FD /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + 6594216D34B0923DA2F6C563BBC9113E /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 65CE336659A1B0D9B45442103AAED38E /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65D183BDB3EBB6B36FE89D8168848CA3 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; 6608F2F8DDC7A9422458F90A885EA723 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 661D96F33813C29F39EAA5A247C1BE48 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 6622351F2BB1E2417FE1CB93F0824690 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; 663D8A7DE61E19F411CA269EABCC27CC /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 66459DEE8823BB0B8D11EA3D6DB2307F /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; - 665E4D5175A646C08F3D216295A530A2 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 66447F01620F433C283D8DDE6B50310E /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 66523D431756F5E9A7D84399DBABC82A /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 665CD2C5AC1F6E6C2D0181620B03609F /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 66679F7DD5C25FB6D5A0FA4B91A6CD05 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 669AACED5451B74A1B173F8CF58715E7 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; 669FED7B0C83E29684D6A0598821FBD9 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - 66A3C30FAD3141239D732D294DFC5598 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; + 66A5E819E3CFEAF51E6D807ED7FE5A93 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; 66BF521E492F11C1AAEE17475971CB70 /* 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 = ""; }; + 66D05EBAD11E8517ED4B7F16934E3577 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; 66D51687A4FFDF194B556DE4B2DD8EFB /* NSBezierPath+RoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+RoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.m"; sourceTree = ""; }; 66EB73F92E6B3CAF9B57FF76C5040D0C /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 66FBDAC9AAE6212A5C0524E6F1220950 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - 6708E35DBB3D103F8267F825E34A5657 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 6712574FE9AB8B30436ECA7A7C94F647 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 66EE284016BCA0CF8AEAF406584719E5 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 672898C13A0510836C2C646CC6EAADDB /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 6734A0CFBB5B95E3415B8A0886DF0C46 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 673E347DA8B734B7C816D2B8A6DC1B73 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6750678139A1A6899CB0DEC8000545FE /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = Firebase/Core/FIRDiagnosticsData.m; sourceTree = ""; }; - 67540560D918C61609D9DD135A728D53 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - 675F6D25A6A38C0965EC0E8FFF68F5E6 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 678B533B72684A0D8700B5E2E66C5D4C /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; 67947E69A5ABC8DF1DBF4B86B362C3EB /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; - 679C432647D258664EB921B077656E54 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - 67C719EB33E2B62BE893CB8EFC2064FF /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + 67964FF6376567E1802FAB5BA7EA7E0D /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 67B71E231DF5F88A2F4ADD98F62EC79D /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + 67BF2DDA8C43089C1DA6D9F5B5503606 /* 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; }; 67D1334CEA80F39AAF27FF022F320928 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - 6803EF30AD795DD46BE07598CF430D32 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - 68467E3CFE2F10ED67841ECFBB5F6447 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - 685D707D72CF9347E0B77A3C59D950EF /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + 67D7E900DBA9B68E7900E940C0659DFF /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 67E154936155C08F92F5CA8B3529FDF0 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + 67EA3A462AB02756F4A170E38D803C67 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + 67F1900409CC2C3BD6C8622C9BAAB311 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; 685DFF57A1534B9C433EDBE0B2A0B0D3 /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; - 6868214DF95F6AE6EE828BF02EC30D78 /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; 686FA236B3A0EDC2B7D10C6CB83450C8 /* 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; }; - 687A41FEC3A047663FAB081DC2F60CE6 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 689E9ED13FA93FC1C672AE63ED33A12E /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; 68CE49DDB2DF81CFFEFD9BBCC492FEEC /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 6902BF644B6D22E65F917FE0AD95F867 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 6927644527C531D96A463FF647B863B0 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; - 69356F2622014AF7DC2A3EA2A07BB2EE /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + 691822CFD4F0F714CE44F57239754CA3 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; 693DA1F565A6FF66C8393EEABBBBDE86 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 69479128234A29F965EAC5E5AC7A110C /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 69553ADA0240020F66CCC3166C6C9541 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; - 696551F58422F0488F0E1AC2D3222089 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 696BBA70437E1206B8EEEA5A283B2A2C /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - 697331A145A2D7B271EF0AF6035364AC /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; 6978AE3655589E7A3736CE24EF459AE0 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; 69A4DE0309583DD90D1046C5499B1BF4 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - 69B055354EAE4BA62853C728881ACD3A /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - 69B44F6867FDC888D9B3E778B0CC86DA /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 6A3ADC7078377E5CEA3DD7060A93187B /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6A4380E4A384171BCA37835AB57207EF /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 6A58D7780B1E3A13BA1C9211FF6D72D1 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - 6A68B8844C7EB5008E2C239A40008B60 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - 6A72D7CEB55FEA06E30120F74D720E54 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; - 6A74F82E6AB2138E825235952F1EB9D0 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + 69AA503C26BF95F78546E43BB10103F7 /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + 69E34620E132E57727C78694C1145B21 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 6A210A44A558DB4BE0D609D7D770FA3B /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + 6A2ADAD932C0F08CC127BA9AE2952BCE /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 6A50A2C3C989CC92D5AF7F8E1A132F72 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 6A95C65E7B11A9B5F40027478A2EA091 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; 6A9B97E8CE94081CD64AB0B4FC540CC4 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; 6AA57940434E3AAD7AEEE00A590613E6 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - 6AC759C1CD233D0071663E565C11837A /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 6AD46E5BD03286A699768842ABBEB548 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - 6AEC8DC13EE046F3C8DFBE136D8D798A /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + 6AA8B0F8C06DC33CE0CAAE1D66DFFA08 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 6AAEDD8926E16F91B42B1BEA3D26DB35 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 6B10126DDF1E91DF886BCD3FF29934C2 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + 6B117D74D971589A64829864A8AE6FE0 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; 6B31C55B0080450813DC71445DA97515 /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; 6B3844A27E41E7C5F10BF14FC9A7929A /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 6B54D91E86F56F1BB3D59F4544FB2B9B /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; - 6B5BF6F5C3F36B03310C16BB02AE92EB /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 6BCA58A32925A1E4400F2B1ADFEF0972 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - 6BFE4C44B6733B9C2BEAC7A14FBD13A9 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - 6C0075391F3315DD5C0B9E7632576E32 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; - 6C96566BEE3E8073B6AFCE2002A5B167 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6CBA42BE40B0E4D18F1D24B198AA332C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 6CF13AE017A0A23961BB8B7EB170F98A /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 6B4FE9F9973F703E076635C26942E1DC /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + 6B654E9C1528E014D67AE41F31A1A810 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + 6B879CAC09D6F374AC38D18476522FB1 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + 6B9D7BBFB1A3C4386C89106FD16D456A /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 6BF8113D2588CA88EA9058982CC76FB2 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + 6C07B23C852AFA33E95ABF5E8127209A /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + 6C9D4B49AD96280E32CA151E0E090A0B /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + 6CB3691D736C53E5A5DE5AD740CAC09A /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 6CC2B03F77FB7F47BA4D5716181490FC /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 6CE53DB147D7CE3A21529D14E09DBFBC /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; 6CF1F51F10F527FFA49F8C35BCC08D4A /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; - 6CFAE57E367A65A55C2FD1C7F38C1E2D /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 6D15D28FF47C2931493135B573C3C6A6 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 6D437D1D91521EF391DBC88F822D7B0D /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + 6D4D16EF9A9FA6A4DA66570F44B05F69 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; 6D5FBAB8AE41CDA37DFFF760ACFFB922 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - 6DB42004B240B79A0FF03409A8928664 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 6DDDBCF3CD0C36D993D2A9B90128F76B /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; - 6DE079E5E70B4BA4B86DB31EFEA492E6 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + 6D6953CF358135AC262681EBAA3BDB8A /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6D9866C2B6D5302A3C3DD327DF644A82 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 6DA3AE16A57E70E50580A389DC412033 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + 6DACBBFD5AE208D906D6F872DDAA9F25 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; 6E1205BF8DB94D1E1D3698CBE66EBF47 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 6E278FF27563009D97F9BDC3D73D8425 /* 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; }; + 6E159BE489695C1D64837AE29E2B78B9 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; 6E44F680ED7C0AF205ABF2F732D5BF1E /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; + 6E6105005932822D378CAAC5CC045CA7 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; 6E6A07445A6C67484E9EAD3649AEA9DD /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; + 6E6B0505508C8CF75EF9825686A24B8C /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; 6E6E78446D4C66AB49A9367C4B33947A /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - 6E6F08FB7B0D37C62C09B09E8F8FD092 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 6E992D8467813492D50B1E61EBFBE6A5 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; - 6EBD648ADF08580A26F32BF867B6458B /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 6E87BDE5CB74061628F9F4808B9C5CE1 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 6E91D161F0BA3532164FDDD5766C6B34 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 6E959B9FA576284194DF49005EC2F3D3 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 6EB0B824AF84B8E153BF5D7B66B29FC1 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 6EB93FDA28697B267385637DDC0B84FE /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + 6EC70138252E920596D101E1B2FB4A2E /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6ECB58F32CD17FF9912C0569E7AAD5E3 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 6EDBD7760CAAD0BDC4B18C56EE630607 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - 6FD6D859CDD113AA532232F2E50E074E /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - 6FF34E16BF85DD97F2E55FE764F2285B /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + 6F21C0E0E5E6EDB0E38A20856E37E5CD /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 6F41530A1AEF5C778E22C8EE5E839813 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 6F60AAAB9F2D287AAB07027D4D88BDC9 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 6F76D69EB4D0BCF989F0EBEC6EC9B52D /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 6FBF5A4822BDB431BABE233D633F13F7 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 700ADDD491EDA1DA1D8263D8F9DE39B2 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 702D442BFAEEBC53967590E478172D81 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 703A1223A24D3DE36E05D002C1052883 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 703C19B7DA7D14697A7DA9E62F10EC52 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; - 706F9976E2D7AAA380D98FA3C76F52EB /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; 70890F33DE7A2F89F7A6D02F11156613 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; 70A2C57EB51078DE137D607F34867F54 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 70E03B7B4E15C9359D458397CC5D05CD /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 70AF25F4D66F8E43A5AF3F30400DED2F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 70BE8888DF464E15C845F104312F342D /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 70DAB6D4DA6CB63FD51D125B58C02414 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; 70FC2444F6223914BEA560B3136110B7 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; + 7126E6E76F462E83CF064A5963F6274F /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 7138C521F354FCB1A269DDA495C7D2FB /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 7143F0C8CD1D20E78773B0216488F18D /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; - 715704BCA6396E7B6D2AB56C7F7FE3B9 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - 718AD05B5CD0F909A8FBD59F728158E6 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 7144E3AFCB64F4D003E906316D3E2F93 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; 719678554CEA5B56015186C2FDB53C4B /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + 719E827F4B7A0B9B515251615F0BA995 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; 71D84307C5CFE93C1EA2452F993A5334 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - 720AD59BC6F7F0728F7989ABCF9D1B16 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; - 721871E7D8498F4B8672EC761AD2C99C /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 72188C17FE197C7A31B4E11CB885F50D /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 71F657137562B5AD78A592972B88CC8C /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; 7223382B9B79F03CB07B899C151304FA /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; - 723F636C015B98033D45BBB786F18DAD /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; - 725C9D7519C9246294964E65F09B5F2C /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - 7292E38617F5F47475FCD902E7B442D5 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + 7289EBA43CE61C39F11A9834DC343282 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + 728F432ABDFF53A7BCABA3B3B2FD610E /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; 729A38040F88573F71437BC50CBBB96A /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; 72C4B8A7FB6E16BCE4CDCCB39D680712 /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72EEE078A0BECBB045605975E76C3299 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 731F8AF10F09EE4C983A1BD142DFAFE8 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + 732E1BAF94E188712C21BD39B96FCE26 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 7336EA76552B82F831BCF41D5DBFC597 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - 734AEA6C4CABB5DD9F8F3707C6300538 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - 735BAE5A99D22558195015309934BF9B /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; - 736077A8246C8154580EA08DB05C35BF /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 738729E64B6A469A04A8534B490BC224 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - 73D798B4EDDC375384A075DD5D1B7403 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + 734F3CDB841342C878472876A5DB5FC0 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 73ADFAB63097DFC4C3025654ED38A35C /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; 73E49B69B89A89D1209D071D4F21208A /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 740C19CBAF1B7128836A086F6F400C7B /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 748FC8EFDBC62C2C86AE00238C2E8EED /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - 74E4529B98FEDAACF3150604E65DAAD1 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + 74321D345CEA8136C1865AC19AD44F9C /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 74376EC07D3F975FD1FE66CAA2ECD8BD /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 74A79C14BCB87394D8AC086FCC4B270A /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 74CC5AB120F9E34F953E72BAC94408AC /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; 74FC2D6D369BA24B26EF115DD14D1CE2 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 7521D31F3A9E79D6E0C978B3EEC1436A /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 7520309124E264C55C6F0F773691957D /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 753C9900C0C5A879FD9D6FB073809EF6 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 75595DBD8618D15D864C395D2F159A4E /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; 7563DA5563314C4D44215ED308EF7C77 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - 75A3991F723F7E84E6D7328336BCDCBE /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; - 75A708AD80219699E2A645931B9F0274 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - 75E7950EB27C6E711A5E1791BD815BF4 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 75F364C673640804FB74B70CFC3E3463 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; - 75FB1004D9B7D67BB87C20ADF2E6B934 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; - 76037B0C94833300AFE005BC53E81964 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; - 76107D98663D0AAB38C7B9B963D90872 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - 7612E5357AA20DB81B79395E816B4249 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; - 76443512452314B81C8DF7C0C0027E31 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; - 767E6879FB85AE1BD7163A0997745F42 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 77156F8F966471CD2FB751F90464C421 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; - 772720108593E953F4093B30981FFD2D /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 757F0D30455E5095FA1113AEA1646E4D /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 75821AEFB274CE7EE561D7735AD191CE /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 758BC65F26ABE0B8DB84F926F3833C6E /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 76078A91E7480FE1D7343FF920B5264D /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + 76C856BACD70EF40DF17EDFB42E4D79A /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; + 76E696B1942CACA7E87E4FC3A80402AE /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 76F95C1AC7952AABE43BB6B15937845E /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + 77179EDD9CE141817B39B53F94D45C7A /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; 772A0E739DDA6F457BF35D3662285A59 /* GDTStoredEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStoredEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTStoredEvent.h; sourceTree = ""; }; - 77327992D03EFF43D7486B0D4DF8FFAB /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; - 7737694E9B3A951E07FF7E8C2E7C4880 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 773D91497860302EEC08AB5AEE213413 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; 773EFFD9502444FAACFF9DEAF0B811F7 /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; - 77416528506225EE2972EBF70D15691C /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 77624AAEF0034FE4363472281260D6F0 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 776B81695F3B63E689B69A224988541B /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - 777F3D8575340CBFA5E8A0F800F17DDF /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; - 77CAA27A0F211D519B85CBF3D079AADF /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 77E2440A40504F1323D79249850E600B /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - 782FA60B47AB3C13BD5A739B4E7D0267 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 783B06CA56E7F31AAD0E0144F28CAEDA /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 7752D13C7DAFB1DF6B209E93E5D5B23F /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + 776BCBCF522610A96F3CFCBF6DEE681B /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + 779726D959215FC66398D2A7BD055CD1 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; 784124C11142E87DB1D3FCA0F0DF8284 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; - 784773599B7F6FF0668F7908F0A92394 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 78503CA382C9D43329DC817BF54894EF /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - 78541DB485050F75C0936807AFB8C357 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - 789B2C68D8DD160298CF3C4290405EF4 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 78BD83D02F69F9B51DEF7E9F6F62829F /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 785B97657BD4FDDF174BDB148FC496E9 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 786B0356571432F408E5FB3F37CBA9FF /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + 78B439012552CA142F16499426113545 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; 78E6B460E72CC20396C19DC0B73930E7 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - 78E7BDED4CA237BA0E4E1B8DA70EDF15 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; 78F3FBD7C471BA4C5B6D151E01926216 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; 79056B8415873E79B2C8F6C636A96E00 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 794262CC6F2E3398361EF16166E8B3B2 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - 79617570F1EDFDB1750EBEF9D40FF152 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 7919F19F0C6DB06ED41EBF1BAF2F55DD /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + 792F3DE9224A1DD993CC8210F6D61535 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + 794D15A96C8D833B07ACAC9178A9571C /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7990BC8A7C7229119CF767CCAD9AAF62 /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; 79915C4E2EB6C0B1E346BE2B093CC0C9 /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - 79C9A31269E81DF965C0EFADB2012AC4 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 799C0484186D15DF5F4FAFEB7C9FE65A /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 79B54A87EB90E5D5FCD13D86CF79D24A /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; 79CB84FBC11AB9D21E3012451C45CB96 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; + 79FEF5404E1BAB09D2F241B48A4DEE31 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 7A096543D66724C493A712068089CA5C /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; 7A239E55139C2F75E79338C50AB6FC8D /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 7A2968C02EB2F9DA9CFE11523D853F0E /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 7A2FB31784E1ED7F7C9238D0C311015A /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + 7A273D8A6DB790E6FDC568AA930E3D32 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; 7A39EDD3E7E23D5FD4B1E1E340CE326E /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; + 7A3A1F5ED915DC00717D0F67ADC8098B /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 7A5466C3CC27EC54A45A65F3085F873B /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 7A5E31C57EE60147EDAAE3E31B1D19AC /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - 7A6789E68DF4AAD0DFD8FA5B9FF2B754 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - 7A8DFA1F864C62F0877DC2857424EDD7 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; 7AA4A743371045970B504A8B2B3C56BF /* GDTClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTClock.h; path = GoogleDataTransport/GDTLibrary/Public/GDTClock.h; sourceTree = ""; }; - 7AA8EAD8C2A634C8B211DCA3C84C4BB1 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - 7AC335A8B94A8E987A25C8916AA4478E /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - 7AD7320F2AEFFAC745ECA1D9F9D55A8C /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; - 7AFAA9D3ADEE4875D364F0EA50C4098C /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 7AAA1105E0AC1F7C8117B494AECAFDF4 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 7AFA9D5359BE1E4E260426F1C13F2D01 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + 7B0146D2D9664F29180B202ADE2141F3 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; 7B0A69B6FACD7C8A7159992BEA265099 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; + 7B25E77540C1ECB1F55EBA082F649641 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + 7B3BFD28DAF8B6FAEB60A962321E432B /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; 7B4C9226B4D3A7B6A7E8418CF95CBCC4 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 7B4F35BD813347FF988C6039F938EDE8 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 7B4FBA22B542402775644ACFD00D2E66 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + 7B72C33D070D0F03288E76E1DA1BAAEE /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; 7B74342AA866FE731DC0FDD2C2028F04 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 7C5AB60DB5E0886BB2ED862637A07EF4 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - 7C840FED49BB6E4503D0250D4C7345A7 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 7C933B6ADE762A78222E407FD1960592 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 7CC8FBDE81778614DD8CE5DE55460D4C /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 7B76FE61248BDC8A1DCA4580361BB582 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 7BF0C84D55F735A309A6796C5036F66B /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7C16EA7E15A3F35AFF502EAD788FBDD7 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + 7C38CA7B81ACA338D999FE3C0EAD78B7 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + 7C9DE44693E482B5752DD2CE36304E71 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; + 7CDC85108B0461CF3918EE3BA7A0DEB2 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; 7CEDECEDD97547E548051D0BF989401A /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 7D0BC95ED6BBB430597CE23C417B542E /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 7D0E03388EBACCF6E9B6F9671AAF2F55 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 7D13056FE137E30E8A829D3579A5B8D5 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - 7D6700C73A21F270ADADE2937AD41BE0 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 7D5EFE352D1378B557468F64D9E5D2B9 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 7D827844647E7A17CE8BDBBE80B4D2FD /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 7DB46ED09C638AB50343B0949E766343 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 7DC9083B4EF5AA159996A2831D301185 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7E1768101677ED3E062B092BABACCADF /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - 7E2AC07FAC1F2E0091A4C47C3EEBD291 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - 7E31CC084F1E85BF8535EB68B691BC03 /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; + 7DED4185513221BD8A0C78546E28CE08 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 7DF0BB256952FA1C74F4A0CA9BC1673E /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 7DFB4980F144207DEE8438AEA10C2137 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 7E3CF7892CC7C6FA030C21AC76C7DA20 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 7E4ED99A93F06400213D81873A377F33 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + 7E579EE2A835E3A78C32B26DCBD2BB27 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 7E8628D665ECC3DE993D7A1606537068 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; 7E96099942FD1BC96E81912D52A2DD99 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 7EFE40F14A73EA2B443AA4CF44DAD50B /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 7EB96561AD27EC387BE84DE11A59AB7B /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 7ECB3CB65BE3B38AECE4AD0A9A6AA3CB /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 7EE5DB9D9967205EB5BC1EA6B3AA8880 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 7F024B7B00960653B25CA52215FD5491 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 7F057988909AE054F78191124C83EE28 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; - 7F2B27C002C382F3CAF553F080C2E896 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7F3762D4D5CD700A3205D86AF7075773 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7F3A1CF3578311FCD5BB2B8C51729FDB /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - 7F4BF29BFB9DBF4D660B3789F5576D82 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 7F5540001EC3C541DE53A5E0C4D860B9 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; - 7F768D9E00785D6BB9E2DC2D13336CE0 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; - 7FA243F65BEEED50FE367D2DA9EF79D8 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + 7F7D9D99B4940A7F42D3E2832FC1B2E4 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; 7FAC33E8263E9BEFAC11A7DFF34AD0BE /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - 7FD79D0F338295E977F4D316A76EDFFD /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; - 801E99A21664D8D68B2DACB0704F68A0 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 7FC510C48EBFA39577EF98D127383FA7 /* 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; }; + 7FC8394AB77ADDA84BEC1B75204CA938 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 7FE22117442F8A974DEA3541D0275D00 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 7FFCBCBFD75ACC4049F27845EE8AA91C /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + 8010543593DB676E328C6E1277BBA6FC /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 803AA4D060B960BE2E1541EB7EB0A8F8 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 804AD74736151223ADA3BC5674D5EBD5 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; + 80508BF83A805007058178A772178F5F /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 806C5343C0317E08A089C45067953B61 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; 8074129DF318155B29544548E1CAF4A3 /* 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; }; - 807A779FAE2954A7DEB36EE202F2B50B /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - 809BB1BFEA6DBABE3E26A0D090F01154 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + 80765060C6525FBF1EED7CA98F21F067 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 80A10597132CA42828B1C52EA27413A5 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80E3C559E928DBF9CC5352937D0D85BE /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 80E600CBC8D78EBFD0015D5E8839B40F /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 812AA095C1331B37CE0472F217A4945B /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 80D76D9FDD4369B868CB483CA0860B0F /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 80F34AE6ABA12371F3A514C456D4F519 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; + 80F3F35A797B25DFDE641031727EC3C8 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 810388610405CE414D68E0FF0CFF62B4 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; 814BC5DE2797DF0C936CF03839974699 /* 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 = ""; }; - 81685809005A13FF186E65DA6FFB1463 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 81599712D9998041E4E6DE0B92E9F991 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 816B24C331E764562DE95D88D72E8EB0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 8175885836544CD4D80DDBE66EEFAA45 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = Firebase/Core/FIRLogger.m; sourceTree = ""; }; + 8195DD85B930F93043F9BD1EAC646D90 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; 81D7A46E2069BF2C08EB125AB419D0CA /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 81EB44B226ED52831CC256D3AD059682 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - 820E8C3DA0CDAC11DC3E5E7C1496BF63 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8245ADDCE6EFBDACC991EA41E85E761A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 824F6DDB5733946BF470102D4A2B06CB /* GDTStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage.h; sourceTree = ""; }; - 826389E051DB9F5DAFC23A5ED7B18FD8 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; - 82A93793123AD90694C5D13F9796A9C9 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; + 8271C9F25D065390D27CB1C226B200EA /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 827A734788ECFE9FCB7027E40BE94D5E /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 829EC048CE8EFC4CEF32EF085705F63C /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; 82BA2E6A5BD7AF8E90A46BA46468DB13 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 82CB5E38F32F0666135F8A6821A7FD7A /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - 82E63E35E28925985F52851F5E7F7A2F /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - 82F02B6475E7D1C3486094F8F388E148 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 82F6724D9AC88FEFE6BE7EA4E1AAD50B /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; 830A9E503A916D0977B7C704E7CDDA7D /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 8330AEDA932A6AD8E031EF0C641E5DE7 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - 833A6A67ACF149F280F8CE95DC6D8B09 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 834A4198AD7AF564A3B63F8008730F29 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - 834E201ABF2061E6D473BE35CAB450C9 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 831583B9B9FF6EEF6E65BC060213F4A6 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 832A6EF418F653A14F74FC571CD08688 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; + 833BAE32AB1B8F713242C9FE5F3E6B40 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 8346DFB8C8499D03B29FC1954F4BFF35 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + 834F1E69F45E280B37AEF05EA066A85E /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; + 8378290C00522D0CAACC653F2E273213 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; 838D7C69C1B531C642465B4BAA4320CF /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - 839EED11FB8088ABBAFBAC2C6C429809 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; - 83DF81F714471EE2EDA81F05870FC7BD /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 83B6C0233215E1171F424FA442B1C37C /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 83DAE10D283CF1B5841474AA89EAD9BD /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; 83F1B2BD4B45BF9CD1B13B3F8EE023A3 /* 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 = ""; }; + 841514801CFA5A56C2B0CDF669444C84 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + 8424053FF468644E6725083AA014F82E /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 845A0DDCB7399C26618185BC79192F34 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 846233A24465EE0DD2BD8C6C3B578E7D /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; 8492A0BD43CFF65B38C003A996898AFA /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; - 8494ADB2C4035D2B22513419C51B5517 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 8498FD18C19E0FE18E529B9AE9B2DFBC /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; - 84A709674F346A7BEAE13B2A5EE18C22 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; - 84BE2C7443B6C5385B9E1464E6B32E3E /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 84CAA6046B8BF4952D41D2078EF3C87D /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 84E26443EF2CDC0A416CD2340B33EB39 /* 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; }; - 84FA4F5E631BB18A4CAF1B69923DAFEB /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 84C123446557587F2421C8A680B0D6AC /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + 84C924EE63B9DE2BD9995FE8E11E7CAF /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 850BE6DDDF399BFA44D2506B60C6E1D8 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; 850EC46C044A0D75CF74813A69913DEC /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = Firebase/Core/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - 8517462EC8191891DDC4C090B5F149BE /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; - 8520DCC90076C2D0C0481EAA947E98F3 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; - 8540E2CE4399AB56BCE33B40A8623314 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 8547386EC742745D31300181ACD1066E /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 855FA7499F1A41F34D4ABFB10B0E1D73 /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 858AFA83985937825473045CF6808B15 /* 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; }; - 85DAF0ADF9D871D10FCAD5FCC5B53E0B /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 858F57F74E0AC2BB2AFA035AE21275BA /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 85DDB9877837BA0AF9B0F7B6DEC362A9 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - 861210F0BE7A71097101B88DB973BF08 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 85E991FC094975BA5495E5BE0C61AD7B /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 85F066CE260AE8BB1CA397934C287D3E /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 85FA1D48D833ABB0A1B1615989E77633 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 85FA83CA39CA4E9E0F2AFE4C9760160D /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 860855E436D35942C26311A1EDC230C9 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; 861C44D58795A70D3338BEA3807EBD22 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; + 862AA227137ADE78547514A57FA6B4D7 /* 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; }; 863D399BA928C8368D2AC66969BA7496 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 864D63C1C3348D6FFBDA77D0EC206085 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + 863D42949D725AD8F8FB5CFA588995E6 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; + 8648B9C836C15BD4F95DBE953307BE59 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; 865A76C3046C18A7DA36E67E3DE72F88 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - 86679E2183EABD35F9E8AB9DA3D2A5B0 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 86CBEBBFD992C37A25A483B4EBEF43B1 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 86E1E63B15248196AFB2230744A465F8 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; - 86EC7D9587DCAB7397F8A9650E3DC500 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 8662B627C542F23855B41BC86AF58DAD /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 8676E7BD06D3F128D9D5C6B7E96FC999 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 867F78323B4174223CB9FDE344A16D2E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 86D659A8989A7924F422EAE8E671F369 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 86D700CF934ACFA38C20D4DD15D3CE0B /* 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; }; + 86E76DEC6BC5EA597C6615549CE52739 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 86EE36CDC5C5F64D89A484D13F9B47C1 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; 870525D77085BDC7FD874AC0C6EE096B /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; - 8739EC73C0AA1B43B9231E9727AB3D8F /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + 8726331AF6FD5A9A46E6D76C69CFE1BC /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; 87668906696C273A559873C1EDF6F7AA /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; + 8770AB17E738B4F085184720FE8337C5 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 87769C291A4B1E7C8702BFE93FFB588B /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 877DBBAB43FAAE182840481DA1DC1A07 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; 87A2920C46D0CC20B60A655E9FF18B0F /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 87DACA19F417B941639C1163C588AC87 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 87F09B22862988263200E4BCFAC2F8A8 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - 880D12E1D949FD2BA1A1E9FB172B2B09 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 881868D218B5223A2DF347CA1DFCFDD0 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 882E9C8F4668EAE72A264FA716EFE3F2 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 87C57C3DE95B81808FD91387F9D57573 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + 87D78B3652AEEB759EDAC023ECDC4296 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; 884C00138AD3CAF3B4B0B63BD80BED30 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; - 8852B603985EABAC100BF0A6427C4ACD /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - 885CB6D9B8AED66C24493BBDBAFD7F33 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 88694BF6FDB06657BF01126AE45093AB /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 88913338ACA6DC036C7538B1CD1C9DEE /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 889593AB6526E061881B81EA8AA9CCD8 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; 889DD58E7BECAD23FDAC21530CD7D0B8 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 88AC52FDFB1500AD1EC5B69093B1D4AD /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; - 88B17503DDAC3927A50AD0B23A8DD40F /* 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; }; + 88AA7C3DD708327041BB54B339F6D5C8 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 88BAF4F61A0D2E6C36FB24A5850AF641 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; 88DEDF68D8C60CEAF48D94503FA3FA5A /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - 88FFE620B4FE021148EFFE939FE7D675 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; - 8905113572F8576DEA7D37FA11A60F0D /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; 89160B8C3B26D7474A95630C72EA1E5F /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - 892DAF84D0BCCEFD111C94D7517BC3C9 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 8937DEA30EF284C0AAC3EE9008F4AF8D /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; - 8959AF48FDC941E794274BEA913493C8 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 892AC60839C08FA6A779EE5D826A90D5 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 89AFB173CF329C6B51A398514E06ECCC /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 89E51AAA62F862E9845F3BCEBA4471BA /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - 89EE7CA4B88EDCF9C446BA9DFCB904F0 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; + 89A39DE88338276E8C9480D3045D8099 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + 89B33D4B3C5357A308EFE99B01D9DB5C /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 8A026745978587166BEFB071A294C1D9 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8A06434A333E319EE6F329F7AD16700F /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; 8A126C06795FE746C9901F5ED989C79D /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; - 8A1E96E54A74B0B1F1F972417852D401 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 8A308F58A40A9C554C16D0992E95FC01 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 8A3642E9FE853839F0DEA00990380AF3 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 8A43A3193B00F38A7A85002BB97B1AC5 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - 8A5AA89B3283F17AD3F4DDD55C37A94E /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - 8A7DBD047D8132A53973B81E8A3B6CF4 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 8A821A52E6888BC7CFDBC1BC5865C0C8 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - 8AA8BCB483CB0B37699373BE5950DB82 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 8AB77BF2CDF722B873EF17E6A605E2E5 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 8ADD572631A373CB2207CC0B924D2E6F /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - 8AE78D02DA919C9E41B39F91B858B386 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; - 8AEF51CFB5D2A21518EC339F1438E9B5 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 8B177BBB89F7A58B6A2340B1CE785CF7 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - 8B2AC099629C46CC93F0E91ADFEB8830 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + 8A8663152A86CBD0E6F27A6A4B70814E /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 8A9758E0A04F5FDB62647A27C76C331E /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + 8AB4A7A6D8A9C6355F2E0F64975E742C /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + 8AE855DF15457AE0EE7496F380CB6F3C /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + 8AF57F5F08561D32276CA6C41C7BA677 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + 8AF61CACE577B9A39BB90412673094B7 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 8B41D65D1A862187B442D7073FCE7DD1 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; 8B43F094AB5E433A936FF4B4F031A70D /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; - 8B74BF4987350560342F9A6664F21F93 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; - 8BD3AC16BF3F92264910DB70EF0406EE /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 8BF4251429A1B57F5019122FC3B9C1D3 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 8B70D784967BA4951852CB5F5B8062BA /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 8B9483960D0898B710053D59BDE9BFC1 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 8BA3C50BB757499678C5BE714615336C /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 8BF0CD01193D197C93A1A6EAC1C8C7F2 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; 8BFB30ED854B8C01AD34F0014DAF9AF4 /* 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 = ""; }; - 8C3D5D3F7FBCD01E42C88BF2881A6727 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 8C0253BAC39F6722E8D400C8BE3B7CE8 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 8C28AE6EE2A7481C0B38297CAD41AD83 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8C478C7C78C67B422A383B902C940722 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + 8C44DD9431AE1E29AFDBA1C962ABDB2B /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 8C47D1D35F481ACA0F8701C734BA781B /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; - 8C51D6EBAB67D41940C272A7960AEFC9 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; 8C563801A978525A6184D0F9DD82905D /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - 8C5775E7F823B6BF19C0FBAAD82D5A41 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - 8C57C3B759A5EEBA851D9DEC243E07D0 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - 8C62EE627611C937E0EEBF789C755F28 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; 8C6645411C554858ADA26C648BCBCEE0 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; 8C702ABF343F6407668963298BF734C7 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; 8C73BC466081F293E4D01A6633E29FB0 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 8C7F420DABD8668C6B606A6CE563F5DA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8C97DDC0573F567F53412E83F064BC52 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - 8CA0C9A7CC0AC4898AE2F9A566726C4C /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 8C7A64D97AAB42E8C3FFE71EDD468CA4 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; 8CAA2DBF00DFE036CB71047FCE811813 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - 8CB27FF0D9774D66C8B17F15F7EF975B /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8CD8755AF098A173E00AA86509262962 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; - 8CE45688575FF0AA028895BFDD852F2F /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - 8D0889914C2EAB592A088E57E532DCD1 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; - 8D0FA4CCB2D15F90D716627CD0615088 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 8CD90088ED71F765AB3DBC0CB8751846 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 8CDD7CC776A421CF128CBF652E0CF408 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; + 8D03AF7C4AC28A8E342483AD0C8FFFAF /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; 8D131A8E4A5603427F19241AF701AF94 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; 8D29688C643B920F82DE60C7F438D732 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 8D3ACA5DF26B64D8BFB86382C59C225C /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - 8D41701D90D5307954B1742BDAFC0654 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 8D4FB13C673E905FB20F81C28D9B6679 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8D6AB77C2053E9044D3C2DA81EE8E08D /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - 8D6D629A6E640F6D69B60F695979A2FE /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; - 8D7233787C00DF7D995ABCCA5B3EB617 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 8D88E63A793A46AE2A8E4914AF3394BF /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; 8D8E152A9BC39CB6B4F112BE7933F62A /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; - 8D9D3A711FA1485371DF91C09CC57D36 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8DAEE0C9CA8E2893756B368AB756A956 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 8D956427505125B9D0424549715F1C38 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; 8DD51EADE5D09DE44C32D69103CFDC53 /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - 8DD644175A669B738B4231111B5F113F /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 8DD664106AF32EEDF8E76346B113250C /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 8DD751932D7C7B69540AA41E52642326 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; 8DDE75E72B2E19F5B9CA9F1434A1B294 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; 8DF63376066E2275FF26820B3A512A9B /* 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; }; - 8E13103EBBAC3CC02469B4EE37E8FCDE /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - 8E13BA75043295B8C6EA26BBCE451CC9 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - 8E4E0B5880476B12A583F23B1B67BA6B /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8E5496FD4962BCDE6FDFEF4257C4A257 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - 8E83DC189FC3B7A9E583BCE303D1EE63 /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; + 8E4633000BE8B3F74A598CC87147A882 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + 8EA909502101D3AE04F68B5C959DDC78 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; 8EC2141037CFBBAB3FA9E1072F9D6F23 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; - 8EE0DB3A20DEA4CB06D26C4EED1FA386 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 8EEAC5F08D6B4D9AF7534012B48BB559 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; - 8F075D7361A98EC92912D23F62ECD7DD /* 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; }; - 8F0764D02B42AE9C956D2AF6C3B6B62E /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - 8F0B94896794B69DE9ABBAF3A6A4531A /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 8F2E9045B2AC258C5B8DFB25414CFD3F /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - 8F4BDB1C1F0DEC616F4EE2565D81B77F /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - 8F4DE1B54DC18B7BBDAE769BF3FDFB56 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 8EE18524B7CE4A63FD1F28B6B566245C /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; + 8F1A3CECFED1C7D7337226CAB2DA9727 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 8F1EE2C6E1E03203FC6FDDEDD82CFB77 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 8F2C89500F70BB848974CF0857C5128A /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + 8F3920FF4039951E358CAC46318B161D /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F6BBD2D4446D917DBDE428BD8190405 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 8F8D67059CA3241FF449AFB5ADB16969 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; - 8FA02F2BDAC2181FFE353B2B8F23A3CB /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 8FB98F90F90861D1A9C0D3B322EA9646 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - 90438AEE77D1621681B4872EE3F88E1A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9046E8F29610D14F5BFA1946206DA373 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; - 9073F0DA69D25921E861A82C234697E9 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; - 90CED7693DC05D50A140637839883E72 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - 90DD67F63242CF1116E18DA6D1483E77 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; - 90E6D6E6AF7AF5CBA6B44DC028DFE6B0 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 8F89B896216190DD0A5FF95236D3952B /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + 8FA7B11D82F4AC9EC688E6F5E93EF8B2 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 8FE8DCB4FE3E2C79C8DE1682C04B4EF4 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 90030DCE8DC7A2BACCABC66A85C65CE0 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + 9003C0E642AC5527E363092F6A689EC5 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + 9004F0CE6969B980AB15394D57C6EEE4 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + 900F5C1CB44D295409FB2FD55AA0D482 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + 902AE98327A861832B4BA137480FA0F4 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + 902E2339E7F9CAD6C410D04B1C8FD1A5 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + 90507927AE33EAAA01876F1F005EDBF0 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 906BB38A481B01E252CEC5C4D3A5FDD6 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 9080FD4A5DF9FCC85CF16DC16AEBE022 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 9093F4A1D9250501ABB301205E1A0256 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 90A26A9AD1A38C028993D2F38F74CEE2 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + 90CD3FFBDCF208693762B2A5AC6EEB83 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; 90EF6699ACCAB7C72CD5324F892A9215 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; - 90F4B4F539C60A30B094D1DF65FF0527 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 90F7B2BE4456BB67085304551348B18A /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; 9113EA59A61B4CBF5ED6E953CCFA9F01 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - 91634D2EBBE9FF97B1E1D92DA46FB7CA /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; - 9174D5E115C1B05B5CB34E7BA461B452 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; - 9178FDFA5A52874BF5724CB2AB964C5B /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - 918D0DAAF3DAF360A13EB2EA19CDD30D /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 919802DD5EA1842AF2787476A69A3CA9 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - 91B847B706F1F1C054508E9D7DCB57C7 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - 91E31D9255E2BCA4BBE69B0059BFF963 /* 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; }; - 920F14D05D427385C4CFA10C28574833 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 912E9582888DE46FA14544290249F7BA /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 9184892A42F009B99FA3122EB8A01354 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 91965C85CF66D8EA20BA211B8836235A /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + 91998B7E944D93EEF99B3A806997975C /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 91B19BCC8E0A96C2AF91B1DC3DD55BD3 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 91E1C0D9D1CB06F3C953E8596A22B4DC /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 922A8999C2DE1619A981FB5F961382E3 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 922FE223C439FC87898DD0C6C980A908 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - 925AD7E3A9AD5A4244506B8FC81249E5 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9259D6124279E8C709FDF24A7DBEAB57 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; + 92620368652A910DC0D6564AB68741B6 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; 9265904108AB9D3393DC3CE7F91A9B47 /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - 927C17DD6B309124DF54EAD8D4F887E9 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 92B78D29037CAC24AA19C7CF8C13DE91 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - 92C67CC10494D314A41B3C2CEA9A697C /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - 92F7979B6BC29ED6E6B66B0678441FAA /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; - 9301A696465A7B138B63C930CAF7BF14 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + 927182F398771B6371856EE7E50ECFA2 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 92A960A63C8737417AC219B94505FE47 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 92B70AD79CEF216119DCEF93A6305A36 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; 9307A5FA57000E38FBF9EC08FFF8A2BF /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 935ACFB77E482AAEC673103A6CA209D8 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 930D4F04D29FCE7F407D31112767117C /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 935E1DB61F0B607EB80D8CA7B779FF15 /* 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; }; 9360604531512771A9FD089A9837C676 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; 9397687440D5BA05368492717B39B5C6 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; 939A7FD22EFE867355B9D8C52DC10ACF /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 939E2C82CEA840EDD9BE0C5D1182FADC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 93A0D6200CDFA3971E6F29B76348B333 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - 93C3F265E963792B616A869437DF3D6F /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 93F2C3F2346A8BEA7226DFFDF8F4D52E /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - 93F2C682FA6F99D67928F8667235A3CF /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - 94074BB665964C130EF3AEAD5903C1F7 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + 93BB4FD17EB6DB2AD4173FC15D1041F0 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; 941713D7F2ED661F6F62848161C4ACCD /* 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 = ""; }; + 942338DC48BF17577A4C1645A502C3FA /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; 9423585289F0FEE1EDBF88CC077C5BA9 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 94249BEAC1A4D633C6807346A8070F3D /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 9453942985118F6CE8C03D72FFCAC48D /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - 945812BAFCFBCA799CDA6828A3F43720 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 94880BFF0112585F7B888B90817CC653 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 94C769C557F9E669D09A2A498F897C8C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 94CDC22B49EC8B76E4EE023F1313845C /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 94DA588A88B35CE185D80006E62DBC42 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 9424315AD5F0B1426BE631E0E48A16FD /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 942B6B2732D9DDD27EEF21B934658816 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 943D7DEBC82207F41DED0ABECF1EF62A /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + 94606D3881606D2E4B349880A5E20253 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 94A1DC650FDB78B22851D3136118CEF9 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 94AC1D09E69C8916A504293625DCA441 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 94E57B5ECB870EF9C65BE0DB598689E4 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 95002A3B0A2E1A89A06DB758C12DCFC3 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; 950A1A041BCF19C89D591AA28F944791 /* GDTTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTransport.h; sourceTree = ""; }; - 9513FFCA869AD68880C9933062162BE7 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - 951C3D1141215236BF3E717E98972F20 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 9526FDA913FFC16A392832E1C4AA3D79 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9554C2907C9D9E8F76D8D70EA7EE6249 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - 955B123361B23939A58B414DFA70271D /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - 9581E9C5A44542BF5FDC5857FA73C055 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 958A538964B046F5FC63A884FA9D441F /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - 958D8A765B851C50B6E7E672C1326062 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 959628BA0DDBCCD75C7AC43F9F4BEF8C /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 952FA733AD9398172DBD62B726338DBC /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 953A33B5E32CC3880041741D2A8FA707 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; 9598C47569571A616A8E6DDD9E675729 /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - 9599ABDDBC657553636D3A5F8EAAEA92 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - 95BBFAB8C771DD0FF985331B81372155 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + 95D39EF6618E16776E8A5371CD8547E9 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; 95D858BFDF2F99A6F3D810DEAD6A9300 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 95DC10A30ABC3BE3446C6B462168101A /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - 9603D56149DCC0F2A9E3930B1929F72A /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + 95F7B73C7BC6EDE9052F07E04DB0C417 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; 960C7132FDACCCBC602818FF9F87C10A /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 961650D89213F585C40D63EF23FC4767 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 9622F1F5AFBF1DC9D2609B287A97CC29 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 965C8488F60641681C8FF2D2BBD2B298 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; - 966AF84F0F33FEE812FBB4E268EAF1E9 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 96480671261E213E5388603EC64A5CC3 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + 9686F2C0DFDCEA8AFF625734140E786E /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 9690640B113C26A03045E4735EAC445B /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; 9697CB449E3F9E17D2460CE1D27DDBEC /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 96EAB41B780D55D6439A222820C17B09 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; 971B256811855BF0D6867E3A723FA37E /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 9754CCB1B41C75728B6A02F4FFF969B1 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - 978DACD044797636B6F45E9EE5148512 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; - 97972524746DA8617FCA6204735F0A0A /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; - 9798729FBA61A01FA4BAF2C5935013DF /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 97AF343E5B1DAB57EEDD4B05DC498A51 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 97B0C12188F70CE990D5D85626F3C361 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; - 97BC1C8A76869E6D037D92F566BDDC8D /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 97DB1F19C9F90AA0129AD54292C01F4A /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + 98061D83BCB42C4E8A78B40C727044A1 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 98081B33E4A04202E149C0287D3A2C30 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; 9837BE777B812E8919321296E0674F0C /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; 983D468F8C9A0B2C350475DFE638F4C6 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; 98517DAD4810F45ED8FA59BC3F947354 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 985950B5EA8B80D858D6759A4C297DAF /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 987821AFFECE76690D223636B519ADE3 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + 987D864CC92723B2359BCEA82238031D /* 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; }; 988633FF40146D245E34784171890089 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 98A80535764F86459CEDD667CCB4F197 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - 98EAAA5831E0ADD5E9E3BF6BD82CACBF /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - 991F63888F0DADE5B74E325A8A6BCCE8 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 9896F4C12D99D9D3F35B8D83DEA54726 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + 98A728E5AC8DB7B3E1E7CF2C81D5500F /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 98E483D55FB2AEBC8ED11136875AEB2F /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 98E6DDCC4A47CC1248E29292A2DC25FE /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + 98EFF7FAAEC379D26BBD541DE772ABCC /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 9911B80A8D09E2F33BC9BB61FF4F6D3E /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; 9951AFB14B84D5988BFB7DC34F63160E /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 9982F863CF3571B41EC3DB02755C53D4 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - 9983282CE3F72F1D2F8E5E39DD900556 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - 99D8040F6EAEAB257B9664B10F8BFEDA /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + 9966DE0E10ABF4993F33D5ED0512725A /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 99D483AC9B598492130F46428DEC1739 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; 9A09930B6AF4D29B74B05A4AA77C3AAE /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - 9A37385936A3AF6975BE19B5E37A6A63 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; - 9A6DF1FEA62063EE8DE21E0184A2F1A1 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 9A829F245C0CD19CEE3F9EE11E899740 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9AB2412ABEA933CB03EE535D48BD197E /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 9AD1E67D6C1F41C818BB20DE61AAF67E /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; - 9AD4CB6111497F53E4A5BB288BFD3461 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + 9A231ACF11EBA9485481AB9D965D579B /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 9A35296FF3366B73A70A2FD24B7ACCE6 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; 9ADAC6CD45640D9EABC1DB283FA2B30F /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 9AEA1F7442A8A10E9F7719D981A6B89F /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 9B1701CE791ABE0B135B42558643BA83 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; 9B1DED816870AF0C0B03329B34DC15BD /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - 9B2FF77B343827C35C7332825DF9A585 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - 9B3370FC1317B276B98782F87182B739 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 9B3EE976E7FC3CBFB77EC5F10244D571 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; 9B4880B22F4A12C9C9791F4B32571F9C /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - 9B9F452F697190C881B95C6137E24274 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - 9BA20ECA608A4F959F161F6314C07143 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - 9BC71A5918A997F15CAC9126B3C68E59 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 9BCDDAA6FF316744312D6F154DC717D3 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + 9BA52432AC0F92647A05FD7AA1853188 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 9BA56351B2DF4F5F3A0875737FA7D916 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9BE75D7FCAF52DDD6FACC196FE4C0616 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; 9BF61CFC891BBB889FA4A1BD2CA3E955 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; + 9BF766D888AA238D53B541FBAAE7402F /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 9C012FB7B0BC76B0C6B7C8D565A27D68 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; 9C0AE2466BA4C974BC84C214B080C357 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - 9C5830D6BB7673585595AB8BA414214F /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 9C7E01E3156F2137645C0D6C51F90EB6 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - 9CEEB6FAF21D0BA92AC0A04AE4DDD428 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 9D2AE3583762C93008AC2DBF600FA03A /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 9D673843F637BD65A1677DB94EFD1975 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - 9D75317127DCA2E50611CDFF673C98CB /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - 9D79F012210D6A13185A51BF8EB1209D /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + 9C169DD6C1D791F5E0E6CB9652B22112 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + 9C61958EEB32970B6FD85C64E5BADAD0 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + 9C89316550F291AB37CBB8DCF16C4945 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 9CF04D957CB2106269632EC5407EAD35 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 9D0FDEBC4888EEE55646CAFB751A6813 /* 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; }; + 9D56772272E17B920E932842A3E95ADD /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 9D7BB9A9986EC460E6DA90011D792EFD /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; 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; }; - 9D96339CB00FBFB4B25ED781F333A880 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - 9DB546F80EA4C8F664F7D34B6D539816 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; - 9E0EF2876C0D0B30FDA47BC4AFC00084 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9E662EF8BD891FF57BD8D395276CB1C6 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; - 9E7073A9FAFCF672D8D03A15D3BB32D2 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 9E90C52FDDD70CBAC0C2A6596C9C1FE6 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; - 9ED0B61A0303FB3177736862FD78448E /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; - 9F0D8879AFA115E5356585B2F6DF2CE2 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; - 9F2C6B4E466B4DA131D5D01DABB9804E /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 9F30FEDE839FB7BCCC1244D32E272745 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 9FA59FAD1B783B1C460FCB7A1D4C9E6F /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9FDAB07C74E234EDFEA1553BDC5637B9 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - 9FFBBF90E279EBAC6C6E5B68B7943051 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 9E107DEEF88FC5E34D4C5DD2128BCB77 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 9E4B8D617AFD312FEBD935F095DC41E3 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9E7FA3AEF7D27D9AC76730749FA792B0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9E99DC06A4F55FF1045238A878165DA2 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 9EDDF6D87D982647DB11D09144BA7E1D /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + 9F006EE3E88A2B8DEECB4111765ECAFC /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9F044DED62A1D2EA266A2B01BDE3C5DC /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 9F242E15D7BB04FE6B21F6E867AB5261 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 9F3DCB166431895CB3E59A1036BDF02C /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 9F81DF2D006C52D3C759F0C2B994DB07 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 9FA4AEAAD22E8F3ECDD85D97BBB282D8 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9FA625835071568485C6933C1EA918A2 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 9FB4EDF19D1644FF642193E3ECA82351 /* 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; }; A00FA0A24655CB8F5AB8B70AE509BB18 /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - A010E6033FF9CA9113F7E3A876AC660F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A02C799EB03CF97350DD5854B811C0C0 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - A049DCD752ED73A3C3142911E583CC30 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - A06C9573800BE82290BC622570CD2D16 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + A04378B750390FA9197CE08773E8A6DF /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + A0503F2FA3DC9427A604CAC335BBD8DF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A057BEC6579119B8A359B3234EDC7AF5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A07CF9257E772EF390552470FEE43BFB /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + A0814B9980CEFB4AA163E5C0FE491507 /* 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; }; A08F869266F38519AEA0AAE93ECAD2A7 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - A0C71A8BF755B047A6CF93AE27D962DF /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + A0A3C365D6D9695020F22E89EE0829AE /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + A0B5511CD946C96516D54260C8B42A94 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + A12A109DD4E22A0DBF6FF579E66843B0 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; A1392FB10E0827593617B7AA05394353 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + A13D5BEDDB728C3BB3CB41EEDD61707A /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + A1512754E862C64B6D673A29DBA48C95 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + A17C4CE7CC07E5F34676C85FE28D0296 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; A180D1561EE0153CEAE325FB966800B0 /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; - A1B2AD66D7A9765C434B365FDEAF4022 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A1B3EE1E4659F5906B7939DB8EB030CB /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - A1B82C747E2EFEE16D2A007D5E678461 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - A1D0CBD754DC34F014D38B05008B8745 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + A1841F077B29D6A80EEDBEA24DB2C322 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + A1923765E1722B016062233F42B81720 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + A1C4DE3775731A6AEDD336067EEE03BF /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; A1D610CA53E44198C6CF77461DF107ED /* GDTClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTClock.m; path = GoogleDataTransport/GDTLibrary/GDTClock.m; sourceTree = ""; }; + A1ECB489062ECBD9F58B75AA5942A712 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A211DE5FFA61917BE4C69FFF1971DEE6 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - A2128DAA3DAC64937C1E6568A67A7439 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; A21747766DD83B697F1247CD235A13CD /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; + A21E000F1B505340A3B129180C852E2F /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; A2309B02D4CBE5D68836BD94999C64E2 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - A23231E02523DBE1CEFD142A4EF57119 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - A2551752B23876F7D9DC4F441A5A45F9 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - A2B979B49F7F0FD5CF0AFDC0EE85677D /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - A2E8B0D809212EB4C96F0CCA0F7F3D37 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + A26D21EE6973836603D8347C4AA8BD9E /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; + A27782AF48BDEA48AEDB672971EA809C /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + A282F86B0BEABBF5B518E289006DEAF5 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A2C498039C0E6E39E7ADD5FAF1803B9B /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + A2D800D10618A0144F1DD5864B687C20 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + A2E5B3203EEEEFDAB9079DE4F5CB11E6 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + A2EB051A29B35EC96FFE889FC5CCC558 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + A33BEBEB9296D799A5CC2F6E1DA6868E /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + A3415E38D5E1DBC30DC4BCACCD73D64E /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + A34D7856C33ECA9A764E89C5B34ED5FD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A3563F6253B3ADA72FC5A1180FA6EB55 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; A35FD940F25DDA9B77B7AFCE50EF51FB /* GDTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTAssert.m; path = GoogleDataTransport/GDTLibrary/GDTAssert.m; sourceTree = ""; }; - A389A9A7F2B314A8E20CB931728247C5 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - A3909AF4DCC56DEC8BD614F01AECA9B0 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; - A397C6432EF2937F4CA14D523E05B8FE /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A3CF70A53EF1E392D30C064F7E3F82BA /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + A36C6638183A9E748FF37DB421B76D3C /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + A385FCD9093C6C9907B533D8CF292798 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; A3E63A13602882E51CE5359C7B370400 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - A4061ACF38DF7CD0EBA4002BB78F6207 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - A40D49376282675A8A1608198C4819B7 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - A46CEB0D88622A4206E1436F9F31EB39 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - A472BB9384B83E73AFAE0B367EE088AD /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + A402911B73162EAE51DC95CAB1B185BF /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + A41056D251493CFFD991E186AEA9B74F /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; A47B0FD5533369CBB8D4F5907D6C95B0 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = Firebase/Core/Private/FIRVersion.h; sourceTree = ""; }; - A47C0CBE5FA1A3C612E50398D72E3288 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - A4A7320CAB16DBE6090FF9162811B32F /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - A4B5D99728B4D33D9FCDDC665DB25379 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - A4C3171701218F19BA57771E76E4453E /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - A4F923DC4CEBD2EB6AAEA9D65B8BE85B /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - A55F4A869D8A3E299746A434C181C2C9 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - A598C0208EF4B24378EBB0A461F36DF0 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - A5C0A3B289A8E8C397553F8B5795D657 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - A5CAFA657156AFE1D21437C7A8D7F6D5 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - A5CD301CBCF12623517092F643A8D4A0 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - A61A2F8B6DF63BCB408BA44CF8062CE2 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - A65519711D7E6514127CE6BBFACA6EE4 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + A4BF94965D3CF5366FE94F4CFDA5E147 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + A524FF638100AC45C33EF88339FC17D4 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + A5453BA67D5A8D1265CC4D4F25D4ACCF /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + A57F6995734EE8ADDE7F8FEFA25AC49C /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + A585D00A6F08EC44BADDCC044335DDDD /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + A585D7271AD91337F3DA2AD8729BA9A6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A5A00C735FF3CC0126B0373B8738EE83 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; + A5D09A138AD3EBED1B44789D6A93DCDE /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + A5D2B29920AA7C36258802B49B49806D /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + A5ECDA009BD274EE01826A8215EB1488 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + A605D1F6B49B045296942CBA5DE6616B /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + A60FB87EA02412732DBF2EC5E7A6A199 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + A6298B7EC5E6F59CA4115EE8F575AB45 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; A6554CAC66AB58DD6D06EC2E8F89E196 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; - A6843A5A11A1F90BF27E91E750F962B7 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + A6A1637BE29A75F7F13B5F7D4D060A05 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + A6ADC0ED76E75FA14818D598B0C9A7EF /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + A6B7370434CF3B98104CFA90EDB7588C /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A6BC29B4BC235B3DD0A69D3481D08993 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + A6CD8A31EAD691BECF392DE6526D8B16 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; A6E0D58232EF1BE4057DF65FDD108841 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - A6E5449429D43C155281806D933D684C /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + A72C645758FFD253BEAF84EF9815D892 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; A72FB0A1AC1D24670509A274650EA2F3 /* 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 = ""; }; - A798D3BC0A968E1D468B9F1BE57782DE /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + A73B61118A7A2771EA9034045466E257 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + A74E5A3A211DACFFD2A246748236E82D /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + A78B54BD3246CB0BE36024F0436A9F16 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + A78C923BC5709560F8846C114C67703C /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + A791612F5D338BBF660CFE92C5102F3C /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + A7A3F93009F5C4B541284A373C6C8B5A /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + A7A53BE143693748F97B1EE4DB8C7E59 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; A7A9619333FE09CF2DFA4A5A7A719200 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; A7B1B6D5299F4C34E1103231A3B70571 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; + A7B8A6812933BF099464A855BD022D03 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; + A7C6FD5F50751A07FAC17D258A658563 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; A7F28B7C648243F665EB4806AE5569F6 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - A819EBFAB8718BC7B0C8F260D76861B5 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - A82C63712B42E185D5C270BBDB629E32 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - A891980393FA249092FE7CE1595D6700 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - A8B4D61D8288CE098D82D4273358B6FA /* 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; }; + A81D42162A1B05AB9ABCFBB62054D5BD /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + A8256F9EC248B879F85E9850566E0A1A /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + A83563ED1B8552B3023F8496D52DDEC5 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; + A84BC45100C1120943994118E8BC0CB0 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + A87D294F6428C7EBBF8E362A82C30DF8 /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + A88F186F604A06A6BAC80604088762E3 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + A8C0BAEBF82B7932F04EEDB15268D083 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; A8D66EB87FF1052564109710F3EC6D0F /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - A8E7C9A1C152FB2C9A1CBC1BE0C1D48F /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - A906C31F1EA0FD26B065B92996BCCFB1 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + A8D76E43186948D347E816B807616C51 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + A9044317CFED7D37B46560668B46ED79 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + A90B1A629720AA5F418DFA00D3D2F3CD /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + A90CA3A92964EF2579DC9E11BCCBFD45 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; A90EEA3E24B6338A093526F3631E6B57 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - A9202207E58FD7F8B110D0C87D3BEF34 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; - A9229A056CB0E4E9B46213B6DF6DAF7B /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - A9231F578E26A211DE0002B5BDFDA0EF /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A9260E377C17898766A665275BEC9B96 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + A932D6DD5352974EA8656D48EED5823E /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + A935FC058BB1092F0600E4B45DFBAB74 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + A93CF72DDD91639E5E0D4F9AE2FFA261 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; A942963ED07E6DEB650FA128366D8156 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - A96ADDFAE20DF4F9B514874EEA3709EB /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + A9691ABB37712E5FCEBACD419A31BD2C /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; A984D3FECA3FC20063DBB2260C3340F6 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + A98D3BF786F423F9CC492FAEE6A1D1A8 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; - A9A87A0830B20D2F1D739F76A9890AE3 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - AA0B72A9927C8B436461731558241482 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + A9ED93A67C41D0D1C7735EA096A718D3 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + A9F51DCA8E22B93E3861AA519FF984C0 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + AA02C1E29CB6E36CF2F968FDC1B38B00 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; AA16F20ABE77B8DD649F24D5CD6DDC3F /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; AA736E438B04D91D11B081155E2CF4E0 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - AA86777BCF757519048D2B2F0BB57062 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; - AA9F3BA91EFD2DFD1E498DEC5DA20721 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + AA85A239C0652695B4C80CAFA929E1A8 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + AA993AC1DE31C550AA0B661B0D876BB4 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + AAC46B5086C5C013D36C6FBF9DDFAC19 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; + AAD250051D4F61814E70006F8C68D697 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + AAF5A90B3B77B36A07954CA39856C1A7 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; AAFF9C0E0B5630B174793EC35C4C38D0 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - AB152A216EE0183A2D0E61D446A9F071 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - AB4EC7BD8F12B5BFCA132B5F5897107F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AB59CAFB02638F9819664583A263EEC6 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - AB872D6F4881170DA344D4B5D2B8950C /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - AB963DC761596175FF14D24B9E1FF84D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + AB5BB3FFB9D166893CC95BD6DE247464 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + AB7703776FF36261DE9FE1C93A324AF3 /* 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; }; ABB5C981E713091255D71AAE8FE466A0 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - ABBF666395B823EE55B5DA692E6E3421 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - ABDF8913C48CDFD3513678263BD2FD3A /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AC251573210046CA55ECE59BC216F8F9 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; - AC4FDBC85BDB8D7D488E2A0A3D48D552 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + AC299F3EA25843A6BDBB01C56412A6DE /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; AC615868BE8E9F48A3A6A126EAA7DA56 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - AC65625B781057D8733A1F09D482D2DC /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + AC648412AF4600F9C1EDFB18BC08768E /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; AC67BC726D036DB665F8D256B87CE29D /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - ACC9E5D3EB6C2A37A989CD278DFF0E54 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - ACF74694A6631E1862E7387FF1FE94C9 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + AC69360E61A151E205754F6D669DF8FC /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + AC8ADAD4814C3F1601DDF0ACD33789F6 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + AC902E69B0101545635BA89305C80F27 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + ACA35723F300F3BB61F1EFECA1F9C1C9 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + ACCC460723898206A9DEFFCA2B534551 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + ACE70D1389E6F764B944D5A2B92BD6A5 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; AD02169BFC7C99B84A56BB3FE5948E4E /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - AD04C1BFC9C5F281657981675CDCA95D /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + AD3015F3E07D474D457615D397B24B94 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + AD3FBDF55D00D79D9DBDF0808838A45E /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AD4ABA5CEBCCE553E9F6A570051F14A0 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; AD4C5E8F109E5073C9334BC16646134A /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - AD4EE6B665100A595F0DC9AF28ADE115 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - AD6BFF2AC7F77775631A869327EBF543 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + AD54B5D28CA33D8094D80425CD549FBE /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; AD6F0184C9B0D921A0733BB5A058FF11 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - ADF6CB3A2BDCBBED3D3415EEB41FDAEE /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - AE049BEA86652F24D0A2D756241E35EB /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + ADA731BEC58D9973CC2DD6E9675F34A3 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + ADAABE70DAA2A74A695D0D9165F0D036 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + ADB237C3B5518083CB337FAE3C6A6EDA /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + ADBF60C609CBA63C10B9AD7A1B763FDF /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + ADBFCA4EE8B961405264FE3B72430ABF /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + ADD740B07F891E66997AE8BA270068A2 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + ADEC67C2CCDE6DB26D8E0AB6E15E78B0 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + ADFF87B6A82B2208F2E36CDCF7DF9A10 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; AE0B90E0468091ECE32ED3647927E0A0 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - AE1C1F5B1636218DCEC267CBFC409026 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + AE241FF3367B3DAC3C5D168BD7B35DF5 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + AE2922524544A62E72CAE556CACF8353 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + AE587803218535C46E1EEDB2CD30D2E6 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; AE60B3A27F287887508D97080546ADAF /* GDTLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTLifecycle.h; path = GoogleDataTransport/GDTLibrary/Public/GDTLifecycle.h; sourceTree = ""; }; - AE8DD84B7A89FD6DF94D5FFA10AE02F7 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AE9A643C6116EA81C178805A8C7A2F45 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + AE9E5B33E4575C3BFDB4F4B244E6A755 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + AE9FB700D8A9410FEBF933F946789F7D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AEA0DC5B6845AB5B1AFD86B44151D246 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + AEAB7139C9DEA683254F207803C2F25D /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; AEAFF03F736A590CC3D80A40C1C64FCF /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; AEB04230EF187F0097DCADD95323A008 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.h; sourceTree = ""; }; - AF1D3A7E4F081812185DAEB37EE6E065 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - AF2531016461C8BC32A2D395A027A648 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; - AF2A59648637F747F242FC3FCD695827 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AF370F773F98172EBCFDD5981186996A /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; - AF55E15E2C3E4E070679685042CA4096 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + AEC758BDE8542ECD3416902DEA344304 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + AED110A21816296407A6A61AC9990E5F /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + AEF4B5710E91A0F3799C82823FC25226 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + AF3900FF87C77F47E0065CB6103276BD /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; AF6E7AD32B0CAFD0E83AA25B15391D05 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AF8CDB3234290BED94BE4557F5886530 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + AF99652E3E3715C364F42DE991BDB1B6 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + AF99F8B9785ABF57CC3B10E0C100B565 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; AFD2AC81AC5FA51E82EFED1BA17B7573 /* GDTEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEvent.h; sourceTree = ""; }; - AFD64F773FE98BC3A3ADE46A8A9103FB /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - B02DD65D05D4FFEE128900D4F7D0DFBC /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - B038F44ABE2A3C6093324D530ABFE312 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + AFE595C13AAAB67AC3A8220900A1F521 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; B058F035CFD84ECBF8414E4EAE5834FC /* 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; }; - B0A3DAD382322F1A249BFB52E044950B /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + B07EAD9D7D7567672292BBFF00972542 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + B08911BD2433DDBEA93304013A8022AE /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B11A55FD8328E6DD365FE8FE004FCBC7 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; - B122B1EE8FD3AD8E8CA73EA280DF17D6 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - B13AF61B2C73376A40B9B8A94305983D /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; - B1BCB56DF0243718905C4F01C56AED89 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - B1F55CCBE67BE68BB69741B56329314A /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + B0B271CC330D29F0587211E3E531EF9E /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + B0C02F0BE5E491D1B2A5DA0E71329CDE /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + B0F6C3A54D39DD74B9F4CC6074F892FD /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + B0FF906552B5DFC796F25F2644B3B20E /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + B13B1365EFD333ED252C39A303169F8D /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + B175AA7F1D156BA40EE5836DCAB2223A /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B19F2883CDC6C609DB643BCC2F776E02 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; B1FE0D366F6E3BEEE492394D7E4FD699 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = Firebase/Core/Private/FIRErrorCode.h; sourceTree = ""; }; - B234A34E47BD553B1BBB16FE8E4232F5 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - B244A2A0B9030A23EFCCC664D154DC51 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - B250BD041FB5381BC6D982CBE9174EB7 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - B265EC590D0D4072D136197B36E1FA5E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B21AD03C6F6CD5601C5D12A8A809308A /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + B22BBE455DEF05ED888005038069CDE1 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + B260E0EE240A30CB382B1FB7E0FBD03A /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; B2735CE302680854AA3529AFCC29CA03 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - B287CF42AC85785CD23D4F996A46205E /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B28DFCB28C906E2A2ADB0BBBAFA4E945 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - B2AC5E2196CD9B6DD211636809906426 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; - B2BC78EDC760B450A885614547A7428E /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + B29F537D673D77BD4D336B4E863EF7E4 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + B2B92DBA600B84DBA79028A2D7ED337C /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + B2C3AC10CB012FE8FB31E95320947EEE /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; B2CB01CE9E07412C5A22C1E15F8F4859 /* 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 = ""; }; - B2EDF1DFD33ED220F0315B82842BA8C8 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - B3036C135F1DFCE419D5AA9B4DFDEC42 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + B2D60EA0918D362F64BF181AC1602969 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; B30EC1C70EBBBF1AE74DCF889632A04B /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; B3125C414316843B2D464D1AFF4A848C /* SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoderInternal.h; path = SDWebImage/Private/SDImageGIFCoderInternal.h; sourceTree = ""; }; - B312FE5691799113B85CEF8AE9BB6290 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; - B330D7E6ECB96495FE5D9E5DCC9EF7CC /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + B3178BD5429274B120B63E4B5484C9D0 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; + B3449DCEB6A78DADC97D79F2ADF6AF0C /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + B375FD543CA64F20CDE3F99EA6CDA070 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; B37B061BCFAEAF0A54D7854C6C0322C7 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - B3BB883D8A8C3E696C572EF6EAB59284 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; B3D892AE8597A9B7DD8584C0AA7DA67F /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - B3DF4F93DB36B32D91549C6ABADDB132 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - B3EA2ECAF632E137336F97437D3E6ADC /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; - B40F0C3B301F32AC85B84546178CE0CD /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; - B414D8CC65221A132C98C29A03A19116 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - B41590C1DCAAA35C248A956F2B3F7929 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + B3D91346D5DB2BA26577F5070AD51083 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + B3E7203A22D67980F79BE1F48F851142 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + B3EE8748D4C2705B971758111FD67780 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + B3FB53A8467ECF9DF9A7D394D04E7018 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B440325A10B029C79737D862E693796A /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; - B501E4BAEF3F88DD797B97D436749B45 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B539A7B9514BB8308B7BC00D8903DEAF /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - B54554CA08243B0445BEE89CEC127C6F /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - B5BE368005DFD93C79A814B8743A0E9A /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + B446B989F75F5B50E56A3C514BEF3880 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + B4599C606497FF6E3DACFA8FDB506A3F /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + B476C336F3457258FE5885E0F7FE3132 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + B4BEC43461E194D759435A7DFA9EF956 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + B4CF19A59BF2AB048C20E2B532EBB24E /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + B4D0C66DF0FB8536973108AC7E4F6636 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + B4D69FC46A221AD8AE24A593B9B8D3CB /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; + B4F06981DB3BCD3E98A8E0FE77AF1DAA /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + B506EC4F45536B9E3416460A49B876AB /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + B50CA41243E0F44D3881FDC85707F465 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + B5562B8CCC14A247872C2B827C4157E3 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + B5744E663AF4BCC3C10EDBCE112BAAF2 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - B5F80C9501800379D69EFFFD9BC11E1F /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; - B60EAD97AC08615CF8BA89493710EA13 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + B5F480CF72190A5432EC0591BE01C139 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + B5F73E4F9C9156EFB76337EB94A78AE1 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; B6219DECE46FCBA0B37B214302C278F1 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - B6577B973299B70BE40F64482567C803 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + B631F247E1DC396A1BA5E711C5F70F33 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + B6387C500B2F2D7731D72916773B324C /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + B6469FF91BE35896A0F7C4A257B67385 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + B64ABAA2ED051F4D59C5A0E249CA284F /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; B65D1E0F95214E2E1AC4F513C1753CC7 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; B6B1C72E3F0EB30F5121B546F5090E9A /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + B6B4EE72259D70A0AE81AE8ABEFBEC05 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; B6B66C3CAF05853DB459D7E95B9AA823 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; - B6B7BACA996C70663A94C0AC4B349908 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; - B6EE70348525F32720F5513A236840CB /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - B7437E080DBD8540D545B371A38CDE34 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - B7548BAB87BDEEEC008F4518116A4FB4 /* 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; }; - B755B5DEA69CA3FE94D40CD2B3D5BDA8 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + B71F97050C5447905B69A1EA525371DD /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; B75A261FE3CE62D5A559B997074E70FC /* 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; }; B77199EB723C7E6DB6B57BD7FE8D82AE /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - B776E20C9A189F93824B81E78FC45C39 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; B79D1587D505AC41205B1956A58CDE6D /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; - B7A4880C2EE835771E9D06A2BD538F35 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; B7AD9152F3BD8FC9B15BFBC1B66AA7CB /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; - B7E0EB48FBFC098528F3AFFD3FF860C5 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - B7E6A981F9F4AE159DBB3DAD00EB4403 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B7F0074FC2D8A9EA66D202D5DCE0A2A5 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + B7B9CE3358A1EB2B6ED1D52185B4EB1F /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + B7EEF52E683BE96395DCCFA4E115E9CA /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; B80484046E542C11B4649FCC8CAC9C52 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; B8408F86535310EC07AD7AB9FE1B5212 /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; B843C0444B6E7D0D440EBE7179AB662C /* GDTEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTEvent.m; path = GoogleDataTransport/GDTLibrary/GDTEvent.m; sourceTree = ""; }; B87E79843B4EA59AB699E20F9EB2ECD0 /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; + B895124FF14733D7CEBA9349AA9E6180 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + B8BDA0D59E0FDFD4916DCD98BC7C3B04 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + B8CC2A6D6C06177C82A687CF5D7CBA08 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; B8E0F7766A408C07F547DE4D5D2B2979 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - B8FC91299498ED4C8360B3FA9F79E38D /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - B90B4942E1ED0199158E5ACC0EF66E35 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; B9229E59D5CCD6CED8B744A44D0EC198 /* GDTStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStorage.m; path = GoogleDataTransport/GDTLibrary/GDTStorage.m; sourceTree = ""; }; + B929AB3C407B90BACE4B5420E0D21534 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; B956A57AB40A828151E2DDC55448CCB3 /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; - B96641B5D9DCA4C6DE1C0D7235BAA942 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - B96C2FB80F4A61F7610D6663DB9DC0B1 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - B9935A42776FF18709A2F382332B44DA /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - B99E5695594CBE8CFD931027DD3C667C /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + B98247EBB5782CE8051AFEBEAAF257F5 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; B9A1B0E64A972AF42DC39566FEE8C89F /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - B9D904F1C8064C21F44FCF652E65AAA8 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; - B9F9868FE878EA3D72E95B136344BEC1 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - BA407E1C13578F7B43F9461BB02A73C4 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; - BA44C408D387162B22E4CD223D65C7B2 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - BA906CC25277C293D1CFF35A617152B4 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; - BAA6411C85426B36C85020C4B1C208E6 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; - BAA7D6FBDA74E2838646EFC29397B571 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; - BAC744DF840B073F67D86E407066568C /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - BAE4E2BC7E0C20A3AA1DB5C880F2695F /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - BB201F23A57E266A0E92BEF7B46EB16E /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + B9A49C65DA0B4CDCEB3AF8F86EA15A81 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + B9E5C63C60D30DA96765FBD72D37FF76 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + BA1ED11FF0F2ADB786C99C7FFA39D264 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + BA2CE1FD925889789A5B3CA6FA7C3698 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BA484BE2D968B51B86CB86188515DDB5 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + BA7CB9D34D41F813DEC836D69DF5371B /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BAAFDADB1DC6C392F10FBA0AF563989F /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + BADF8A407B32FB661517543C4601901D /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; BB4BF48A648AF492AE8FCDE9F4545A29 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - BB93BB2CD1410819A6FEEBB03477DAE8 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; + BB6129BCC7D282C67A293E66DCB09D2B /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + BB82B5DEC21C8CA4E11D8F527AEFA571 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; BB9490D5D6C2A4D58F4DE53CA64B65F4 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - BB9605D1B5460502B2344AE8267BB8CA /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; - BBCAF914EB2DC456D8150A87B6FB5C97 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - BC0F6ABA02DFEA3979B090303AFE0BC1 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BBAF83B7BD347FC1D67A49FC2E8FE76D /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + BBE943BCB921CC4D2A39818594F0864D /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + BBEF4F6A79D7A337F2E745F009A9A77E /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + BC1CF879F6F28A1206E11A2A7270FA83 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + BC29B87A284654FBD1548DA33E5BB01F /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + BC40DBD594869BA9260E1C5449E892EC /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; BC76E2FBF45298FFC195C1BACE29276A /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; BC9B332A6829DBEC2A6BEED66CA30C36 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - BC9D529BF5731E3078C6EECBDF867328 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - BC9D7CFECF0E1016A7AC15B8E44E1539 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - BCB2FAFE4C12BA32A8EADC9720F53E34 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + BCA0A28433AF58C83F14445039924E4C /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + BCA226BD14A22B9CE3BDFE2C44E4B410 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + BCA45C455C082F94549D0DBF86BB2CCB /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + BCA6D798952261C230B8842DB9F4AAFD /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + BCBB48236A20094745DF341AA5823AC1 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + BCBB7BBB84CE072F72C306CB1A339DAB /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; BCBB7D5FBD7D716F754F9E1C34C1EC74 /* GDTEvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTEvent_Private.h; sourceTree = ""; }; + BCC049C90E0046B1BB61D933AA01747C /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; BCC4CC6682FE82D7FD68D5C478533F62 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - BCC8958D94FEB92227099ACBE9C9FB36 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; - BCEAF35223D82BA11CD63E498B46EDA1 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + BCC9D44B399C950B10E39F7FF3CDCEC6 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + BCEB923E2F3F8EE5A58153C6B1EFCD5E /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; BD02FE5A2E5FEA9FC370768CE07C74A3 /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - BD46AC5385CC84A5952D1E255FF9A689 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - BD6F5B85E73250F0136EDD338592C8DE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BD322B2F806FBE2E5467AC665D66B514 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BD8E04118ED59087038A3197896170AE /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + BDB2777A153A440E591DDB62FFD6226B /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; BDBE26D1AFAFADA908C7EC0D26845579 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - BDCD5401FA368574693A20794B33DA3F /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - BDF7143096F238E5F373CE201997766C /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - BE06FAF60C7586CDF0EBB38218A8E5B0 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - BE07A41A7E2BE53BFC6B0863EDD5137C /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; - BE09031574CDEACBB49CE1AC66544EDB /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + BE0FFCFDCA1E8A5EF2264985059D1E7C /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; BE65063F801DD1E37BBFCF89EB4B25A3 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; + BE92589706D64B12F90B176B6A57652D /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; BE9C297AE3F56D077125FAF26B6B5DE7 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - BEA2EA1E087459E4C63B1E4E71562822 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - BEF99ADC4DDE3984F46775A1AC8A3678 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - BF115FF8ADFE0DB9FE090BF6D8064175 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - BF45BB6462C515794294F19F13B4BB37 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - BF5CBB0DE4D0AA9DE287CF7AE6A51CEF /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - BF75FB52132595BFDC41B0278ADAEE91 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + BE9FB13293581E79896EBD861ED578BE /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + BEBF8A5C3C70FF514639936DDF8BFEFF /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + BED625EAE4AEAD64837D244E161559D4 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; BF904877DC532C867E65B62EAB5AC8DD /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; + BF932DD413EE334E7D999B9AC00BC754 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; BF97D9E3AB424B03E0D472FE750E447F /* GDTTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransformer.m; path = GoogleDataTransport/GDTLibrary/GDTTransformer.m; sourceTree = ""; }; BFA3D1106C1072A2B733533A2E770794 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - BFA466318F7726718D3485D2E96C30E4 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + BFAF164315614188720AF2FD4A9D2270 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + BFC8572BF2E16B04BA4F3A190A018428 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BFEFE51A7E6B91C9E46778BE0E61BFDF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C000D12BF94907F234EED6E2EC242655 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; - C003E82845B79893D5C223AF9F0D9547 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; C01777BFA2467300977CA3FEF913D5F4 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - C0422BBB11687EFE612D490B8B0C77DE /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; - C046E8B167E889528CF9671EC0A9C7CD /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - C0AFA44A2045D5AC96AB70C780E3244E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C0C99EE7CEEF2ECF943384B07DEFBF58 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - C0DF36E5B1109A8017EE36132A740A1B /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + C0CC7EFB48352588D0BB4E513ADDE0F5 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + C0D3EA5253A7172009313C0537219DC2 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + C0E942377919BBE70AB48BAC4D697D4A /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + C1004F9B7B201455C573DF6B8B445748 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + C10B157B3F1BE0EDC78CE7A467C73BF2 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + C12809028E6E70029F79024699E11BE2 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; C12A2CAC51F8034811D57FAEE5A3A459 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - C1481AC3372BA057871887B7964B537A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C1485CBAB7240610926802178F495435 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; - C189945D9B7E0350FFF117B433DA54FA /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - C18F74C4680E509627B27F971FFE7F07 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + C16F9643A5F548F5343330F102BB2FCB /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + C17BB0397F61A1876AEA6689322C7C09 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + C181B7F718B659FB9482CFC20888531D /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1BDAF7514D177B767F3850F0608EBF3 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - C1E9AC90B7DAF68E7C5B579D368FF30B /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - C1F15DAD777D61E47556A49390A2CB1C /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; C1F62027A357E86846B1913AE4D9178C /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; - C211084854232733B6106F84F2060236 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - C2205758F4EAEBB746E096C755FAD032 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; C222210BC14529A331E3ECF70A2EED5E /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - C2517F65DB4D4963955B79BCC8FB2A1D /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - C26A935CB0E6EA873152D98DFDB862DF /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - C29328094405CED92A7C7819B81EC90E /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - C2DC0411F3D040280C23BA49ABA4BF3C /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + C2611120AF9BC964206E3F47E1F91CBC /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + C27DEF5F9FE096244CC1CE7B2955404E /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + C2B5D1ABE022EB310ED1302019A45B5D /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + C2D159A8C3C058FE1FD797FBDD068527 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + C2E8E8563621FE972E731563A3DE02B7 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; C2F2A0EACBCFF372BA3D861762FA3918 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + C2F4266A6264DC9E74BC7FDFE139661B /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + C305168FAD215519274F2AE6E43577F6 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; C312E4CB1D08B208EAE28642C3490978 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + C31B55221F2B6E3FB40232421D286F52 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; C31E5FC96B7E9A28293CF0E6C071B867 /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - C3311B35B5431B68BDAD6D00E792EA16 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; + C31F8FC51B67099F8B276DA2E2C77161 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + C326E06124A6D1EA1B7089D5E7E9F8EC /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; C3316057687A0E4CB96C6EADC68B8584 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + C3320471C1E5BA0EB07F380A0B91F931 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; C33CB5AB34B70CE551120CF7195044D9 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - C355DC38001EC1DC404881B238ADC3B4 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - C358DCFDF7DB17909BE6CDF6AE5AFF7A /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; C35E7FE27DAB66CBC23CF55C160F9F81 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - C382C4B6DF1722D9953FF2B3DCD27F4E /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - C3A398FB2047D8FB5C115BB7C9C44E07 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - C3AF558283E7E128FB626F24EDADC103 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + C366E75E4970FFB7A917CCD2CEA7C283 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; C3B73D30EBF2384AD1F89DAE90DD80A5 /* GDTRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTRegistrar_Private.h; sourceTree = ""; }; - C3DAE7153508F7F0B6671673C25A424C /* 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; }; + C3BDF4648814948648C45BCB5C609DFC /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + C4195C5EB9ADB2FC214F4309E79ED4B4 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; C45BBE85AD818400CB1A3129182DD6CB /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; C4632797BCED5CA7E43264D6EF175EB8 /* 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 = ""; }; - C46431CFE02C9A38B7F8ACD3747A235B /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; C46905CBF59E505239D2FBEE8A2482ED /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; - C4741A74FB1A6CD3FE3B6FA8EC517E84 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C476CADBE585CCBC4E285BDCE9C9B9B6 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - C486485423B3730492ECFD48D1453907 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + C48F1E63F753961050D0700AC95A8CCB /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; C49BB1DB9017B92D7A60FF49B674F10E /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - C4ACA86B0CE6802F5303BB625FF3E0F4 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - C4D27DC1954AA7BF4D04B07CAA3A188F /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; - C4D6261E82E694F6E05A3A75BC4BAA45 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - C4F47A60F5BCB7F76EED93F1C33E870A /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + C4D4EAA0DC0984DD9F7A1BD49ABF23B9 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; C507B3571991755F03AFAE7FAA0A698D /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; C52620374CCE79F63474832E84684EDF /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; - C558069696C77025B946DE8910693620 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; + C529C576975DCCF37B748202E826D322 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + C52A38A26D941F72597DDE9F0A37A8DC /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + C53D620466FA934E2DEFED95435D8B35 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; + C54CCB3443354957C01F6FF6B3003657 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + C569548911D21A9C02AB7628D7CB4D4D /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; C56B144313F11160699FC870103B147B /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; + C571527543C1C6A72236C840D24CEE16 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + C572628581AD45D5616C05090F280293 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; C599D37E0638CACC8F72727A8ACBC6E8 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - C5BEB9A848B453A49069AB5DAC45D1EF /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + C5BEED58E8DF46B6F6652CDFE70D044F /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; C5E50AFB60DE75A7F2AE919BBEB66E7E /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - C6195A96E3126C5962D909EFFAE81ACC /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - C64D7B0743BF13D2875ED1AD6F5B1BBF /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - C651F8C614465833939221AC4CFF9313 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + C60BF5F47430ABBD838F517D9800348A /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + C60D767A0E2981AC2AEC4A34BD00C76A /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + C648552A2843B71224D3B125A45C15ED /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; C662555DEFDD7CFFF2487F4277C6C686 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - C66EB41246D9082724732E634930C37D /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - C6B5FE04EF96F3DBDA6FA2EACB05DA49 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + C6689062F276838BBC2F836F080ED20A /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + C66CDD18D336271F57E64297A9DE5943 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + C67D8DD64EC1C6C8765D9D4BC2395E5B /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + C6BBB9126F7034482276766B5771AB71 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; C6D51E11A724780AD122EAAB74D10317 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; C6D764A8FFC016671C8031425E8EE2F5 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - C711D324C097D28645BE1368E672C76B /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - C71C5AB1403BC17521FDEF0FDBF14CDB /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - C72F668DD60E0AAB30EDB1330EFA94FA /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + C71CC06056DF5AB069ED78C35A7CFA26 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + C73766F708C9C34B377D7AE36CE2A4E2 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; C753E2C0E88ECD9993A02DF28C858778 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - C75D6141B889C90F12173F1E3786508E /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - C7699AFD882E9DB82C6396CD2B33D5D9 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; C78D47F722BB1CAF44A836ED125A9FD7 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; + C7B90CBFB4AC716BB821DF3EFE150151 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + C7C00ADCD67CFC65D0CE6E869E4F049A /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + C7CE6D83A542AFECC1A89C528D5F880C /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; C7E16FB85FF0BDA0B29022320BDF1B66 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - C81F654D7818C2EE9EF9C05806424B36 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C830DA96237FF0F27DC906DD364FC1BD /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + C80C24196CA7E3B278CF17DC2FAC5AB3 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; C8441C7C956DD16F599D219757963B47 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - C887A99E09489A56DE2379D37D1AA86E /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; - C88FF80CF46E6A7B8FF8FD176C8397E0 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + C85E4F5792725A2ED57B07340ABD5A53 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + C89BB9FBFD53EF25A96FB696D4F46934 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; C8ADDD3DE5B9D58ABDF6D510A502F85F /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; - C8C38C11207926949E1F8094DFCEE99F /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - C8C4C62EDE5BA4D7F161B54E1D83F566 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; - C8CDFAE1DC19C13D3DA945619871BD92 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + C8CE94D59493536AF3CB0E93B9F4E55D /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + C8DFC07E101B9CB1761F16757FB29959 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; + C8E27E3B1EA80180B17EC246D3E403E3 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; C8F458DAF6DA4D546BAC86772B2CDF26 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - C9013C562EB93A1E3B006E509A27A411 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - C92512161C2301398F3E08A8BDCC12D0 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + C8FA6653516966570CD5E109475D8D85 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; + C906F0BE4914661A27CA98A44C69709D /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + C915CE4C5E850639992421BBA978984E /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + C91B68631AA428B8446308DCFEDA2732 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + C93EC000089594FF099C665C0CD5D1B1 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + C9473900FC498C6D5B513A6248DD89B6 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + C955FB070DCDF20A68E7E994CD2E2C37 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + C96E41E77A36921F24F68BFB2F0C3D54 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + C9882F9D0C1F75D8C5013E75A9C5BE28 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; C993DF06793B7954B7AE6F9F0A64ED07 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - C9AFBB9FA5EF794E37A4AE54452BCCF7 /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; - C9C25D35DBEAD6FD160BAA8C91BC077A /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - C9C40E7B6B5993D70A5D70F7D30FD3B4 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - C9CD2D78E8F41D39A64B4383E335683A /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - C9F29936E7E20B3CFD89B9C48AE3C54A /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + CA005FB055FB73CB79712030C59FDD4A /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; CA00F20CD47382A4E8F6B2B57C44447B /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - CA1241D3B5EEE4FD5C20C761219A6335 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - CA21EDA115C0A41E286ADB005D6A38CA /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - CA225D5A2E6D717CD7870ED6432FA37F /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + CA2318FAF8C6794819597B7DA736974E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + CA2F65AFBC02446295C8D9339079109C /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; CA38D19C15EE7062FC041C4582E5472D /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - CA3C674A38DA149BA329634D1B2F2B08 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - CAC46DBE9FF571BF7244115D067D58EC /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; - CB45C71AA8B34A612BAED8BF10703C66 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + CA48529D6657E08F27B32CA412904B75 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + CA770D6C8EC9D18D035B8DD3A4669190 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; + CA7950AA6238AB2B349BFC5CE37C26B8 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + CA7BD2FB34C066034DC699D02D096524 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + CA94FE7C1ED0D22930A83476F47FE470 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + CA9741E151BA40B8E4E4D9F2C2D48A97 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + CACD9244F81FC25B9A30004DEE0FABA3 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + CAF1BE452932FE40346A576C71DBEFAE /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + CAF6DF8DAE53574A10DEFC9B56B1584D /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + CAFD426247162E8929B3CEA147364142 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + CB1991DD325FC9524024EF4257FB6332 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + CB47469B34FDDF6CADEFA698E652904B /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + CB52C85DE21D95127872FF79F7BEF816 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + CB635E8633F5B9A2412799EDEFE2DEAB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CB68CB30885069F725864FF48E3AC1AA /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; CB747B3063C14FFE271EBE8037CAC091 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; + CB88591B689B15F32DB8F6DA910E1845 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + CB9367A1D1DDF5E7789E9E0C94700A5F /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; CBBE0652EE9A9CDDA0DF797B7FDA8F59 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - CBD234B82B5CCAF78C77FA9DF5E9585E /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - CBF28F20DB25164617538A4344BB107D /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - CC034D566D928405177A6168FCC656C5 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + CBC87DE5A96C161413FB1A21675879EC /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; CC306A91677E008B485C2693BBF1C7BF /* 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 = ""; }; - CC3A25758C48E41849D21816D17AE1E8 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; - CC612AEFC201E55CBF50D8F1C40E3C3A /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - CCA0576919667EC33DF985E4FC2910DE /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; - CCA75C4910342977B6F64CA73A753E66 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + CC54D90115AE3980D90920A76CC33A3B /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + CC91BDE7051E43EAEACD33F3C2D0E4E1 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; + CCC3C579B0B11929E0551B33CE6C1686 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; CCC714DCDA38C719574933AD4BB18BEA /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; + CCCF7627EE1A93D9A80F2A155E016155 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; CCD312A444D75714EE72AB0FD34CE7F1 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - CCEBD8208E1F25947DBF57D76B5C55C5 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - CD0FE9AEC71E72BBA5EDC48C7AD1A511 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - CD1A41557D9711A38CCC49769B2E64DD /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - CD1FD19EEAE5B49A97158541191BFCD4 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - CD3B18274C7390B7F392369B851990AD /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - CD3C78B7160EC7119BD39667D355E1DD /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + CD1BEC727F858EF9794F6B8E4B755D98 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + CD4CF130DEB1168BE11420CFE58B6081 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; + CD508363E2FBBA6CDE5F78761320AA6B /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + CD6882F61920B611634F3F9BB4EA9300 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + CD6BD37D56DF74D3FE593DA2973E4095 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; CD7864EB1FCB4EFCCDE103F9D8F50114 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; CD8C1567FE91AF3DC28C2CCDF841BCE9 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; CDAB2A362C37E561051D58E59B8C6295 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; CDABE96C15F9B4FD9B3FA2B5448EFF61 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - CDB5F578E2042E693A3F18E5B3DA855A /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - CDBBCFB76DC32DEC120D50C17B098C0E /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; - CDCB0F44C93968319F5B2F7B8EBC8DEA /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - CDF181DFCA63D1C13DCE1BBC296EF995 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CE0615B53F7227CA93A036AB3700D8B3 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; - CE0BF9DA931342C7564A2F989F329C44 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - CE0FCE9C44F84A0134940CC28EBE8AAF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CE2680792DF7834893B2F58F450A3ED6 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - CE4F6A837ACAFDF071968B59BBF37B73 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - CE5C53A1B492CD6BA850C71383973F6E /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + CDB0A7EF39CCD02905815A0CC25C4DE9 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + CDCA5FCE50407C37B8D0720FBEDCDD79 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + CDE6A59ABACAA44B46D9F689EB31328A /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CE0AE4FB9E24E5BDDD8D43EE986510AF /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + CE21A33BDDA440B6E28DB4EA198320B0 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + CE5AB6C8A238F8EB2918F0E7FA1C2938 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; CE60F49EF77406B156BFE39692C9CCF7 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - CE61B3F28EBD3E2F62F2C9156F67624B /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + CE6FBF657AFCBC0CE992F27A287E263C /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; CE88AE68164F8E5A2B29F0E225DD861F /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - CEB2BCA0F0DD370D4283F50B7F88290F /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + CE9D4FF02B9F1E69EF139CEED6C5798E /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + CEA71924A53FA83777C47FB39771A3AE /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; CF2CA478943CD6319CC326CBC7DCA605 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - CFC03FF9F7DC49A49DBF4D4127046ADC /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; - CFD5AEA230ECA97BDD5DFA2CB6101BD2 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + CF43D92D4A9E043BF617A5C4C33ADE35 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CF4EB570F171F88B03630291CA925B74 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CF9FE7206E1F2A9BDC50B23FE1E37FC6 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CFB1F7C8CBE3A90D885A2D9F791D56A9 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + CFD43F02444B6C40723BD79FFF466909 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; D012AFD43F6B9E215E2529EE1DE37372 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; - D02317A1264D11D9C88D834F0437492E /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; - D02DEFE53D76538671483BD6ABAFF332 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; - D051CE3F548B77940F8E4B0E54D0A708 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - D093A63288644F13E10F340EED802CBE /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; - D09A584413A8371E3BE799A82AD2D5EF /* 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; }; + D026ABCDBD78619A4E476193AED5682A /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + D0277F480CE09A082A86B5E0AEDE50C3 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + D0344C759AE01FB1CF12390619BA0A54 /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; D0BBB1D952E11B5F023EB0D3FD91C887 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; - D0E0DFCD14E67C11706909A6A99C5344 /* 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; }; - D115542288AF9DA2B7799D6CCF398704 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - D13E6CA127225217B17223047126DCF0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D1585C3D95C3736930C300B0FB361CAC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D16147733BCE6219197491A1619D4057 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; - D2126D3931AD02B5F31B449780DB9354 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + D10C46D86FB6F512B5AFC678EBFE4802 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + D189DE6A6BF262777E79201138018E7E /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + D18DAD9A5B38151AFB39305C99731AE4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D1F10B6309426F814E403630CA560E9F /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; D21357691A211111FCF423A64E04CAD4 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - D25CB0CC8CE447B4C42427B04DFA8320 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + D219E66FF0B33F4DCD86F88A47C6DDD3 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + D22BBC59AADC6EB447D3E2CBA6EAE607 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + D22C10CEED1C85CB5A398973AA4DA705 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + D2697AD83F5B73AB4C4BC8973A1EA808 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + D26F97B4A9E6AC64DA3F959AEF4F903B /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + D27ADF8C1E1379A4F7E0518AF69FCA06 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; D2ACF36489C9B96840468D3F72ED2479 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - D2E9528C15F34FC663E46FCF92A0ABB1 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; D307D68C68FE4F52BA3146D3C90DDE83 /* 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 = ""; }; - D31D1C26D5CC77343AF15248ADE7F6BA /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; - D32FD2DC67C23F6E6A8180188AD1592C /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - D38935DB2A21836A8A17D87C02FE8DCC /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - D3902FEAF386765D6D0AE0F129445AC6 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - D392E813171E4AF47DB543E300F51995 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - D3962AC3887D0F520323B79177D86337 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - D3CEBF185736931401D88D86C390B09E /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; + D3A3B3F8D4F01934A892D5E018B54300 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; + D3A7CF65F52705E88A875E0CC391FDD9 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + D3AAB2DF9FB83B7E1D4F00EC2B58AF10 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + D3E3FF9AA367DAACB6D30CB31A02C1B5 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + D3ECE73C933780D042B8EE7211C45B3B /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + D3F1982C9DE5194AEB5AAF32073DB26F /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; + D3F2E8CA46311C82685B3649AE8679F9 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; D3FE0D74F6529795B2FC779F7DC99CF2 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; D40726BFD729316AABE7209F9CE71ECB /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; + D4159F77094F0425FF6A5AA3AF1F78BA /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + D418C2038126D73BDBE8EA92C2F89859 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + D42B454EEB792E0824116D8112F0E504 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; D43DE3DC7792E0B353371829F68C0FFD /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; D4576431923B32B28E848D30EB34BD00 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; + D48EF3CAC65B53B0E0B1CDACE8FDE8A7 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; D4A123FC94E7410BEA6E2DC48D0926F3 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - D4D3029D489B9CC30FC5E9DFF1C63994 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + D4D6CCDC79B5BCFA6A83676FEB2DF2AC /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; D4FD56965FE3FFBFD0C50087FDE7D6F4 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - D50D717ED039514E7E3EF72E9ED56463 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + D4FECA372334C3D52C8947F1B7BD3417 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + D505A7309D20FFA1D950983E2E16A5AD /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + D5261E4979498B97B87787DD8FF80FF8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D52A9FE57B8A72DAEA47F53A8FA6159A /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + D535CA1085AD8AF6A3992692BB8C5C9D /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; D54A835DCAEBC10A120B48CEBA085CC1 /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; D54F6EA8F501C29E00AD8D0F3E53A1CA /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; D563B3F8B5F2EC3024FAB3290E161100 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; D57BF655F31F1339675D0B395963F052 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - D5AE47A56689398D07D34765AF4F992F /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + D57EEC60392CEA5042D268D64C5D6928 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + D58900DA0BCC1B0DA3E7562D1C083155 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D59AF94D98ABE63F8E9F9432A8E0B6B9 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + D5B1BB2341170C48622677C2029A72A6 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; D5B7CF80A43E501BEA20FB90FF049DD4 /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; + D5C3492A85A86C68EFE8A09213C3C16A /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D5EB99574208D9F9DC8FB859A56BEFED /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - D5EBFB7008852607CECC355E06C9C6E0 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D62B7A3B4AF1152F21105D3B2E827CE0 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - D638C2BB3396581FAFA06A88C595108E /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - D63D5DE507EB9E643CA55FF3A3F4B965 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - D65685F530E8F51BABCEE69624EBCEEA /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - D66376417C047FE531FA96D8FE8291E2 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + D60C0E4F2E506C811F192C3C6B42AA11 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + D6177BC2A28363DFBB91DF58AAE3AF1A /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + D66670C419919DDB229F45998FB12523 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + D6696F502F0ADEED65B1265EE1098AF6 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + D6821AD88324905C058650AA19C37508 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; D685191518CCCE8477FBB30EA847D2D9 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; D68865F99A8F6659659285B0079FA045 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; D691A336ECF8181AE201DD7D26ADEBD4 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - D6B3569005FEF35CBCD397365AD669B3 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - D6B419897B04EAAC0A2AB67C32CA7463 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + D6B0FD592EEFFD8759575ADFE9D2E87F /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; D6DD593F04D58A5F3553692C25B27A02 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - D6F407857CF8E797D83CF81B4DDA0B83 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - D7009140009F7E9B686F2ADB91FDB555 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; - D71A3992E7CF3B86949CE9209EB49D59 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - D71AAC75BDB588DFAAE75A0084139675 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - D75C4193CBE762C23A5DC2FB6DFF2462 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - D798488795753C7103E292B908093381 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - D7ABCAC09C0A0EA009BA1246F79595CB /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + D6F8ADAD4AFB1AE3D9D85434F6AA021B /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + D73F0E04F999B91AC0744CA12FC382C9 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + D7442488D44347FE3864D6299F3467B8 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; + D74C97B2031F3ECE61A82A6769BED2CB /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + D77D2E2EB87638F70AEF59D57EDC5A5D /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + D78AD78AF6AB6F0BE0B02B4408976AA0 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; D7AF0EEF43F86081748C36A1C9D9A230 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; - D7B69490D4E712916566E0CCCDF08953 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - D7E4D46622518C9F84C86F8D27596A4A /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - D800362A1EAC706DB637DDDA815FCB64 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - D80D5D7DE95EF5FEBB5FCFC91ACE7124 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D8138F80FD52EEC80E47EADAFF73B580 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; - D83142FBA1E2CB2148D3EED347D483FB /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; - D86B87674697BCE5BC5B2C09E088521A /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - D87EC78B85E8485FBD61F0D265007A55 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; - D88A8CB93215FC62B8F7F4B729D1A2D3 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - D89B07927047B4DADE70F271874C1179 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - D8B8D5E98E85919D0D2AE0E7AA270542 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; - D8D6E02317F787EC529CB53BDD23902B /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - D9170605CA60EF92BD30F13A4F040A04 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; - D9515AF621FACD624F464EB9B8404E4F /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - D9A8502E9AE2B82E3B1A952D5000C0ED /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - D9B5BCAD33B439C0015688D73B83F8C7 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; - D9B6A539690F8003219B15082B9B25C7 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - D9BE4D1608A09FE10A9E3B412A392C07 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + D7B672FF680F74FBCDC5832FD405BB8D /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; + D7F9632E5C13C4849BFB6A0F074B0389 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + D80CADE0F1DF09047AB3F7B0DCE2CC49 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + D858D60B19B15DD3B37BFCFA9D636CAF /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + D875A699D4BC489D7193B900F1E9CE14 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + D8D69787558289B25132BB7C5E969663 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D8EF6DABD23F578542E2D20B74D3D64E /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + D928C35584F765127D20446C78F11B68 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + D9889D226D2264511A5C8C617B3E3CC3 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + D99106F99C2321E8893D8DA292E47E07 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + D9A3FD35B8F399B0E2DECE9E0CEF8482 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + D9ACFDF4DA3BB4FF97DBEDA3A6574097 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D9C066C867C0E4440BCF224357AEA143 /* GDTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPlatform.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPlatform.h; sourceTree = ""; }; - D9D21E025012A678F9BBDDA66EC83FCD /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + D9D7051E2FA1D497B53CFD225B3529F4 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; D9E1543EA3F83B6350BB339D31E74A42 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + DA05EC6E19DAEC1ADF3A0DF92A21E143 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + DA0DE37FB10CB00B4D9968FF00394365 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + DA27D82F20D6A185B593444261C58617 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; DA29FECAE359C2F2950641F461432B96 /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; - DA3AB05FE90FFEEA3D320C38916D44AC /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - DA46EC3F7B4ACC9EE9EFC228D62084F1 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + DA367791D3EA913EE63D4B6186F07065 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; DA4A37B4969CB37F3A28EC8850F7C400 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - DA8B43484450F255AC756580DC3F49C0 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DA9AAE44CF3B1F9CBD5F932B34C3A912 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - DAA490AB8CAED42668DC35D43BA2575D /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - DAA759120E9B45A001D557D37AAD677D /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - DB1A81F1252B43F5F5ECB2C3F5872E62 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + DA716AE7868435F42751B7B9FAD16593 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + DA806E23EF7BF0703730663A39D90E5F /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + DAC30BE4A1E6FE0E54C7C16F3E46E981 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; + DAED8D93FB784B6A38B458D84A1A917C /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + DB1042CE5347E5C69C05DF9654B6FC58 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + DB11279B4CC28B0171055B063B80E6FD /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + DB3316D4381F7AC386AB594BE1C1C667 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; DB35135339DD95C379CB3511AB5F8F99 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - DB738437742B8F8F39C9F91C3FBD639A /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; - DB772E12EF9B7EF2053FA1739EE01341 /* 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; }; + DB4735DDBE3DD40EDB9C6F2556240802 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + DB6BC54EC1F7EAAF55F5D4334D82B7B1 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + DB6BDFB3FFC45D52CADDD63EC71C494B /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + DB80D7BB15CD01DAEFB5F0208B83809E /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + DB8E6E524E93AA1E17AC170DA85BCC3A /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; DB99F2676D30EF6AB07A50ACC6AD4D23 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - DBC55BDAFCF76EF408F711747E2104F6 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - DBCA195BCAFC9C66DBE902BE6B9EF2E8 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; DBD19985FDA6E09B99A41FCAEBE6B1BE /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - DBE6E85653366321A31E90396130F69E /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - DC0B02E92152D5231A7995E9D166C4C0 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + DBD854995D38FE5CC19A6220E243CBD9 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + DC123B7D5CC70DA3800E61D7EA4C4F38 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; DC1ED14685D94D7B65AD30A55F657B68 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; + DC2AF7312D0A77B9489C9B878F6899E1 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + DC42B53E95212ECB870C1AFD0A290117 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + DC496485D777F6D3290CCA3FA6008196 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + DC7CE3319FDE21DCD68690CEA070AC18 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + DC7FE029A87E01A42AA3C04688EF9568 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + DC898FA019A3F25EA6F04D68DD84E834 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; DCB22A38791F748AE8290C77D99CCC56 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - DCD7924BE0A9DE6A96D091A46DC54D9A /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + DCEAF7E65FCBB127E2095642489CD6B1 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; DCF4CED8CD3D2B43426543E727D6D881 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - DD62AC3EB3E406698321F90D62839E7C /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + DD017B1997FF374261163E158159F2F9 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + DD0AE59F51A1DE1759E3E500BEC37AC1 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + DD1F61F7805C3FC9FF12CE56031B83D1 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + DD58587783451C7435F9C0C28BFD89FD /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + DD64EA045883AD0A4E597F714F32B30E /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; DD6632004F2003DCDE912F11C44CEA56 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; DD6D91740B8B962C4CE62F898542B1A6 /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; - DD854D6DCDCAC32BB6D0CAA3C459B62D /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + DD6F5C8059A379F3D8E9999821DBE3E8 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + DD7EA3F448F269ECB4D8A2DA730F685A /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; + DD7F410B1638478F621AE2F432707D6D /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + DD8E3D039A6E89BD03F7A33FC8D634F4 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; DD9132B64FBE45A4C87A571D30B33B93 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - DDAA8B9633804B8827E8837B91A28A1D /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; + DD98818219FC4DD77E7D8EBF8CD6505F /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + DDA89DBD479FF053FE7C1BCC9E3C264D /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; DDD8773720268ECF1673636082B7B0D9 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = Firebase/Core/Private/FIRComponentContainer.h; sourceTree = ""; }; DDE8F8D657B4AD8D68519848C7E00D6E /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - DE05734837A6096134BCC6E569C3139D /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; - DE374EF524BADF6A8BBCC5700C4FF753 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + DE1E5E9D94FBB83D71200FE3F701AFC9 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; DE53658AF11CD49486D35DB8F2FE3A22 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; - DE94B45B20EBA3A79B75B576DB1CE5B4 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - DE9504A2A6B1C25558882AE62B22F9A5 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + DE7F2FD8A029EA1D8D392BE53DEFE9C6 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DE92F2943DFD9A02BBD45FECDDD74E13 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; DE96E733840BAB2944ACD371EAEE2C12 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/Private/FIRInstanceID+Private.h"; sourceTree = ""; }; DE9969CA71BDB274B67CCEA11C0020C2 /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; DEA0269F260ECF8399E22CDBCE670D9D /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; DEA1AFC7815DE289321DB234082AB133 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; DEB68940C750201971089751E74F2668 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; + DEBC889B15F04209C3F46BA6C73C3923 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; DEC91BA0271EDD25AC990885269AAA63 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - DF0F7834E6C0999B04A1ABAE902B1297 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; - DF18B8EFC438372BC3B6F6B072B43455 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + DEDF8708450018EC34EC9654FF175948 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + DEEC3D9F2E40D15DA7BD5D4C0CDA7487 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; DF1C9C2F9BBA22563F68A4571E4CF429 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - DF2A3F848353E02D17E28812EC17B706 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; - DF342B6B052DB50BEC1415A3036A6F39 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; DF3B6A5615D38501C12A332422F0D8FD /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + DF5D27AD14A1991632E190090036255B /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; + DF6768535B8CB61B9497D7BBBA40AA61 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + DF95B1F3299788509771779271ABDF95 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; DF9802471B3C38BE71E6DFC462B60585 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - DFF060107B7AABE7F62B8FEEA39C3610 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; - DFF6B66AD8BD4CED51BA0C7DB2168BC6 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - DFFA4E87052B6065E039BA191735CB91 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; - DFFEB90D12B0A3D0EC41CA71AEDD6485 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + DFBFA7AA68FC31844095C0BD269181C0 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + DFCDCABAC89EB98D24C53BBA6FE3C904 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + DFD3782750AD39CED57012A2129A55B3 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + DFFC97154F73523F6603DD1F3EE64182 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; E003996EDDFC4DAC0E9DA2A7A151C5C9 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - E07D0B943DAD7D7AB04C7BFE016DCBFF /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - E08255D813D805A74DF0E2AC2D562207 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - E09BBD190BFD8F1D383C10221631F5DC /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - E0B6747F959C73C69CBFA6EFA290C150 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - E0EA2AA36E21EDB27E8CBCE76EC31EEC /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - E0F498276475AF9EB123E331A4CCB2F3 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + E004B0F0A38C5ECB4EC9C44607962B40 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + E03FDADD8D087B539D2F8619A00F2DF6 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + E077631EEEF1BAC9D4F61506BE04F689 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + E0927A2CA77A93D1A338FDD1DCEF0951 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + E0979954FA91BF2CF3A2389DE8400967 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + E0B15308932FDE37573BAB54F144DC5B /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + E0B1E61C8897F35C71329E692391DC89 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; + E0FD752F00F4A92F465D342153DF5684 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E12DA10290867974F37743E322B25F95 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E1468AC437F1F375A17C5232350DF95F /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; - E147E303AD172D0F1385F1896F47B2D0 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; - E16B31693808D9810E08D38B3EF71479 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; - E16F32AB7DCAAD31BCA1ABF27AD35118 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; - E179A8C165A31CC3B2B02FE8FAFD6CF7 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - E18F9D50F84AB4FDC09863F28B537CED /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - E1AC7446DCA0665C90D621BE057E9256 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + E104A26AD02F9440154BF5C9E00FC5F6 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + E14881EF00C615A3DCC304159EC09F46 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E17CD201BC4B5925862EDD49BB5CBD62 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + E19616DDEC3B522B13FDEBA40986692E /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; E1B228189E45D0324E55F165C73F0C90 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; - E1B9853EEABB86B11759DFCB1EBCA3B8 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - E1BC3269BA7653A13FEAAD56B72D8271 /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E1C94EB297A92A55040CCC663A864437 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; E1EEF36D6AEB82A30BC411B8B360BF77 /* GDTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPrioritizer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPrioritizer.h; sourceTree = ""; }; E1FF3ABBB86D23C6F4AF464146BCB44E /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - E20BECAAF117D13FDFA68D903AB2823F /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - E22B3EB392ABB38E366C116EA756EF58 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - E22FF3121770287992115335C6CBFE83 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + E20AB1B1CA0D5E00342866ECC55F9014 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E22BC49ED73C86D9E689D04CC9A5DD81 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + E240394A0054E5D7DFD99DE12ED70C71 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; E258A8E46A886DA9F51CC133614C1696 /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; E25C54E541F5F5072F951EC6F023180F /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - E2967FC394675462ECF917E020B88494 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - E2AA0ED6787A5B84B6EE8F547631B88A /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - E2AC3A79DBAB72A429EBF14D12AAC4FF /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + E25F201B7879112676082158C0A646BC /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + E26B670C6ED60691A35CAFCB0458D24B /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + E294DA72BFCD10B1152867AA7571D454 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E320C50D0CCAE45C2D45611E61C085EE /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + E2BB89BA761B35A863A3495F2A3AF0EC /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + E2FF0EF6A719422A08A1E74AA5C5D136 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + E2FF1CA18AA8296FAF4A280B99B6C657 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + E330030D90955BF006D4DDB0F45CC2FD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E33417ACBFBAB178C661615BA5AB68FD /* FIRInstanceIDKeyPairUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairUtilities.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.m; sourceTree = ""; }; - E33C46C6703349E1B249516B38ABD63C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E33DB78328A822A9C5D7101BE31F544A /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; E35994BA61AA03850DB1775AB78F5240 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; E36BC1838BBE0A3C1226042850FB19C3 /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; - E375C63826F12FB78D6646874BE63CEF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - E383A34BBE4DF7BC8C5EC68FB84DE350 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; - E40D66AD3F0AA0EC528EA8FA8910211C /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - E411B627C7408136EA1D39A3F6696869 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + E38CF5FC87ED1774808BBFA4FCD021D9 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + E3C3F88398F08E7A0BB3F689B3A6315E /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + E3C97F5CD527CBA7E55B82546040D2D1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E3E26F52227A31F8635648BD0E36FC4A /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + E40A00C8C3ED2A93E0EE23547A78DAEC /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + E42C397B7AF23652BBF8CFC531689C07 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; E4376CCDB1E042F671C3D5BABF69B876 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; - E44F908151A562A3AF20B69A1D54098E /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; - E46B1AF5E106478A68F22A098B1BEC5C /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + E4399DCEF88B24744A6CB0886F4BD5B6 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; + E44831143F1E82C6D1D56459488C91A3 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E49C3AE28170447EBF2AEA8764FF1E92 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + E4A44DBD0125EC6C933C43B0821CE950 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; E4ABD4161A335B5730AA14BC21DFBFD1 /* UIColor+HexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+HexString.h"; path = "SDWebImage/Private/UIColor+HexString.h"; sourceTree = ""; }; E4DEC78771EBC06D1CC9FFE168FB912D /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; - E4FCD746909AA36FD59C8BE52573CC6E /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - E50F1BDB59560C2208BC53CD88107847 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - E5385A8D8663E76400E26DE09608AD04 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + E51B633A6568F091331A0C0FB8A9AD61 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; E55949C58B399743C8A2FAF2397938F2 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E569D86CD050677F1EF7A85AF453CFA7 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; - E5878A1E7D3087A8215BF63C5CAA5193 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - E5C7FEE81D653379FD6F11F5976D61FB /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - E5D1EC5C7CAF9E367FAD46B57EBF977F /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + E56571BE4522845701F5646D92855270 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + E5AC8B98C098C0C26E995038B4A120EE /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + E5BD48C91DFBAAC52FC8E21F5B13DFC2 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; + E6081276F8812A230AD5917A50AE93FA /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + E617782815CC6EB6BA87C34D052D87E2 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; E63334E9E147920AD55E8F4B08B6FDF8 /* GDTUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadPackage_Private.h; sourceTree = ""; }; - E63C65400C7C42AB2ADFD6A72C8D8036 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - E68BE7F4B132FCD9FC730DDAE3630F8D /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + E6375D5B3B39A6B2703BDCB2AFA1279B /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + E677A52BD42240B400A623D925C5C64B /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + E67BD43E770B4E91B853ECC3643A444B /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; E697151248E9D0827AB6DF49ADAA73EA /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E6A4AB4466400E7177CD81A00D56EC7D /* 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 = ""; }; E6ADD528E5DC12441ED796F0C6E118D6 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - E6EA9651E5B0FD1B215952D8D2002607 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + E6EE62BB2BE77CD3706F442B1016283A /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; E6F1D1E9706AB9D1DCDD8ABE42EB7FE9 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; E715A7145663F9339D4E7F52DA5E3932 /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - E74648815DF469E32BC60D459AC2BAA3 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; - E7855F1C527C5192F72CFF6A5D46C931 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - E7AFB949AA68523D3816D43F5D0B6829 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - E7B3640BF5E94E328E51EA79A6AAC58F /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + E7B3CD7D9E23BB664217C58C5B2DDFE2 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; E7CE121DF2DE02220806316553608552 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = Firebase/Core/Private/FIRDiagnosticsData.h; sourceTree = ""; }; E7D311016AE55CFBF49595940BB2F606 /* GDTUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadPackage.m; path = GoogleDataTransport/GDTLibrary/GDTUploadPackage.m; sourceTree = ""; }; E7DBE578144365956009AA5CE27574C9 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - E8335B1EF2FC21B6CD5BBD4DF5226B66 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E7E099045D89033E9894F6EEB30D1A15 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; E850ABD360807BF5FC6195D804CDC73F /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; - E855FCF102DC5906560617510B8CD083 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; - E86D949368DBA5DAD2D805EA66DBEDBA /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - E86EAAE85254BEA5727D1E88DF730008 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - E878C1F2050BF8CB9FC08C84EDE84445 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; - E884225A748A58F5B833530DFC1CE0A8 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - E921DC8EDE043AA484BBA1A749AC157E /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + E88934084F444413DF57BC472BDC278A /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + E898E9CA1257AA2D50D0F4AB5D00E3B8 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + E89C137986FEDF89532201F6C541E8BA /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + E8A42F0D1F9D6C089BAFF542B55AF0C2 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + E8CABCFD0D7D4B97C69980A82C1F688A /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + E90ACF398CB3D713895AFC1C26A0FA6C /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + E933BD1ADE84DDD2ED8C4B6FE7EDC96C /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; E9377C29F942AF66A3D72A0AF35997BF /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; E94CCAA4B5D0B31346AD905F24B5C788 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - E969E0281AFFBB8E4657559C0100F794 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - E99AFBF30A3D56FE587EF4FDA58BDAC4 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - E9CE00B5CE44E78B47E746CCA313CBA0 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + E959B131DD2F53B153D0497CFE2C40B2 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + E980A28AE13B024D3022DDBC84630510 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E99010208DB40FF5DE426252C8136019 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + E9A7CAE3BE3E4DA6F072F8361E730C28 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + E9C654A0AD8D0911035235A07C6C9B01 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E9D46C93427AA896BB7DD3EA1E842373 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + E9DB9A7CD9DA43DDDE88315A08E9FA82 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + E9E4DE789DAC5D2AB6D882B5808F6DE9 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; E9EDB57C8A7B9A567D2B7E1DFD51750A /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - EA0BFB9CED579761C61A19D4B239A6D8 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - EA144FF00D58E014F32E879A876E5E39 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - EA27D397082A0630D8A137FE7CE51625 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + EA32A2FCCFF848C82721AF09A7607EC9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EA466B9642F47563B288CDE2A8985061 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; EA6AC78AD06EBD597B03B38F91D2D065 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; EA728C8DE06AF12632054567A645AB9C /* GDTRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTRegistrar.m; path = GoogleDataTransport/GDTLibrary/GDTRegistrar.m; sourceTree = ""; }; - EA7D43AB936D50A81723BA9C97BB3326 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; EA8733A840E5BF5CB7160E71BC70F136 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - EA972EEF98A6E6063A59FA70C8963000 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; - EB1BE5978B196C0A8829D5BB8DDF3138 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + EAE13E4C86559B451B3E35488EF986B7 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + EAE341097CBB8D299DFD9626AE233077 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; EB2B0BD91CA5870A2E60FB5BC4F7B9B3 /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; - EB2BDA32F9D8827CD2E9C6BD3D8D811F /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - EB4D088E6A053132E874D3F79EACD884 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - EB731F52BCE9B41E27D5C618E184F494 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - EB80F80723C4A8413AA092BCF137D242 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; - EBAB452EFC2E62AC9BDDA0C948A39F1C /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - EBADEA41150AD86AFE019C4CD4E2FD6F /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; - EBC7B2F4677382CBD60210CA455E8F86 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + EB2DDD2A4611C4ED7A7F07F2C9CFC9B2 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + EB2E1A70F920AA0547AF7A2FEA170ECC /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + EB5753527F498AEEBC128DBA42E80359 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; EBDF0BB8287EE7675B3313716DA7CFCF /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; EBF3A066DD720BB3B76A4D77BDF40D0F /* GDTDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTDataFuture.h; path = GoogleDataTransport/GDTLibrary/Public/GDTDataFuture.h; sourceTree = ""; }; - EC25F30193FE87CEA5708B5D8793D7C5 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; - EC6526582EC82F315F21184165A9D33A /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - EC7D2AC4F90F73F003928CD123DEACD6 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - EC7F2D94E3973F2448BF2399A82AEAE0 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + EC14B89EB09A6697A2C3F755E6C05789 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + EC3AF76A540E9FEEC0757B1E194BD55E /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + EC56C96F70B24D207A22E3C32799721E /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + EC6A489F663612912637752A205910D0 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + EC7D36FD91ED2E6B4A8CCDCF84BA5019 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; EC832A43F0BD80A7DCD2D42A6A83BBE3 /* 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 = ""; }; - EC8DAF60DBAAAE08BB977674B94A8589 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - ECA1FB0F407E17C0D9E1776F51DB8395 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; - ECAF2F04ACCF39BF7E4DD7FBF6BE4009 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - ECC27A56848B03CC648EC2BF28BCC55F /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + EC83CCAE0ABC8D5018B3924A1FE1BD96 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + ECA51AA814F79E0F98AD9D0B888A5DC0 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; ECEDE0D5F2E5C9837501F2C507064EC3 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - ECF350EEF9D4CB89A936158E831C3E76 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; ED36BC453E7E9F44D4DA76E824785DF6 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - ED3DDD34A859972FFA084A37793D713F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - EDAB014F5408461B18E0134D71B273FC /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; - EDBAC99A7274E858D9F6D3A2910C2E1D /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + ED72CB75EE41F1699A55F0A56B38D40E /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + ED76E274BC8A26B2EA07D940C8625E4D /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + ED878C79AD09D1D2CAA7EA3A80B0FC62 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + ED8F038F0604465D39B4B862FD4EA87E /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + EDAA11E01E3769D1548AD0B426B4B73E /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + EDB13CDBF9633B4AF3631C1FFA784113 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; EDC3EA1DDFF95BAE78F476F4F6CF2874 /* GDTConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTConsoleLogger.m; path = GoogleDataTransport/GDTLibrary/GDTConsoleLogger.m; sourceTree = ""; }; + EDC4C57603BF295EF4AB5458DCA3EEDF /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; EDC5880EEB4755D48F83AD2787FA78EF /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = Firebase/Core/Private/FIRErrors.h; sourceTree = ""; }; - EDCB561D274C78BAB42BDF5266FEEFF6 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - EDDC8849FFF32858D86EF726C43EBADE /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; - EDF366CD72859BE99653A7517F199B6D /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + EDC9484B688043BA42E6BD03A9BDA17E /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + EDEB5577CD1899B3F7F5F11FBB09EAEC /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + EDF6B7CD599FD39008641CE2246FD008 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + EDFAF1B6836FFC3204CA8080AA5A0A41 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + EE17E3347487B607CBD9E7DA3FA9DB1E /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; EE1A35EFE4C42EFA941515040AF2489B /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - EE8FD87FC265122514D84E9883251CDD /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + EE1DFD392887AE2AFA6838B1794DD535 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + EE4388EECDE2562AAFC163F54674F482 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + EE77122A910065EFA2B5CC41D22D6077 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + EE869A12F535871BA33512B4E9E9E46C /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + EEA585537C5D6D7BE71A56655065B6DD /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; EEB2E8240966298FEA727263F58AF026 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - EEC0E6E9AC18BBFC719102A5C56D9AAD /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; EED9275A1D632EBAF320EF1A80E7B5C2 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EF12E615FDDDC5DC67C7B27029CB52D3 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - EF1F0F24D6B249F14C0FFA5C73F33D1C /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + EEDD3484BBBBBC29B4DF89842114A0CD /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + EEEDC419A034A36ACF434DC59091C087 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + EF03F25634FA473EBFFD4568F4930CCC /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; EF27139234F208AEE736571E47FBD2B5 /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - EF2A4E69D80B6EDB5E27EAD8CF0618BF /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; - EF7332D22F963E1ABDF5B443A56C2AD1 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + EF2E9C0AB9A9570651210E25D28D6B8D /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + EF4F651BD7B0A9243D1AE528F276FE3E /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; EF7C77B591898E327390DEE0741690F3 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - EFC95FBCDBB6142B436FA9581338BFD5 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - EFE587B647AEA797A88F2C365DAC8EC2 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; - EFEE57B5E9B7E6FFAE0FBB71BB7F7C04 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - F006204547FEC6498B166EFA2D35B2B8 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; - F0171EC8BC3009153E594A4B4AEF8326 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + EF7E231EA5F75269E1782545AFEF5DAE /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + EFA32A5C363DDBFEAEFC4923CC52A8A5 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + EFA6FC05F95DBAF0B63C85E29EB10177 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + EFC4EDA6C0C5156BEB199765F0D7F162 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + EFD93CB1C504172257BB2FE144734F7F /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + EFF1AFD3BE2AA2D61B8BF0C534C1FB7C /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + EFFB9E6DFDC83EB069C6B62933495D8F /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; F01F019DEF200D6F9339D79937FF6498 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; F021A39527BED58621A6690E610B4A40 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; F02235FA0AF90E49431E197512A6AD01 /* SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoderInternal.h; path = SDWebImage/Private/SDImageAPNGCoderInternal.h; sourceTree = ""; }; - F06E69D19CB17124A98CAC4A351F247F /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - F07161B28792B01620ED2BCCF6E0BF02 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + F02EAAEEF7B345DE2117CAAE39DB7E6D /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + F04CB905DFD3B94F1F3F521BAD78ACF9 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + F05866DFD17F00D85C0E2FE3F063EF12 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + F0768952D4F18BC4C51E4263BEFCE3AD /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; F07AB9A93907E76E3C570F14ADF3E275 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - F07BA3F4F9FA3F8EB130BB58422488F8 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F08EE550D1AEB06952E8879746FC9947 /* GDTStorage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage_Private.h; sourceTree = ""; }; - F095906BDA3965C76D41B3547C91D8F5 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - F0C13DD5B14F39844489AA533439C11C /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - F10EFF0CD575AC43A53D01C7D23AD50E /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + F0B0004424C9E955B20F52B9D72F35A4 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + F11C5D8B94CD0AD9E3AAEAED5662F469 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F1278B603ADC956F51E3304081668BFE /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - F1591CF497A71B0B4B05EFD3E3656A52 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - F170556229F32C7D7FDE04E6D4B8DF5E /* 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; }; - F174D9CC21F0D1762B87F5D148999515 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - F1831FDF795AAFF008805D1C8B5DAF7A /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - F18D82D105EFEAF96ABEC19B66F0AD0E /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; - F19F79B8441F90165D2F5B44C1CF1A88 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + F12F249A36DFA4F6AB9CCA38CB9CE2D6 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F13B1FF9E413876B860A45982F190268 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + F1B8D84E9C430C8D1138F1F0DB1AA81A /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + F1CA86EC02704792F80A09983025BB31 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; F1EFD5B46A034F0A431926E8B5FF6501 /* GDTDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTDataFuture.m; path = GoogleDataTransport/GDTLibrary/GDTDataFuture.m; sourceTree = ""; }; - F1FAFECEA2BB7BEB6BDAFAF39FC426C6 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - F208CB3F8E89D985AB203CAD66B7B0EE /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - F20F066B0F018C6B2B233B5AA947D408 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + F21A3814E09F687582D96E2C26D18C8E /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F234F18B2FBFFFCBC641916943E9642B /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; - F24F94A3FBFBBBA8ABCC077D41D91AFB /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - F254BA39B80F635278F87ECA06DBFD0D /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - F269EA1A423BE65A1543239DB727E92D /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; F27020B27DE70C7188CEEE5F520684FA /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; F27874372F3317E7A40B56B92674FF9E /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - F29860ACF6D3192CE27B72D8D9BF7CC6 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; F2CD43E6A24897BE60EF619B608BF7DC /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F305EC9958D746DA8AAEA33A39DC6A65 /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; F30855EBA5C5D5DF32296D69B4CAE212 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; - F31A0471859CCA5EAC081F7810DBB406 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - F3263CC7CDAAC78D64ECE2AF8DF05354 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - F330F62465D1AC3978641F665A77320D /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - F341B196FB24869F5A0581AE42F32956 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + F34D0B0B362BBF100ABC690E2B333422 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + F351B21064CDAC40D1819490D7506A29 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + F379F672762AEC43E947387F93AF42A0 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; F3A324E400A01F6B751011F6DE9698F6 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = Firebase/Core/Private/FIRConfigurationInternal.h; sourceTree = ""; }; - F3AEB1F91EA369268AF481BB6B67FD95 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - F3AECBC515351386CAB369DF62BE8458 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - F3BEBAA5D1ED553CB8FCF2B22DF6606C /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - F3F7E00DBEF80A2A87BC5A2C4198D0CE /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + F3D4D637150DC931587C9C81C3B6E693 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + F3D6F56C79F582CB8EE3851BA74DA5EB /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; F40A68A5A790E9F7437AC7A11A10E049 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; F416804666984323CB6BE6671AB4FE08 /* GDTUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadCoordinator.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadCoordinator.h; sourceTree = ""; }; - F44086620DAB6F77CF3BD6506D06798F /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + F432125A1B3B8BEC00831CD879D6FB71 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; F44EE0313A65B3D0BB64ECA3C3C7D0E8 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; - F4810CC9A18EA364361E1F4DF90E27D0 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - F48F0465A6D63E3E02891CE558A1DCDC /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; - F4BDA12CC1F9BEBEA8803C87DD3AB8EE /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - F52AF8FBB89BF50C43022FA550FC224E /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; - F52C1187542EE6BDDCA763ED03072E5F /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; - F52D381D6283844DF39C9278B7E0E583 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; - F5340F41B48EAB99948E68E58639D98A /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + F478A516B3DE1209CB2CA59579797CA0 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + F4838FE647AA9468A2991304694C8C67 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + F4B85F10AD24144C0F4ACC8B52FE996C /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + F4FA44BC3F924DE88CACFA9DE0722A6F /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + F4FD3AB28EEE6B2A53713032E51882E5 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F534DAFAC571CC5B019C05580EB1FADB /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - F54A1DE8FD0FC45607B56E1634615E88 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - F58489410FF77E18D59457505B9AA8F0 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; - F5AAC602913992146864B8C3BB903AB4 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - F5DC4210CA6076B3BBC396A83535BD17 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - F5DC588802B42ED16EAEE7DDAA94E6D8 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - F5E5B8A6650D84ACBAF57A8E248E85D7 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + F545B27E704F27558A9ED01F0D7EAEC2 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; F5E96D93EA3C646CF7B21BA5C5B356EE /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; F5EE710F6055B8126303056B0BE1B60B /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - F5FA67FB2C61AF1312DC257FD86270E5 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F6003F7281C2606475FAA67EFB05A68B /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; F60981B496FE1E2C360A984FD512294A /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - F60BC6A0E8111DD5ACBEF3CC5959ECD8 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - F65F1F278B0F93DF76C27745779138E5 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - F6B6688D83418759724326835A4BDDC9 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + F6560F47D732FAE12F4BB22F1294C6B1 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + F68B894BFB676E3DB6ABFF59C9420AC9 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + F6AC73FCCFC33703548A833FF9B4DE87 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + F6B060FA7384859BC82F1A012092389F /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; F6BC72E7DD48A1994CDB1E6FFF3B439E /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - F6C495F26CFBEFBC26967005E92B0173 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + F709179D786BA8906C86B1B39489121C /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F72659CDABBCCB4186E4ACFCED8EC514 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; F73448C5E41D0B6AED5A89E493E41FDC /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - F75184F86F3E79DE210E71936545C57D /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - F75E382715FBE5250A79F0C98DE6E678 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - F76035A1C60156C30D8C7AC85A25B87E /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; F762F0A56AD644160EE40F2C9ED7DC7D /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; + F78421D7F509EA03C278FDFE4E1C45EC /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; F789322912D13D98F15BEB706E0A630D /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - F79445FDFB8F1C28B17B142380CA2575 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; - F7C3364F0E0F6F42CB93E2B0560C2DA0 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; - F7C90F3A98224D6DE3458CF9B4592563 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; - F7D4F70EF52ABE13A3914E7AF82CDDFF /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + F7AE31CA026D3F48692DCBCF9E5CD469 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + F7C298AE307A303912D4493997FA6582 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; F7F1E72F15A3AF0C35DEF0C1A2BDD5F3 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - F81866F14F3E7E970AA2D4ED60838FCC /* 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; }; + F8061B0D5177ECEA9F92BD48600E8B8E /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + F822C1A6575AF76012BB0B1DD559D82D /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; F83BFECA194D5D3A53CCA3AF2C359335 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; F84CFF851919F4C8C90C7A0A02A4EDBC /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; - F8752475D668F72AEAB301382F7113DE /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - F89473948C947E5DF0BAAC2B2AD27FA6 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - F8B7263BADCFD744E32F1CC23ECA5549 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - F8BED19E476483C03DEC417A2219CFE7 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - F8ED706A6936A4268543107344BFAC7A /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - F8F307FF3CDA1C47B9333A1B34AEAEBC /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - F8F37064246BEE9F8C7A69671281433B /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + F862CB52DCD0D46C3E12B5EF581B4BE6 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + F87780C5D21584A689500D4650F93D40 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + F8899F2A764A05C333FD6EE951873DBC /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + F8B82E7DFEC57F3F2BF27DFD687B53A4 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + F8E743FFD85E2C107F52420EAD130F95 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + F908B6D3318ECC8CB21079076A97D721 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; F913CAE0697648283B36B0E6B9F9E0E8 /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; - F93E285BE4F106BF8932B2B288E0B96A /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + F9516B4B5D2BDED1D66108948E2AA2A2 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F96DFC58F11AE0F9F57A856E86C307F0 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - F983C121F9E77FD46B5A5C230669F6BB /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - F9B0E187AE7B7F3A377AEDB612C6525A /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - F9BD0857EE43DA88E1FB5A23EE203CE5 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - F9CB16021EA923F80F4E44BCBDD21E82 /* 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; }; - F9E65561A4F759756BFA0999219E99FC /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; - F9FEF1D228AABFA6A55230C1568B4054 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FA12DD048A9A27567FE7075E7732FD3E /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; - FA1C3016E3389BBCE59AD8B7649F0956 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + F95CACA4782D0191B641D0B5B56A6685 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + F963FC8146B523E22A6EEC55E46DD6EF /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + F97E853DB70D725BC3302A7AFF33C7B9 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + F981A44843741E1934B59DC554F4110C /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + F9A15A67248330A5D84B310189C8F2CF /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + F9B47235C2DACAD23FAAC25880AABED0 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + F9F9856573A9F0E720439BFED117A6BC /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + FA1AE7B678524F7E743A927A062A7551 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; FA2193D233F784FDA8D14E5ED56629C0 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; FA224BD245F6880CF82A97B34F57EA47 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - FA3074A70780F5BDE91D7A2AE0333441 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FA33B60640BF328BF0DFC68784B43B8F /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; - FA3C9C05A2745796C90E164493003F98 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - FA61EA52F6BD937338BB3E55FAAC5537 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + FA7013F86AC1B2635A36F1539E9D6E7C /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; FA981CB894230861E709B35205EE9407 /* GDTTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransport.m; path = GoogleDataTransport/GDTLibrary/GDTTransport.m; sourceTree = ""; }; + FA9F87D3F74668A90265E7ED0F1AF4E1 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; FACB29702ACD77D66D657A8CCAA16447 /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; - FB055070A2B8C6DC50CBAF64EBD58A68 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FAE8A210674ECD1F490A679D92AB54B1 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + FB2C4C71D65E4EB15B7280625E88E856 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; FB64DAEF321D4A129D5F296408A320DC /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; - FB6EE44FA7F3B55552E8366D392E5AF7 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - FB7BCEFC749CA8C6FC0E8F8A35708B1C /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - FB7CEE5036E73D34C54DE51B53DA7EE3 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - FB8640F657DD2122ADB8CAB8319C9279 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - FB900A939C4D5CD6FC137C114524DE71 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - FBA0A0A797AF05C4739D1E5917DD321E /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - FBABE6A668BF55191A9D843480C414A5 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; - FBCD9EF2870E34294630AADF03530B74 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; - FC1C9BACB409258D55795F22EC30E614 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + FB684571273849A8C02F5DD444715C62 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + FB79C32615B9E1BA3D70C5E2C249C340 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; + FBE1DCE5E476F4EC8A2EDE5C906A1053 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; FC2DD08031380836E714D119660B0C71 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; + FC4D27A8EB8B619DEBDF92E49F64CE59 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; FC5893DE036925F219400B1B91DDA49C /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - FC6AFFF17DED4DDFD06E638BD2D35B9F /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - FC77272D5D1D48B43F12E55DDD9F80C1 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - FC803D1BE9A2CB384D5AAB212AFFCFB6 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + FCAAC1F8A1131F406346B5AE3D886ED1 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; FCBA8C8C8D9E02658B2AAA645469C0A1 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; FCC11573AB7D5B652772C6126FE31C36 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = Firebase/Core/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - FCCF3DEE4FAB690782F0F7F0ACA51C41 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + FCC4B8EC049E11D4661A38DF88D67836 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + FCDE91DD0E99392CD557F45E12BF7BE6 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; FCF58272F65ED034BE22E4A8C0456B72 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FD2BC437BCA1441EE529ACCFB8EAE072 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FD38B2E5F8FDC009EE3930FE406607A0 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - FD46A0FA38F89A3EBB4D1D8F2C6C82B6 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + FCF92E92E2BF7480E08D527E3B6B32B0 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + FCFCA0A9FD3E48FABC0516EC7451EA72 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + FD013A881AB7C8A0B88A7917FB4BCD7C /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + FD1B095061113BA335473EB4D464C2D0 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + FD1D6D3BB71EB2CB31EFDC5BA4267748 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + FD53D519FE1FA635BC4159992519AA07 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + FD5C664F173298F179719BB8D48AE9ED /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; FD7691D43748739B72817CB68865006A /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = Firebase/Core/FIRErrors.m; sourceTree = ""; }; - FD8B1EA2CDA612644CBF7C60CE5A76C6 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - FDE02055864DF5DC8FADA071B185C63E /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; - FE374D9CEFC75D3ED87923EAD6DDC295 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - FE5F61B11785B4AF3CB9741A37B367DD /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + FDAAA44D197DF276FDF2ABF423F2849B /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + FDB38AF4E7E9413184E7F9BF4D847424 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + FDDC614E04C209F9A810B734B77D17D5 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + FDE61C4AF25127D6859F596F3C6F351B /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + FDF03B342108C1A30921382AA6BBBF1B /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; FE63103F5165EC0A1900FC6BD658D52B /* GDTReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTReachability.m; path = GoogleDataTransport/GDTLibrary/GDTReachability.m; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FE95110A46FCBDDFDF5AEEDAFE1C082D /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; FE9D8DD53AB4F688CFE58BF275771887 /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; - FEB4A88EF0391F3499D3CDDF99BA1B8E /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; FEC3F7B47F6DD538B443A895DD5D9591 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - FEE17FF191607545AB35410F4FC71A32 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - FF2321EA1129CD7B9A3C570468E6AD70 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + FEDEB86AA4CBF37EB549FD6D2B73580C /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + FEF047CCA856CD7D026EF5EBB71079CA /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; + FEF4724D34046529AD96F0F28AA1168B /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; + FF007B97ED4825FB5DD4EC5B259F585A /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + FF122266DD300E2F062DD83CFE32B661 /* 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; }; + FF35F109D7A309C754DC5062FEEADBEA /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + FF4CC019C6A7F3AD874836BE32F5D7B2 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; FF5EBC9A5E12D5281CC29EAB37CD1E5E /* GDTTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer_Private.h; sourceTree = ""; }; - FF61105B6BE647061B73DB8202543064 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; - FF707174B2503E5C71F8EF8F5FECB06F /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; FF7126802A814DA73C4EAE011D1333A2 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - FF8601C5E3FB42A14A655AB71907929D /* 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; }; - FF905AF5FDF55125E6D055EEB4E6D87B /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + FF812C33AF0646DB394034654C8C6836 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; FF93806C208335D001155DDC1F559DB7 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; + FF96AF347E208FDDC78D621A1845E023 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; FFA8CB977BF4AD6E90224C3F5F650B0A /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; - FFC5D879ED9F5C124C1039F164C7B009 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + FFE3B7B76C9A643E5690E17D0BF9891B /* 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; }; + FFEC74416586C4A621EBA5BB0F9A1D76 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + FFFBF28E523A1352725A68B4DC545592 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + FFFD625030EF9BBF22BA1942501A9954 /* 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; }; + FFFD6560763ABFA470BF0EE6DF0E6FF7 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -6432,13 +6377,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1ABFFABAB0756F5E3E1BBEE712C282F8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 1D5EF4B1B01A93657025D24CB9649152 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6551,13 +6489,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4ED403BDD27312674468E8ADFA6651E3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4F462D92F40C3C688FE86B3420ECC4B0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6726,6 +6657,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9AFA89372B0E8CDE4126DF182D63A31D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9CAAEBC5F620E83BD5CB56084AC45E09 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6747,6 +6685,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + ACC445671E3F1ACCACEAC8A098A84119 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; B0F177AEC03683D2E4C1FCABDB82DD34 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6873,13 +6818,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EE3FEEB374134A0B7F94417E8B62176D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; EFDD2D6A15FCDC194552FE8924845D66 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6932,848 +6870,37 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 01BB7A869F9E6F2F20E787CB072C7DB4 /* Pod */ = { + 015BEE905A62BB03C1649CEE99884ED7 /* Pod */ = { isa = PBXGroup; children = ( - 6A3ADC7078377E5CEA3DD7060A93187B /* UMTaskManagerInterface.podspec */, + D18DAD9A5B38151AFB39305C99731AE4 /* LICENSE */, + 4CE3AED541AF574BD1A791A61A149110 /* README.md */, + D58900DA0BCC1B0DA3E7562D1C083155 /* RNUserDefaults.podspec */, ); name = Pod; sourceTree = ""; }; - 01F8A9FEBA82F0D1CE024EEC79C178A5 /* RCTActionSheetHeaders */ = { + 017FF0D48398809C9481A515C3AF3669 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 794262CC6F2E3398361EF16166E8B3B2 /* RCTActionSheetManager.h */, + D22BBC59AADC6EB447D3E2CBA6EAE607 /* UMFaceDetectorManager.h */, + B4BEC43461E194D759435A7DFA9EF956 /* UMFaceDetectorManagerProvider.h */, + 2E090AAAEF8844426F667D5CAA3EBDDC /* Pod */, + 3ABDC3EFF9FE1A074B736B434788A314 /* Support Files */, ); - name = RCTActionSheetHeaders; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; - 03F26E927D251683786753CDBBF5117D /* Drivers */ = { + 02DA52C3DC1C970CDC3D1277CEEE8197 /* Pod */ = { isa = PBXGroup; children = ( - 36A3EF72729A0AE82B9E51807A201E88 /* RCTAnimationDriver.h */, - E5D1EC5C7CAF9E367FAD46B57EBF977F /* RCTDecayAnimation.h */, - 03CF224C0391812834F8FDCA55B544F8 /* RCTEventAnimation.h */, - DF18B8EFC438372BC3B6F6B072B43455 /* RCTFrameAnimation.h */, - 8F4DE1B54DC18B7BBDAE769BF3FDFB56 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 044AFB6A0A90F6C17CE1AEC34CA18553 /* rn-extensions-share */ = { - isa = PBXGroup; - children = ( - 1B751FDEDA4C9C7FCF33C059FA22C747 /* ReactNativeShareExtension.h */, - 17842AAA69394D97DF4C5ECF3A8B42B0 /* ReactNativeShareExtension.m */, - 55D0203549318272E90FF88826213028 /* Pod */, - 242B5C4FB694DA6F8D93DCFE143FC26F /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - 0496C0FC9638AB42A1A39368C9FF6EF9 /* Text */ = { - isa = PBXGroup; - children = ( - 615B854A67C7167ECA294B3EA4483A71 /* NSTextStorage+FontScaling.m */, - 5920DE566BC7258D40EEFD900C8AF8A0 /* RCTTextShadowView.m */, - F6B6688D83418759724326835A4BDDC9 /* RCTTextView.m */, - 9E7073A9FAFCF672D8D03A15D3BB32D2 /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; - sourceTree = ""; - }; - 0508C6F7F75B0ED9A5694EC465B998C8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0E1E1D08D52095E3F1AA160EA39A591A /* react-native-appearance.xcconfig */, - 3CCAF055E529752847C75826F77E9416 /* react-native-appearance-dummy.m */, - D83142FBA1E2CB2148D3EED347D483FB /* react-native-appearance-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; - sourceTree = ""; - }; - 0529F1D3F1F4A13C9208954B739A04FD /* Support Files */ = { - isa = PBXGroup; - children = ( - 1262B5E77305E75F6C30EAA6032AD699 /* react-native-document-picker.xcconfig */, - F19F79B8441F90165D2F5B44C1CF1A88 /* react-native-document-picker-dummy.m */, - D71AAC75BDB588DFAAE75A0084139675 /* react-native-document-picker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; - sourceTree = ""; - }; - 06686FA55A8EEBA185AB04FA8AB615DE /* Support Files */ = { - isa = PBXGroup; - children = ( - DEC91BA0271EDD25AC990885269AAA63 /* GoogleAppMeasurement.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleAppMeasurement"; - sourceTree = ""; - }; - 06A1B697F0E97A8D9EDDE9F204DFFC0A /* UMSensorsInterface */ = { - isa = PBXGroup; - children = ( - 64CBDA488A1F1D418FBD4EAADD1F9647 /* UMAccelerometerInterface.h */, - 3F3A9076F8739B41CB2EE0FF58531B01 /* UMBarometerInterface.h */, - ADF6CB3A2BDCBBED3D3415EEB41FDAEE /* UMDeviceMotionInterface.h */, - FE374D9CEFC75D3ED87923EAD6DDC295 /* UMGyroscopeInterface.h */, - 1209EDCD114EE04E54BEB57C0949E700 /* UMMagnetometerInterface.h */, - DF342B6B052DB50BEC1415A3036A6F39 /* UMMagnetometerUncalibratedInterface.h */, - 48D898F1F9B0C6F2263895DFFD93C076 /* Pod */, - E6924C626A81C739BCD478E1B761DC7A /* Support Files */, - ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; - sourceTree = ""; - }; - 072DC34557BAD7DAD0942CC8DFBA11A0 /* core */ = { - isa = PBXGroup; - children = ( - B96C2FB80F4A61F7610D6663DB9DC0B1 /* LongLivedObject.cpp */, - 3E4D000D9915C53B5FCAF941E7972F69 /* LongLivedObject.h */, - 40D5ACF5208F52A2EC8E91E5268F9CCE /* TurboCxxModule.cpp */, - 49348BFD9292A3FF67B1B65C396AB7EB /* TurboCxxModule.h */, - 9BC71A5918A997F15CAC9126B3C68E59 /* TurboModule.cpp */, - 6FD6D859CDD113AA532232F2E50E074E /* TurboModule.h */, - CCA0576919667EC33DF985E4FC2910DE /* TurboModuleBinding.cpp */, - 361BA81519E68DE00DC1EE1C2CA4F5AF /* TurboModuleBinding.h */, - CD1FD19EEAE5B49A97158541191BFCD4 /* TurboModuleUtils.cpp */, - F89473948C947E5DF0BAAC2B2AD27FA6 /* TurboModuleUtils.h */, - 846FBDC4EF3A97555FA388157E87AE1C /* platform */, - ); - name = core; - sourceTree = ""; - }; - 07A5F45AFB97E324EF726D6EE3C6A29B /* demux */ = { - isa = PBXGroup; - children = ( - 784124C11142E87DB1D3FCA0F0DF8284 /* anim_decode.c */, - 281C56FBABFEE9C04A3535E9790A9120 /* demux.c */, - F789322912D13D98F15BEB706E0A630D /* demux.h */, - ); - name = demux; - sourceTree = ""; - }; - 08FA3881FD30F9B416808AAD7D1A8671 /* Reachability */ = { - isa = PBXGroup; - children = ( - A21747766DD83B697F1247CD235A13CD /* GULReachabilityChecker.h */, - 6B3844A27E41E7C5F10BF14FC9A7929A /* GULReachabilityChecker.m */, - E9377C29F942AF66A3D72A0AF35997BF /* GULReachabilityChecker+Internal.h */, - 50C7E75DE032D780D996A33E74AA1D42 /* GULReachabilityMessageCode.h */, - ); - name = Reachability; - sourceTree = ""; - }; - 09212FEF239BE83B5FFB0DAA2C9EE3D9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0BD893EC03B684D4C3C45FECB2D8F98F /* react-native-notifications.xcconfig */, - A82C63712B42E185D5C270BBDB629E32 /* react-native-notifications-dummy.m */, - 28640FE129348D992B19F5FD6192361F /* react-native-notifications-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; - sourceTree = ""; - }; - 0A7E816D401E3E937E3B8A49DF920903 /* config */ = { - isa = PBXGroup; - children = ( - 046EAA9D5C971AB9315DEC235D649530 /* RNFirebaseRemoteConfig.h */, - 8517462EC8191891DDC4C090B5F149BE /* RNFirebaseRemoteConfig.m */, - ); - name = config; - path = RNFirebase/config; - sourceTree = ""; - }; - 0A7F34B69D6A745B7ED9D2B71C785C06 /* Support Files */ = { - isa = PBXGroup; - children = ( - 079D9854C6095ABD1C6BD151B14AC57C /* RNBootSplash.xcconfig */, - 9E662EF8BD891FF57BD8D395276CB1C6 /* RNBootSplash-dummy.m */, - EB80F80723C4A8413AA092BCF137D242 /* RNBootSplash-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; - sourceTree = ""; - }; - 0BB5DD74FC8B5C6FADF0CA66AF171F64 /* Support Files */ = { - isa = PBXGroup; - children = ( - ABBF666395B823EE55B5DA692E6E3421 /* RNScreens.xcconfig */, - A389A9A7F2B314A8E20CB931728247C5 /* RNScreens-dummy.m */, - 4AC9061FCE8499561BD404D6B45FAAC0 /* RNScreens-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; - 0BE77E4DC8A7CF2DE5DEAE22C0E846C8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0506043E5C6B80ACD82C3F27165D3ABD /* ReactCommon.xcconfig */, - 6539F776FBDC5E175D59AE2A055A008D /* ReactCommon-dummy.m */, - E6EA9651E5B0FD1B215952D8D2002607 /* ReactCommon-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; - sourceTree = ""; - }; - 0C2170134528A9C4144CAD947BE70881 /* TextInput */ = { - isa = PBXGroup; - children = ( - 1A8E530C7B07419F2B4A9E63EFBA44C7 /* RCTBackedTextInputDelegateAdapter.m */, - 13DCAC04D657A2082E265DD6149414DB /* RCTBaseTextInputShadowView.m */, - 51BB9A3334F8058B9CABF455F7363AFE /* RCTBaseTextInputView.m */, - 51D8FBC70FC85BD127175A57572F50D1 /* RCTBaseTextInputViewManager.m */, - B02DD65D05D4FFEE128900D4F7D0DFBC /* RCTInputAccessoryShadowView.m */, - 604A3C8D67086E9A3ECCB0B7BF40E782 /* RCTInputAccessoryView.m */, - A9229A056CB0E4E9B46213B6DF6DAF7B /* RCTInputAccessoryViewContent.m */, - 0DC44227D6FBEFC40745BD6F81A94947 /* RCTInputAccessoryViewManager.m */, - F4810CC9A18EA364361E1F4DF90E27D0 /* RCTTextSelection.m */, - A2DA6D64544A7F296F606130412D3FEB /* Multiline */, - 3AE028F6857F8E7D6924035BD36BF65D /* Singleline */, - ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - 0F4E635626BD309E3427F0A7AFCF9061 /* MethodSwizzler */ = { - isa = PBXGroup; - children = ( - 4F51256112D9CF93FA314D5523249742 /* GULOriginalIMPConvenienceMacros.h */, - A7A9619333FE09CF2DFA4A5A7A719200 /* GULSwizzler.h */, - 019EF2F3E1EBEF4B63B42F53A1FE1122 /* GULSwizzler.m */, - ); - name = MethodSwizzler; - sourceTree = ""; - }; - 11286122E16AA6A7EB9997E9E2938367 /* instanceid */ = { - isa = PBXGroup; - children = ( - 1D1A4DF30C9801FD64301020561FE612 /* RNFirebaseInstanceId.h */, - 6584C61C82381EB1B1004D7753C0212E /* RNFirebaseInstanceId.m */, - ); - name = instanceid; - path = RNFirebase/instanceid; - sourceTree = ""; - }; - 120C841D0981AFEF45AA0A18FAF3DE27 /* RNFastImage */ = { - isa = PBXGroup; - children = ( - 738729E64B6A469A04A8534B490BC224 /* FFFastImageSource.h */, - 734AEA6C4CABB5DD9F8F3707C6300538 /* FFFastImageSource.m */, - 0776128501F7C2B856FEFE2DF2F62C93 /* FFFastImageView.h */, - 4CD830FC15460173E593D0931A1CFE15 /* FFFastImageView.m */, - 09340D593FCF156D56EC788C9D61A56E /* FFFastImageViewManager.h */, - 4047D0C13164557A75A75548DC31B4AB /* FFFastImageViewManager.m */, - 0C44808963FFBF4FFE9F3634F30135C4 /* RCTConvert+FFFastImage.h */, - 16E1B3D3F1C9A20AC3EE3B0DEF23172B /* RCTConvert+FFFastImage.m */, - 412E01A9EA1A4E6EEE2632D459614682 /* Pod */, - 7266ED1FBEC727B47A204049EBD0793F /* Support Files */, - ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; - sourceTree = ""; - }; - 12232A32A68D49BA8CF1C9409DA8C820 /* RNUserDefaults */ = { - isa = PBXGroup; - children = ( - EC25F30193FE87CEA5708B5D8793D7C5 /* RNUserDefaults.h */, - CE61B3F28EBD3E2F62F2C9156F67624B /* RNUserDefaults.m */, - D4077CE69563C7626C35FB4A16C6DB7F /* Pod */, - 241FF04C60ECD0C02E9FEB5A2E6B239B /* Support Files */, - ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; - sourceTree = ""; - }; - 125D21D47D0D3E4480B33C0568860C35 /* EXConstants */ = { - isa = PBXGroup; - children = ( - 21A88474A311493C0251BB4E0C560C13 /* EXConstants.h */, - 29111EDC9067117B4EA9376BF35DDAE2 /* EXConstants.m */, - EF12E615FDDDC5DC67C7B27029CB52D3 /* EXConstantsService.h */, - FC77272D5D1D48B43F12E55DDD9F80C1 /* EXConstantsService.m */, - 6334F61C04B2AB0248EA18B64C4AC386 /* Pod */, - 77FDE58A2B6CAB8C42F5568166122882 /* Support Files */, - ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; - sourceTree = ""; - }; - 126007A1DDAA4083EED0A72F0CEBA9BF /* RawText */ = { - isa = PBXGroup; - children = ( - C711D324C097D28645BE1368E672C76B /* RCTRawTextShadowView.m */, - 2F3DF60D378DE3375BEB8A1BB072B390 /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = ""; - }; - 129CA80BAC5EACA37391B771D9FFB7FD /* Resources */ = { - isa = PBXGroup; - children = ( - 3C8477FA3C58F5FB16CB4531DC9DDD56 /* AntDesign.ttf */, - E179A8C165A31CC3B2B02FE8FAFD6CF7 /* Entypo.ttf */, - AE9A643C6116EA81C178805A8C7A2F45 /* EvilIcons.ttf */, - 007FDBD5CB8F72DE12035951173C327B /* Feather.ttf */, - 0B2FDA18ED70A47834CCAED314AD0309 /* FontAwesome.ttf */, - 1615A42F724A8A0EFBB3E03DCA8989DF /* FontAwesome5_Brands.ttf */, - EC7D2AC4F90F73F003928CD123DEACD6 /* FontAwesome5_Regular.ttf */, - 36B0485A129186415B58A6B07016DAB9 /* FontAwesome5_Solid.ttf */, - 2AECEBE83F3D166D80F0950412E1D8F4 /* Fontisto.ttf */, - F3AECBC515351386CAB369DF62BE8458 /* Foundation.ttf */, - 935ACFB77E482AAEC673103A6CA209D8 /* Ionicons.ttf */, - 64DE20E29967B6096AD7F97229DB7A6F /* MaterialCommunityIcons.ttf */, - C26A935CB0E6EA873152D98DFDB862DF /* MaterialIcons.ttf */, - EB4D088E6A053132E874D3F79EACD884 /* Octicons.ttf */, - 4DEF529BBE88D3B9077D0B51680BC17C /* SimpleLineIcons.ttf */, - 6AC759C1CD233D0071663E565C11837A /* Zocial.ttf */, - ); - name = Resources; - sourceTree = ""; - }; - 12F02807DA86ADBA33A1C4BBE5B74CDD /* Support Files */ = { - isa = PBXGroup; - children = ( - 95D858BFDF2F99A6F3D810DEAD6A9300 /* Firebase.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Firebase"; - sourceTree = ""; - }; - 132E7188EFE6AA2EF66D9BFB818FF427 /* Support Files */ = { - isa = PBXGroup; - children = ( - C8ADDD3DE5B9D58ABDF6D510A502F85F /* libwebp.xcconfig */, - 567FF870D1397FAA1691FB0CD6CB3562 /* libwebp-dummy.m */, - BE65063F801DD1E37BBFCF89EB4B25A3 /* libwebp-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/libwebp"; - sourceTree = ""; - }; - 137BD35ACC837DDCBB1F79BAC6F186AA /* Support Files */ = { - isa = PBXGroup; - children = ( - B7437E080DBD8540D545B371A38CDE34 /* EXHaptics.xcconfig */, - EE8FD87FC265122514D84E9883251CDD /* EXHaptics-dummy.m */, - 217EC25650E42C36B58D098A7BE98C37 /* EXHaptics-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; - sourceTree = ""; - }; - 149001F837487FAD58692CCA53BBB940 /* Pod */ = { - isa = PBXGroup; - children = ( - 9A829F245C0CD19CEE3F9EE11E899740 /* LICENSE */, - A8B4D61D8288CE098D82D4273358B6FA /* react-native-orientation-locker.podspec */, - 7C933B6ADE762A78222E407FD1960592 /* README.md */, + A1ECB489062ECBD9F58B75AA5942A712 /* UMTaskManagerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 1571351D44DDA44B0522DAC3CC174204 /* GoogleUtilities */ = { - isa = PBXGroup; - children = ( - 730DB5449723E314904FA26F91779A89 /* AppDelegateSwizzler */, - E53C9CC3497634A2C855D1ADC4914341 /* Environment */, - 9550F5053A5585C399A2BED6D5F485D9 /* Logger */, - 0F4E635626BD309E3427F0A7AFCF9061 /* MethodSwizzler */, - 176A13F1785BE8ED053845E30FE0CF72 /* Network */, - 52F43ECD26A7C91B93A004BAF6FAA80B /* NSData+zlib */, - 08FA3881FD30F9B416808AAD7D1A8671 /* Reachability */, - 5900543A95485F383AA39FFDC83A331D /* Support Files */, - 3FFCE7BE739742CA2D2F988E9E825982 /* UserDefaults */, - ); - name = GoogleUtilities; - path = GoogleUtilities; - sourceTree = ""; - }; - 15B0FD077CFC5788A5954EC9F4B593CC /* Pod */ = { - isa = PBXGroup; - children = ( - 19C6B487FF09B7DC327E20B038C0DF87 /* LICENSE */, - DB772E12EF9B7EF2053FA1739EE01341 /* react-native-video.podspec */, - 8245ADDCE6EFBDACC991EA41E85E761A /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 15DC3C6BB12D3D8C419EBD198E67A719 /* Pod */ = { - isa = PBXGroup; - children = ( - C0AFA44A2045D5AC96AB70C780E3244E /* LICENSE */, - 6E278FF27563009D97F9BDC3D73D8425 /* react-native-background-timer.podspec */, - 1F2E344E048B27D0A031047E557752D7 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 16D69AB38B717A437838F777DB6C60AA /* Pod */ = { - isa = PBXGroup; - children = ( - 84E26443EF2CDC0A416CD2340B33EB39 /* React-RCTActionSheet.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 16D8CEF3B8B0E16F6DD2AC470B3C5CB1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5CEE7A85BBF78894CD063886D710B60C /* react-native-cameraroll.xcconfig */, - 93A0D6200CDFA3971E6F29B76348B333 /* react-native-cameraroll-dummy.m */, - 07D26F1F28317A664DDFCE95DE3C591E /* react-native-cameraroll-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; - sourceTree = ""; - }; - 16F70382F813FC70862131F09AD25F8B /* Pod */ = { - isa = PBXGroup; - children = ( - 0C0EDBD3C842474FCA65748C7492A36A /* RNFirebase.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 176A13F1785BE8ED053845E30FE0CF72 /* Network */ = { - isa = PBXGroup; - children = ( - 095C3A99BAD601DEF79FEC7E58053AA8 /* GULMutableDictionary.h */, - 69A4DE0309583DD90D1046C5499B1BF4 /* GULMutableDictionary.m */, - FF93806C208335D001155DDC1F559DB7 /* GULNetwork.h */, - 31D6386A910752DB6206410DE1299650 /* GULNetwork.m */, - 7F5540001EC3C541DE53A5E0C4D860B9 /* GULNetworkConstants.h */, - 2B591EBDB62B59175625167A78E88D03 /* GULNetworkConstants.m */, - EA8733A840E5BF5CB7160E71BC70F136 /* GULNetworkLoggerProtocol.h */, - D6DD593F04D58A5F3553692C25B27A02 /* GULNetworkMessageCode.h */, - A90EEA3E24B6338A093526F3631E6B57 /* GULNetworkURLSession.h */, - 00EF713613E649AF69AC589CAB985955 /* GULNetworkURLSession.m */, - ); - name = Network; - sourceTree = ""; - }; - 17D3AF23ACC0C15926BBC96EAF8121E9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1BC240C9C25F80D8681D0EEC22B07F84 /* ReactNativeART.xcconfig */, - 76037B0C94833300AFE005BC53E81964 /* ReactNativeART-dummy.m */, - 7292E38617F5F47475FCD902E7B442D5 /* ReactNativeART-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; - sourceTree = ""; - }; - 195E608FEFFC6177D6727580B75A402E /* Pod */ = { - isa = PBXGroup; - children = ( - 9581E9C5A44542BF5FDC5857FA73C055 /* LICENSE */, - E1BC3269BA7653A13FEAAD56B72D8271 /* react-native-appearance.podspec */, - A1B2AD66D7A9765C434B365FDEAF4022 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 1967F35F3BA314610A284D0685988C0D /* Pod */ = { - isa = PBXGroup; - children = ( - D5EBFB7008852607CECC355E06C9C6E0 /* BugsnagReactNative.podspec */, - F9E65561A4F759756BFA0999219E99FC /* LICENSE.txt */, - 885CB6D9B8AED66C24493BBDBAFD7F33 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 1A15EFBB0193C8609D77649843FEAD1D /* Handlers */ = { - isa = PBXGroup; - children = ( - C6195A96E3126C5962D909EFFAE81ACC /* RNFlingHandler.h */, - 1BB23806F75FA779CDDC924FA7F9C555 /* RNFlingHandler.m */, - 803AA4D060B960BE2E1541EB7EB0A8F8 /* RNForceTouchHandler.h */, - 74E4529B98FEDAACF3150604E65DAAD1 /* RNForceTouchHandler.m */, - C75D6141B889C90F12173F1E3786508E /* RNLongPressHandler.h */, - B3EA2ECAF632E137336F97437D3E6ADC /* RNLongPressHandler.m */, - AF55E15E2C3E4E070679685042CA4096 /* RNNativeViewHandler.h */, - D71A3992E7CF3B86949CE9209EB49D59 /* RNNativeViewHandler.m */, - 95BBFAB8C771DD0FF985331B81372155 /* RNPanHandler.h */, - E0F498276475AF9EB123E331A4CCB2F3 /* RNPanHandler.m */, - 3A1BABD4B412A0953C577E058336334A /* RNPinchHandler.h */, - C8C38C11207926949E1F8094DFCEE99F /* RNPinchHandler.m */, - 82F02B6475E7D1C3486094F8F388E148 /* RNRotationHandler.h */, - 8A1E96E54A74B0B1F1F972417852D401 /* RNRotationHandler.m */, - BA407E1C13578F7B43F9461BB02A73C4 /* RNTapHandler.h */, - 94DA588A88B35CE185D80006E62DBC42 /* RNTapHandler.m */, - ); - name = Handlers; - path = ios/Handlers; - sourceTree = ""; - }; - 1A9A8F7748BD4A4ECA30D287F5D5F67F /* JitsiMeetSDK */ = { - isa = PBXGroup; - children = ( - F74417EBA7079E353532E43164085A3C /* Frameworks */, - 5BD2FD9E5F338A311C76828869F32E72 /* Support Files */, - ); - name = JitsiMeetSDK; - path = JitsiMeetSDK; - sourceTree = ""; - }; - 1C993B9F03DEA570E666CA88E462252A /* Frameworks */ = { - isa = PBXGroup; - children = ( - 4285516BB63AD69A2F0BEDB2C5506374 /* GoogleAppMeasurement.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 1D5B2A03136DD1F2AB4605A7E72D2B83 /* BugsnagReactNative */ = { - isa = PBXGroup; - children = ( - 8520DCC90076C2D0C0481EAA947E98F3 /* BugsnagReactNative.h */, - 3A1B67C83BAF844E6860075F41D052A4 /* BugsnagReactNative.m */, - 649D8C29B884773C1E1BB80BA5DA15D2 /* Core */, - 1967F35F3BA314610A284D0685988C0D /* Pod */, - 592E5AE3C7A199890705A33C4DF23F55 /* Support Files */, - 8144969F53CDB4CC8856B88B71B3E9DC /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; - 1D8C8999A35ABC5C79957F7D96B00F4A /* Pod */ = { - isa = PBXGroup; - children = ( - BC0F6ABA02DFEA3979B090303AFE0BC1 /* KeyCommands.podspec */, - AB4EC7BD8F12B5BFCA132B5F5897107F /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 1D8E2D68135E1A0B8F86D5DA637D0722 /* EXAV */ = { - isa = PBXGroup; - children = ( - 02FAA2A82FF5E7F69641A48ACD60B8E9 /* EXAudioSessionManager.h */, - 6203E9A58EE92DF8A28EAE1798542BAF /* EXAudioSessionManager.m */, - 834A4198AD7AF564A3B63F8008730F29 /* EXAV.h */, - 5298D6BD91CA975746993001F4AE1E6E /* EXAV.m */, - 8DAEE0C9CA8E2893756B368AB756A956 /* EXAVObject.h */, - ABDF8913C48CDFD3513678263BD2FD3A /* EXAVPlayerData.h */, - 8CB27FF0D9774D66C8B17F15F7EF975B /* EXAVPlayerData.m */, - C390A4C3844BEC34B1A05C5F05EC9280 /* Pod */, - 3AB4D14323BE5D7D216A7D437F19DEE1 /* Support Files */, - 75BB39673C1CBF1C64F11CCE0220D757 /* Video */, - ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; - sourceTree = ""; - }; - 1EAFB3C996B448BC9E033F79DA868012 /* Support Files */ = { - isa = PBXGroup; - children = ( - 226FCB055213BA46EF8147CC03F0313B /* React-RCTSettings.xcconfig */, - 89E51AAA62F862E9845F3BCEBA4471BA /* React-RCTSettings-dummy.m */, - 0C5EB83C9433ED1E5273FCC0D19066AB /* React-RCTSettings-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 21318A240F7F17BFB699F36FFA95A5A5 /* Support Files */ = { - isa = PBXGroup; - children = ( - CE4F6A837ACAFDF071968B59BBF37B73 /* RNDeviceInfo.xcconfig */, - 24CD51144600B32C8331D79B7265324E /* RNDeviceInfo-dummy.m */, - 955B123361B23939A58B414DFA70271D /* RNDeviceInfo-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - 215F22565843CB30C76C33F6CA2789FD /* FirebaseCoreDiagnosticsInterop */ = { - isa = PBXGroup; - children = ( - 4A101D6AA53CF88031BB16C9B3E7F9D6 /* FIRCoreDiagnosticsData.h */, - 349D2D31BB70D54765B7F471065C958E /* FIRCoreDiagnosticsInterop.h */, - 64262144F4E5F4033E4F0A0B9609FED0 /* Support Files */, - ); - name = FirebaseCoreDiagnosticsInterop; - path = FirebaseCoreDiagnosticsInterop; - sourceTree = ""; - }; - 2188DAB106F0A2AC9B7BA6704B34E13F /* Pod */ = { - isa = PBXGroup; - children = ( - 84FA4F5E631BB18A4CAF1B69923DAFEB /* UMBarCodeScannerInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 219FCDDAF22B53AFD6289C28408BC63E /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - 4B21B0CE90EC97B3E7396A49F2FD743B /* DeviceUID.h */, - F8752475D668F72AEAB301382F7113DE /* DeviceUID.m */, - 5A1E231B5D85FFD8717EAF9D9C711B2A /* RNDeviceInfo.h */, - F5E5B8A6650D84ACBAF57A8E248E85D7 /* RNDeviceInfo.m */, - 7D3C06247BA368DC7E890222BFCFD5D7 /* Pod */, - 21318A240F7F17BFB699F36FFA95A5A5 /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; - sourceTree = ""; - }; - 220DC0A7B3327F54CEDEDA0D6890BA17 /* Tools */ = { - isa = PBXGroup; - children = ( - 46AFF8864BD2A72064697C0A599996A6 /* BSG_KSArchSpecific.h */, - 864D63C1C3348D6FFBDA77D0EC206085 /* BSG_KSBacktrace.c */, - 5CF132F48B2B8B5875B871C7C5A28249 /* BSG_KSBacktrace.h */, - A5C0A3B289A8E8C397553F8B5795D657 /* BSG_KSBacktrace_Private.h */, - F006204547FEC6498B166EFA2D35B2B8 /* BSG_KSCrashCallCompletion.h */, - B1F55CCBE67BE68BB69741B56329314A /* BSG_KSCrashCallCompletion.m */, - BB9605D1B5460502B2344AE8267BB8CA /* BSG_KSDynamicLinker.c */, - 28F65205BA8970F406183AF22BD3D344 /* BSG_KSDynamicLinker.h */, - 92B78D29037CAC24AA19C7CF8C13DE91 /* BSG_KSFileUtils.c */, - 226C067E41BA7EAEDA042F0161EBF418 /* BSG_KSFileUtils.h */, - F52AF8FBB89BF50C43022FA550FC224E /* BSG_KSJSONCodec.c */, - BCEAF35223D82BA11CD63E498B46EDA1 /* BSG_KSJSONCodec.h */, - 9FDAB07C74E234EDFEA1553BDC5637B9 /* BSG_KSJSONCodecObjC.h */, - 679C432647D258664EB921B077656E54 /* BSG_KSJSONCodecObjC.m */, - 31603209831682D8D8E385789AD81326 /* BSG_KSLogger.h */, - A0C71A8BF755B047A6CF93AE27D962DF /* BSG_KSLogger.m */, - E1468AC437F1F375A17C5232350DF95F /* BSG_KSMach.c */, - FDE02055864DF5DC8FADA071B185C63E /* BSG_KSMach.h */, - 700ADDD491EDA1DA1D8263D8F9DE39B2 /* BSG_KSMach_Arm.c */, - FBABE6A668BF55191A9D843480C414A5 /* BSG_KSMach_Arm64.c */, - 1E36B6104ECCD9D037D65F133A90B34E /* BSG_KSMach_x86_32.c */, - FE5F61B11785B4AF3CB9741A37B367DD /* BSG_KSMach_x86_64.c */, - 5986E69905D8ABC7C1508DA89704548B /* BSG_KSMachApple.h */, - D9BE4D1608A09FE10A9E3B412A392C07 /* BSG_KSObjC.c */, - 395C8CCD6F5671524B172C22324D82EE /* BSG_KSObjC.h */, - 622C2298B9560A8972BADB00740D62C9 /* BSG_KSObjCApple.h */, - 62EC6787AD86A09B5DAECF891CE39554 /* BSG_KSSignalInfo.c */, - 255B228CCCED6DFCD0C46C088AC3FFCA /* BSG_KSSignalInfo.h */, - 6249B422C72D40D5A073CF71C0AA86A2 /* BSG_KSSingleton.h */, - 6712574FE9AB8B30436ECA7A7C94F647 /* BSG_KSString.c */, - 4C0AEECE68F91F9D53BF643359BA6740 /* BSG_KSString.h */, - 70E03B7B4E15C9359D458397CC5D05CD /* BSG_KSSysCtl.c */, - 62C356E403E5757FEBB5F6AC59AF8A36 /* BSG_KSSysCtl.h */, - 05C6F803ACAD8D922F711576AF18EB36 /* BSG_RFC3339DateTool.h */, - 57128606D41041DE0DE7DE6C3FB04801 /* BSG_RFC3339DateTool.m */, - B5F80C9501800379D69EFFFD9BC11E1F /* NSError+BSG_SimpleConstructor.h */, - 0CF58F69ED2387D3A40D3B251FE60953 /* NSError+BSG_SimpleConstructor.m */, - ); - name = Tools; - path = Tools; - sourceTree = ""; - }; - 22F19F746884EBA990A236492F1D08CB /* Filters */ = { - isa = PBXGroup; - children = ( - B755B5DEA69CA3FE94D40CD2B3D5BDA8 /* BSG_KSCrashReportFilter.h */, - 621A33C1A0AB8647038FFB213B6A9135 /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - 23B710BC1438BB7A13D6A0AEE72B4577 /* Support Files */ = { - isa = PBXGroup; - children = ( - 45B1E5153BFC16DE9111B4152514C7A2 /* UMFaceDetectorInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; - sourceTree = ""; - }; - 2400411D160157C0F8B8C8D820D017A9 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 1D5B2A03136DD1F2AB4605A7E72D2B83 /* BugsnagReactNative */, - B7BE8DFAA2AD11763B7912752135C3DA /* EXAppLoaderProvider */, - 1D8E2D68135E1A0B8F86D5DA637D0722 /* EXAV */, - 125D21D47D0D3E4480B33C0568860C35 /* EXConstants */, - F0926636B296F05464EB022485D23721 /* EXFileSystem */, - 301E44C3812F77ADF64231DE25998347 /* EXHaptics */, - 57B54BDB245421E518DD332120D2251D /* EXPermissions */, - 48D616CFD73B4097786D003C8DF36454 /* EXWebBrowser */, - 63BF89930BB108CFD42EA094DFB3033B /* FBLazyVector */, - C76AFE09903D893DCB3082B4FC04A93B /* FBReactNativeSpec */, - F867CEFD1BF8FB67A7D0AF9E505B7560 /* KeyCommands */, - B34945BD3380F76C26DF4ACCF60C6D1C /* RCTRequired */, - AB377B3B92224DFB1AF61E3C42865A4C /* RCTTypeSafety */, - A061C5FA102DDABE39001BE6A1E7B305 /* React */, - C2C269465549A56BEF729055333BF83B /* React-Core */, - DE4FACEFC9AD5255EA1FE12928C14307 /* React-CoreModules */, - CB52C4E07F056BDFB85AC3C205A116B0 /* React-cxxreact */, - 3BEA7F395A5379E3F7494E212CC95F8F /* React-jsi */, - C6FF59578801B8BD98D5B56D5CD53A44 /* React-jsiexecutor */, - D0537242BC524411B1F5BB775A11B108 /* React-jsinspector */, - B8F89FFC1BE6749DC8CAA37B16AE61B4 /* react-native-appearance */, - A8786A9739F351000CC7B97C0FA2ED67 /* react-native-background-timer */, - 762E7F7B6D53D1128C928D4972EE3C57 /* react-native-cameraroll */, - 7AE9286FB24968BC2DB10E296D810E76 /* react-native-document-picker */, - 24F3E149DAFB7D2E3DEC32CA31798F23 /* react-native-jitsi-meet */, - 7EEA68A728B8B4D6295F206A236229EB /* react-native-keyboard-input */, - DC0D970C93D3A3D6B44FBC546DE684E7 /* react-native-keyboard-tracking-view */, - DD8A57E46C4AB31DFF0ACDB7372B52F5 /* react-native-notifications */, - 77C2A4728A94824BAD103390097A49CA /* react-native-orientation-locker */, - 866072747211D90183BA481EA2016A84 /* react-native-slider */, - B1E872E40803773336EDBDB75702C67F /* react-native-video */, - 394C0118F9AE03862FCB1BEB69C07ABF /* react-native-webview */, - FB3B9A1DBDC252416661F3F95C715416 /* React-RCTActionSheet */, - 8440AC8D6F3E3A763C6F91E4187D72C1 /* React-RCTAnimation */, - 48CAE9FC43022E7081A45B4EAD80A0E6 /* React-RCTBlob */, - 41F513417675F55E977A50030491A638 /* React-RCTImage */, - C6E2F14CAC25E873F1EFC6E32E4A19AF /* React-RCTLinking */, - 6F5FAF55C12E9EF1DE4E26F11B40FEEB /* React-RCTNetwork */, - 5AB8423AACFC92CBC0CB9AD767A57AB4 /* React-RCTSettings */, - 2EFB82A27B943FDF9285253AB2EFC984 /* React-RCTText */, - 410E29CE5DCD220F2BC6FE07A9947DF8 /* React-RCTVibration */, - 8D629DAE4A27A35F87B892806AF25955 /* ReactCommon */, - 872C142B8475E977BE189E6B0703A687 /* ReactNativeART */, - 044AFB6A0A90F6C17CE1AEC34CA18553 /* rn-extensions-share */, - 796F9D200EABDA60E047EF6D20092545 /* rn-fetch-blob */, - BED2C0FBBE99BB99619F4B9BE5A2927F /* RNAudio */, - 7802A9E50E4CF7370C9DC29E2D08DBDD /* RNBootSplash */, - FC6665FFD77964E3E4E786DA0BDDB47A /* RNDateTimePicker */, - 219FCDDAF22B53AFD6289C28408BC63E /* RNDeviceInfo */, - 120C841D0981AFEF45AA0A18FAF3DE27 /* RNFastImage */, - EEDDE5C993CBBDBF48EADF5CE85C4D21 /* RNFirebase */, - DF73CEB83498278ABF84F5261280E606 /* RNGestureHandler */, - 39303A1C848498000ED6020A29AE664A /* RNImageCropPicker */, - 89400AB629043817EC4B63EA7C7FD802 /* RNLocalize */, - A82E022078BADCE51C793274FF9AFF8D /* RNReanimated */, - D741E1DAA8A74DDFEF00C622475515C1 /* RNRootView */, - C68FDF6A51CBF069AD0C8B3667B72539 /* RNScreens */, - 12232A32A68D49BA8CF1C9409DA8C820 /* RNUserDefaults */, - BFEE45F1AAED6EDEAE970DDF52C1F61F /* RNVectorIcons */, - 8D5B19163CA6D41154D94054A165A4A1 /* UMBarCodeScannerInterface */, - E20C2CB8A73AC20C6B1D8AD1510FEE33 /* UMCameraInterface */, - F4699DB6E7354F606CAB2F2AEE95C256 /* UMConstantsInterface */, - D92834DF3EDB6C2C8A706FADC4A215FD /* UMCore */, - A2CBEA085E8D707A9A11D90318F1A210 /* UMFaceDetectorInterface */, - C72BB789283E67F577B46060F88081AE /* UMFileSystemInterface */, - 64E7BAC00FD96ACE5F86F0526A43B115 /* UMFontInterface */, - F3743B731BBAD0D08B07902E40C4E2D8 /* UMImageLoaderInterface */, - 5CBB222EFF0034C859F7AD2781CA6B17 /* UMPermissionsInterface */, - 75E78274A4B6888B5A7BA0447DFC9343 /* UMReactNativeAdapter */, - 06A1B697F0E97A8D9EDDE9F204DFFC0A /* UMSensorsInterface */, - 452B819A64D54ED90C10B819DDA2B1E8 /* UMTaskManagerInterface */, - 8737838DAE8C00DC7B4813FEC3F1C751 /* Yoga */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - 241FF04C60ECD0C02E9FEB5A2E6B239B /* Support Files */ = { - isa = PBXGroup; - children = ( - 4FEB90EF485C158605741A8808C02EFF /* RNUserDefaults.xcconfig */, - FCCF3DEE4FAB690782F0F7F0ACA51C41 /* RNUserDefaults-dummy.m */, - 9453942985118F6CE8C03D72FFCAC48D /* RNUserDefaults-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; - sourceTree = ""; - }; - 242B5C4FB694DA6F8D93DCFE143FC26F /* Support Files */ = { - isa = PBXGroup; - children = ( - 7F768D9E00785D6BB9E2DC2D13336CE0 /* rn-extensions-share.xcconfig */, - 3693EA1280CB5A156C4A5F602F068CB9 /* rn-extensions-share-dummy.m */, - DAA759120E9B45A001D557D37AAD677D /* rn-extensions-share-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = ""; - }; - 248402D751731B5BF2C27C484B3C4FE3 /* UMModuleRegistry */ = { - isa = PBXGroup; - children = ( - CBF28F20DB25164617538A4344BB107D /* UMModuleRegistry.h */, - 84CAA6046B8BF4952D41D2078EF3C87D /* UMModuleRegistry.m */, - 31AE9C83361780E6B38F68149BE8ED27 /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = ""; - }; - 24F3E149DAFB7D2E3DEC32CA31798F23 /* react-native-jitsi-meet */ = { - isa = PBXGroup; - children = ( - 661D96F33813C29F39EAA5A247C1BE48 /* RNJitsiMeetView.h */, - F72659CDABBCCB4186E4ACFCED8EC514 /* RNJitsiMeetView.m */, - 06CB3C0F55397252230780C99F95841B /* RNJitsiMeetViewManager.h */, - EF2A4E69D80B6EDB5E27EAD8CF0618BF /* RNJitsiMeetViewManager.m */, - 92F526C4944BF4E55B6633B4FEA0AF07 /* Pod */, - 3E976D150A97BAD8055AF56E6E1D783B /* Support Files */, - ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; - sourceTree = ""; - }; - 25BB9C373B9B59E27C0A37F539151E13 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8E83DC189FC3B7A9E583BCE303D1EE63 /* react-native-keyboard-input.xcconfig */, - 6868214DF95F6AE6EE828BF02EC30D78 /* react-native-keyboard-input-dummy.m */, - DF2A3F848353E02D17E28812EC17B706 /* react-native-keyboard-input-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; - sourceTree = ""; - }; - 25C00CF5CD638BA812B4D78597129842 /* RNFetchBlob */ = { - isa = PBXGroup; - children = ( - 562C20F9B0C661B7B7CD7311659AB2E3 /* RNFetchBlob.h */, - D093A63288644F13E10F340EED802CBE /* RNFetchBlob.m */, - ); - name = RNFetchBlob; - path = ios/RNFetchBlob; - sourceTree = ""; - }; - 26F4DA5A38C20ADCB4C5E504904EEC1E /* admob */ = { - isa = PBXGroup; - children = ( - 965C8488F60641681C8FF2D2BBD2B298 /* BannerComponent.h */, - 444142B1C689CED6755F59CE2C7CC1E4 /* BannerComponent.m */, - 33CCB852DAE0F4F830E760AA67856FEA /* NativeExpressComponent.h */, - 5AADB8C895E14A4EA0A6240AEE3AB200 /* NativeExpressComponent.m */, - C887A99E09489A56DE2379D37D1AA86E /* RNFirebaseAdMob.h */, - DFF060107B7AABE7F62B8FEEA39C3610 /* RNFirebaseAdMob.m */, - 8A821A52E6888BC7CFDBC1BC5865C0C8 /* RNFirebaseAdMobBannerManager.h */, - 6A74F82E6AB2138E825235952F1EB9D0 /* RNFirebaseAdMobBannerManager.m */, - 6EDBD7760CAAD0BDC4B18C56EE630607 /* RNFirebaseAdMobInterstitial.h */, - 3FA1D4486566CBD662DF2E1BA3D046B8 /* RNFirebaseAdMobInterstitial.m */, - 57D38BD8CA32B091EC53F86C2CB7E8A8 /* RNFirebaseAdMobNativeExpressManager.h */, - 37E9F851FAD48A36030E29145906CAB0 /* RNFirebaseAdMobNativeExpressManager.m */, - 3CC7A3F5A971D81FA783C0205E1D4005 /* RNFirebaseAdMobRewardedVideo.h */, - 388EC556317ED0A5D2EB3EAE9B62567A /* RNFirebaseAdMobRewardedVideo.m */, - ); - name = admob; - path = RNFirebase/admob; - sourceTree = ""; - }; - 276D037C29F40BF33B23E63ACB83AFB2 /* Pod */ = { - isa = PBXGroup; - children = ( - 2ABC22E6B64EF62F052874BF99B9EFCD /* React-jsi.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2831255621399A1A95B6A58D28D3B520 /* Products */ = { + 061A2EAA9975DC819040E39B4127A4AA /* Products */ = { isa = PBXGroup; children = ( 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, @@ -7811,7 +6938,6 @@ 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */, 686FA236B3A0EDC2B7D10C6CB83450C8 /* libreact-native-keyboard-tracking-view.a */, 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, @@ -7856,212 +6982,907 @@ name = Products; sourceTree = ""; }; - 28DEB85CF0F94B3BA3F4E2368695F0E2 /* Pod */ = { + 06686FA55A8EEBA185AB04FA8AB615DE /* Support Files */ = { isa = PBXGroup; children = ( - 441D04F5C96E5CD130B6D300779AF435 /* React-RCTBlob.podspec */, + DEC91BA0271EDD25AC990885269AAA63 /* GoogleAppMeasurement.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 29F54DE9492FAB16F3A6F6CC90BF02ED /* BaseText */ = { + 07A5F45AFB97E324EF726D6EE3C6A29B /* demux */ = { isa = PBXGroup; children = ( - 1EB722BDDED6433A2C613BC46BF7D51A /* RCTBaseTextShadowView.m */, - 9C5830D6BB7673585595AB8BA414214F /* RCTBaseTextViewManager.m */, + 784124C11142E87DB1D3FCA0F0DF8284 /* anim_decode.c */, + 281C56FBABFEE9C04A3535E9790A9120 /* demux.c */, + F789322912D13D98F15BEB706E0A630D /* demux.h */, ); - name = BaseText; - path = BaseText; + name = demux; sourceTree = ""; }; - 2A5C1E2BD2DA94955EE4471FEAAB4A69 /* UIUtils */ = { + 086E96906DDFE55D11DB51E67305AF4E /* Support Files */ = { isa = PBXGroup; children = ( - 2C8F6E5BBFA697FF0669A137F6C69EBC /* RCTUIUtils.h */, - D8D6E02317F787EC529CB53BDD23902B /* RCTUIUtils.m */, + B5744E663AF4BCC3C10EDBCE112BAAF2 /* React-RCTSettings.xcconfig */, + 4A7CDB360BB0FD9721CC760A160197E7 /* React-RCTSettings-dummy.m */, + 85E991FC094975BA5495E5BE0C61AD7B /* React-RCTSettings-prefix.pch */, ); - name = UIUtils; - path = React/UIUtils; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 2BDBF1D61D16E1861A4310E8D28A6B14 /* RCTSettingsHeaders */ = { + 08FA3881FD30F9B416808AAD7D1A8671 /* Reachability */ = { isa = PBXGroup; children = ( - D392E813171E4AF47DB543E300F51995 /* RCTSettingsManager.h */, + A21747766DD83B697F1247CD235A13CD /* GULReachabilityChecker.h */, + 6B3844A27E41E7C5F10BF14FC9A7929A /* GULReachabilityChecker.m */, + E9377C29F942AF66A3D72A0AF35997BF /* GULReachabilityChecker+Internal.h */, + 50C7E75DE032D780D996A33E74AA1D42 /* GULReachabilityMessageCode.h */, ); - name = RCTSettingsHeaders; + name = Reachability; sourceTree = ""; }; - 2C2AAACEF113BF83F83A50381F43DB67 /* Sentry */ = { + 0970F0ED02E9C51A2BD85B30311E385D /* Support Files */ = { isa = PBXGroup; children = ( - 486937403C032E7E7D7AC3549ADD9FF9 /* BSG_KSCrashSentry.c */, - 5A479634950702320BDA8537F995EFD0 /* BSG_KSCrashSentry.h */, - D02317A1264D11D9C88D834F0437492E /* BSG_KSCrashSentry_CPPException.h */, - A598C0208EF4B24378EBB0A461F36DF0 /* BSG_KSCrashSentry_CPPException.mm */, - 5C19055FA15FDF3D592E684CADBB0FA2 /* BSG_KSCrashSentry_MachException.c */, - 4375BD13925DDD566F3381489293DE18 /* BSG_KSCrashSentry_MachException.h */, - 9D673843F637BD65A1677DB94EFD1975 /* BSG_KSCrashSentry_NSException.h */, - 8D0889914C2EAB592A088E57E532DCD1 /* BSG_KSCrashSentry_NSException.m */, - B3BB883D8A8C3E696C572EF6EAB59284 /* BSG_KSCrashSentry_Private.h */, - 3BEF46DC557E56530FC987ADAAF32C09 /* BSG_KSCrashSentry_Signal.c */, - 30ED0B77780D8EE9E497B0F89B035B5F /* BSG_KSCrashSentry_Signal.h */, - 150C87055CDDB34CF656770A6785DAF7 /* BSG_KSCrashSentry_User.c */, - 75FB1004D9B7D67BB87C20ADF2E6B934 /* BSG_KSCrashSentry_User.h */, - ); - name = Sentry; - path = Sentry; - sourceTree = ""; - }; - 2CF102C4CE630F0D4E0B6D7C3A34F8CA /* Recording */ = { - isa = PBXGroup; - children = ( - DF0F7834E6C0999B04A1ABAE902B1297 /* BSG_KSCrash.h */, - E411B627C7408136EA1D39A3F6696869 /* BSG_KSCrash.m */, - 8D6AB77C2053E9044D3C2DA81EE8E08D /* BSG_KSCrashAdvanced.h */, - 4F544C6F4427F61DDF85089E22844A7F /* BSG_KSCrashC.c */, - 29CA433545EC6BB3C9FD13334F15C7FA /* BSG_KSCrashC.h */, - AF2531016461C8BC32A2D395A027A648 /* BSG_KSCrashContext.h */, - 086682E66D534C5C4E564B6A5873DEC0 /* BSG_KSCrashDoctor.h */, - F06E69D19CB17124A98CAC4A351F247F /* BSG_KSCrashDoctor.m */, - FBCD9EF2870E34294630AADF03530B74 /* BSG_KSCrashIdentifier.h */, - 1A9A3DE004CEEA3336DB958021E968A3 /* BSG_KSCrashIdentifier.m */, - 444FAA0588008314F1EDA1458D4351C1 /* BSG_KSCrashReport.c */, - 5CEF007F87D815FF9DDAF8260B117C81 /* BSG_KSCrashReport.h */, - 4EDFFA47C755F73800F680EE4AC433EE /* BSG_KSCrashReportFields.h */, - 9B3370FC1317B276B98782F87182B739 /* BSG_KSCrashReportStore.h */, - 2980F44EC4FCC6EA8AC5C12779A3544E /* BSG_KSCrashReportStore.m */, - D638C2BB3396581FAFA06A88C595108E /* BSG_KSCrashReportVersion.h */, - 0AEE2091ED266224B958D1DDE10E9E00 /* BSG_KSCrashState.h */, - D65685F530E8F51BABCEE69624EBCEEA /* BSG_KSCrashState.m */, - 91634D2EBBE9FF97B1E1D92DA46FB7CA /* BSG_KSCrashType.c */, - 9B9F452F697190C881B95C6137E24274 /* BSG_KSCrashType.h */, - 38FCC55495F3D29D189C63059801F701 /* BSG_KSSystemCapabilities.h */, - 8AE78D02DA919C9E41B39F91B858B386 /* BSG_KSSystemInfo.h */, - 0CAFE524CDC0EDA7E418B7CFA9669422 /* BSG_KSSystemInfo.m */, - 7FA243F65BEEED50FE367D2DA9EF79D8 /* BSG_KSSystemInfoC.h */, - 2C2AAACEF113BF83F83A50381F43DB67 /* Sentry */, - 220DC0A7B3327F54CEDEDA0D6890BA17 /* Tools */, - ); - name = Recording; - path = Recording; - sourceTree = ""; - }; - 2DF32949BF959F7FFCCDB08901300C06 /* Pod */ = { - isa = PBXGroup; - children = ( - AB963DC761596175FF14D24B9E1FF84D /* LICENSE */, - 820E8C3DA0CDAC11DC3E5E7C1496BF63 /* README.md */, - 925AD7E3A9AD5A4244506B8FC81249E5 /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2E275263C32F6D7F832A4FBFA3C33B7B /* Support Files */ = { - isa = PBXGroup; - children = ( - 0D42AF835132B8F359967AB88C1CF8EB /* RNDateTimePicker.xcconfig */, - 9E90C52FDDD70CBAC0C2A6596C9C1FE6 /* RNDateTimePicker-dummy.m */, - 2F7B12A799B0F82B2B5B1CC42F4C63CE /* RNDateTimePicker-prefix.pch */, + 6193C4CF848277CEABC0376D78E333C0 /* RNDateTimePicker.xcconfig */, + EC6A489F663612912637752A205910D0 /* RNDateTimePicker-dummy.m */, + E5BD48C91DFBAAC52FC8E21F5B13DFC2 /* RNDateTimePicker-prefix.pch */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = ""; }; - 2EE809F546E40545E644B57F9631FD44 /* Support Files */ = { + 0A96D850EEC40B3FDB333F5684448784 /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - BB93BB2CD1410819A6FEEBB03477DAE8 /* RNRootView.xcconfig */, - E16F32AB7DCAAD31BCA1ABF27AD35118 /* RNRootView-dummy.m */, - 294EC95DF54C0C9D2047FED005B2E894 /* RNRootView-prefix.pch */, + 65752C4D6ABB6358E54726DBF9C5EA18 /* UMModuleRegistryProvider.h */, + 5CEBD833E7C29EE188089973C078FB8A /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + 0B7E04A0AD709043FB4CF253F4C37055 /* platform */ = { + isa = PBXGroup; + children = ( + B0EB5D645C1B35BF91F55B7AFA819B3A /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + 0D24E11254CD1F0341AF6B1D667DEBC5 /* notifications */ = { + isa = PBXGroup; + children = ( + E49C3AE28170447EBF2AEA8764FF1E92 /* RNFirebaseNotifications.h */, + C8E27E3B1EA80180B17EC246D3E403E3 /* RNFirebaseNotifications.m */, + ); + name = notifications; + path = RNFirebase/notifications; + sourceTree = ""; + }; + 0D3ABA4516E2E220B42F8B2E97742DA9 /* Support Files */ = { + isa = PBXGroup; + children = ( + CD4CF130DEB1168BE11420CFE58B6081 /* FBReactNativeSpec.xcconfig */, + 8C0253BAC39F6722E8D400C8BE3B7CE8 /* FBReactNativeSpec-dummy.m */, + 370566C6368842C067A3BE398371EF68 /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - 2EFB82A27B943FDF9285253AB2EFC984 /* React-RCTText */ = { + 0DA50F762446FD615EBE13795BD9EF57 /* Pod */ = { isa = PBXGroup; children = ( - EC6526582EC82F315F21184165A9D33A /* RCTConvert+Text.m */, - C88FF80CF46E6A7B8FF8FD176C8397E0 /* RCTTextAttributes.m */, - 29F54DE9492FAB16F3A6F6CC90BF02ED /* BaseText */, - 5531B78708217E9C42B3BE349FF2A5E1 /* Pod */, - 126007A1DDAA4083EED0A72F0CEBA9BF /* RawText */, - CF36727041A266328F41131487661BB3 /* Support Files */, - 0496C0FC9638AB42A1A39368C9FF6EF9 /* Text */, - 0C2170134528A9C4144CAD947BE70881 /* TextInput */, - B07AC8F4290C2EA3DBDCF7B8566997C1 /* VirtualText */, + E330030D90955BF006D4DDB0F45CC2FD /* LICENSE */, + AE9FB700D8A9410FEBF933F946789F7D /* README.md */, + 9FA4AEAAD22E8F3ECDD85D97BBB282D8 /* RNFastImage.podspec */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = Pod; sourceTree = ""; }; - 301E44C3812F77ADF64231DE25998347 /* EXHaptics */ = { + 0F4E635626BD309E3427F0A7AFCF9061 /* MethodSwizzler */ = { isa = PBXGroup; children = ( - 8330AEDA932A6AD8E031EF0C641E5DE7 /* EXHapticsModule.h */, - A5CD301CBCF12623517092F643A8D4A0 /* EXHapticsModule.m */, - 8FE0BC24B053A376B2E7E600AA192E71 /* Pod */, - 137BD35ACC837DDCBB1F79BAC6F186AA /* Support Files */, + 4F51256112D9CF93FA314D5523249742 /* GULOriginalIMPConvenienceMacros.h */, + A7A9619333FE09CF2DFA4A5A7A719200 /* GULSwizzler.h */, + 019EF2F3E1EBEF4B63B42F53A1FE1122 /* GULSwizzler.m */, + ); + name = MethodSwizzler; + sourceTree = ""; + }; + 0F65A7F91102F315BCE3C7D9C7C82CF8 /* Pod */ = { + isa = PBXGroup; + children = ( + 2904388EE18E71E053600ABF483B1CC9 /* FBLazyVector.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 0FC8B46C4F35A358F742F3A9808D2159 /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 799C0484186D15DF5F4FAFEB7C9FE65A /* EXHapticsModule.h */, + 44BBF9EF1FB11C0E45E60F790B280FA8 /* EXHapticsModule.m */, + BC5E13FAA4DDC3A92061F35A5E8F150B /* Pod */, + C8EDF203E89523D43EEA266D0ADCAF54 /* Support Files */, ); name = EXHaptics; path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; - 336EB278F85CDB580EEEEF7750D9218D /* converters */ = { + 109B400EEEDF4D9F490E55B32452859C /* Support Files */ = { isa = PBXGroup; children = ( - 222E3933ED98940FBF6250CAF9E69A01 /* RCTConvert+UIBackgroundFetchResult.h */, - F07161B28792B01620ED2BCCF6E0BF02 /* RCTConvert+UIBackgroundFetchResult.m */, + 12359A981181A2EA6966C998EF5BB060 /* react-native-video.xcconfig */, + C8DFC07E101B9CB1761F16757FB29959 /* react-native-video-dummy.m */, + D60C0E4F2E506C811F192C3C6B42AA11 /* react-native-video-prefix.pch */, ); - name = converters; - path = RNFirebase/converters; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-video"; sourceTree = ""; }; - 33C49BFA8F277312FB304C11F979AF90 /* Nodes */ = { + 11073F82ED4A02E7288B962B5E18A2D8 /* RCTRequired */ = { isa = PBXGroup; children = ( - 3B7A4EBD7C821FECB435586412D39FCE /* REAAlwaysNode.h */, - EA0BFB9CED579761C61A19D4B239A6D8 /* REAAlwaysNode.m */, - 39524F3CF000F1C3772A2EB4FB6EE525 /* REABezierNode.h */, - 32BB45A38D44180DD5E2F32738B46DD3 /* REABezierNode.m */, - 0BA134F0EA1537EF10FFF6745288AB2B /* REABlockNode.h */, - 8F0764D02B42AE9C956D2AF6C3B6B62E /* REABlockNode.m */, - D3902FEAF386765D6D0AE0F129445AC6 /* REACallFuncNode.h */, - 8BF4251429A1B57F5019122FC3B9C1D3 /* REACallFuncNode.m */, - F24F94A3FBFBBBA8ABCC077D41D91AFB /* REAClockNodes.h */, - 1AC5E3712E1C400257D80CFEA826DFC6 /* REAClockNodes.m */, - 59EB8D3B71BF713EDA4402769F375825 /* REAConcatNode.h */, - 1F865083282FF0E3E2499A9C3C003673 /* REAConcatNode.m */, - 5DD39E122714ACA80347AE0123C2496B /* REACondNode.h */, - 7612E5357AA20DB81B79395E816B4249 /* REACondNode.m */, - DBCA195BCAFC9C66DBE902BE6B9EF2E8 /* READebugNode.h */, - B5BE368005DFD93C79A814B8743A0E9A /* READebugNode.m */, - 2770744B1EE09E021F4D15CF3C5BBF74 /* REAEventNode.h */, - 28681FF7EBC6A6EF86791B05CBAFC5BF /* REAEventNode.m */, - 6CFAE57E367A65A55C2FD1C7F38C1E2D /* REAFunctionNode.h */, - 2AA3DB01D4A037FAAA90E9701AD29232 /* REAFunctionNode.m */, - 2E014ACDCE6AE8C590470F9FD99628A5 /* REAJSCallNode.h */, - E147E303AD172D0F1385F1896F47B2D0 /* REAJSCallNode.m */, - 0B7460AE9B4CF1269C34BDB7CEA3867B /* REANode.h */, - 414C5BD92F1BAAE19A219BC6610A5C77 /* REANode.m */, - 36999B1C693A37D0A3DF3636859D8874 /* REAOperatorNode.h */, - F8F307FF3CDA1C47B9333A1B34AEAEBC /* REAOperatorNode.m */, - D2126D3931AD02B5F31B449780DB9354 /* REAParamNode.h */, - 3C0D37E1B7CD8A752787DF9DE90D01E9 /* REAParamNode.m */, - D5EB99574208D9F9DC8FB859A56BEFED /* REAPropsNode.h */, - 07C973C976DABFE0D0D35D45FD5F1D8A /* REAPropsNode.m */, - E2AA0ED6787A5B84B6EE8F547631B88A /* REASetNode.h */, - DD62AC3EB3E406698321F90D62839E7C /* REASetNode.m */, - F3AEB1F91EA369268AF481BB6B67FD95 /* REAStyleNode.h */, - 57AF6757550CBA0DA8B885582F80FCBC /* REAStyleNode.m */, - 590A991CA39320D61338A86CD16B61E4 /* REATransformNode.h */, - 8C478C7C78C67B422A383B902C940722 /* REATransformNode.m */, - BB201F23A57E266A0E92BEF7B46EB16E /* REAValueNode.h */, - 43E94BA0660B13CFD23C2EF1EEF9BB88 /* REAValueNode.m */, + 627934D84A321E70D21A4A2309919B17 /* RCTRequired.h */, + 19805F957BEAAD5C6068B07CB3A15AC8 /* Pod */, + 7457D7CEC2B373EA5B4E09655968D34D /* Support Files */, ); - name = Nodes; - path = ios/Nodes; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; + sourceTree = ""; + }; + 115FCEA68CD1DB0E2FD60571E89BA51A /* firestore */ = { + isa = PBXGroup; + children = ( + DD58587783451C7435F9C0C28BFD89FD /* RNFirebaseFirestore.h */, + 52AE2804AFFB99408789C12004AD808C /* RNFirebaseFirestore.m */, + BEBF8A5C3C70FF514639936DDF8BFEFF /* RNFirebaseFirestoreCollectionReference.h */, + 00D70F7C8A81CBBE063917E7D22CA9E9 /* RNFirebaseFirestoreCollectionReference.m */, + 49D61BB85BAC2312EC6A84C93F5A2CB8 /* RNFirebaseFirestoreDocumentReference.h */, + 8F89B896216190DD0A5FF95236D3952B /* RNFirebaseFirestoreDocumentReference.m */, + ); + name = firestore; + path = RNFirebase/firestore; + sourceTree = ""; + }; + 12C34AE574C9DB2AE9B53E7D2B2AAE77 /* UMViewManagerAdapter */ = { + isa = PBXGroup; + children = ( + 1EA3C918BA42D4D94F6C111302EA8A21 /* UMViewManagerAdapter.h */, + 611E604DDA03EB97411EA5C4F7428A67 /* UMViewManagerAdapter.m */, + ); + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; + sourceTree = ""; + }; + 12F02807DA86ADBA33A1C4BBE5B74CDD /* Support Files */ = { + isa = PBXGroup; + children = ( + 95D858BFDF2F99A6F3D810DEAD6A9300 /* Firebase.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Firebase"; + sourceTree = ""; + }; + 132E7188EFE6AA2EF66D9BFB818FF427 /* Support Files */ = { + isa = PBXGroup; + children = ( + C8ADDD3DE5B9D58ABDF6D510A502F85F /* libwebp.xcconfig */, + 567FF870D1397FAA1691FB0CD6CB3562 /* libwebp-dummy.m */, + BE65063F801DD1E37BBFCF89EB4B25A3 /* libwebp-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/libwebp"; + sourceTree = ""; + }; + 1391458B1AB89B757A3ACB2EC78CABDD /* Reporting */ = { + isa = PBXGroup; + children = ( + 29C71E47CB5B19EF7A7B68AB270021C4 /* Filters */, + ); + name = Reporting; + path = Reporting; + sourceTree = ""; + }; + 1506569288EAA9784AECA68608777DEF /* Support Files */ = { + isa = PBXGroup; + children = ( + 6E6B0505508C8CF75EF9825686A24B8C /* EXConstants.xcconfig */, + DEEC3D9F2E40D15DA7BD5D4C0CDA7487 /* EXConstants-dummy.m */, + 54EEA75BABB0472447C17F94D9E6F567 /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; + 1541D1B3DB1EA92F27A54682420584E1 /* React-Core */ = { + isa = PBXGroup; + children = ( + 6B04B07500CF431552E02B82CAE60119 /* CoreModulesHeaders */, + 44C60FD861FC0FD4DD5EC9A499579DE0 /* Default */, + C479A163E6F60AD0952EFACA20AFD029 /* DevSupport */, + 23D7B60D9F5879B5E00BE1A00D4B4DB5 /* Pod */, + 98B7054A4DB2D5035F5CDF03BAE21326 /* RCTActionSheetHeaders */, + C3F9A737E2DCEF0336D9F731C647C48C /* RCTAnimationHeaders */, + 71710E1742D0D95D105BF4AB3B16747F /* RCTBlobHeaders */, + 5A22B1D59EDD8539B5273B612AF432DC /* RCTImageHeaders */, + 582368CADAB951BC63835D9D7C69000C /* RCTLinkingHeaders */, + B9C5DE5E01C8A1A614DB00AF1C558EF8 /* RCTNetworkHeaders */, + 8E2C5AA9D033DD35588088E468FA2CD8 /* RCTSettingsHeaders */, + A01A72142E2AB987EA773A1F8A404783 /* RCTTextHeaders */, + 6FD1FFB329CBE6C4D0CFD15A96B4A5DC /* RCTVibrationHeaders */, + 82BCA702BE7A3CB8D865989E6100DD8F /* RCTWebSocket */, + D3EA17DE2C5FB41C16F2158CC4CECD3C /* Support Files */, + ); + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 1571351D44DDA44B0522DAC3CC174204 /* GoogleUtilities */ = { + isa = PBXGroup; + children = ( + 730DB5449723E314904FA26F91779A89 /* AppDelegateSwizzler */, + E53C9CC3497634A2C855D1ADC4914341 /* Environment */, + 9550F5053A5585C399A2BED6D5F485D9 /* Logger */, + 0F4E635626BD309E3427F0A7AFCF9061 /* MethodSwizzler */, + 176A13F1785BE8ED053845E30FE0CF72 /* Network */, + 52F43ECD26A7C91B93A004BAF6FAA80B /* NSData+zlib */, + 08FA3881FD30F9B416808AAD7D1A8671 /* Reachability */, + 5900543A95485F383AA39FFDC83A331D /* Support Files */, + 3FFCE7BE739742CA2D2F988E9E825982 /* UserDefaults */, + ); + name = GoogleUtilities; + path = GoogleUtilities; + sourceTree = ""; + }; + 157918AAB22696ED0C9AA24EF4ACE758 /* Interfaces */ = { + isa = PBXGroup; + children = ( + C2611120AF9BC964206E3F47E1F91CBC /* EXAppLoaderInterface.h */, + 5C01F4B19B6A1A3774F2B63B6832C793 /* EXAppRecordInterface.h */, + ); + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; + sourceTree = ""; + }; + 1600E2C52A67D7AE904F4470B2042567 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + B476C336F3457258FE5885E0F7FE3132 /* ReactNativeShareExtension.h */, + CE9D4FF02B9F1E69EF139CEED6C5798E /* ReactNativeShareExtension.m */, + 213378F140B2F2603D3B47AC5A294FAC /* Pod */, + F3BE0150FBD78FFE7569D4C7EC9595E0 /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; + 16F1B231E34648744E10298084E6B312 /* UMModuleRegistry */ = { + isa = PBXGroup; + children = ( + CB9367A1D1DDF5E7789E9E0C94700A5F /* UMModuleRegistry.h */, + 19B2B0E4488645CBAA1205FA83BD9FD9 /* UMModuleRegistry.m */, + 2919DFFA117989C2D9E741D42C74A2FB /* UMModuleRegistryDelegate.h */, + ); + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; + sourceTree = ""; + }; + 176A13F1785BE8ED053845E30FE0CF72 /* Network */ = { + isa = PBXGroup; + children = ( + 095C3A99BAD601DEF79FEC7E58053AA8 /* GULMutableDictionary.h */, + 69A4DE0309583DD90D1046C5499B1BF4 /* GULMutableDictionary.m */, + FF93806C208335D001155DDC1F559DB7 /* GULNetwork.h */, + 31D6386A910752DB6206410DE1299650 /* GULNetwork.m */, + 7F5540001EC3C541DE53A5E0C4D860B9 /* GULNetworkConstants.h */, + 2B591EBDB62B59175625167A78E88D03 /* GULNetworkConstants.m */, + EA8733A840E5BF5CB7160E71BC70F136 /* GULNetworkLoggerProtocol.h */, + D6DD593F04D58A5F3553692C25B27A02 /* GULNetworkMessageCode.h */, + A90EEA3E24B6338A093526F3631E6B57 /* GULNetworkURLSession.h */, + 00EF713613E649AF69AC589CAB985955 /* GULNetworkURLSession.m */, + ); + name = Network; + sourceTree = ""; + }; + 184F5111741E966BD8AEBF3DABD38B88 /* Pod */ = { + isa = PBXGroup; + children = ( + F21A3814E09F687582D96E2C26D18C8E /* UMCore.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 192CBC4E5CF53D44E0A84816757D6725 /* Core */ = { + isa = PBXGroup; + children = ( + ); + name = Core; + sourceTree = ""; + }; + 19805F957BEAAD5C6068B07CB3A15AC8 /* Pod */ = { + isa = PBXGroup; + children = ( + 4B3C55887BB13263D09E361B415DB333 /* RCTRequired.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1A56ACC7B96EDE314F8596ECFF7A8EB2 /* CxxModule */ = { + isa = PBXGroup; + children = ( + B9A49C65DA0B4CDCEB3AF8F86EA15A81 /* DispatchMessageQueueThread.h */, + CA9741E151BA40B8E4E4D9F2C2D48A97 /* RCTCxxMethod.h */, + 044BD12F427599BBE8E662876B3B0E62 /* RCTCxxMethod.mm */, + 98E483D55FB2AEBC8ED11136875AEB2F /* RCTCxxModule.h */, + F3D4D637150DC931587C9C81C3B6E693 /* RCTCxxModule.mm */, + F02EAAEEF7B345DE2117CAAE39DB7E6D /* RCTCxxUtils.h */, + 20C12E6286482A074CE08F5EFAD1A07C /* RCTCxxUtils.mm */, + 43EE7C13715C24845916FB3DB7EF7B1A /* RCTNativeModule.h */, + 5E05FEA913695F2BCA3940A68272DAE9 /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; + sourceTree = ""; + }; + 1A9A8F7748BD4A4ECA30D287F5D5F67F /* JitsiMeetSDK */ = { + isa = PBXGroup; + children = ( + F74417EBA7079E353532E43164085A3C /* Frameworks */, + 5BD2FD9E5F338A311C76828869F32E72 /* Support Files */, + ); + name = JitsiMeetSDK; + path = JitsiMeetSDK; + sourceTree = ""; + }; + 1B178D3F3A5A6980FD185EC8644991E4 /* KSCrash */ = { + isa = PBXGroup; + children = ( + 7FF3371C992E87AF4EBA2BD2DA749440 /* Source */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 1C63510E240A9124C723788CB2DA0813 /* Pod */ = { + isa = PBXGroup; + children = ( + B175AA7F1D156BA40EE5836DCAB2223A /* RNFirebase.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1C993B9F03DEA570E666CA88E462252A /* Frameworks */ = { + isa = PBXGroup; + children = ( + 4285516BB63AD69A2F0BEDB2C5506374 /* GoogleAppMeasurement.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 1CEBAA3EDE00919363871F6F6611D2F8 /* Drivers */ = { + isa = PBXGroup; + children = ( + 1471E2A418417AC26B11432CDCD16371 /* RCTDecayAnimation.m */, + 6A50A2C3C989CC92D5AF7F8E1A132F72 /* RCTEventAnimation.m */, + E9E4DE789DAC5D2AB6D882B5808F6DE9 /* RCTFrameAnimation.m */, + 466981B0F2B17C3B1AA31B8F0306798B /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + 1D8CEDD2357C540D7076346BEF992C9F /* Pod */ = { + isa = PBXGroup; + children = ( + 65CE336659A1B0D9B45442103AAED38E /* UMCameraInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1E45DC5A41082BCCB797403784E8D65A /* Support Files */ = { + isa = PBXGroup; + children = ( + A585D00A6F08EC44BADDCC044335DDDD /* UMImageLoaderInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + sourceTree = ""; + }; + 1EB257402ECDD0D24E24E70F174B2DBA /* Support Files */ = { + isa = PBXGroup; + children = ( + DA27D82F20D6A185B593444261C58617 /* React-RCTLinking.xcconfig */, + B3449DCEB6A78DADC97D79F2ADF6AF0C /* React-RCTLinking-dummy.m */, + A6BC29B4BC235B3DD0A69D3481D08993 /* React-RCTLinking-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + sourceTree = ""; + }; + 1FB3C0DD5F27DE23E1C6E367ED4A5AAB /* Support Files */ = { + isa = PBXGroup; + children = ( + 7C9DE44693E482B5752DD2CE36304E71 /* react-native-appearance.xcconfig */, + 17F6851DC28623E575D7C76BF479E719 /* react-native-appearance-dummy.m */, + B5562B8CCC14A247872C2B827C4157E3 /* react-native-appearance-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; + sourceTree = ""; + }; + 206654DFB03CCFDEF326D080EE2D09AD /* admob */ = { + isa = PBXGroup; + children = ( + 5D3129CD842094158C6171DB963DE8C2 /* BannerComponent.h */, + 41117C91F10139C28634BBC4671C93AB /* BannerComponent.m */, + ECA51AA814F79E0F98AD9D0B888A5DC0 /* NativeExpressComponent.h */, + DF6768535B8CB61B9497D7BBBA40AA61 /* NativeExpressComponent.m */, + 90030DCE8DC7A2BACCABC66A85C65CE0 /* RNFirebaseAdMob.h */, + 5DC9D1C270941A5E3230DED269BC7D5C /* RNFirebaseAdMob.m */, + 49A5C8ECB83FF0304DCCF72970E2ED09 /* RNFirebaseAdMobBannerManager.h */, + AC299F3EA25843A6BDBB01C56412A6DE /* RNFirebaseAdMobBannerManager.m */, + 7289EBA43CE61C39F11A9834DC343282 /* RNFirebaseAdMobInterstitial.h */, + D9889D226D2264511A5C8C617B3E3CC3 /* RNFirebaseAdMobInterstitial.m */, + B4D69FC46A221AD8AE24A593B9B8D3CB /* RNFirebaseAdMobNativeExpressManager.h */, + DD7EA3F448F269ECB4D8A2DA730F685A /* RNFirebaseAdMobNativeExpressManager.m */, + E0B1E61C8897F35C71329E692391DC89 /* RNFirebaseAdMobRewardedVideo.h */, + 276F0467ADC55652D42C9B8EDF691B7F /* RNFirebaseAdMobRewardedVideo.m */, + ); + name = admob; + path = RNFirebase/admob; + sourceTree = ""; + }; + 208378A2DDEA24BC8304F54E6C2C976F /* React-RCTVibration */ = { + isa = PBXGroup; + children = ( + 87C57C3DE95B81808FD91387F9D57573 /* RCTVibration.m */, + 284E25AE64828E7B18D34107E7DB41E6 /* Pod */, + 33BB50212B59ABE7BB0636C583CE24AF /* Support Files */, + ); + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; + sourceTree = ""; + }; + 2098E5B060FB3A3EECC09E9682750B62 /* TextInput */ = { + isa = PBXGroup; + children = ( + 020C902A4C9051EDD49E7F5C0A448148 /* RCTBackedTextInputDelegateAdapter.m */, + 6497159F3C2792A83DA23AB246A07150 /* RCTBaseTextInputShadowView.m */, + C96E41E77A36921F24F68BFB2F0C3D54 /* RCTBaseTextInputView.m */, + BDB2777A153A440E591DDB62FFD6226B /* RCTBaseTextInputViewManager.m */, + 41564D8B06983A5341533D5BA4D59D16 /* RCTInputAccessoryShadowView.m */, + 02D0DC8F9713A3D0EEAF9E51D2A7C23B /* RCTInputAccessoryView.m */, + CEA71924A53FA83777C47FB39771A3AE /* RCTInputAccessoryViewContent.m */, + FD1D6D3BB71EB2CB31EFDC5BA4267748 /* RCTInputAccessoryViewManager.m */, + F0768952D4F18BC4C51E4263BEFCE3AD /* RCTTextSelection.m */, + 7B3778A382163C9CD37AF272867513CD /* Multiline */, + B52F431B8F7A0E565F6CFEDB304AB086 /* Singleline */, + ); + name = TextInput; + path = TextInput; + sourceTree = ""; + }; + 213378F140B2F2603D3B47AC5A294FAC /* Pod */ = { + isa = PBXGroup; + children = ( + 2DDAFCDFD09E406972EDA91F0BFA2077 /* LICENSE */, + DEDF8708450018EC34EC9654FF175948 /* README.md */, + 146B9B9E6F19BF6A4C177FA9EE52FA03 /* rn-extensions-share.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 215F22565843CB30C76C33F6CA2789FD /* FirebaseCoreDiagnosticsInterop */ = { + isa = PBXGroup; + children = ( + 4A101D6AA53CF88031BB16C9B3E7F9D6 /* FIRCoreDiagnosticsData.h */, + 349D2D31BB70D54765B7F471065C958E /* FIRCoreDiagnosticsInterop.h */, + 64262144F4E5F4033E4F0A0B9609FED0 /* Support Files */, + ); + name = FirebaseCoreDiagnosticsInterop; + path = FirebaseCoreDiagnosticsInterop; + sourceTree = ""; + }; + 21F8C167E4147074DC7394434512659F /* React-RCTLinking */ = { + isa = PBXGroup; + children = ( + 5D69B7ABE2DBC0A78DC962D27E4EDF17 /* RCTLinkingManager.m */, + 88280434FC80FEC8CCB1B46B4ED96389 /* Pod */, + 1EB257402ECDD0D24E24E70F174B2DBA /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + 221C064D25676DB553177E6C33D4DA6E /* ReactCommon */ = { + isa = PBXGroup; + children = ( + 41C0ECAFC84D75F2691A1D8E63D34FA3 /* jscallinvoker */, + A4231A5E0AB99A7ABAD58D6B6B1F617D /* Support Files */, + B0DD81621B0BD2C649696BBF75236FEE /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = ""; + }; + 22878C41547D05A39E1BF2ACF019D20D /* RNFirebase */ = { + isa = PBXGroup; + children = ( + CA770D6C8EC9D18D035B8DD3A4669190 /* RNFirebase.h */, + 39FB342F2915CE4D0C45B748FB848277 /* RNFirebase.m */, + 6F76D69EB4D0BCF989F0EBEC6EC9B52D /* RNFirebaseEvents.h */, + D535CA1085AD8AF6A3992692BB8C5C9D /* RNFirebaseUtil.h */, + 806C5343C0317E08A089C45067953B61 /* RNFirebaseUtil.m */, + 206654DFB03CCFDEF326D080EE2D09AD /* admob */, + E89983AD81E9A664B03FBC332E269D08 /* analytics */, + D1AC7109775817988C64F33B368F286A /* auth */, + E461113388F11EC3D586194A92361BB0 /* config */, + 96EB065CC28163B4EF99B1E9E5DB8DD5 /* converters */, + EC63520602EA1EAE02153A86F1ECEE32 /* database */, + B12B31D10C3CE740D44048624586167E /* fabric */, + 115FCEA68CD1DB0E2FD60571E89BA51A /* firestore */, + D6E7E819FBE25F0577A61D9E5FDC6EE6 /* functions */, + 7A95556F6BC0F4A8945CC09894E13D1D /* instanceid */, + D8F1C0F480F9757959AD5FA49FB837AE /* links */, + 4A81F1E2661798AFE8814C357CD281EF /* messaging */, + 0D24E11254CD1F0341AF6B1D667DEBC5 /* notifications */, + 6315F889EC93AA1D3D55C665DF9A784C /* perf */, + 1C63510E240A9124C723788CB2DA0813 /* Pod */, + 50CEB0C98FD167F49F670574D4F80155 /* storage */, + CC18EE7C30BAED13297CCFDA783EFE0C /* Support Files */, + ); + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; + sourceTree = ""; + }; + 22CA24DED669E401F787CE35C93C7172 /* Tools */ = { + isa = PBXGroup; + children = ( + 23C4A6060F80E34DD9B50B2DFE0C9BF2 /* BSG_KSArchSpecific.h */, + B3FB53A8467ECF9DF9A7D394D04E7018 /* BSG_KSBacktrace.c */, + 3B8AEB36141E644A76869011D140597E /* BSG_KSBacktrace.h */, + FCDE91DD0E99392CD557F45E12BF7BE6 /* BSG_KSBacktrace_Private.h */, + 54A7499C46BD5BB476EF2A1E4FF6BA25 /* BSG_KSCrashCallCompletion.h */, + 4C77A66171B0F52A43427229A0D2F80F /* BSG_KSCrashCallCompletion.m */, + 80F3F35A797B25DFDE641031727EC3C8 /* BSG_KSDynamicLinker.c */, + 41B4146A68990B2CAB99DEB452A254F0 /* BSG_KSDynamicLinker.h */, + D6B0FD592EEFFD8759575ADFE9D2E87F /* BSG_KSFileUtils.c */, + C2D159A8C3C058FE1FD797FBDD068527 /* BSG_KSFileUtils.h */, + 4D7ADE2250A60420B8F1966F40B91BCF /* BSG_KSJSONCodec.c */, + 57A797186849ECFB74F87D1A6D679040 /* BSG_KSJSONCodec.h */, + 88913338ACA6DC036C7538B1CD1C9DEE /* BSG_KSJSONCodecObjC.h */, + B3E7203A22D67980F79BE1F48F851142 /* BSG_KSJSONCodecObjC.m */, + 48AC1E9CAAD52CBAE99B50BAD754F84A /* BSG_KSLogger.h */, + 89A39DE88338276E8C9480D3045D8099 /* BSG_KSLogger.m */, + A9F51DCA8E22B93E3861AA519FF984C0 /* BSG_KSMach.c */, + D4D6CCDC79B5BCFA6A83676FEB2DF2AC /* BSG_KSMach.h */, + ED8F038F0604465D39B4B862FD4EA87E /* BSG_KSMach_Arm.c */, + FFFD6560763ABFA470BF0EE6DF0E6FF7 /* BSG_KSMach_Arm64.c */, + A8C0BAEBF82B7932F04EEDB15268D083 /* BSG_KSMach_x86_32.c */, + 61BBC7554C8DDB2D24939E02DD216B6B /* BSG_KSMach_x86_64.c */, + B6B4EE72259D70A0AE81AE8ABEFBEC05 /* BSG_KSMachApple.h */, + 6B879CAC09D6F374AC38D18476522FB1 /* BSG_KSObjC.c */, + 16997355997FF89EB81DB7F1CABB6005 /* BSG_KSObjC.h */, + 833BAE32AB1B8F713242C9FE5F3E6B40 /* BSG_KSObjCApple.h */, + 7FFCBCBFD75ACC4049F27845EE8AA91C /* BSG_KSSignalInfo.c */, + 9A35296FF3366B73A70A2FD24B7ACCE6 /* BSG_KSSignalInfo.h */, + 98EFF7FAAEC379D26BBD541DE772ABCC /* BSG_KSSingleton.h */, + 15568C3777E6B052056920480BBCA7F5 /* BSG_KSString.c */, + 02E3C8E65AD549B618E9A95B19DEE4E4 /* BSG_KSString.h */, + 6D9866C2B6D5302A3C3DD327DF644A82 /* BSG_KSSysCtl.c */, + CD508363E2FBBA6CDE5F78761320AA6B /* BSG_KSSysCtl.h */, + DC7FE029A87E01A42AA3C04688EF9568 /* BSG_RFC3339DateTool.h */, + CAFD426247162E8929B3CEA147364142 /* BSG_RFC3339DateTool.m */, + 93BB4FD17EB6DB2AD4173FC15D1041F0 /* NSError+BSG_SimpleConstructor.h */, + 64EC8F31F816629DC84D37C40236EB06 /* NSError+BSG_SimpleConstructor.m */, + ); + name = Tools; + path = Tools; + sourceTree = ""; + }; + 23A282661138822D370AF962624009F6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 22B0E2535684B7CC51D81DE7C573FDC8 /* EXWebBrowser.xcconfig */, + 2E1D04848A28746CF8F086916F0FF188 /* EXWebBrowser-dummy.m */, + AAD250051D4F61814E70006F8C68D697 /* EXWebBrowser-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + 23D7B60D9F5879B5E00BE1A00D4B4DB5 /* Pod */ = { + isa = PBXGroup; + children = ( + 935E1DB61F0B607EB80D8CA7B779FF15 /* React-Core.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 253171AC11D15B0E462A9ED2DC8DA788 /* UMTaskManagerInterface */ = { + isa = PBXGroup; + children = ( + 8662B627C542F23855B41BC86AF58DAD /* UMTaskConsumerInterface.h */, + F963FC8146B523E22A6EEC55E46DD6EF /* UMTaskInterface.h */, + 64AF8E771E815B62C58FBE8427581AAF /* UMTaskLaunchReason.h */, + 3DBE8B3D33D9F8CA62CB8F84B9CFD370 /* UMTaskManagerInterface.h */, + 0C4C751BF74C5C8F4EB80CB3171620D2 /* UMTaskServiceInterface.h */, + 02DA52C3DC1C970CDC3D1277CEEE8197 /* Pod */, + FFB27F4914493A168D828431D88C8F05 /* Support Files */, + ); + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; + sourceTree = ""; + }; + 25363F2F7014172A6F5E0D276D7112A0 /* react-native-document-picker */ = { + isa = PBXGroup; + children = ( + A81D42162A1B05AB9ABCFBB62054D5BD /* RNDocumentPicker.h */, + FD53D519FE1FA635BC4159992519AA07 /* RNDocumentPicker.m */, + 483A5CAA06186A347DAE4856801899E0 /* Pod */, + CE01AE0AEB95B7268A75EB7D78F30BA6 /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; + 27818A7732CDA5E2A205B80EAB989760 /* Pod */ = { + isa = PBXGroup; + children = ( + 0B4A47BDF6DAA71B28850F2F64C7F6C1 /* React-RCTNetwork.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 27C0E82014D3802F837EEE8EA1E79481 /* Support Files */ = { + isa = PBXGroup; + children = ( + C7CE6D83A542AFECC1A89C528D5F880C /* UMFontInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + sourceTree = ""; + }; + 27D6FFE7CBC35F67B1F74FE1A546927A /* UMImageLoaderInterface */ = { + isa = PBXGroup; + children = ( + 161D18325784307CD792102DD6FEAB55 /* UMImageLoaderInterface.h */, + 95A402F8B3EBF0AD35A9DB225B732ADB /* Pod */, + 1E45DC5A41082BCCB797403784E8D65A /* Support Files */, + ); + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; + sourceTree = ""; + }; + 27EBE515ED08123F319CA09DFDA0D4EE /* Base */ = { + isa = PBXGroup; + children = ( + A36C6638183A9E748FF37DB421B76D3C /* RCTAssert.h */, + 40178512F5E8FD6AA27D2F87DA2D04D8 /* RCTAssert.m */, + E44831143F1E82C6D1D56459488C91A3 /* RCTBridge.h */, + A93CF72DDD91639E5E0D4F9AE2FFA261 /* RCTBridge.m */, + EE4388EECDE2562AAFC163F54674F482 /* RCTBridge+Private.h */, + 9CF04D957CB2106269632EC5407EAD35 /* RCTBridgeDelegate.h */, + A932D6DD5352974EA8656D48EED5823E /* RCTBridgeMethod.h */, + 11AAB6FEF0C884E8DEC640CCCB8069F6 /* RCTBridgeModule.h */, + B29F537D673D77BD4D336B4E863EF7E4 /* RCTBundleURLProvider.h */, + 8010543593DB676E328C6E1277BBA6FC /* RCTBundleURLProvider.m */, + 6AAEDD8926E16F91B42B1BEA3D26DB35 /* RCTComponentEvent.h */, + DD1F61F7805C3FC9FF12CE56031B83D1 /* RCTComponentEvent.m */, + 7EB96561AD27EC387BE84DE11A59AB7B /* RCTConvert.h */, + 7F7D9D99B4940A7F42D3E2832FC1B2E4 /* RCTConvert.m */, + 10BD7B3943400B212E1BF3647FE4BE60 /* RCTCxxConvert.h */, + 1381694234412DEFC55FFC85C8859B3C /* RCTCxxConvert.m */, + A78C923BC5709560F8846C114C67703C /* RCTDefines.h */, + ADB237C3B5518083CB337FAE3C6A6EDA /* RCTDisplayLink.h */, + 9093F4A1D9250501ABB301205E1A0256 /* RCTDisplayLink.m */, + 94AC1D09E69C8916A504293625DCA441 /* RCTErrorCustomizer.h */, + F78421D7F509EA03C278FDFE4E1C45EC /* RCTErrorInfo.h */, + 4C586BC0DF66C36E1AABB8413CA6512F /* RCTErrorInfo.m */, + ADAABE70DAA2A74A695D0D9165F0D036 /* RCTEventDispatcher.h */, + A8256F9EC248B879F85E9850566E0A1A /* RCTEventDispatcher.m */, + 22D777A08F9ECF58B5FBC7A5B8F6F98A /* RCTFrameUpdate.h */, + 90CD3FFBDCF208693762B2A5AC6EEB83 /* RCTFrameUpdate.m */, + 55CA4E692BC7BD9A9F71C4BE789286C8 /* RCTImageSource.h */, + C4195C5EB9ADB2FC214F4309E79ED4B4 /* RCTImageSource.m */, + B2D60EA0918D362F64BF181AC1602969 /* RCTInvalidating.h */, + 6DACBBFD5AE208D906D6F872DDAA9F25 /* RCTJavaScriptExecutor.h */, + E3E26F52227A31F8635648BD0E36FC4A /* RCTJavaScriptLoader.h */, + D6696F502F0ADEED65B1265EE1098AF6 /* RCTJavaScriptLoader.mm */, + 2CFEBAF532B2306AB0D9D98A93F0BDD4 /* RCTJSStackFrame.h */, + 8271C9F25D065390D27CB1C226B200EA /* RCTJSStackFrame.m */, + 7ECB3CB65BE3B38AECE4AD0A9A6AA3CB /* RCTKeyCommands.h */, + A60FB87EA02412732DBF2EC5E7A6A199 /* RCTKeyCommands.m */, + FFFBF28E523A1352725A68B4DC545592 /* RCTLog.h */, + DD6F5C8059A379F3D8E9999821DBE3E8 /* RCTLog.mm */, + DFD3782750AD39CED57012A2129A55B3 /* RCTManagedPointer.h */, + 18909AF21641E5BC9DDFF07FDD182C3E /* RCTManagedPointer.mm */, + E0B15308932FDE37573BAB54F144DC5B /* RCTModuleData.h */, + 810388610405CE414D68E0FF0CFF62B4 /* RCTModuleData.mm */, + 00A24BAEB84CCA43C84F63BB520EFF73 /* RCTModuleMethod.h */, + 000CF4B07323DE0DF96F8E98827BD0E1 /* RCTModuleMethod.mm */, + 8FE8DCB4FE3E2C79C8DE1682C04B4EF4 /* RCTMultipartDataTask.h */, + A6ADC0ED76E75FA14818D598B0C9A7EF /* RCTMultipartDataTask.m */, + A6A1637BE29A75F7F13B5F7D4D060A05 /* RCTMultipartStreamReader.h */, + D66670C419919DDB229F45998FB12523 /* RCTMultipartStreamReader.m */, + EB2DDD2A4611C4ED7A7F07F2C9CFC9B2 /* RCTNullability.h */, + 1A1A68332B4403E04672865D3E4A4B10 /* RCTParserUtils.h */, + AC902E69B0101545635BA89305C80F27 /* RCTParserUtils.m */, + 044407784524ADF30EE59D2E8A6EB492 /* RCTPerformanceLogger.h */, + 5ED72BDDA2E61954E4B0F244A58766C2 /* RCTPerformanceLogger.m */, + BC29B87A284654FBD1548DA33E5BB01F /* RCTReloadCommand.h */, + FCC4B8EC049E11D4661A38DF88D67836 /* RCTReloadCommand.m */, + 251B90FB835BD1A6E355999584A8E017 /* RCTRootContentView.h */, + 8B70D784967BA4951852CB5F5B8062BA /* RCTRootContentView.m */, + 20A1BBC5DD1139BE603E1CF95CC888B2 /* RCTRootView.h */, + A6298B7EC5E6F59CA4115EE8F575AB45 /* RCTRootView.m */, + DDA89DBD479FF053FE7C1BCC9E3C264D /* RCTRootViewDelegate.h */, + 1784A6E36638A744A6E22266E32D2132 /* RCTRootViewInternal.h */, + 41E382CEB69582D5A3E1D1145FB53E2E /* RCTTouchEvent.h */, + 21E9E7E8DAF0F91B6323AF172D8BB02D /* RCTTouchEvent.m */, + BED625EAE4AEAD64837D244E161559D4 /* RCTTouchHandler.h */, + 942B6B2732D9DDD27EEF21B934658816 /* RCTTouchHandler.m */, + 2C412DF6D6AA359967FCC8E3B29F01C2 /* RCTURLRequestDelegate.h */, + 3062E4633098D6C28215AB25C0E5F2AB /* RCTURLRequestHandler.h */, + 6A2ADAD932C0F08CC127BA9AE2952BCE /* RCTUtils.h */, + A5ECDA009BD274EE01826A8215EB1488 /* RCTUtils.m */, + D80CADE0F1DF09047AB3F7B0DCE2CC49 /* RCTVersion.h */, + 58974D4D725EC1A4B787E7889D894B95 /* RCTVersion.m */, + FA1AE7B678524F7E743A927A062A7551 /* RCTWeakProxy.h */, + 294BA87825E43C860BA3FF3E8C1F7CF9 /* RCTWeakProxy.m */, + 9231AB94B806622B9641E7FD02609619 /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + 284E25AE64828E7B18D34107E7DB41E6 /* Pod */ = { + isa = PBXGroup; + children = ( + FFE3B7B76C9A643E5690E17D0BF9891B /* React-RCTVibration.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 29C71E47CB5B19EF7A7B68AB270021C4 /* Filters */ = { + isa = PBXGroup; + children = ( + 9D56772272E17B920E932842A3E95ADD /* BSG_KSCrashReportFilter.h */, + E1C94EB297A92A55040CCC663A864437 /* BSG_KSCrashReportFilterCompletion.h */, + ); + name = Filters; + path = Filters; + sourceTree = ""; + }; + 2B189CC54D595DCA532ABC3E0483C9D7 /* RNScreens */ = { + isa = PBXGroup; + children = ( + AF3900FF87C77F47E0065CB6103276BD /* RNSScreen.h */, + B4CF19A59BF2AB048C20E2B532EBB24E /* RNSScreen.m */, + 240CE76894A4EBC442349F15E8162B57 /* RNSScreenContainer.h */, + 728F432ABDFF53A7BCABA3B3B2FD610E /* RNSScreenContainer.m */, + 85FA83CA39CA4E9E0F2AFE4C9760160D /* RNSScreenStack.h */, + A13D5BEDDB728C3BB3CB41EEDD61707A /* RNSScreenStack.m */, + 09030AD89CF96463AFDAC3E83AAB7284 /* RNSScreenStackHeaderConfig.h */, + CD1BEC727F858EF9794F6B8E4B755D98 /* RNSScreenStackHeaderConfig.m */, + 4C5CC651C4548F85CCFCD9046E7336A1 /* Pod */, + 2D57657B36A401CFD816AA67037DDCCE /* Support Files */, + ); + name = RNScreens; + path = "../../node_modules/react-native-screens"; + sourceTree = ""; + }; + 2B4C6F244F8056456104B506B2A65C9E /* KSCrash */ = { + isa = PBXGroup; + children = ( + E557EF3162940AE9D8C3218ED589B945 /* Recording */, + 1391458B1AB89B757A3ACB2EC78CABDD /* Reporting */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 2D2E0B859C93D0A1EE0A78370E4878F6 /* UIUtils */ = { + isa = PBXGroup; + children = ( + FF96AF347E208FDDC78D621A1845E023 /* RCTUIUtils.h */, + C60D767A0E2981AC2AEC4A34BD00C76A /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + 2D57657B36A401CFD816AA67037DDCCE /* Support Files */ = { + isa = PBXGroup; + children = ( + 4F4EF7F276E9C28AFE4C8B18E83D15BB /* RNScreens.xcconfig */, + BD322B2F806FBE2E5467AC665D66B514 /* RNScreens-dummy.m */, + 5E5BDA84D301CF329B44E3FCE9CC0FEF /* RNScreens-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; + 2E090AAAEF8844426F667D5CAA3EBDDC /* Pod */ = { + isa = PBXGroup; + children = ( + 08FF8059D511801E5CF49090250E4859 /* UMFaceDetectorInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3185EBF90C3701A86F03C28066EC1880 /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 13AA84F9F00D832C6E61E3ACDF57FD58 /* RCTConvert+RNNotifications.h */, + 0E1D92A2A25290A8009B682BC4C4134C /* RCTConvert+RNNotifications.m */, + DFBFA7AA68FC31844095C0BD269181C0 /* RNBridgeModule.h */, + 46D3022953A6C8DDD7E8E48D01BF7CD2 /* RNBridgeModule.m */, + F981A44843741E1934B59DC554F4110C /* RNCommandsHandler.h */, + B7EEF52E683BE96395DCCFA4E115E9CA /* RNCommandsHandler.m */, + 32BDC2A1CFE79FF6124482ABDEA6F705 /* RNEventEmitter.h */, + 55CB8ED6E5E99276F3E2FCBB99A5CA19 /* RNEventEmitter.m */, + FF35F109D7A309C754DC5062FEEADBEA /* RNNotificationCenter.h */, + 8F2C89500F70BB848974CF0857C5128A /* RNNotificationCenter.m */, + B4F06981DB3BCD3E98A8E0FE77AF1DAA /* RNNotificationCenterListener.h */, + DC496485D777F6D3290CCA3FA6008196 /* RNNotificationCenterListener.m */, + FDE61C4AF25127D6859F596F3C6F351B /* RNNotificationEventHandler.h */, + C4D4EAA0DC0984DD9F7A1BD49ABF23B9 /* RNNotificationEventHandler.m */, + 1BB9AE11058DF3D5E963814F2B6902E2 /* RNNotificationParser.h */, + DD98818219FC4DD77E7D8EBF8CD6505F /* RNNotificationParser.m */, + AA993AC1DE31C550AA0B661B0D876BB4 /* RNNotifications.h */, + 0C03BAB420BFBD15A329D14E96E05043 /* RNNotifications.m */, + A88F186F604A06A6BAC80604088762E3 /* RNNotificationsStore.h */, + 610231597FE89D6C746C21903334B00D /* RNNotificationsStore.m */, + 9BF766D888AA238D53B541FBAAE7402F /* RNNotificationUtils.h */, + 79FEF5404E1BAB09D2F241B48A4DEE31 /* RNNotificationUtils.m */, + 3CA50793B08D058C4A9FFBF3CFCC8CD0 /* RNPushKit.h */, + CB52C85DE21D95127872FF79F7BEF816 /* RNPushKit.m */, + 2AF7226A7D0B0BED3A80AB543C95186B /* RNPushKitEventHandler.h */, + 6734A0CFBB5B95E3415B8A0886DF0C46 /* RNPushKitEventHandler.m */, + B5F73E4F9C9156EFB76337EB94A78AE1 /* RNPushKitEventListener.h */, + B3EE8748D4C2705B971758111FD67780 /* RNPushKitEventListener.m */, + 83FEC896C9E6E5985F280D0F5FF86E2D /* Pod */, + CE6B48E2400CBAFCAC879796CCBDB204 /* Support Files */, + ); + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; + sourceTree = ""; + }; + 3293B7A68371FD3CCBED56CE672CC2B5 /* Multiline */ = { + isa = PBXGroup; + children = ( + 9184892A42F009B99FA3122EB8A01354 /* RCTMultilineTextInputView.h */, + 556F4CD155ABD3629764F7AFABB657D2 /* RCTMultilineTextInputViewManager.h */, + 09779D39FC51C49ACB1E7CCD2C280164 /* RCTUITextView.h */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 33BB50212B59ABE7BB0636C583CE24AF /* Support Files */ = { + isa = PBXGroup; + children = ( + FC4D27A8EB8B619DEBDF92E49F64CE59 /* React-RCTVibration.xcconfig */, + 7E3CF7892CC7C6FA030C21AC76C7DA20 /* React-RCTVibration-dummy.m */, + D505A7309D20FFA1D950983E2E16A5AD /* React-RCTVibration-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + sourceTree = ""; + }; + 34D6A4FD6656FB27EB353A9657D01E16 /* Pod */ = { + isa = PBXGroup; + children = ( + 922A8999C2DE1619A981FB5F961382E3 /* RCTTypeSafety.podspec */, + ); + name = Pod; sourceTree = ""; }; 3753A903489A2CBC645231993C8E6737 /* RSKImageCropper */ = { @@ -8090,115 +7911,42 @@ path = RSKImageCropper; sourceTree = ""; }; - 390785AB55707AC1FD98984D744EBB8E /* VirtualText */ = { + 3874875CD7B31AA47540DEC7DEAB5DEE /* Support Files */ = { isa = PBXGroup; children = ( - 3AB2D10B5EA5FBAB4565B783C80C9A12 /* RCTVirtualTextShadowView.h */, - 067D5D2C99221EB0A3B9E22F7DFD06BF /* RCTVirtualTextViewManager.h */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - 39303A1C848498000ED6020A29AE664A /* RNImageCropPicker */ = { - isa = PBXGroup; - children = ( - 98EAAA5831E0ADD5E9E3BF6BD82CACBF /* Compression.h */, - A2551752B23876F7D9DC4F441A5A45F9 /* Compression.m */, - 9599ABDDBC657553636D3A5F8EAAEA92 /* ImageCropPicker.h */, - 63CA9D423FCE56F4D01566C1F2DE4FA9 /* ImageCropPicker.m */, - 6BFE4C44B6733B9C2BEAC7A14FBD13A9 /* UIImage+Resize.h */, - 445ECA9E6B1D54EE4EF38089336C8C17 /* UIImage+Resize.m */, - 2DF32949BF959F7FFCCDB08901300C06 /* Pod */, - E7F48E9662730F52690E12D8EC00034F /* QBImagePickerController */, - ABCBE9BCACE873B6BB605D5DE98C22EA /* Support Files */, - ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; - sourceTree = ""; - }; - 394C0118F9AE03862FCB1BEB69C07ABF /* react-native-webview */ = { - isa = PBXGroup; - children = ( - EDAB014F5408461B18E0134D71B273FC /* RNCWebView.h */, - 735BAE5A99D22558195015309934BF9B /* RNCWebView.m */, - 2BA03DD2917BE1F12B9532EDDE505149 /* RNCWebViewManager.h */, - F52C1187542EE6BDDCA763ED03072E5F /* RNCWebViewManager.m */, - FF61105B6BE647061B73DB8202543064 /* RNCWKProcessPoolManager.h */, - 3DC0503DB47829A176423B81E76574DC /* RNCWKProcessPoolManager.m */, - 6D794FCD258DA83D2D406AE3CEC9B23B /* Pod */, - 4CB33817102F75CAD1D274C0085A121B /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - 3A93548036A9C002D66EA203CC9A8AC4 /* CxxModule */ = { - isa = PBXGroup; - children = ( - 2D4D50C9905DD81CF3A3FD3D2B7A8672 /* DispatchMessageQueueThread.h */, - F5DC4210CA6076B3BBC396A83535BD17 /* RCTCxxMethod.h */, - C18F74C4680E509627B27F971FFE7F07 /* RCTCxxMethod.mm */, - 45B38EB267EC8DC49342BD5DF77B29E3 /* RCTCxxModule.h */, - 75E7950EB27C6E711A5E1791BD815BF4 /* RCTCxxModule.mm */, - DFFEB90D12B0A3D0EC41CA71AEDD6485 /* RCTCxxUtils.h */, - 2DC1EB1095D3E80B97EDC6B974E66CBC /* RCTCxxUtils.mm */, - C355DC38001EC1DC404881B238ADC3B4 /* RCTNativeModule.h */, - 517BA8A3ED2645580577976899A3448A /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - 3AB4D14323BE5D7D216A7D437F19DEE1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 89EE7CA4B88EDCF9C446BA9DFCB904F0 /* EXAV.xcconfig */, - 76443512452314B81C8DF7C0C0027E31 /* EXAV-dummy.m */, - 7AC335A8B94A8E987A25C8916AA4478E /* EXAV-prefix.pch */, + DF5D27AD14A1991632E190090036255B /* ReactNativeART.xcconfig */, + BCC9D44B399C950B10E39F7FF3CDCEC6 /* ReactNativeART-dummy.m */, + 449D8E55B20ABB9E090F330423D7A6DF /* ReactNativeART-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; - 3AE028F6857F8E7D6924035BD36BF65D /* Singleline */ = { + 39C140100D92538FFD422850FA2B3419 /* Pod */ = { isa = PBXGroup; children = ( - B28DFCB28C906E2A2ADB0BBBAFA4E945 /* RCTSinglelineTextInputView.m */, - DCD7924BE0A9DE6A96D091A46DC54D9A /* RCTSinglelineTextInputViewManager.m */, - F10EFF0CD575AC43A53D01C7D23AD50E /* RCTUITextField.m */, + 10A5C9EBB37A84F797231E27640E4BA6 /* React-RCTBlob.podspec */, ); - name = Singleline; - path = Singleline; + name = Pod; sourceTree = ""; }; - 3BEA7F395A5379E3F7494E212CC95F8F /* React-jsi */ = { + 3A5E9EB92AF439C32277527AA370E4C4 /* Pod */ = { isa = PBXGroup; children = ( - 456084F44DAA789CB020F8A2FD5DA431 /* JSCRuntime.cpp */, - BDF7143096F238E5F373CE201997766C /* JSCRuntime.h */, - 5130734D2B970E2088F7E2550EFB190F /* jsi */, - 276D037C29F40BF33B23E63ACB83AFB2 /* Pod */, - A206351E8B0C1EA96791B49E02267087 /* Support Files */, + D8D69787558289B25132BB7C5E969663 /* BugsnagReactNative.podspec */, + 4C2F89B03C226CDEEE59F1012D188651 /* LICENSE.txt */, + 59430B683315F2ABC59266E84F8E18A3 /* README.md */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = Pod; sourceTree = ""; }; - 3BF0EA6928A58A20352AA515D94834FB /* SafeAreaView */ = { + 3ABDC3EFF9FE1A074B736B434788A314 /* Support Files */ = { isa = PBXGroup; children = ( - 2860113F8A165287F78B379A7E7735F1 /* RCTSafeAreaShadowView.h */, - 5B40E769968DD2143FE155AD49707E9F /* RCTSafeAreaShadowView.m */, - 767E6879FB85AE1BD7163A0997745F42 /* RCTSafeAreaView.h */, - E7855F1C527C5192F72CFF6A5D46C931 /* RCTSafeAreaView.m */, - A2E8B0D809212EB4C96F0CCA0F7F3D37 /* RCTSafeAreaViewLocalData.h */, - FD38B2E5F8FDC009EE3930FE406607A0 /* RCTSafeAreaViewLocalData.m */, - A4C3171701218F19BA57771E76E4453E /* RCTSafeAreaViewManager.h */, - 06697F35D65B5CE61A7219DE075D036C /* RCTSafeAreaViewManager.m */, + 35BD743B7EC13A647309F11CDE0BF4B3 /* UMFaceDetectorInterface.xcconfig */, ); - name = SafeAreaView; - path = SafeAreaView; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; 3CAF10CB331D545D1790DB9BD7E08531 /* CoreOnly */ = { @@ -8209,49 +7957,50 @@ name = CoreOnly; sourceTree = ""; }; - 3CD5A5DBD0C39E34669F609FA418F17B /* Services */ = { + 3E2C7A9E9262AEBDD86D61872E18C318 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - 25DBAFC7D6E6CECEE0D8BD212F907826 /* UMReactFontManager.h */, - C2DC0411F3D040280C23BA49ABA4BF3C /* UMReactFontManager.m */, - 6E992D8467813492D50B1E61EBFBE6A5 /* UMReactLogHandler.h */, - 1CA785C20F123D7AAFB30A0FD933A235 /* UMReactLogHandler.m */, - B54554CA08243B0445BEE89CEC127C6F /* UMReactNativeAdapter.h */, - C651F8C614465833939221AC4CFF9313 /* UMReactNativeAdapter.m */, - DE374EF524BADF6A8BBCC5700C4FF753 /* UMReactNativeEventEmitter.h */, - 9D79F012210D6A13185A51BF8EB1209D /* UMReactNativeEventEmitter.m */, + 5F31670191EFD82BC8038F8FAAC47E82 /* Source */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = ""; }; - 3D5CE38DE95B750ECBACC3EC92C963D6 /* Pod */ = { + 3E4499991A0A769B85B352563C100875 /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - F81866F14F3E7E970AA2D4ED60838FCC /* React-cxxreact.podspec */, + 7B25E77540C1ECB1F55EBA082F649641 /* UMBridgeModule.h */, + 479EDFFDD208BB3E58638911683A79BB /* Pod */, + BE05CA7ABFB3EA55C07E554A50D89C73 /* Services */, + FF1A399FEB6FFE0986AD8B5388D58AD6 /* Support Files */, + 9E30BE24C978A478D4600ECF6C458AB3 /* UMModuleRegistryAdapter */, + AA2A95EDD86826C606770DDCA7F7B6F9 /* UMNativeModulesProxy */, + 12C34AE574C9DB2AE9B53E7D2B2AAE77 /* UMViewManagerAdapter */, ); - name = Pod; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; - 3E976D150A97BAD8055AF56E6E1D783B /* Support Files */ = { + 3F148F443A49875EF68C9C5DD921A1A3 /* Support Files */ = { isa = PBXGroup; children = ( - E855FCF102DC5906560617510B8CD083 /* react-native-jitsi-meet.xcconfig */, - 40F7FEF0E1BF9BFF10FAEC98C231FD26 /* react-native-jitsi-meet-dummy.m */, - 9F0D8879AFA115E5356585B2F6DF2CE2 /* react-native-jitsi-meet-prefix.pch */, + 4B937D46CDC5241DE90CEAC1441A346E /* RCTTypeSafety.xcconfig */, + 45153428D47F26ED4C633C5D69AE6175 /* RCTTypeSafety-dummy.m */, + 98061D83BCB42C4E8A78B40C727044A1 /* RCTTypeSafety-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - 3EBACA3123CE2D52D261EDA6E28A2126 /* Pod */ = { + 3FA208D3EFCB7783A4EA313ACE2DD37F /* Support Files */ = { isa = PBXGroup; children = ( - 939E2C82CEA840EDD9BE0C5D1182FADC /* LICENSE */, - BD6F5B85E73250F0136EDD338592C8DE /* README.md */, - 22320F19C8575F89296DDEDC8687B2D4 /* RNGestureHandler.podspec */, + A2EB051A29B35EC96FFE889FC5CCC558 /* react-native-slider.xcconfig */, + F4FA44BC3F924DE88CACFA9DE0722A6F /* react-native-slider-dummy.m */, + 90F7B2BE4456BB67085304551348B18A /* react-native-slider-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; 3FFCE7BE739742CA2D2F988E9E825982 /* UserDefaults */ = { @@ -8263,64 +8012,81 @@ name = UserDefaults; sourceTree = ""; }; - 40C89F6D1E92923AAF9C432C853DEDDE /* DevSupport */ = { + 406FF7CF771619DBD2703C02AD78377A /* Pod */ = { isa = PBXGroup; children = ( - C3311B35B5431B68BDAD6D00E792EA16 /* RCTDevLoadingView.h */, - 6AEC8DC13EE046F3C8DFBE136D8D798A /* RCTDevLoadingView.m */, - 8937DEA30EF284C0AAC3EE9008F4AF8D /* RCTDevMenu.h */, - 3083FD8E4D6460DC8673F63185D156BE /* RCTDevMenu.m */, - 2BC07A691B5C1F74884E31973463A763 /* RCTInspectorDevServerHelper.h */, - E1B9853EEABB86B11759DFCB1EBCA3B8 /* RCTInspectorDevServerHelper.mm */, - B539A7B9514BB8308B7BC00D8903DEAF /* RCTPackagerClient.h */, - C3A398FB2047D8FB5C115BB7C9C44E07 /* RCTPackagerClient.m */, - 5503461EDC3D0BE3934EEE5DA1BB9088 /* RCTPackagerConnection.h */, - 0CB3CBDAF4A37F5F1F72C5D9F58E4A34 /* RCTPackagerConnection.mm */, - ); - name = DevSupport; - path = React/DevSupport; - sourceTree = ""; - }; - 410E29CE5DCD220F2BC6FE07A9947DF8 /* React-RCTVibration */ = { - isa = PBXGroup; - children = ( - 2AA78930FB447031AB93AD2299273FD1 /* RCTVibration.m */, - 8E1143E45A11ECBE38C417058EA097D7 /* Pod */, - F67B7F7CA6523D154409A00CC91A7F6F /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - 412E01A9EA1A4E6EEE2632D459614682 /* Pod */ = { - isa = PBXGroup; - children = ( - 958D8A765B851C50B6E7E672C1326062 /* LICENSE */, - 2A1B9ADB6A8B3779D38717839DA63A33 /* README.md */, - 7DC9083B4EF5AA159996A2831D301185 /* RNFastImage.podspec */, + 4BD54D115AC4D04723C9A914B5A09BBD /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; }; - 41F513417675F55E977A50030491A638 /* React-RCTImage */ = { + 415437BABC896E14171F47B22A12AB14 /* Pod */ = { isa = PBXGroup; children = ( - DFFA4E87052B6065E039BA191735CB91 /* RCTAnimatedImage.m */, - 0AA160054F5AE778946C6632CD3512B0 /* RCTGIFImageDecoder.m */, - 812AA095C1331B37CE0472F217A4945B /* RCTImageBlurUtils.m */, - 0A5BC46FD11ADF1251BA46820BA26460 /* RCTImageCache.m */, - 6A58D7780B1E3A13BA1C9211FF6D72D1 /* RCTImageShadowView.m */, - C92512161C2301398F3E08A8BDCC12D0 /* RCTImageUtils.m */, - 6DDDBCF3CD0C36D993D2A9B90128F76B /* RCTImageView.m */, - 2A50F74C42C3DD6B4A9F69B23D3E82AE /* RCTImageViewManager.m */, - C9013C562EB93A1E3B006E509A27A411 /* RCTLocalAssetImageLoader.m */, - 0E10089B334000D673BD63A61590F275 /* RCTResizeMode.m */, - A1B3EE1E4659F5906B7939DB8EB030CB /* RCTUIImageViewAnimated.m */, - 624F1172FAFC23FE46520AF51847FF2A /* Pod */, - CFF92BB5DF14885ADE88A4DE00EF5E78 /* Support Files */, + D5C3492A85A86C68EFE8A09213C3C16A /* EXWebBrowser.podspec */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = Pod; + sourceTree = ""; + }; + 41804EDECB44CF63CE5287EF5950269A /* Pod */ = { + isa = PBXGroup; + children = ( + CDE6A59ABACAA44B46D9F689EB31328A /* React-CoreModules.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 41C0ECAFC84D75F2691A1D8E63D34FA3 /* jscallinvoker */ = { + isa = PBXGroup; + children = ( + 779726D959215FC66398D2A7BD055CD1 /* BridgeJSCallInvoker.cpp */, + E959B131DD2F53B153D0497CFE2C40B2 /* BridgeJSCallInvoker.h */, + CE0AE4FB9E24E5BDDD8D43EE986510AF /* JSCallInvoker.h */, + ); + name = jscallinvoker; + sourceTree = ""; + }; + 423D07120F4F8CDCAD208CFC4BCA5B2E /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + CACD9244F81FC25B9A30004DEE0FABA3 /* CxxModule.h */, + 8AE855DF15457AE0EE7496F380CB6F3C /* CxxNativeModule.cpp */, + 8B9483960D0898B710053D59BDE9BFC1 /* CxxNativeModule.h */, + CA005FB055FB73CB79712030C59FDD4A /* Instance.cpp */, + 8770AB17E738B4F085184720FE8337C5 /* Instance.h */, + E38CF5FC87ED1774808BBFA4FCD021D9 /* JsArgumentHelpers.h */, + DAED8D93FB784B6A38B458D84A1A917C /* JsArgumentHelpers-inl.h */, + 25B45E8A0058E166563607A2FE47ECE8 /* JSBigString.cpp */, + 406CD355AB6F9E4DC62563E186D3F918 /* JSBigString.h */, + 9F3DCB166431895CB3E59A1036BDF02C /* JSBundleType.cpp */, + B21AD03C6F6CD5601C5D12A8A809308A /* JSBundleType.h */, + 97DB1F19C9F90AA0129AD54292C01F4A /* JSDeltaBundleClient.cpp */, + E67BD43E770B4E91B853ECC3643A444B /* JSDeltaBundleClient.h */, + 1FE42B1EC0E9A1434434EBFF0E914EC8 /* JSExecutor.cpp */, + 12AB074EDFEB194615BB707DA4AD99FD /* JSExecutor.h */, + DA05EC6E19DAEC1ADF3A0DF92A21E143 /* JSIndexedRAMBundle.cpp */, + ADBFCA4EE8B961405264FE3B72430ABF /* JSIndexedRAMBundle.h */, + 4AE21D1F9329F6DF829E93F254C78685 /* JSModulesUnbundle.h */, + A98D3BF786F423F9CC492FAEE6A1D1A8 /* MessageQueueThread.h */, + 0FFBBBCAB0B8D08F6F43EED34AA665FC /* MethodCall.cpp */, + B2B92DBA600B84DBA79028A2D7ED337C /* MethodCall.h */, + 4A68269623B19233944EB5E4EB7A1DD0 /* ModuleRegistry.cpp */, + 438397C293ADBF8CC042C10E1F2B29E7 /* ModuleRegistry.h */, + B8CC2A6D6C06177C82A687CF5D7CBA08 /* NativeModule.h */, + AFE595C13AAAB67AC3A8220900A1F521 /* NativeToJsBridge.cpp */, + 391A024B4AF1CBDB1B929B84AFA72DA0 /* NativeToJsBridge.h */, + AF99652E3E3715C364F42DE991BDB1B6 /* RAMBundleRegistry.cpp */, + 1069B42DA1FEEC4E4FBBBA3AA384AF0F /* RAMBundleRegistry.h */, + 4739DFACCC07C40C8C953D2127D2B057 /* ReactMarker.cpp */, + EE17E3347487B607CBD9E7DA3FA9DB1E /* ReactMarker.h */, + 1F79843AA3A02D490BDAA1334DA7D9E3 /* RecoverableError.h */, + 67F1900409CC2C3BD6C8622C9BAAB311 /* SharedProxyCxxModule.h */, + 8CD90088ED71F765AB3DBC0CB8751846 /* SystraceSection.h */, + 7E12656CBD0F143E81463C24CA1F429E /* Pod */, + 6B2A4CC8C4B066F74ED4D0B2F3A2A675 /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; 42DB5497D0205BE1831E7686A491E95F /* Firebase */ = { @@ -8333,180 +8099,214 @@ path = Firebase; sourceTree = ""; }; - 432DD7F734385DFE0A23B541CBE8FE93 /* Pod */ = { + 432827F5900D9FB6002F825C586CE0AC /* QBImagePickerController */ = { isa = PBXGroup; children = ( - DE05734837A6096134BCC6E569C3139D /* api.md */, - 8D9D3A711FA1485371DF91C09CC57D36 /* LICENSE */, - FA3074A70780F5BDE91D7A2AE0333441 /* ReactNativeART.podspec */, - 6C96566BEE3E8073B6AFCE2002A5B167 /* README.md */, + 95D39EF6618E16776E8A5371CD8547E9 /* QBAlbumCell.h */, + C48F1E63F753961050D0700AC95A8CCB /* QBAlbumCell.m */, + EB5753527F498AEEBC128DBA42E80359 /* QBAlbumsViewController.h */, + 7752D13C7DAFB1DF6B209E93E5D5B23F /* QBAlbumsViewController.m */, + F0B0004424C9E955B20F52B9D72F35A4 /* QBAssetCell.h */, + A41056D251493CFFD991E186AEA9B74F /* QBAssetCell.m */, + B50CA41243E0F44D3881FDC85707F465 /* QBAssetsViewController.h */, + 50F1831D0AC780D0347D52C97AC86B78 /* QBAssetsViewController.m */, + 5361A2510329205326BA29FFE3D2F208 /* QBCheckmarkView.h */, + EDF6B7CD599FD39008641CE2246FD008 /* QBCheckmarkView.m */, + 1051BD6ABE3D9D8468852541ACCC872B /* QBImagePickerController.h */, + CCC3C579B0B11929E0551B33CE6C1686 /* QBImagePickerController.m */, + E26B670C6ED60691A35CAFCB0458D24B /* QBSlomoIconView.h */, + F6AC73FCCFC33703548A833FF9B4DE87 /* QBSlomoIconView.m */, + 07DC285D33A89D30352C4C19C1746FEB /* QBVideoIconView.h */, + 719E827F4B7A0B9B515251615F0BA995 /* QBVideoIconView.m */, + 8E4633000BE8B3F74A598CC87147A882 /* QBVideoIndicatorView.h */, + 49A2D404AC4D74C64E1A8085D9DE3117 /* QBVideoIndicatorView.m */, + 9123C92DE2C18EC07F799A51ED634756 /* Resources */, ); - name = Pod; + name = QBImagePickerController; sourceTree = ""; }; - 436F49AE999FEA44A0D1ACC43055939A /* Support Files */ = { + 4460F05AFB9F494AB1C677BF90562D11 /* RNGestureHandler */ = { isa = PBXGroup; children = ( - EFC95FBCDBB6142B436FA9581338BFD5 /* UMCameraInterface.xcconfig */, + E8CABCFD0D7D4B97C69980A82C1F688A /* RNGestureHandler.h */, + EFD93CB1C504172257BB2FE144734F7F /* RNGestureHandler.m */, + E0FD752F00F4A92F465D342153DF5684 /* RNGestureHandlerButton.h */, + 528640D7FE2EA01495E9E94ECC43F9BE /* RNGestureHandlerButton.m */, + A605D1F6B49B045296942CBA5DE6616B /* RNGestureHandlerDirection.h */, + 51344077DBACAF6FC443E8D1D5D1CE8F /* RNGestureHandlerEvents.h */, + EF03F25634FA473EBFFD4568F4930CCC /* RNGestureHandlerEvents.m */, + FDDC614E04C209F9A810B734B77D17D5 /* RNGestureHandlerManager.h */, + 0E0D2A5BA5EB89346ADCB47165DDEFFA /* RNGestureHandlerManager.m */, + 635FA568B7B1A010E7457351BA789F89 /* RNGestureHandlerModule.h */, + 55C8FAA62929F7E42A17E3A23E51CCCE /* RNGestureHandlerModule.m */, + 27AF233C32A5B68544F43556A0B7CB71 /* RNGestureHandlerRegistry.h */, + 34392FE0FAF6B26AA1A5D0D334E0B009 /* RNGestureHandlerRegistry.m */, + 0AB95667D17C2DA212FFA19BCB94BDC6 /* RNGestureHandlerState.h */, + 2D97D708516454AAC9C946326909AB2C /* RNRootViewGestureRecognizer.h */, + EE1DFD392887AE2AFA6838B1794DD535 /* RNRootViewGestureRecognizer.m */, + C74939F52009C40E18BE82A628AB68BA /* Handlers */, + 701B820853332390AC7D6374E2D69F63 /* Pod */, + A83ECDB43D3B5944F57F10CEDD66C033 /* Support Files */, + ); + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; + sourceTree = ""; + }; + 44C60FD861FC0FD4DD5EC9A499579DE0 /* Default */ = { + isa = PBXGroup; + children = ( + 27EBE515ED08123F319CA09DFDA0D4EE /* Base */, + 4E37673DF71A3CB5160823FEB3C856F7 /* CxxBridge */, + 1A56ACC7B96EDE314F8596ECFF7A8EB2 /* CxxModule */, + 873338F5AAFE3D41E243E456858E2B91 /* CxxUtils */, + A83C4863F9F332688257562CD94509B1 /* Modules */, + EA819708ACB911FDB801A231FA928058 /* Profiler */, + 2D2E0B859C93D0A1EE0A78370E4878F6 /* UIUtils */, + 88A42DE2ED39185CAD8F249848287DC4 /* Views */, + ); + name = Default; + sourceTree = ""; + }; + 451D9A0828E63288E42FBF2B974F1AD9 /* UMFontInterface */ = { + isa = PBXGroup; + children = ( + D26F97B4A9E6AC64DA3F959AEF4F903B /* UMFontManagerInterface.h */, + BAAFDADB1DC6C392F10FBA0AF563989F /* UMFontProcessorInterface.h */, + F6560F47D732FAE12F4BB22F1294C6B1 /* UMFontScalerInterface.h */, + 7A273D8A6DB790E6FDC568AA930E3D32 /* UMFontScalersManagerInterface.h */, + BA90178B36F55D980E1ABA7D98633589 /* Pod */, + 27C0E82014D3802F837EEE8EA1E79481 /* Support Files */, + ); + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + 45897F0BECAED6EC776202F5C645FF15 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5948590484661ED346810957D895644F /* RNRootView.xcconfig */, + DA716AE7868435F42751B7B9FAD16593 /* RNRootView-dummy.m */, + 8CDD7CC776A421CF128CBF652E0CF408 /* RNRootView-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + path = "../../ios/Pods/Target Support Files/RNRootView"; sourceTree = ""; }; - 452B819A64D54ED90C10B819DDA2B1E8 /* UMTaskManagerInterface */ = { + 4613BB9BCD9F3277483ABE1F4B724EB7 /* React */ = { isa = PBXGroup; children = ( - 3F803860EF7A3F44AC49B7C8BF0B7264 /* UMTaskConsumerInterface.h */, - 001747F5C80950AA3E7EC3CDABD93FE4 /* UMTaskInterface.h */, - 50BD6E199540DDD12A5346256325AC64 /* UMTaskLaunchReason.h */, - 0C9175A9A1D7FD9E183957D35177133B /* UMTaskManagerInterface.h */, - 2FDD8B8A425787F2CDC1466F02017342 /* UMTaskServiceInterface.h */, - 01BB7A869F9E6F2F20E787CB072C7DB4 /* Pod */, - 875CC2F7611EACA6D2B123E993EBDF27 /* Support Files */, + CA5494BF160B186F7BF1BFDC4466966C /* Pod */, + F7CEBEFD6F5C2F4AB598FC4947F8860A /* Support Files */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; - 47384517E877F69FF0829F827FE8F393 /* RCTImageHeaders */ = { + 4713B0D8FA8D39DFA18A82BD56E94D60 /* RawText */ = { isa = PBXGroup; children = ( - 50AAD7CC4F251E199BD4939630F9F528 /* RCTAnimatedImage.h */, - 8F0B94896794B69DE9ABBAF3A6A4531A /* RCTGIFImageDecoder.h */, - 7A8DFA1F864C62F0877DC2857424EDD7 /* RCTImageBlurUtils.h */, - C66EB41246D9082724732E634930C37D /* RCTImageCache.h */, - B8FC91299498ED4C8360B3FA9F79E38D /* RCTImageDataDecoder.h */, - 5B4D64374C7E6A0B63625C1CDC038AF1 /* RCTImageLoaderProtocol.h */, - 86679E2183EABD35F9E8AB9DA3D2A5B0 /* RCTImageShadowView.h */, - 3A9671D357015F3C5567606DF3014E76 /* RCTImageURLLoader.h */, - 1CABE6C371A0BFD0444B9F27A64F4F11 /* RCTImageUtils.h */, - 9983282CE3F72F1D2F8E5E39DD900556 /* RCTImageView.h */, - 96EAB41B780D55D6439A222820C17B09 /* RCTImageViewManager.h */, - 1628FCE1C0BA5C53ADD4E56D5A762BAA /* RCTLocalAssetImageLoader.h */, - 19D3732BCBA5628433B833B5D52F0700 /* RCTResizeMode.h */, - 11C6FD394B6095FA5812033C28A9AFAA /* RCTUIImageViewAnimated.h */, + B375FD543CA64F20CDE3F99EA6CDA070 /* RCTRawTextShadowView.h */, + 6594216D34B0923DA2F6C563BBC9113E /* RCTRawTextViewManager.h */, ); - name = RCTImageHeaders; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; - 47A1AC75A8D13AC6E70A28C1C3FD8C8B /* Pod */ = { + 471D0EFFAE9599E4C80DB04C2CB04FCB /* KeyCommands */ = { isa = PBXGroup; children = ( - FD2BC437BCA1441EE529ACCFB8EAE072 /* React-CoreModules.podspec */, + 8346DFB8C8499D03B29FC1954F4BFF35 /* RCTKeyCommandConstants.h */, + 0320F5C6D72B329B0682338615BF7493 /* RCTKeyCommandConstants.m */, + 8EE18524B7CE4A63FD1F28B6B566245C /* RCTKeyCommandsManager.h */, + A78B54BD3246CB0BE36024F0436A9F16 /* RCTKeyCommandsManager.m */, + 50EA99FB92AE0BCA251CA09F56A594EF /* Pod */, + D45AB61AC1D622576A871D7C8E66925D /* Support Files */, + ); + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; + sourceTree = ""; + }; + 47304582F21DE6B0E4E607FCC454ACDC /* Pod */ = { + isa = PBXGroup; + children = ( + 1474CF01DB622FC4F114F4F0AC297E3F /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = ""; }; - 4824A569058D5A74736A894538C55C93 /* Singleline */ = { + 479EDFFDD208BB3E58638911683A79BB /* Pod */ = { isa = PBXGroup; children = ( - C4ACA86B0CE6802F5303BB625FF3E0F4 /* RCTSinglelineTextInputView.h */, - 721871E7D8498F4B8672EC761AD2C99C /* RCTSinglelineTextInputViewManager.h */, - 5F3001C57F8CC737DBD4A431068E0CC5 /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 48CAE9FC43022E7081A45B4EAD80A0E6 /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - 1CD28EB1C5665AB87CD4B715CE0C3EC7 /* RCTBlobCollector.h */, - 31A1E826694B6213C448735FA7D15E1F /* RCTBlobCollector.mm */, - 2F2902D76123CD82980C10B19C6B2894 /* RCTBlobManager.mm */, - 280F25C6B97C9C0323AD07C0C207CAA9 /* RCTFileReaderModule.m */, - 28DEB85CF0F94B3BA3F4E2368695F0E2 /* Pod */, - DAC753C6181F275AF95BCE4EE7A2CA08 /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - 48D616CFD73B4097786D003C8DF36454 /* EXWebBrowser */ = { - isa = PBXGroup; - children = ( - 0D97133D0DF5D8D360CB13EED21FEA64 /* EXWebBrowser.h */, - B96641B5D9DCA4C6DE1C0D7235BAA942 /* EXWebBrowser.m */, - AA3E7AE0231288897DE76CDABB551CB3 /* Pod */, - C2174660A9E901666950E37667D95458 /* Support Files */, - ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; - sourceTree = ""; - }; - 48D898F1F9B0C6F2263895DFFD93C076 /* Pod */ = { - isa = PBXGroup; - children = ( - DA8B43484450F255AC756580DC3F49C0 /* UMSensorsInterface.podspec */, + DE7F2FD8A029EA1D8D392BE53DEFE9C6 /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = ""; }; - 491E7EF3AB90FC1BFD8B3ADBFB7D8557 /* Pod */ = { + 47E0FC9C441F47A30B282421E2DEC439 /* core */ = { isa = PBXGroup; children = ( - 02FD9DFB0AACA799D670E18E11F9B60B /* advancedIos.md */, - C000D12BF94907F234EED6E2EC242655 /* installation.md */, - 5694FC989089BDACE6DB56D0A3036311 /* LICENSE */, - 809BB1BFEA6DBABE3E26A0D090F01154 /* localNotifications.md */, - 9AB2412ABEA933CB03EE535D48BD197E /* notificationsEvents.md */, - C3DAE7153508F7F0B6671673C25A424C /* react-native-notifications.podspec */, - 29D36281C1D290C277A09309802E40FD /* README.md */, - 88AC52FDFB1500AD1EC5B69093B1D4AD /* subscription.md */, + BBEF4F6A79D7A337F2E745F009A9A77E /* LongLivedObject.cpp */, + 43C93FA1DD9321D910CD997E66BC84B7 /* LongLivedObject.h */, + EDAA11E01E3769D1548AD0B426B4B73E /* TurboCxxModule.cpp */, + 2A37D6F518A96C60FDAEA4CB5AD111EC /* TurboCxxModule.h */, + 66447F01620F433C283D8DDE6B50310E /* TurboModule.cpp */, + 942338DC48BF17577A4C1645A502C3FA /* TurboModule.h */, + D6821AD88324905C058650AA19C37508 /* TurboModuleBinding.cpp */, + 9BE75D7FCAF52DDD6FACC196FE4C0616 /* TurboModuleBinding.h */, + A2E5B3203EEEEFDAB9079DE4F5CB11E6 /* TurboModuleUtils.cpp */, + CA7BD2FB34C066034DC699D02D096524 /* TurboModuleUtils.h */, + 0B7E04A0AD709043FB4CF253F4C37055 /* platform */, + ); + name = core; + sourceTree = ""; + }; + 483A5CAA06186A347DAE4856801899E0 /* Pod */ = { + isa = PBXGroup; + children = ( + A0B5511CD946C96516D54260C8B42A94 /* LICENSE.md */, + 9D0FDEBC4888EEE55646CAFB751A6813 /* react-native-document-picker.podspec */, + 2EAC13362D230394D71B6F3EAA1D8491 /* README.md */, ); name = Pod; sourceTree = ""; }; - 4959A9D24132890691AF88E4AD67A636 /* Interfaces */ = { + 4A81F1E2661798AFE8814C357CD281EF /* messaging */ = { isa = PBXGroup; children = ( - 1AAFA15E541F79750341AB85EC424250 /* EXAppLoaderInterface.h */, - 3421F26D424268F958AC092714AE40E4 /* EXAppRecordInterface.h */, + C53D620466FA934E2DEFED95435D8B35 /* RNFirebaseMessaging.h */, + 5DE60479DDCF059AD1F97AEF0AF8D1DA /* RNFirebaseMessaging.m */, ); - name = Interfaces; - path = EXAppLoaderProvider/Interfaces; + name = messaging; + path = RNFirebase/messaging; sourceTree = ""; }; - 4A2AEBF150C101AF90D6709E7E47A217 /* Support Files */ = { + 4B9A15D9C1C8FB0258DA4F49765624BE /* Pod */ = { isa = PBXGroup; children = ( - 02AEAB2464ED470DD8B2BED39CE7D233 /* React-CoreModules.xcconfig */, - 237B12B1A4532AE980B5562F14F00BD3 /* React-CoreModules-dummy.m */, - A9202207E58FD7F8B110D0C87D3BEF34 /* React-CoreModules-prefix.pch */, + 9BA56351B2DF4F5F3A0875737FA7D916 /* Yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4C5CC651C4548F85CCFCD9046E7336A1 /* Pod */ = { + isa = PBXGroup; + children = ( + 0C86FEF56116E7B0BB1F17C49A61D4B3 /* LICENSE */, + A0503F2FA3DC9427A604CAC335BBD8DF /* README.md */, + A282F86B0BEABBF5B518E289006DEAF5 /* RNScreens.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4D016C00E231FA43BDE7BB6533F8FE05 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9911B80A8D09E2F33BC9BB61FF4F6D3E /* React-jsi.xcconfig */, + BCEB923E2F3F8EE5A58153C6B1EFCD5E /* React-jsi-dummy.m */, + A07CF9257E772EF390552470FEE43BFB /* React-jsi-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; - sourceTree = ""; - }; - 4B66572C07E264459E4647ED964458C5 /* Pod */ = { - isa = PBXGroup; - children = ( - ED3DDD34A859972FFA084A37793D713F /* LICENSE */, - 90438AEE77D1621681B4872EE3F88E1A /* README.md */, - E8335B1EF2FC21B6CD5BBD4DF5226B66 /* RNReanimated.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4C9EA3B8354227C087CA0C91F60C95D3 /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - 1BCA613E270465CAFFEFCFAB5AD0872E /* UMNativeModulesProxy.h */, - 9301A696465A7B138B63C930CAF7BF14 /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; - sourceTree = ""; - }; - 4CB33817102F75CAD1D274C0085A121B /* Support Files */ = { - isa = PBXGroup; - children = ( - 64F050E38604CBA15A49D6322C1171C6 /* react-native-webview.xcconfig */, - 8852B603985EABAC100BF0A6427C4ACD /* react-native-webview-dummy.m */, - A906C31F1EA0FD26B065B92996BCCFB1 /* react-native-webview-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; 4D9C7557ECB54D5FB587C4FF3E2BB92B /* Support Files */ = { @@ -8518,6 +8318,24 @@ path = "../Target Support Files/Crashlytics"; sourceTree = ""; }; + 4E37673DF71A3CB5160823FEB3C856F7 /* CxxBridge */ = { + isa = PBXGroup; + children = ( + B4599C606497FF6E3DACFA8FDB506A3F /* JSCExecutorFactory.h */, + 8BF0CD01193D197C93A1A6EAC1C8C7F2 /* JSCExecutorFactory.mm */, + 2A8F1BA1DDA2334913E97483188FDB0E /* NSDataBigString.h */, + 9E99DC06A4F55FF1045238A878165DA2 /* NSDataBigString.mm */, + 3CB5D4AE81D2072000C6007CDF99AA4A /* RCTCxxBridge.mm */, + 1C8D565173D60B976B9B818CC8BDF944 /* RCTCxxBridgeDelegate.h */, + BCBB48236A20094745DF341AA5823AC1 /* RCTMessageThread.h */, + 29BAD75CE92E205F1B7146D5AF67383E /* RCTMessageThread.mm */, + CCCF7627EE1A93D9A80F2A155E016155 /* RCTObjcExecutor.h */, + E2FF1CA18AA8296FAF4A280B99B6C657 /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; 4E4AC296B53242E0B91BDB018D55CA0B /* webp */ = { isa = PBXGroup; children = ( @@ -8673,58 +8491,109 @@ name = webp; sourceTree = ""; }; - 4F0FFB87B03C6CD9AF36CED6F066442F /* Pod */ = { + 4E4B09DC1E55FBC79FFCE4EE91FDE31C /* Pod */ = { isa = PBXGroup; children = ( - B287CF42AC85785CD23D4F996A46205E /* EXPermissions.podspec */, + 545098F00CC2DD2595A6C7709C984478 /* EXConstants.podspec */, ); name = Pod; sourceTree = ""; }; - 4F965C8E1C4E9AAE8A2DBDACDF86E4FC /* RCTBlobHeaders */ = { + 4E632BA6BB0CA2912FFF6430D6F4C829 /* Sentry */ = { isa = PBXGroup; children = ( - 376ECD23699FC3A77877C59FAF661064 /* RCTBlobManager.h */, - 4CBD5251F075596E6EFD5A97D4DC0209 /* RCTFileReaderModule.h */, + D22C10CEED1C85CB5A398973AA4DA705 /* BSG_KSCrashSentry.c */, + 81599712D9998041E4E6DE0B92E9F991 /* BSG_KSCrashSentry.h */, + 67B71E231DF5F88A2F4ADD98F62EC79D /* BSG_KSCrashSentry_CPPException.h */, + 406385383204B2936DA6EBE77C582A39 /* BSG_KSCrashSentry_CPPException.mm */, + 6CB3691D736C53E5A5DE5AD740CAC09A /* BSG_KSCrashSentry_MachException.c */, + C9473900FC498C6D5B513A6248DD89B6 /* BSG_KSCrashSentry_MachException.h */, + AD54B5D28CA33D8094D80425CD549FBE /* BSG_KSCrashSentry_NSException.h */, + 860855E436D35942C26311A1EDC230C9 /* BSG_KSCrashSentry_NSException.m */, + EC83CCAE0ABC8D5018B3924A1FE1BD96 /* BSG_KSCrashSentry_Private.h */, + 776BCBCF522610A96F3CFCBF6DEE681B /* BSG_KSCrashSentry_Signal.c */, + 5DAEE5347F791D316AFE66FAA3FFF311 /* BSG_KSCrashSentry_Signal.h */, + 6341E8525984ADD7C1E022B6761DF55E /* BSG_KSCrashSentry_User.c */, + C67D8DD64EC1C6C8765D9D4BC2395E5B /* BSG_KSCrashSentry_User.h */, ); - name = RCTBlobHeaders; + name = Sentry; + path = Sentry; sourceTree = ""; }; - 5112381C93A2FA19F602463DF29123D2 /* CxxBridge */ = { + 4F088053E1A5DACA2CD2CEB8EAB715B0 /* RNAudio */ = { isa = PBXGroup; children = ( - 4C0DEA996540B56EC22001BD80BF8094 /* JSCExecutorFactory.h */, - 7AA8EAD8C2A634C8B211DCA3C84C4BB1 /* JSCExecutorFactory.mm */, - 247F1B869B8C5B1B67219E38EFA3D3BE /* NSDataBigString.h */, - 8CE45688575FF0AA028895BFDD852F2F /* NSDataBigString.mm */, - B6EE70348525F32720F5513A236840CB /* RCTCxxBridge.mm */, - 718AD05B5CD0F909A8FBD59F728158E6 /* RCTCxxBridgeDelegate.h */, - 382DE283EE37D981E9C8F0FD22CCFA48 /* RCTMessageThread.h */, - 3D6430F396C6EBB6638714FBB10315CA /* RCTMessageThread.mm */, - 0FCC74BBCDD1FFF31B5B035F9074E4CF /* RCTObjcExecutor.h */, - B9935A42776FF18709A2F382332B44DA /* RCTObjcExecutor.mm */, + 18D62828B76C669E2E6ABDDE49B89B20 /* AudioRecorderManager.h */, + E4399DCEF88B24744A6CB0886F4BD5B6 /* AudioRecorderManager.m */, + 92389350297983952D35B34535E9FC77 /* Pod */, + E81AF7D9DE4016395ACEDDA1E5D799C9 /* Support Files */, ); - name = CxxBridge; - path = React/CxxBridge; + name = RNAudio; + path = "../../node_modules/react-native-audio"; sourceTree = ""; }; - 5130734D2B970E2088F7E2550EFB190F /* jsi */ = { + 506C5E81A5C63F6D6B8305576B5C8173 /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - 697331A145A2D7B271EF0AF6035364AC /* decorator.h */, - 9513FFCA869AD68880C9933062162BE7 /* instrumentation.h */, - A47C0CBE5FA1A3C612E50398D72E3288 /* jsi.cpp */, - 8BD3AC16BF3F92264910DB70EF0406EE /* jsi.h */, - A4B5D99728B4D33D9FCDDC665DB25379 /* jsi-inl.h */, - 13CBC0BC2FB3CE717B2C0EAE3A88C1A0 /* JSIDynamic.cpp */, - B6577B973299B70BE40F64482567C803 /* JSIDynamic.h */, - 3AE900AA535F0A0D529C23A0FB77C1D0 /* jsilib.h */, - AD4EE6B665100A595F0DC9AF28ADE115 /* jsilib-posix.cpp */, - 04F043ADCBA901864BB2FAE209E915BC /* jsilib-windows.cpp */, - 2EF65FA367DB5F4C1958D5274B4EAB64 /* threadsafe.h */, + DE92F2943DFD9A02BBD45FECDDD74E13 /* BugsnagReactNative.h */, + 7B0146D2D9664F29180B202ADE2141F3 /* BugsnagReactNative.m */, + 192CBC4E5CF53D44E0A84816757D6725 /* Core */, + 3A5E9EB92AF439C32277527AA370E4C4 /* Pod */, + 59CC0C8284E75316D17C614A80B30801 /* Support Files */, + BB4A093505ED669D0E8B673D55323A46 /* vendor */, ); - name = jsi; - path = jsi; + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; + sourceTree = ""; + }; + 50CEB0C98FD167F49F670574D4F80155 /* storage */ = { + isa = PBXGroup; + children = ( + 6A95C65E7B11A9B5F40027478A2EA091 /* RNFirebaseStorage.h */, + 0A59F301DCC2311D365E74EEA05FBABF /* RNFirebaseStorage.m */, + ); + name = storage; + path = RNFirebase/storage; + sourceTree = ""; + }; + 50E9EA75A7B811F01F743AC4B43270CB /* Support Files */ = { + isa = PBXGroup; + children = ( + B929AB3C407B90BACE4B5420E0D21534 /* React-jsinspector.xcconfig */, + 6E91D161F0BA3532164FDDD5766C6B34 /* React-jsinspector-dummy.m */, + 74CC5AB120F9E34F953E72BAC94408AC /* React-jsinspector-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + sourceTree = ""; + }; + 50EA99FB92AE0BCA251CA09F56A594EF /* Pod */ = { + isa = PBXGroup; + children = ( + 6D6953CF358135AC262681EBAA3BDB8A /* KeyCommands.podspec */, + D5261E4979498B97B87787DD8FF80FF8 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 519EAB38AD0198ACC2FF9345124D9C18 /* Inspector */ = { + isa = PBXGroup; + children = ( + 4376097CE1A7C16E9D6C0633029DB2CC /* RCTInspector.h */, + EEEDC419A034A36ACF434DC59091C087 /* RCTInspector.mm */, + 77179EDD9CE141817B39B53F94D45C7A /* RCTInspectorPackagerConnection.h */, + A6CD8A31EAD691BECF392DE6526D8B16 /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = React/Inspector; + sourceTree = ""; + }; + 5220675971833FCB750DFB6BD46407B1 /* Pod */ = { + isa = PBXGroup; + children = ( + 7F3762D4D5CD700A3205D86AF7075773 /* EXAppLoaderProvider.podspec */, + ); + name = Pod; sourceTree = ""; }; 52F43ECD26A7C91B93A004BAF6FAA80B /* NSData+zlib */ = { @@ -8736,25 +8605,32 @@ name = "NSData+zlib"; sourceTree = ""; }; - 53EE14387551717C4A69D79729D5ADF7 /* event */ = { + 52FF1AAF01255F2CBB8837DE5E2419E6 /* Pod */ = { isa = PBXGroup; children = ( - 8ADD572631A373CB2207CC0B924D2E6F /* event.cpp */, - 9D2AE3583762C93008AC2DBF600FA03A /* event.h */, + 7BF0C84D55F735A309A6796C5036F66B /* FBReactNativeSpec.podspec */, ); - name = event; - path = yoga/event; + name = Pod; sourceTree = ""; }; - 54F616DD112705B2D565737FAB46F81B /* Support Files */ = { + 545F789467F83C5423E96549E59D05EB /* Pod */ = { isa = PBXGroup; children = ( - 7143F0C8CD1D20E78773B0216488F18D /* React-RCTAnimation.xcconfig */, - F9B0E187AE7B7F3A377AEDB612C6525A /* React-RCTAnimation-dummy.m */, - AFD64F773FE98BC3A3ADE46A8A9103FB /* React-RCTAnimation-prefix.pch */, + 5EF8BA089342CCEB075E7ACFAF247861 /* LICENSE */, + 987D864CC92723B2359BCEA82238031D /* react-native-jitsi-meet.podspec */, + F11C5D8B94CD0AD9E3AAEAED5662F469 /* README.md */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = Pod; + sourceTree = ""; + }; + 547A32EA6290CE06A658E0B9106FDAC8 /* Pod */ = { + isa = PBXGroup; + children = ( + 14B6196CF7E7333C779345E3D8AB0DB8 /* LICENSE */, + 46C1F617267D2EA2A1D6C2F63B41BD65 /* react-native-video.podspec */, + A34D7856C33ECA9A764E89C5B34ED5FD /* README.md */, + ); + name = Pod; sourceTree = ""; }; 55136C75EB4F5BD0AFD5E22CEAF26273 /* Support Files */ = { @@ -8768,22 +8644,15 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - 5531B78708217E9C42B3BE349FF2A5E1 /* Pod */ = { + 56151608E33FF7556216B5A92B4972BE /* Support Files */ = { isa = PBXGroup; children = ( - FF8601C5E3FB42A14A655AB71907929D /* React-RCTText.podspec */, + FEF047CCA856CD7D026EF5EBB71079CA /* RNBootSplash.xcconfig */, + 2DCDB7FF91ACEE4C175EC491C6ED0E1C /* RNBootSplash-dummy.m */, + 6D437D1D91521EF391DBC88F822D7B0D /* RNBootSplash-prefix.pch */, ); - name = Pod; - sourceTree = ""; - }; - 55D0203549318272E90FF88826213028 /* Pod */ = { - isa = PBXGroup; - children = ( - CE0FCE9C44F84A0134940CC28EBE8AAF /* LICENSE */, - BFEFE51A7E6B91C9E46778BE0E61BFDF /* README.md */, - 91E31D9255E2BCA4BBE69B0059BFF963 /* rn-extensions-share.podspec */, - ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = ""; }; 5647FAA622C078EF86A89F328A3BD7D3 /* SDWebImage */ = { @@ -8796,85 +8665,51 @@ path = SDWebImage; sourceTree = ""; }; - 56DF1E0035FC1E9E01841F2A264DF4FA /* UMViewManagerAdapter */ = { + 569CAAF3E5419A9E70B9DC9943F4D677 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - DBC55BDAFCF76EF408F711747E2104F6 /* UMViewManagerAdapter.h */, - 79617570F1EDFDB1750EBEF9D40FF152 /* UMViewManagerAdapter.m */, + 35D80F066681376DC133CD76AB2A21EB /* RCTBlobCollector.h */, + 4D8A8570768D18EC6AD9A98D3769B00F /* RCTBlobCollector.mm */, + 19F6FE449DB9762544352360A9B48419 /* RCTBlobManager.mm */, + ACCC460723898206A9DEFFCA2B534551 /* RCTFileReaderModule.m */, + 39C140100D92538FFD422850FA2B3419 /* Pod */, + 8DF5B14300924905847CAE5A7B992DDB /* Support Files */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 57AF347E6BB5F27B5C4F7CC790D9EEFC /* Reporting */ = { + 582368CADAB951BC63835D9D7C69000C /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - 22F19F746884EBA990A236492F1D08CB /* Filters */, + 4F9990659AA32C3B809F59BA64EFBB47 /* RCTLinkingManager.h */, ); - name = Reporting; - path = Reporting; + name = RCTLinkingHeaders; sourceTree = ""; }; - 57B54BDB245421E518DD332120D2251D /* EXPermissions */ = { + 58BAE5DDDF5C2801585D112D467FB66B /* UMCore */ = { isa = PBXGroup; children = ( - 98A80535764F86459CEDD667CCB4F197 /* EXAudioRecordingPermissionRequester.h */, - 9982F863CF3571B41EC3DB02755C53D4 /* EXAudioRecordingPermissionRequester.m */, - E68BE7F4B132FCD9FC730DDAE3630F8D /* EXCalendarRequester.h */, - 4AE285F585889CD45B47600280D33AB4 /* EXCalendarRequester.m */, - 1AB96A3C68259FF4D2301FB0F118B702 /* EXCameraPermissionRequester.h */, - 6454BB72AC441E1494905BF8E25039FD /* EXCameraPermissionRequester.m */, - F7C3364F0E0F6F42CB93E2B0560C2DA0 /* EXCameraRollRequester.h */, - 25BF331DB7CC77F578419968BD700F17 /* EXCameraRollRequester.m */, - 1AB78CEE69FD01B802877A116264D902 /* EXContactsRequester.h */, - 82A93793123AD90694C5D13F9796A9C9 /* EXContactsRequester.m */, - F269EA1A423BE65A1543239DB727E92D /* EXLocationRequester.h */, - 37033FA3AC8B8C8B77DDF486CC951EA6 /* EXLocationRequester.m */, - 58C6DDEA9DA8FAA71B8F5563B3C8BAE3 /* EXPermissions.h */, - 0260B1705B12BD97512D92AAB1D975A2 /* EXPermissions.m */, - 94074BB665964C130EF3AEAD5903C1F7 /* EXReactNativeUserNotificationCenterProxy.h */, - 065695C3888176DAC6E68FE097DC6565 /* EXReactNativeUserNotificationCenterProxy.m */, - EDDC8849FFF32858D86EF726C43EBADE /* EXRemindersRequester.h */, - 31EFC03F02EFC58D84B8AE95618C2233 /* EXRemindersRequester.m */, - AA9F3BA91EFD2DFD1E498DEC5DA20721 /* EXRemoteNotificationRequester.h */, - 6927644527C531D96A463FF647B863B0 /* EXRemoteNotificationRequester.m */, - D9170605CA60EF92BD30F13A4F040A04 /* EXSystemBrightnessRequester.h */, - A06C9573800BE82290BC622570CD2D16 /* EXSystemBrightnessRequester.m */, - A3CF70A53EF1E392D30C064F7E3F82BA /* EXUserNotificationRequester.h */, - 30DD51C39F8D20A1631E4174BC225270 /* EXUserNotificationRequester.m */, - 4F0FFB87B03C6CD9AF36CED6F066442F /* Pod */, - 791C9D9DAA1EAE57D8F3B2EB64613518 /* Support Files */, + 204028BFF03CEE94591E5D30DAD1F291 /* UMAppDelegateWrapper.h */, + C8CE94D59493536AF3CB0E93B9F4E55D /* UMAppDelegateWrapper.m */, + 757F0D30455E5095FA1113AEA1646E4D /* UMDefines.h */, + 831583B9B9FF6EEF6E65BC060213F4A6 /* UMExportedModule.h */, + ACA35723F300F3BB61F1EFECA1F9C1C9 /* UMExportedModule.m */, + 8F1EE2C6E1E03203FC6FDDEDD82CFB77 /* UMSingletonModule.h */, + 8A9758E0A04F5FDB62647A27C76C331E /* UMSingletonModule.m */, + 9F81DF2D006C52D3C759F0C2B994DB07 /* UMUtilities.h */, + 6231DFB28457E562F707F544065F7430 /* UMUtilities.m */, + E03FDADD8D087B539D2F8619A00F2DF6 /* UMViewManager.h */, + 38BDE49EBDF3B0498562F79B151051CB /* UMViewManager.m */, + 184F5111741E966BD8AEBF3DABD38B88 /* Pod */, + DBEC738EECC02D21F7960319BB60045B /* Protocols */, + E45BD582D7ED410BDC31768C659999CB /* Services */, + A63CCD465EA8AE08A2674E48F407F158 /* Support Files */, + 16F1B231E34648744E10298084E6B312 /* UMModuleRegistry */, + 0A96D850EEC40B3FDB333F5684448784 /* UMModuleRegistryProvider */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - 57CA39376C3D1DAD8E89C3F9E5F4201B /* Pod */ = { - isa = PBXGroup; - children = ( - 9E0EF2876C0D0B30FDA47BC4AFC00084 /* React.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 57CE431CB41261C7D19DE4E187BD9EDA /* Pod */ = { - isa = PBXGroup; - children = ( - 044B27E89443DDAC94ABA4E73C48B168 /* LICENSE */, - BBCAF914EB2DC456D8150A87B6FB5C97 /* README.md */, - 0A7BA20B217FAEA21777E7F248DA1F6D /* RNBootSplash.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 57E00A7B1961A7A0115F24D5EECFDEC9 /* KSCrash */ = { - isa = PBXGroup; - children = ( - 2CF102C4CE630F0D4E0B6D7C3A34F8CA /* Recording */, - 57AF347E6BB5F27B5C4F7CC790D9EEFC /* Reporting */, - ); - name = KSCrash; - path = KSCrash; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; 5900543A95485F383AA39FFDC83A331D /* Support Files */ = { @@ -8888,40 +8723,106 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - 592E5AE3C7A199890705A33C4DF23F55 /* Support Files */ = { + 598D183E6742DF321B955641935F1346 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - EDF366CD72859BE99653A7517F199B6D /* BugsnagReactNative.xcconfig */, - 55B2F2858776435BA97A8EB0ABD8287F /* BugsnagReactNative-dummy.m */, - 245A235B6534FDB96D4BB92202CD55D4 /* BugsnagReactNative-prefix.pch */, + 1DA3A6319D375F4D7519673B9CEE18A3 /* RCTActionSheetManager.m */, + D01A22F330DDBDA8AB77019ABC8D7433 /* Pod */, + E068543D468EB14DF02A179EC3571315 /* Support Files */, + ); + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + sourceTree = ""; + }; + 59A65425D4206BBADDB67D9CFDF0A616 /* Yoga */ = { + isa = PBXGroup; + children = ( + 69AA503C26BF95F78546E43BB10103F7 /* Bitfield.h */, + 1514FB448C3792F9B079996C9A026869 /* CompactValue.h */, + 953A33B5E32CC3880041741D2A8FA707 /* log.cpp */, + ACE70D1389E6F764B944D5A2B92BD6A5 /* log.h */, + 7DFB4980F144207DEE8438AEA10C2137 /* Utils.cpp */, + 055D6F3674AC43C692134055A0114233 /* Utils.h */, + DA0DE37FB10CB00B4D9968FF00394365 /* YGConfig.cpp */, + A0A3C365D6D9695020F22E89EE0829AE /* YGConfig.h */, + 2FB3372EB8247BC640B24FF491917B03 /* YGEnums.cpp */, + 9690640B113C26A03045E4735EAC445B /* YGEnums.h */, + 906BB38A481B01E252CEC5C4D3A5FDD6 /* YGFloatOptional.h */, + 3590D43479C716D7A9556447867485FF /* YGLayout.cpp */, + C16F9643A5F548F5343330F102BB2FCB /* YGLayout.h */, + 8DD664106AF32EEDF8E76346B113250C /* YGMacros.h */, + 48FBA35354D453E0846D12030AD72533 /* YGNode.cpp */, + D4FECA372334C3D52C8947F1B7BD3417 /* YGNode.h */, + 6F41530A1AEF5C778E22C8EE5E839813 /* YGNodePrint.cpp */, + AC8ADAD4814C3F1601DDF0ACD33789F6 /* YGNodePrint.h */, + 4FE8ECCF1A7DA6B23075F3372ABAC5A2 /* YGStyle.cpp */, + B7B9CE3358A1EB2B6ED1D52185B4EB1F /* YGStyle.h */, + D928C35584F765127D20446C78F11B68 /* YGValue.cpp */, + 912E9582888DE46FA14544290249F7BA /* YGValue.h */, + A1923765E1722B016062233F42B81720 /* Yoga.cpp */, + 7A096543D66724C493A712068089CA5C /* Yoga.h */, + 8B41D65D1A862187B442D7073FCE7DD1 /* Yoga-internal.h */, + CEC31E1C581AC5DFC3EA1D7BE9F0AA32 /* event */, + CDF2A90750537C68D0497696D0B47435 /* internal */, + 4B9A15D9C1C8FB0258DA4F49765624BE /* Pod */, + 9E1768CDF083B50F5B6B4A924ED23343 /* Support Files */, + ); + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + 59CC0C8284E75316D17C614A80B30801 /* Support Files */ = { + isa = PBXGroup; + children = ( + 33083449842A3D535CFD8872E4DD77F8 /* BugsnagReactNative.xcconfig */, + 6B10126DDF1E91DF886BCD3FF29934C2 /* BugsnagReactNative-dummy.m */, + 88AA7C3DD708327041BB54B339F6D5C8 /* BugsnagReactNative-prefix.pch */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; - 59F3361EA6F06B8EF7426FBF06B847F9 /* SurfaceHostingView */ = { + 5A226242CEB90B67A60A44F53DE501CC /* Pod */ = { isa = PBXGroup; children = ( - 4F7F3D2B934D43010E5A45CCE146A345 /* RCTSurfaceHostingProxyRootView.h */, - 0B3ABC7A04102C3F682D13E316B99260 /* RCTSurfaceHostingProxyRootView.mm */, - 3FEE8F6E31EAE99F618E0E353B1E2DBF /* RCTSurfaceHostingView.h */, - 678B533B72684A0D8700B5E2E66C5D4C /* RCTSurfaceHostingView.mm */, - F4BDA12CC1F9BEBEA8803C87DD3AB8EE /* RCTSurfaceSizeMeasureMode.h */, - 02B42F19719F9070E89F655242EBF98B /* RCTSurfaceSizeMeasureMode.mm */, + 8A026745978587166BEFB071A294C1D9 /* UMBarCodeScannerInterface.podspec */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = Pod; sourceTree = ""; }; - 5AB8423AACFC92CBC0CB9AD767A57AB4 /* React-RCTSettings */ = { + 5A22B1D59EDD8539B5273B612AF432DC /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - 2263F17BAE0AB4165F7B27DB8998D0EB /* RCTSettingsManager.m */, - 9E96F67867DFE54001375286DBC2FD95 /* Pod */, - 1EAFB3C996B448BC9E033F79DA868012 /* Support Files */, + BFC8572BF2E16B04BA4F3A190A018428 /* RCTAnimatedImage.h */, + AF99F8B9785ABF57CC3B10E0C100B565 /* RCTGIFImageDecoder.h */, + DB8E6E524E93AA1E17AC170DA85BCC3A /* RCTImageBlurUtils.h */, + 7FC8394AB77ADDA84BEC1B75204CA938 /* RCTImageCache.h */, + A12A109DD4E22A0DBF6FF579E66843B0 /* RCTImageDataDecoder.h */, + E104A26AD02F9440154BF5C9E00FC5F6 /* RCTImageLoaderProtocol.h */, + C71CC06056DF5AB069ED78C35A7CFA26 /* RCTImageShadowView.h */, + 00D9BBF8F7A5ABBA78708605ED38FDC3 /* RCTImageURLLoader.h */, + A1841F077B29D6A80EEDBEA24DB2C322 /* RCTImageUtils.h */, + 22EE5AF94F841B64FF2A89BC1DEB0721 /* RCTImageView.h */, + E933BD1ADE84DDD2ED8C4B6FE7EDC96C /* RCTImageViewManager.h */, + B71F97050C5447905B69A1EA525371DD /* RCTLocalAssetImageLoader.h */, + 5070D1CC29D0176C8834ACAF69563FFF /* RCTResizeMode.h */, + CE6FBF657AFCBC0CE992F27A287E263C /* RCTUIImageViewAnimated.h */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = RCTImageHeaders; + sourceTree = ""; + }; + 5A9CC00E0012D90CA3C524D17E6F483D /* EXConstants */ = { + isa = PBXGroup; + children = ( + D42B454EEB792E0824116D8112F0E504 /* EXConstants.h */, + 6CE53DB147D7CE3A21529D14E09DBFBC /* EXConstants.m */, + C27DEF5F9FE096244CC1CE7B2955404E /* EXConstantsService.h */, + 3B7D656B7E53C426674B3FA4433A48F4 /* EXConstantsService.m */, + 4E4B09DC1E55FBC79FFCE4EE91FDE31C /* Pod */, + 1506569288EAA9784AECA68608777DEF /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; 5AC8DD3A22DE15FED6107CBAF45D37A2 /* FirebaseCore */ = { @@ -8971,13 +8872,82 @@ path = FirebaseCore; sourceTree = ""; }; - 5BC84B20A147F43812CDB5B6EB0DEF95 /* DevSupport */ = { + 5B1620C7655D06B68305718F7E49F05F /* Development Pods */ = { isa = PBXGroup; children = ( - 40C89F6D1E92923AAF9C432C853DEDDE /* DevSupport */, - F67177150FB7594317F1C8FCEE31A4E7 /* Inspector */, + 506C5E81A5C63F6D6B8305576B5C8173 /* BugsnagReactNative */, + A2BF728FF26677BBC7EB0793961CDAD3 /* EXAppLoaderProvider */, + 87539F95CABB9949D19B0D7455021360 /* EXAV */, + 5A9CC00E0012D90CA3C524D17E6F483D /* EXConstants */, + A34AD49AA8F202369E4D92B3CAEB6B4C /* EXFileSystem */, + 0FC8B46C4F35A358F742F3A9808D2159 /* EXHaptics */, + E12A3440EBD5075259F87B014ED7EA50 /* EXPermissions */, + A361BC9D1A4E3D755933D2A8C0112B3B /* EXWebBrowser */, + EB7830C10F2B6F429566321E5411CCC2 /* FBLazyVector */, + AAEBF56580F3C9F02D78FAD116CD825F /* FBReactNativeSpec */, + 471D0EFFAE9599E4C80DB04C2CB04FCB /* KeyCommands */, + 11073F82ED4A02E7288B962B5E18A2D8 /* RCTRequired */, + B9638BBE4456C200CCE55463C8709079 /* RCTTypeSafety */, + 4613BB9BCD9F3277483ABE1F4B724EB7 /* React */, + 1541D1B3DB1EA92F27A54682420584E1 /* React-Core */, + 7C4F4CC614025632F5EC16AB95423698 /* React-CoreModules */, + 423D07120F4F8CDCAD208CFC4BCA5B2E /* React-cxxreact */, + 64BD27210620F7B398E951FDF7ED4EF3 /* React-jsi */, + 713CF8B5361AB5911D4627D1D8543DF1 /* React-jsiexecutor */, + FA06029B50ADF40D556CDB3E6E523B94 /* React-jsinspector */, + B97B3E42D3C6017CBE23D24131ACC397 /* react-native-appearance */, + 7ADF3B70FEA5EAE88FDF808BF368CA4D /* react-native-background-timer */, + 643292FC9B60A49EC6660EA0026B28B4 /* react-native-cameraroll */, + 25363F2F7014172A6F5E0D276D7112A0 /* react-native-document-picker */, + A06D7F7F666DD9E1E88EEFD88E729F03 /* react-native-jitsi-meet */, + BECC0D98EABF990ACD682B871E95019E /* react-native-keyboard-tracking-view */, + 3185EBF90C3701A86F03C28066EC1880 /* react-native-notifications */, + BCF6ABFDE29B0ABA8AD6021904F3105C /* react-native-orientation-locker */, + 6044ED769FD48502F0A9263A6B59817B /* react-native-slider */, + 97573B2B175A3B0CE4E7A69A7016C0C3 /* react-native-video */, + F3CAF142A2F6B10909EED3343B9FF4C6 /* react-native-webview */, + 598D183E6742DF321B955641935F1346 /* React-RCTActionSheet */, + B85EE38012D7ED8FF280C3CF51D4EA26 /* React-RCTAnimation */, + 569CAAF3E5419A9E70B9DC9943F4D677 /* React-RCTBlob */, + 70AF65661FD167457B786597A0D006FD /* React-RCTImage */, + 21F8C167E4147074DC7394434512659F /* React-RCTLinking */, + A4DCBE6B634782134654E5CFF87B1703 /* React-RCTNetwork */, + F2FD01AAB7CB67814252C9FA9FAEB1F5 /* React-RCTSettings */, + FDCDFD15E0E55A11B5B46875F275B9AD /* React-RCTText */, + 208378A2DDEA24BC8304F54E6C2C976F /* React-RCTVibration */, + 221C064D25676DB553177E6C33D4DA6E /* ReactCommon */, + E2EFE7553546470387265E4B358849A9 /* ReactNativeART */, + 1600E2C52A67D7AE904F4470B2042567 /* rn-extensions-share */, + CF1924AEBEC8AB75C152C1CE2E778A50 /* rn-fetch-blob */, + 4F088053E1A5DACA2CD2CEB8EAB715B0 /* RNAudio */, + FEBA5CACAC6487839B5FC2B44320F93C /* RNBootSplash */, + F7C7166FF5CAB4846BC9291C6EA0B00A /* RNDateTimePicker */, + 96044D29C99F780724EDE717767873BE /* RNDeviceInfo */, + B29353F9A3E5F6C66A586DB2290FAC84 /* RNFastImage */, + 22878C41547D05A39E1BF2ACF019D20D /* RNFirebase */, + 4460F05AFB9F494AB1C677BF90562D11 /* RNGestureHandler */, + F1A57550C5453A8DA356A8B90D747A3C /* RNImageCropPicker */, + EFAF538BA0EE9D5E25FB39B6EABC8883 /* RNLocalize */, + C8E049F9E469297DA6F954975A6D7509 /* RNReanimated */, + AA8E90B37E383107D69F1B523B4A265F /* RNRootView */, + 2B189CC54D595DCA532ABC3E0483C9D7 /* RNScreens */, + C99C2E3FA044340CEDBD17A3AD8D547B /* RNUserDefaults */, + A6245E4B34499F2C0151CB5865B2A3B2 /* RNVectorIcons */, + B8AC8B0C904E9C46DA6D53FCE3F696CB /* UMBarCodeScannerInterface */, + 74E2BA18C51A75E311D9F24506E7CE08 /* UMCameraInterface */, + C4C680B6620077A69F3A9FA9B4724F78 /* UMConstantsInterface */, + 58BAE5DDDF5C2801585D112D467FB66B /* UMCore */, + 017FF0D48398809C9481A515C3AF3669 /* UMFaceDetectorInterface */, + EE8F9650481736DB306924C006565936 /* UMFileSystemInterface */, + 451D9A0828E63288E42FBF2B974F1AD9 /* UMFontInterface */, + 27D6FFE7CBC35F67B1F74FE1A546927A /* UMImageLoaderInterface */, + B46E9D9F671555A2B0569513F85B8E58 /* UMPermissionsInterface */, + 3E4499991A0A769B85B352563C100875 /* UMReactNativeAdapter */, + 90735FA5CDEC56104FB6959B2ACBC245 /* UMSensorsInterface */, + 253171AC11D15B0E462A9ED2DC8DA788 /* UMTaskManagerInterface */, + 59A65425D4206BBADDB67D9CFDF0A616 /* Yoga */, ); - name = DevSupport; + name = "Development Pods"; sourceTree = ""; }; 5BD2FD9E5F338A311C76828869F32E72 /* Support Files */ = { @@ -8989,51 +8959,24 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - 5BF29734ACC36944167E843E796C2D80 /* Pod */ = { + 5C4CDD4D22AD876B87D628E9C64EAF41 /* Pod */ = { isa = PBXGroup; children = ( - C9AFBB9FA5EF794E37A4AE54452BCCF7 /* android_date.png */, - 7E31CC084F1E85BF8535EB68B691BC03 /* android_time.png */, - D16147733BCE6219197491A1619D4057 /* ios_date.png */, - DDAA8B9633804B8827E8837B91A28A1D /* ios_time.png */, - 128DE5F176CD188ADAB62F25643F2795 /* LICENSE.md */, - 364E6BE95C52B8F35A7E3803788CEBDB /* README.md */, - B7E6A981F9F4AE159DBB3DAD00EB4403 /* RNDateTimePicker.podspec */, + AB7703776FF36261DE9FE1C93A324AF3 /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; - 5CA86C622EA350271608F251A866DEE0 /* Support Files */ = { + 5CB7B6F39944A53ED8CBBD4361E7670D /* Text */ = { isa = PBXGroup; children = ( - 92F7979B6BC29ED6E6B66B0678441FAA /* react-native-video.xcconfig */, - F79445FDFB8F1C28B17B142380CA2575 /* react-native-video-dummy.m */, - 9BCDDAA6FF316744312D6F154DC717D3 /* react-native-video-prefix.pch */, + CD6BD37D56DF74D3FE593DA2973E4095 /* NSTextStorage+FontScaling.h */, + D73F0E04F999B91AC0744CA12FC382C9 /* RCTTextShadowView.h */, + 4C54199B51007F1E812208D8DE3387CD /* RCTTextView.h */, + E88934084F444413DF57BC472BDC278A /* RCTTextViewManager.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-video"; - sourceTree = ""; - }; - 5CBB222EFF0034C859F7AD2781CA6B17 /* UMPermissionsInterface */ = { - isa = PBXGroup; - children = ( - 288BBAC2927744457CBE94EB3C4DD3F2 /* UMPermissionsInterface.h */, - CFD5AEA230ECA97BDD5DFA2CB6101BD2 /* UMUserNotificationCenterProxyInterface.h */, - DD9EFA1FFBF56A24EE4491C184A2E00B /* Pod */, - 76DB7F38F1206B67FB6D39454531F88A /* Support Files */, - ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; - sourceTree = ""; - }; - 5D11A8B46FE1AAE9F9768C889CEEA7F3 /* notifications */ = { - isa = PBXGroup; - children = ( - 978DACD044797636B6F45E9EE5148512 /* RNFirebaseNotifications.h */, - CE0615B53F7227CA93A036AB3700D8B3 /* RNFirebaseNotifications.m */, - ); - name = notifications; - path = RNFirebase/notifications; + name = Text; + path = Libraries/Text/Text; sourceTree = ""; }; 5D9EC42F0961A55DCDCD0744E2F448CB /* Frameworks */ = { @@ -9044,81 +8987,103 @@ name = Frameworks; sourceTree = ""; }; - 5E3DFB7FBE620C2F5AFDD1DDFFB7A356 /* TextInput */ = { + 5F31670191EFD82BC8038F8FAAC47E82 /* Source */ = { isa = PBXGroup; children = ( - C6B5FE04EF96F3DBDA6FA2EACB05DA49 /* RCTBackedTextInputDelegate.h */, - 1B0BFCA3863288C619E65898BB7D3E5D /* RCTBackedTextInputDelegateAdapter.h */, - 86EC7D9587DCAB7397F8A9650E3DC500 /* RCTBackedTextInputViewProtocol.h */, - A5CAFA657156AFE1D21437C7A8D7F6D5 /* RCTBaseTextInputShadowView.h */, - 6E6F08FB7B0D37C62C09B09E8F8FD092 /* RCTBaseTextInputView.h */, - 0B06766EBC90E7AB98A11548494111AA /* RCTBaseTextInputViewManager.h */, - F983C121F9E77FD46B5A5C230669F6BB /* RCTInputAccessoryShadowView.h */, - A4F923DC4CEBD2EB6AAEA9D65B8BE85B /* RCTInputAccessoryView.h */, - 9CEEB6FAF21D0BA92AC0A04AE4DDD428 /* RCTInputAccessoryViewContent.h */, - 170794365051DE61C2F27CA071918980 /* RCTInputAccessoryViewManager.h */, - 9F2C6B4E466B4DA131D5D01DABB9804E /* RCTTextSelection.h */, - 7EA92BBC50D8EC11A66CEBB9AF920995 /* Multiline */, - 4824A569058D5A74736A894538C55C93 /* Singleline */, + EDC9484B688043BA42E6BD03A9BDA17E /* BSG_KSCrashReportWriter.h */, + 66A5E819E3CFEAF51E6D807ED7FE5A93 /* BSGConnectivity.h */, + ADBF60C609CBA63C10B9AD7A1B763FDF /* BSGConnectivity.m */, + C529C576975DCCF37B748202E826D322 /* BSGOutOfMemoryWatchdog.h */, + C89BB9FBFD53EF25A96FB696D4F46934 /* BSGOutOfMemoryWatchdog.m */, + 2B155B4CBA225A01329F11933E3BACFF /* BSGSerialization.h */, + CB47469B34FDDF6CADEFA698E652904B /* BSGSerialization.m */, + 5EED0C203780706D41F1A222DBAC2AD9 /* Bugsnag.h */, + 4C1BF582D5CF57769176D237A441CF48 /* Bugsnag.m */, + 8F3920FF4039951E358CAC46318B161D /* BugsnagApiClient.h */, + CDB0A7EF39CCD02905815A0CC25C4DE9 /* BugsnagApiClient.m */, + F87780C5D21584A689500D4650F93D40 /* BugsnagBreadcrumb.h */, + C955FB070DCDF20A68E7E994CD2E2C37 /* BugsnagBreadcrumb.m */, + 48B24A4F04BD786E652F6B1B34DE094A /* BugsnagCollections.h */, + 92B70AD79CEF216119DCEF93A6305A36 /* BugsnagCollections.m */, + 9003C0E642AC5527E363092F6A689EC5 /* BugsnagConfiguration.h */, + 5E4BB0067AAC10BE3FF096C81F729231 /* BugsnagConfiguration.m */, + 91E1C0D9D1CB06F3C953E8596A22B4DC /* BugsnagCrashReport.h */, + 453BFBFF505B9D71BDE641972519C1CD /* BugsnagCrashReport.m */, + 96480671261E213E5388603EC64A5CC3 /* BugsnagCrashSentry.h */, + C31B55221F2B6E3FB40232421D286F52 /* BugsnagCrashSentry.m */, + 46BA8FC4DB05E336592DAE5481E5D58A /* BugsnagErrorReportApiClient.h */, + 4F07004F4E99EC50DDC8128E5718F476 /* BugsnagErrorReportApiClient.m */, + 2BFDE11CC8A7D89ECAED75A3463CC42A /* BugsnagFileStore.h */, + 2C053CC04ECDCD781977B106A7432143 /* BugsnagFileStore.m */, + 43E90BFCAC2CCA2B39AFA188E4C7C2A8 /* BugsnagHandledState.h */, + 2AA46780CEC70D7786498183F37B8B5E /* BugsnagHandledState.m */, + D2697AD83F5B73AB4C4BC8973A1EA808 /* BugsnagKeys.h */, + FEDEB86AA4CBF37EB549FD6D2B73580C /* BugsnagKSCrashSysInfoParser.h */, + D219E66FF0B33F4DCD86F88A47C6DDD3 /* BugsnagKSCrashSysInfoParser.m */, + 1BBB39B796A50E11C5772196E909F6F5 /* BugsnagLogger.h */, + 2DE22AECE308A60E233BECAD44F36439 /* BugsnagMetaData.h */, + 34015CA38BB5BA35EFAF66406D6EB08E /* BugsnagMetaData.m */, + EF7E231EA5F75269E1782545AFEF5DAE /* BugsnagNotifier.h */, + FCF92E92E2BF7480E08D527E3B6B32B0 /* BugsnagNotifier.m */, + 33C3959E5BA1CD9C1C26809B1E202225 /* BugsnagSession.h */, + 9A231ACF11EBA9485481AB9D965D579B /* BugsnagSession.m */, + 53B83BCA17D88BD5FFDB71FFB4F42D3B /* BugsnagSessionFileStore.h */, + 593D9447ABE229F0F932A3C3E67CA0B5 /* BugsnagSessionFileStore.m */, + E6081276F8812A230AD5917A50AE93FA /* BugsnagSessionTracker.h */, + E3C3F88398F08E7A0BB3F689B3A6315E /* BugsnagSessionTracker.m */, + 3CB3D8D0C1C5A6A650DAE7E59E04DEDC /* BugsnagSessionTrackingApiClient.h */, + 3E3926FB7983526101E6FA1CAE59830C /* BugsnagSessionTrackingApiClient.m */, + 9896F4C12D99D9D3F35B8D83DEA54726 /* BugsnagSessionTrackingPayload.h */, + 9966DE0E10ABF4993F33D5ED0512725A /* BugsnagSessionTrackingPayload.m */, + 8C7A64D97AAB42E8C3FFE71EDD468CA4 /* BugsnagSink.h */, + 75821AEFB274CE7EE561D7735AD191CE /* BugsnagSink.m */, + 7F024B7B00960653B25CA52215FD5491 /* BugsnagUser.h */, + D52A9FE57B8A72DAEA47F53A8FA6159A /* BugsnagUser.m */, + 2C7AA6A16D7843F9B9969258D09BDFD6 /* Private.h */, + 1B178D3F3A5A6980FD185EC8644991E4 /* KSCrash */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = Source; + path = Source; sourceTree = ""; }; - 624F1172FAFC23FE46520AF51847FF2A /* Pod */ = { + 6044ED769FD48502F0A9263A6B59817B /* react-native-slider */ = { isa = PBXGroup; children = ( - 5ED2602F1EF06CF5A9D27031D2DD580A /* React-RCTImage.podspec */, + 5F6F32C376A26E04D4D608A0EF649DB1 /* RNCSlider.h */, + 80765060C6525FBF1EED7CA98F21F067 /* RNCSlider.m */, + A5D09A138AD3EBED1B44789D6A93DCDE /* RNCSliderManager.h */, + A4BF94965D3CF5366FE94F4CFDA5E147 /* RNCSliderManager.m */, + E0F8B966FCFC7F59BD9575B2A8F9F982 /* Pod */, + 3FA208D3EFCB7783A4EA313ACE2DD37F /* Support Files */, ); - name = Pod; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; sourceTree = ""; }; - 6326917F0F601EB34EF3343C96151EED /* jscallinvoker */ = { + 630B077C2EDBE671957C71681DAF7911 /* SafeAreaView */ = { isa = PBXGroup; children = ( - 5D376DCB0CBDF7412C0B00C8968B66E3 /* BridgeJSCallInvoker.cpp */, - 44AB2B396BB3B4317F6BDD93D2B92941 /* BridgeJSCallInvoker.h */, - F18D82D105EFEAF96ABEC19B66F0AD0E /* JSCallInvoker.h */, + 53927500D9DC1655D81F0333D4DCE74A /* RCTSafeAreaShadowView.h */, + 449960A6C936728969A3FAC54D3AE584 /* RCTSafeAreaShadowView.m */, + 2C9AE40190AB3EBC24D73C2F8717CA8C /* RCTSafeAreaView.h */, + 62B90B40E38C4E29C3373CDC938D0309 /* RCTSafeAreaView.m */, + E9D46C93427AA896BB7DD3EA1E842373 /* RCTSafeAreaViewLocalData.h */, + C66CDD18D336271F57E64297A9DE5943 /* RCTSafeAreaViewLocalData.m */, + C2B5D1ABE022EB310ED1302019A45B5D /* RCTSafeAreaViewManager.h */, + F351B21064CDAC40D1819490D7506A29 /* RCTSafeAreaViewManager.m */, ); - name = jscallinvoker; + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; - 6333BC07A24B777CCDFD15F4BCE5E2B7 /* Support Files */ = { + 6315F889EC93AA1D3D55C665DF9A784C /* perf */ = { isa = PBXGroup; children = ( - CD3B18274C7390B7F392369B851990AD /* RCTRequired.xcconfig */, + 2DE69644D073CA86DB782623084C070F /* RNFirebasePerformance.h */, + 83DAE10D283CF1B5841474AA89EAD9BD /* RNFirebasePerformance.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; - sourceTree = ""; - }; - 6334F61C04B2AB0248EA18B64C4AC386 /* Pod */ = { - isa = PBXGroup; - children = ( - 9FA59FAD1B783B1C460FCB7A1D4C9E6F /* EXConstants.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 63BF89930BB108CFD42EA094DFB3033B /* FBLazyVector */ = { - isa = PBXGroup; - children = ( - D6B419897B04EAAC0A2AB67C32CA7463 /* FBLazyIterator.h */, - A891980393FA249092FE7CE1595D6700 /* FBLazyVector.h */, - 947B6BBD5A9067BE629AB6524FAA116B /* Pod */, - 63E7C458500344AA5010CC5728559E3D /* Support Files */, - ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; - sourceTree = ""; - }; - 63E7C458500344AA5010CC5728559E3D /* Support Files */ = { - isa = PBXGroup; - children = ( - 441A7D7E0BA21052E87E4AE003FC4562 /* FBLazyVector.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + name = perf; + path = RNFirebase/perf; sourceTree = ""; }; 64262144F4E5F4033E4F0A0B9609FED0 /* Support Files */ = { @@ -9130,6 +9095,20 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; + 643292FC9B60A49EC6660EA0026B28B4 /* react-native-cameraroll */ = { + isa = PBXGroup; + children = ( + 4D065F44C3FCA0A13F1C0E8FA5FBDB71 /* RNCAssetsLibraryRequestHandler.h */, + 521C88E2759E9B2855F905651137C3C6 /* RNCAssetsLibraryRequestHandler.m */, + 902AE98327A861832B4BA137480FA0F4 /* RNCCameraRollManager.h */, + FDAAA44D197DF276FDF2ABF423F2849B /* RNCCameraRollManager.m */, + B9F8EF71B96AF2BF3AD9DCCBFB332590 /* Pod */, + 968A2ACB1E413B2C72CA3CD6F1253159 /* Support Files */, + ); + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; + sourceTree = ""; + }; 6460E7B3271EEC81C32880A1A5991660 /* libwebp */ = { isa = PBXGroup; children = ( @@ -9142,73 +9121,94 @@ path = libwebp; sourceTree = ""; }; - 649D8C29B884773C1E1BB80BA5DA15D2 /* Core */ = { + 64BD27210620F7B398E951FDF7ED4EF3 /* React-jsi */ = { isa = PBXGroup; children = ( + 79B54A87EB90E5D5FCD13D86CF79D24A /* JSCRuntime.cpp */, + 2F3E17E0CCDE635FF68B7283FD6BAA75 /* JSCRuntime.h */, + 9E3E9D043406A1EA0416CAB0C14A9602 /* jsi */, + E290A14C6F12405038BCA189E1A50388 /* Pod */, + 4D016C00E231FA43BDE7BB6533F8FE05 /* Support Files */, ); - name = Core; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; - 64E7BAC00FD96ACE5F86F0526A43B115 /* UMFontInterface */ = { + 64EF8CE4CC19D2846861EB59274D0892 /* Pod */ = { isa = PBXGroup; children = ( - BF115FF8ADFE0DB9FE090BF6D8064175 /* UMFontManagerInterface.h */, - 82F6724D9AC88FEFE6BE7EA4E1AAD50B /* UMFontProcessorInterface.h */, - 87DACA19F417B941639C1163C588AC87 /* UMFontScalerInterface.h */, - E884225A748A58F5B833530DFC1CE0A8 /* UMFontScalersManagerInterface.h */, - 8EEC6EA583252762A5907791D3E2026C /* Pod */, - D844239DBD039D735B3760F74E38E08F /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; - sourceTree = ""; - }; - 64FFB4BA0280A74B10F16A2F0D7C45E6 /* Pod */ = { - isa = PBXGroup; - children = ( - D13E6CA127225217B17223047126DCF0 /* LICENSE */, - 8C7F420DABD8668C6B606A6CE563F5DA /* README.md */, - F5FA67FB2C61AF1312DC257FD86270E5 /* RNScreens.podspec */, + 862AA227137ADE78547514A57FA6B4D7 /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; }; - 66753F01ECABD89ACFBED16354687E0F /* storage */ = { + 683B6B8F928F5F936E48AA09BA73543C /* Nodes */ = { isa = PBXGroup; children = ( - D3CEBF185736931401D88D86C390B09E /* RNFirebaseStorage.h */, - B9D904F1C8064C21F44FCF652E65AAA8 /* RNFirebaseStorage.m */, + B13B1365EFD333ED252C39A303169F8D /* RCTAdditionAnimatedNode.m */, + B08911BD2433DDBEA93304013A8022AE /* RCTAnimatedNode.m */, + 83B6C0233215E1171F424FA442B1C37C /* RCTDiffClampAnimatedNode.m */, + 18F40101D1628C0185CC6D5FA7384BEB /* RCTDivisionAnimatedNode.m */, + C93EC000089594FF099C665C0CD5D1B1 /* RCTInterpolationAnimatedNode.m */, + DB80D7BB15CD01DAEFB5F0208B83809E /* RCTModuloAnimatedNode.m */, + 564C16A2CA784571D3210C4B095C2683 /* RCTMultiplicationAnimatedNode.m */, + 0F8181461CC2DF673E9BDE56D1819240 /* RCTPropsAnimatedNode.m */, + 1DA7F8DC9E7232AE33A3B2AEC203F95A /* RCTStyleAnimatedNode.m */, + E0979954FA91BF2CF3A2389DE8400967 /* RCTSubtractionAnimatedNode.m */, + 92620368652A910DC0D6564AB68741B6 /* RCTTrackingAnimatedNode.m */, + 6CC2B03F77FB7F47BA4D5716181490FC /* RCTTransformAnimatedNode.m */, + 222BB3AB878D6D9C701CF7B0DF973ED8 /* RCTValueAnimatedNode.m */, ); - name = storage; - path = RNFirebase/storage; + name = Nodes; + path = Nodes; sourceTree = ""; }; - 66C91488E43BC5C77B1FA962169D5A3A /* RCTVibrationHeaders */ = { + 684239CAEA64D3CB6D399BA0165EAA36 /* Pod */ = { isa = PBXGroup; children = ( - BDCD5401FA368574693A20794B33DA3F /* RCTVibration.h */, - ); - name = RCTVibrationHeaders; - sourceTree = ""; - }; - 6797B88621B54E4938A77617F64CE8E4 /* Pod */ = { - isa = PBXGroup; - children = ( - 349385909EB01687258684FD4D22D127 /* LICENSE */, - 88B17503DDAC3927A50AD0B23A8DD40F /* react-native-keyboard-input.podspec */, - E33C46C6703349E1B249516B38ABD63C /* README.md */, + 43B50A48787EFE739696CE3942E1FEF6 /* React-jsinspector.podspec */, ); name = Pod; sourceTree = ""; }; - 6AECC41E74DBEEC65BE1FAEB518A5FC9 /* functions */ = { + 6A0DA87BC28CD0B6157283C26879B064 /* DevSupport */ = { isa = PBXGroup; children = ( - 01FD177916C7B57614C5F4BEA61F8CE9 /* RNFirebaseFunctions.h */, - C4D27DC1954AA7BF4D04B07CAA3A188F /* RNFirebaseFunctions.m */, + AD3FBDF55D00D79D9DBDF0808838A45E /* RCTDevLoadingView.h */, + 216893CFBF0D3469A9E59DD22589ECA6 /* RCTDevLoadingView.m */, + DB6BC54EC1F7EAAF55F5D4334D82B7B1 /* RCTDevMenu.h */, + 24E4C2778508D437130213216EDFBCAE /* RCTDevMenu.m */, + 228BC5BCE6BEC2ACC9A23542C259CF7F /* RCTInspectorDevServerHelper.h */, + CFB1F7C8CBE3A90D885A2D9F791D56A9 /* RCTInspectorDevServerHelper.mm */, + 4D8DE40890B03993214743DE35B6BD58 /* RCTPackagerClient.h */, + BC40DBD594869BA9260E1C5449E892EC /* RCTPackagerClient.m */, + 523AC19F6A6A3FAA6B9C8468EED05F1A /* RCTPackagerConnection.h */, + 850BE6DDDF399BFA44D2506B60C6E1D8 /* RCTPackagerConnection.mm */, ); - name = functions; - path = RNFirebase/functions; + name = DevSupport; + path = React/DevSupport; + sourceTree = ""; + }; + 6A2669798997CB60BEDFF14FAC4E1813 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5874B2F6DA9A577BFC6A5D16E5A4CAB4 /* FBLazyVector.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + sourceTree = ""; + }; + 6B04B07500CF431552E02B82CAE60119 /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + 089F1F40063F07FE13D63877ABB48BEA /* CoreModulesPlugins.h */, + DC42B53E95212ECB870C1AFD0A290117 /* RCTExceptionsManager.h */, + 481B13E2DFA8CE66FC4D3575DC863D3D /* RCTImageEditingManager.h */, + 3B97FDE91A40943543AD4C4635C7A3C3 /* RCTImageLoader.h */, + 1CAA09D43AF1B4C9D679CC18454CE6CB /* RCTImageStoreManager.h */, + 3A0CC1E09FDEEDB50EA52B13CB949F5E /* RCTPlatform.h */, + ); + name = CoreModulesHeaders; sourceTree = ""; }; 6B194D56D85D3315180273BBBCA6F374 /* Core */ = { @@ -9335,20 +9335,43 @@ name = Core; sourceTree = ""; }; - 6C4AE4ECD10D124D99520C22026D0E50 /* Pod */ = { + 6B2A4CC8C4B066F74ED4D0B2F3A2A675 /* Support Files */ = { isa = PBXGroup; children = ( - 40FB509BD16F952D8AB9647DE0C7E000 /* React-jsinspector.podspec */, + EEDD3484BBBBBC29B4DF89842114A0CD /* React-cxxreact.xcconfig */, + 188B99432FF8F2E8F4F893A9C38BCAA0 /* React-cxxreact-dummy.m */, + E25F201B7879112676082158C0A646BC /* React-cxxreact-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - 6D794FCD258DA83D2D406AE3CEC9B23B /* Pod */ = { + 6CA79A5881796A2CA98A48B049516F72 /* ViewManagers */ = { isa = PBXGroup; children = ( - C1481AC3372BA057871887B7964B537A /* LICENSE */, - F9CB16021EA923F80F4E44BCBDD21E82 /* react-native-webview.podspec */, - 22D87ACD98A2F3752AA6A407B7C2F789 /* README.md */, + D9D7051E2FA1D497B53CFD225B3529F4 /* ARTGroupManager.h */, + 1D0911296088AE811974048D99C4DE46 /* ARTGroupManager.m */, + 7919F19F0C6DB06ED41EBF1BAF2F55DD /* ARTNodeManager.h */, + 2F89729CA148D97F54A212DF19E375D3 /* ARTNodeManager.m */, + 36D528F38BAA0FDC768332E41BF77B55 /* ARTRenderableManager.h */, + ED76E274BC8A26B2EA07D940C8625E4D /* ARTRenderableManager.m */, + BFAF164315614188720AF2FD4A9D2270 /* ARTShapeManager.h */, + 1130F68B29467DE52EC99D8CCF2EF03C /* ARTShapeManager.m */, + C60BF5F47430ABBD838F517D9800348A /* ARTSurfaceViewManager.h */, + 665CD2C5AC1F6E6C2D0181620B03609F /* ARTSurfaceViewManager.m */, + CBC87DE5A96C161413FB1A21675879EC /* ARTTextManager.h */, + 1291FC965C192E24A543F85F6E15968E /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; + sourceTree = ""; + }; + 6D2CF932B9861AE12D8B61B8542B6A99 /* Pod */ = { + isa = PBXGroup; + children = ( + E3C97F5CD527CBA7E55B82546040D2D1 /* LICENSE */, + 92A960A63C8737417AC219B94505FE47 /* README.md */, + 84C924EE63B9DE2BD9995FE8E11E7CAF /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; @@ -9360,59 +9383,20 @@ name = decode; sourceTree = ""; }; - 6E59B6B2491036805A97C5720192EB1C /* ViewManagers */ = { + 6F205674DB7D2A9CC757CECECEACDFEF /* Pod */ = { isa = PBXGroup; children = ( - BCC8958D94FEB92227099ACBE9C9FB36 /* ARTGroupManager.h */, - 57264E8B1036FFCCC26FD7A98BC652C4 /* ARTGroupManager.m */, - 26657F01A0E5510FEABAEBCE1DE12D1E /* ARTNodeManager.h */, - 10F3C58AADAD3BF820F4B6EA52544515 /* ARTNodeManager.m */, - 8B74BF4987350560342F9A6664F21F93 /* ARTRenderableManager.h */, - 966AF84F0F33FEE812FBB4E268EAF1E9 /* ARTRenderableManager.m */, - ECA1FB0F407E17C0D9E1776F51DB8395 /* ARTShapeManager.h */, - E320C50D0CCAE45C2D45611E61C085EE /* ARTShapeManager.m */, - 369CB7A25D42618BA1B87244F710DAAE /* ARTSurfaceViewManager.h */, - 66459DEE8823BB0B8D11EA3D6DB2307F /* ARTSurfaceViewManager.m */, - F3F7E00DBEF80A2A87BC5A2C4198D0CE /* ARTTextManager.h */, - 0728DF55B0762E76D1988160FF42272B /* ARTTextManager.m */, - ); - name = ViewManagers; - path = ios/ViewManagers; - sourceTree = ""; - }; - 6EB4755249279053D9AC0786D9730206 /* Support Files */ = { - isa = PBXGroup; - children = ( - D9B6A539690F8003219B15082B9B25C7 /* Yoga.xcconfig */, - B122B1EE8FD3AD8E8CA73EA280DF17D6 /* Yoga-dummy.m */, - C0DF36E5B1109A8017EE36132A740A1B /* Yoga-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - 6F08214599E3B9030C848EE11439BE3F /* Pod */ = { - isa = PBXGroup; - children = ( - FB055070A2B8C6DC50CBAF64EBD58A68 /* FBReactNativeSpec.podspec */, + 1C39222F9FF2249656E383E3528D16D3 /* EXPermissions.podspec */, ); name = Pod; sourceTree = ""; }; - 6F5FAF55C12E9EF1DE4E26F11B40FEEB /* React-RCTNetwork */ = { + 6FD1FFB329CBE6C4D0CFD15A96B4A5DC /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 52C5B614F2C0CF9203952EBBEA501F8B /* RCTDataRequestHandler.m */, - 6A72D7CEB55FEA06E30120F74D720E54 /* RCTFileRequestHandler.m */, - 094800FF4F03E576562FEE945F9DEFD6 /* RCTHTTPRequestHandler.mm */, - B0A3DAD382322F1A249BFB52E044950B /* RCTNetInfo.m */, - 9B2FF77B343827C35C7332825DF9A585 /* RCTNetworking.mm */, - B7F0074FC2D8A9EA66D202D5DCE0A2A5 /* RCTNetworkTask.m */, - F2C6BCFDFFA6129D3F5F4F5902665EDC /* Pod */, - DF40EE2F4076639455AD650E77AF847B /* Support Files */, + 15DE42D6FBE822740A0DB393AE4121BE /* RCTVibration.h */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = RCTVibrationHeaders; sourceTree = ""; }; 6FF0F000A20F65D87C7C2474482A0F89 /* GoogleDataTransport */ = { @@ -9467,6 +9451,24 @@ path = GoogleDataTransport; sourceTree = ""; }; + 701B820853332390AC7D6374E2D69F63 /* Pod */ = { + isa = PBXGroup; + children = ( + 867F78323B4174223CB9FDE344A16D2E /* LICENSE */, + BA2CE1FD925889789A5B3CA6FA7C3698 /* README.md */, + F12F249A36DFA4F6AB9CCA38CB9CE2D6 /* RNGestureHandler.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 703223209256A3AD3C35EA8718E54D87 /* Pod */ = { + isa = PBXGroup; + children = ( + 794D15A96C8D833B07ACAC9178A9571C /* UMConstantsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 704B9610866573E6E82D5558FE1081C4 /* encode */ = { isa = PBXGroup; children = ( @@ -9474,29 +9476,48 @@ name = encode; sourceTree = ""; }; - 718E955F05CA0EE12785D49BD7302E30 /* firestore */ = { + 70AF65661FD167457B786597A0D006FD /* React-RCTImage */ = { isa = PBXGroup; children = ( - 607C651864B81834E926AD131165E5D2 /* RNFirebaseFirestore.h */, - 2979D53A359A99A42391A537AE1B5B75 /* RNFirebaseFirestore.m */, - FA1C3016E3389BBCE59AD8B7649F0956 /* RNFirebaseFirestoreCollectionReference.h */, - E7B3640BF5E94E328E51EA79A6AAC58F /* RNFirebaseFirestoreCollectionReference.m */, - 09FB1013F78A7AF3DC2546F7CC3D152B /* RNFirebaseFirestoreDocumentReference.h */, - 5AD45FCA84FB2434143E5D1850C67D1C /* RNFirebaseFirestoreDocumentReference.m */, + 270CAD43892181D91A753FCCAF11032B /* RCTAnimatedImage.m */, + 6622351F2BB1E2417FE1CB93F0824690 /* RCTGIFImageDecoder.m */, + 20F5484A1BC6E3A8CED6305F18B135AA /* RCTImageBlurUtils.m */, + 0C0A4784B7A41EB53E38B3BC83A5D6C5 /* RCTImageCache.m */, + 1E453555479B0F9855094D1421408F0F /* RCTImageShadowView.m */, + D99106F99C2321E8893D8DA292E47E07 /* RCTImageUtils.m */, + 3F02258C3025220FE4B1B6D0B34DB477 /* RCTImageView.m */, + F822C1A6575AF76012BB0B1DD559D82D /* RCTImageViewManager.m */, + B3178BD5429274B120B63E4B5484C9D0 /* RCTLocalAssetImageLoader.m */, + ADFF87B6A82B2208F2E36CDCF7DF9A10 /* RCTResizeMode.m */, + 8AB4A7A6D8A9C6355F2E0F64975E742C /* RCTUIImageViewAnimated.m */, + 9AA7C3645606A8951EA9FAF7D467C997 /* Pod */, + F36D461317159FC502D91243A6403D41 /* Support Files */, ); - name = firestore; - path = RNFirebase/firestore; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; - 7266ED1FBEC727B47A204049EBD0793F /* Support Files */ = { + 713CF8B5361AB5911D4627D1D8543DF1 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 777F3D8575340CBFA5E8A0F800F17DDF /* RNFastImage.xcconfig */, - 91B847B706F1F1C054508E9D7DCB57C7 /* RNFastImage-dummy.m */, - 618FEE7E80275A17BCFEA3FD80389667 /* RNFastImage-prefix.pch */, + 62478E8291C36E2AE31F0D147E8F7124 /* JSIExecutor.cpp */, + 9B3EE976E7FC3CBFB77EC5F10244D571 /* JSIExecutor.h */, + 08188343B2338130885FCC76CC0F6134 /* JSINativeModules.cpp */, + 603941194F777E870D0AC0BE29F18E51 /* JSINativeModules.h */, + 406FF7CF771619DBD2703C02AD78377A /* Pod */, + F068D7B773BC6F6A480165D026AFD76D /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + sourceTree = ""; + }; + 71710E1742D0D95D105BF4AB3B16747F /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + 0287D9269BE2F2D523F799AE70389190 /* RCTBlobManager.h */, + 7AAA1105E0AC1F7C8117B494AECAFDF4 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; sourceTree = ""; }; 730DB5449723E314904FA26F91779A89 /* AppDelegateSwizzler */ = { @@ -9511,23 +9532,40 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 738D7C374CE849CBD7E89140967869F6 /* ScrollView */ = { + 736D58E451CBDD179DEE9B76F870CB30 /* Pod */ = { isa = PBXGroup; children = ( - CC612AEFC201E55CBF50D8F1C40E3C3A /* RCTScrollableProtocol.h */, - FB900A939C4D5CD6FC137C114524DE71 /* RCTScrollContentShadowView.h */, - 3E9F56F343F2173D1A070E0EAE2A6A4E /* RCTScrollContentShadowView.m */, - E86D949368DBA5DAD2D805EA66DBEDBA /* RCTScrollContentView.h */, - E09BBD190BFD8F1D383C10221631F5DC /* RCTScrollContentView.m */, - F1FAFECEA2BB7BEB6BDAFAF39FC426C6 /* RCTScrollContentViewManager.h */, - 34D3BA6E5E4F5BB82DBB4FE14B8AC264 /* RCTScrollContentViewManager.m */, - 789B2C68D8DD160298CF3C4290405EF4 /* RCTScrollView.h */, - 277399C556AA4B46C25A19AC1B29F616 /* RCTScrollView.m */, - 2C67C17F481D7F02D7C3463B2411DF5A /* RCTScrollViewManager.h */, - 7A2968C02EB2F9DA9CFE11523D853F0E /* RCTScrollViewManager.m */, + 9E7FA3AEF7D27D9AC76730749FA792B0 /* LICENSE */, + 3673646FE076F3F585CC9C312B99D021 /* README.md */, + 4BE68AF46DA008A28F8E6F06BCF21779 /* rn-fetch-blob.podspec */, ); - name = ScrollView; - path = ScrollView; + name = Pod; + sourceTree = ""; + }; + 737C4495D77527781C7F1C205298A92A /* Support Files */ = { + isa = PBXGroup; + children = ( + 3670E524463206499BB086DC52038A62 /* react-native-background-timer.xcconfig */, + C85E4F5792725A2ED57B07340ABD5A53 /* react-native-background-timer-dummy.m */, + 63135348BCA88E81210BF2E20DE7230A /* react-native-background-timer-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + sourceTree = ""; + }; + 738FEC59CC39145D0F74A0D0CF4E4347 /* Video */ = { + isa = PBXGroup; + children = ( + 108085D07F03684CEBE9F4B088890C70 /* EXVideoManager.h */, + 9C61958EEB32970B6FD85C64E5BADAD0 /* EXVideoManager.m */, + 8378290C00522D0CAACC653F2E273213 /* EXVideoPlayerViewController.h */, + 4321D8DDAC0A5C536A86694B7C0B4F9E /* EXVideoPlayerViewController.m */, + 69E34620E132E57727C78694C1145B21 /* EXVideoPlayerViewControllerDelegate.h */, + A9ED93A67C41D0D1C7735EA096A718D3 /* EXVideoView.h */, + 7C16EA7E15A3F35AFF502EAD788FBDD7 /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; sourceTree = ""; }; 7391E3BA3BB62691ABCD0990D99A3EEC /* Support Files */ = { @@ -9541,34 +9579,65 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 75BB39673C1CBF1C64F11CCE0220D757 /* Video */ = { + 7457D7CEC2B373EA5B4E09655968D34D /* Support Files */ = { isa = PBXGroup; children = ( - AF370F773F98172EBCFDD5981186996A /* EXVideoManager.h */, - FC803D1BE9A2CB384D5AAB212AFFCFB6 /* EXVideoManager.m */, - 07FAC8AB14356BFB7EC74487EAE16C04 /* EXVideoPlayerViewController.h */, - 277D35BCCDA3CD69ADA70C694A988723 /* EXVideoPlayerViewController.m */, - 1164A57691AA9276B0B6AA6CF9EBA52B /* EXVideoPlayerViewControllerDelegate.h */, - 60EEBF389C391162FA269F8E7D3FCB15 /* EXVideoView.h */, - 325884761AB5F277A663E791EA9E1138 /* EXVideoView.m */, + AAC46B5086C5C013D36C6FBF9DDFAC19 /* RCTRequired.xcconfig */, ); - name = Video; - path = EXAV/Video; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; - 75E78274A4B6888B5A7BA0447DFC9343 /* UMReactNativeAdapter */ = { + 7473A40A9F5073105C4E63C3F044284B /* Pod */ = { isa = PBXGroup; children = ( - 61D68ED0DFDE8178B98F79C56AAF6735 /* UMBridgeModule.h */, - C621711C72CCEECB2747920B1775F252 /* Pod */, - 3CD5A5DBD0C39E34669F609FA418F17B /* Services */, - D8993B154D1455DC5FBA9C142ECC47E4 /* Support Files */, - F87E04A83FF69993C92AA158DB5FEB4D /* UMModuleRegistryAdapter */, - 4C9EA3B8354227C087CA0C91F60C95D3 /* UMNativeModulesProxy */, - 56DF1E0035FC1E9E01841F2A264DF4FA /* UMViewManagerAdapter */, + 70AF25F4D66F8E43A5AF3F30400DED2F /* LICENSE */, + 5AB0E53DCFD78A74897FBCDF72CEA817 /* README.md */, + 9F006EE3E88A2B8DEECB4111765ECAFC /* RNReanimated.podspec */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = Pod; + sourceTree = ""; + }; + 74E2BA18C51A75E311D9F24506E7CE08 /* UMCameraInterface */ = { + isa = PBXGroup; + children = ( + ADD740B07F891E66997AE8BA270068A2 /* UMCameraInterface.h */, + 1D8CEDD2357C540D7076346BEF992C9F /* Pod */, + DE807557D92EB2E0347663140D76973C /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = ""; + }; + 74F2F3492D9F583ED53410BD35F1B8E8 /* VirtualText */ = { + isa = PBXGroup; + children = ( + 8F1A3CECFED1C7D7337226CAB2DA9727 /* RCTVirtualTextShadowView.h */, + 2C3B5B33D7B3E48D320C3A06E3B9A455 /* RCTVirtualTextViewManager.h */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = ""; + }; + 758A1A076CBC221F51E314EDDB084E66 /* Nodes */ = { + isa = PBXGroup; + children = ( + 17F929DC989EF54C2701ED2500CA281D /* RCTAdditionAnimatedNode.h */, + 4E07ED57ED920D977BD81B3CBD8D42FA /* RCTAnimatedNode.h */, + 5D4839FD80055F0C6950231B58B46EEB /* RCTDiffClampAnimatedNode.h */, + DD8E3D039A6E89BD03F7A33FC8D634F4 /* RCTDivisionAnimatedNode.h */, + CA2318FAF8C6794819597B7DA736974E /* RCTInterpolationAnimatedNode.h */, + 9424315AD5F0B1426BE631E0E48A16FD /* RCTModuloAnimatedNode.h */, + C31F8FC51B67099F8B276DA2E2C77161 /* RCTMultiplicationAnimatedNode.h */, + 8AF61CACE577B9A39BB90412673094B7 /* RCTPropsAnimatedNode.h */, + 4BF54A24D19FC6D0F35C0A4A592DC31B /* RCTStyleAnimatedNode.h */, + 8195DD85B930F93043F9BD1EAC646D90 /* RCTSubtractionAnimatedNode.h */, + 6022927CBB877F9F4F1956FB8289B89A /* RCTTrackingAnimatedNode.h */, + 8A8663152A86CBD0E6F27A6A4B70814E /* RCTTransformAnimatedNode.h */, + 40B2931C67BF7582A73B702E4DC7B510 /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; 7608AC1BAFF9991F61A7036E8460C5F2 /* Pods-ShareRocketChatRN */ = { @@ -9596,273 +9665,155 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - 762E7F7B6D53D1128C928D4972EE3C57 /* react-native-cameraroll */ = { + 774A1A55E44DB194E3123C72DC0C2DFA /* crashlytics */ = { isa = PBXGroup; children = ( - 88FFE620B4FE021148EFFE939FE7D675 /* RNCAssetsLibraryRequestHandler.h */, - 97972524746DA8617FCA6204735F0A0A /* RNCAssetsLibraryRequestHandler.m */, - 53D6DDF8F37CA9BCAD772E6D5DA49295 /* RNCCameraRollManager.h */, - 2A0E90B7D6DE800A18779640EC834AA4 /* RNCCameraRollManager.m */, - A62C13346C97FB929652EC1F1713E53C /* Pod */, - 16D8CEF3B8B0E16F6DD2AC470B3C5CB1 /* Support Files */, + CA94FE7C1ED0D22930A83476F47FE470 /* RNFirebaseCrashlytics.h */, + C3BDF4648814948648C45BCB5C609DFC /* RNFirebaseCrashlytics.m */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = crashlytics; + path = crashlytics; sourceTree = ""; }; - 76A3A4C2482FAEA76BF4C720E0997436 /* Profiler */ = { + 77544E5B889A6C60EE92C76C5912357D /* Support Files */ = { isa = PBXGroup; children = ( - 81EB44B226ED52831CC256D3AD059682 /* RCTFPSGraph.h */, - 8F2E9045B2AC258C5B8DFB25414CFD3F /* RCTFPSGraph.m */, - 8905113572F8576DEA7D37FA11A60F0D /* RCTMacros.h */, - 6BCA58A32925A1E4400F2B1ADFEF0972 /* RCTPerfMonitor.m */, - 7F4BF29BFB9DBF4D660B3789F5576D82 /* RCTProfile.h */, - 1FFF74A046BF8D427EF7C90624577C41 /* RCTProfile.m */, - 6441110A52AC72F1F219FFC618E5E4C5 /* RCTProfileTrampoline-arm.S */, - 2ECDDCF7A859B3FDDDB907DBDCCDE589 /* RCTProfileTrampoline-arm64.S */, - 06C809B8549057A07FF4A8E38A64FA53 /* RCTProfileTrampoline-i386.S */, - 9622F1F5AFBF1DC9D2609B287A97CC29 /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = React/Profiler; - sourceTree = ""; - }; - 76DB7F38F1206B67FB6D39454531F88A /* Support Files */ = { - isa = PBXGroup; - children = ( - 4A5EEF4D9C31B72D39D28A48FC1DC2F5 /* UMPermissionsInterface.xcconfig */, + 76C856BACD70EF40DF17EDFB42E4D79A /* EXAV.xcconfig */, + 829EC048CE8EFC4CEF32EF085705F63C /* EXAV-dummy.m */, + 391EF556A6DC25D83E9E837BC9F4FCA6 /* EXAV-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - 76F8028C9892FEDA11F039E833BC42C8 /* Support Files */ = { + 7A95556F6BC0F4A8945CC09894E13D1D /* instanceid */ = { isa = PBXGroup; children = ( - 024208975464F176E11129E3151BAB2F /* rn-fetch-blob.xcconfig */, - 3F6CC27D06C2F4E622045B5742E243A4 /* rn-fetch-blob-dummy.m */, - 0D237F74946A75E1540FAC09AF25BEB2 /* rn-fetch-blob-prefix.pch */, + BCA0A28433AF58C83F14445039924E4C /* RNFirebaseInstanceId.h */, + 51A0C4031412087072E81B9C43CD18A1 /* RNFirebaseInstanceId.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + name = instanceid; + path = RNFirebase/instanceid; sourceTree = ""; }; - 77C2A4728A94824BAD103390097A49CA /* react-native-orientation-locker */ = { + 7ADF3B70FEA5EAE88FDF808BF368CA4D /* react-native-background-timer */ = { isa = PBXGroup; children = ( - DA3AB05FE90FFEEA3D320C38916D44AC /* Orientation.h */, - 58CF79F99A87A127F56E24875D1F96BF /* Orientation.m */, - 149001F837487FAD58692CCA53BBB940 /* Pod */, - A96923899F2F14E2364CB7C8325C5577 /* Support Files */, + C80C24196CA7E3B278CF17DC2FAC5AB3 /* RNBackgroundTimer.h */, + 24065647A62A3DECE21E112C839B4127 /* RNBackgroundTimer.m */, + A03A484C57382D5B670BD3688710DD54 /* Pod */, + 737C4495D77527781C7F1C205298A92A /* Support Files */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - 77FDE58A2B6CAB8C42F5568166122882 /* Support Files */ = { + 7B3778A382163C9CD37AF272867513CD /* Multiline */ = { isa = PBXGroup; children = ( - FD8B1EA2CDA612644CBF7C60CE5A76C6 /* EXConstants.xcconfig */, - E22FF3121770287992115335C6CBFE83 /* EXConstants-dummy.m */, - 519FDD9A11E683C5E9C8416C35F89D5A /* EXConstants-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = ""; - }; - 7802A9E50E4CF7370C9DC29E2D08DBDD /* RNBootSplash */ = { - isa = PBXGroup; - children = ( - 250AC3F1C3E28195B86681506026C1B0 /* RNBootSplash.h */, - B330D7E6ECB96495FE5D9E5DCC9EF7CC /* RNBootSplash.m */, - 57CE431CB41261C7D19DE4E187BD9EDA /* Pod */, - 0A7F34B69D6A745B7ED9D2B71C785C06 /* Support Files */, - ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; - sourceTree = ""; - }; - 791C9D9DAA1EAE57D8F3B2EB64613518 /* Support Files */ = { - isa = PBXGroup; - children = ( - CAC46DBE9FF571BF7244115D067D58EC /* EXPermissions.xcconfig */, - 62D8299947B104E2F2441F8B8F224296 /* EXPermissions-dummy.m */, - 29B0448C6CE80B6F380BA65C5CC4814A /* EXPermissions-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; - sourceTree = ""; - }; - 793D0C511A174B029CA0E428B1CAE4A7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5A748EE26C98D9E0EFD4F248FC2C8D02 /* RNAudio.xcconfig */, - 0FB6F47EE770C3A9B0C5AF899D94B955 /* RNAudio-dummy.m */, - D9B5BCAD33B439C0015688D73B83F8C7 /* RNAudio-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; - sourceTree = ""; - }; - 796F9D200EABDA60E047EF6D20092545 /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - 31DA2DEAFF7CA55FF764092648AD9567 /* IOS7Polyfill.h */, - B2BC78EDC760B450A885614547A7428E /* RNFetchBlobConst.h */, - E969E0281AFFBB8E4657559C0100F794 /* RNFetchBlobConst.m */, - D8138F80FD52EEC80E47EADAFF73B580 /* RNFetchBlobFS.h */, - 0EB0F6B7E8EBD84A141C3AC167835CD7 /* RNFetchBlobFS.m */, - 7B4FBA22B542402775644ACFD00D2E66 /* RNFetchBlobNetwork.h */, - 0945BBC48C6E6DA34300929C868A3F41 /* RNFetchBlobNetwork.m */, - F8ED706A6936A4268543107344BFAC7A /* RNFetchBlobProgress.h */, - 94880BFF0112585F7B888B90817CC653 /* RNFetchBlobProgress.m */, - 27099028B8D9CD2C8368F70BDADC79D9 /* RNFetchBlobReqBuilder.h */, - E44F908151A562A3AF20B69A1D54098E /* RNFetchBlobReqBuilder.m */, - C358DCFDF7DB17909BE6CDF6AE5AFF7A /* RNFetchBlobRequest.h */, - FB7BCEFC749CA8C6FC0E8F8A35708B1C /* RNFetchBlobRequest.m */, - FCC9B7799ADA7628DA20B56B814A62D4 /* Pod */, - 25C00CF5CD638BA812B4D78597129842 /* RNFetchBlob */, - 76F8028C9892FEDA11F039E833BC42C8 /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - 7999D3E2158F1FE1FF19235AC75A2F38 /* auth */ = { - isa = PBXGroup; - children = ( - 0F318A1FC11A1A8E05DDD499EE7F877C /* RNFirebaseAuth.h */, - FA12DD048A9A27567FE7075E7732FD3E /* RNFirebaseAuth.m */, - ); - name = auth; - path = RNFirebase/auth; - sourceTree = ""; - }; - 7A1069FED33D20AD1B143E4500F580AD /* Pod */ = { - isa = PBXGroup; - children = ( - 6CBA42BE40B0E4D18F1D24B198AA332C /* LICENSE */, - 94C769C557F9E669D09A2A498F897C8C /* README.md */, - 4BE8419B1C58F525F98D342793DF0787 /* RNLocalize.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7AE9286FB24968BC2DB10E296D810E76 /* react-native-document-picker */ = { - isa = PBXGroup; - children = ( - A4A7320CAB16DBE6090FF9162811B32F /* RNDocumentPicker.h */, - 65513BC7EBF5BE3D92B67A6AB24F90B7 /* RNDocumentPicker.m */, - 946A89FD67B5A835E18AAF7943636B89 /* Pod */, - 0529F1D3F1F4A13C9208954B739A04FD /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; - sourceTree = ""; - }; - 7B14295CEB66078EF0F3A22C714C083E /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - 7EFE40F14A73EA2B443AA4CF44DAD50B /* CoreModulesPlugins.h */, - 78541DB485050F75C0936807AFB8C357 /* RCTExceptionsManager.h */, - C8C4C62EDE5BA4D7F161B54E1D83F566 /* RCTImageEditingManager.h */, - FEB4A88EF0391F3499D3CDDF99BA1B8E /* RCTImageLoader.h */, - BA906CC25277C293D1CFF35A617152B4 /* RCTImageStoreManager.h */, - C29328094405CED92A7C7819B81EC90E /* RCTPlatform.h */, - ); - name = CoreModulesHeaders; - sourceTree = ""; - }; - 7BBE028CA50936D7A6FDE48491CCF099 /* RCTNetworkHeaders */ = { - isa = PBXGroup; - children = ( - 23CED23C3BC4B8F1C25E48EA10AE1A89 /* RCTDataRequestHandler.h */, - 48E66962C9572CC3ABCEC3D5589A4D7E /* RCTFileRequestHandler.h */, - 0BC20A9871EB97B9E51FD4F2F6D7D33B /* RCTHTTPRequestHandler.h */, - 455FAD484583221C129C0EBC0EA0384D /* RCTNetInfo.h */, - 696551F58422F0488F0E1AC2D3222089 /* RCTNetworking.h */, - E0EA2AA36E21EDB27E8CBCE76EC31EEC /* RCTNetworkTask.h */, - ); - name = RCTNetworkHeaders; - sourceTree = ""; - }; - 7C467CD5188676DCEA532A5F82D88714 /* database */ = { - isa = PBXGroup; - children = ( - 49FCA9266B011C55C9974E9B7F4FE352 /* RNFirebaseDatabase.h */, - C0422BBB11687EFE612D490B8B0C77DE /* RNFirebaseDatabase.m */, - 723F636C015B98033D45BBB786F18DAD /* RNFirebaseDatabaseReference.h */, - 6EBD648ADF08580A26F32BF867B6458B /* RNFirebaseDatabaseReference.m */, - ); - name = database; - path = RNFirebase/database; - sourceTree = ""; - }; - 7D3C06247BA368DC7E890222BFCFD5D7 /* Pod */ = { - isa = PBXGroup; - children = ( - 607B8AECF50CAAFAD4C6F8282C23B37F /* LICENSE */, - 32BF160962D90FD91E0B0D279057FEB2 /* README.md */, - AE8DD84B7A89FD6DF94D5FFA10AE02F7 /* RNDeviceInfo.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7E79955E34B6861F754E475C3161D150 /* BaseText */ = { - isa = PBXGroup; - children = ( - CD1A41557D9711A38CCC49769B2E64DD /* RCTBaseTextShadowView.h */, - BC9D529BF5731E3078C6EECBDF867328 /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - 7EA92BBC50D8EC11A66CEBB9AF920995 /* Multiline */ = { - isa = PBXGroup; - children = ( - 959628BA0DDBCCD75C7AC43F9F4BEF8C /* RCTMultilineTextInputView.h */, - 991F63888F0DADE5B74E325A8A6BCCE8 /* RCTMultilineTextInputViewManager.h */, - E5385A8D8663E76400E26DE09608AD04 /* RCTUITextView.h */, + D10C46D86FB6F512B5AFC678EBFE4802 /* RCTMultilineTextInputView.m */, + DC123B7D5CC70DA3800E61D7EA4C4F38 /* RCTMultilineTextInputViewManager.m */, + 71F657137562B5AD78A592972B88CC8C /* RCTUITextView.m */, ); name = Multiline; path = Multiline; sourceTree = ""; }; - 7EEA68A728B8B4D6295F206A236229EB /* react-native-keyboard-input */ = { + 7B9E288F290B9AA92F2A2FB4AE6796C4 /* Support Files */ = { isa = PBXGroup; children = ( - B21C9D07D1FB01FF18C9E066375C0924 /* LNInterpolation */, - 6797B88621B54E4938A77617F64CE8E4 /* Pod */, - 859E3F88AFA3715F302213F4F06D1C4D /* RCTCustomInputController */, - 25BB9C373B9B59E27C0A37F539151E13 /* Support Files */, - ); - name = "react-native-keyboard-input"; - path = "../../node_modules/react-native-keyboard-input"; - sourceTree = ""; - }; - 7F37CB0903896965A1D1E3252A578D9B /* Support Files */ = { - isa = PBXGroup; - children = ( - 720AD59BC6F7F0728F7989ABCF9D1B16 /* react-native-background-timer.xcconfig */, - 144E7B8B4EC7AD69B7B6F83260E103C4 /* react-native-background-timer-dummy.m */, - 5E915B2F24C81B9195A87F6E9D1A0778 /* react-native-background-timer-prefix.pch */, + 26EED0C32A6841FD93F64269146D86F7 /* rn-fetch-blob.xcconfig */, + 31A0819CE730668349638D7ACDDFA74B /* rn-fetch-blob-dummy.m */, + B6387C500B2F2D7731D72916773B324C /* rn-fetch-blob-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = ""; }; - 7F8FEEF189E6A6AEB5889E74EB968FC3 /* Pod */ = { + 7C4F4CC614025632F5EC16AB95423698 /* React-CoreModules */ = { isa = PBXGroup; children = ( - 4A8BBA527E457F35F8E46F2F14F20039 /* LICENSE */, - D1585C3D95C3736930C300B0FB361CAC /* README.md */, - C4741A74FB1A6CD3FE3B6FA8EC517E84 /* RNAudio.podspec */, + 24AB6FC2865384C38825BC95C65B5813 /* CoreModulesPlugins.mm */, + 7B76FE61248BDC8A1DCA4580361BB582 /* RCTExceptionsManager.mm */, + 8D03AF7C4AC28A8E342483AD0C8FFFAF /* RCTImageEditingManager.m */, + 379BA6AEA045508F8CC03B6CD8FE31E5 /* RCTImageLoader.mm */, + B0C02F0BE5E491D1B2A5DA0E71329CDE /* RCTImageStoreManager.m */, + 6E87BDE5CB74061628F9F4808B9C5CE1 /* RCTPlatform.mm */, + 41804EDECB44CF63CE5287EF5950269A /* Pod */, + C9704452309A6C6E9453E699009662FA /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; + sourceTree = ""; + }; + 7CE364B5FAFFF00B686D772128797865 /* Brushes */ = { + isa = PBXGroup; + children = ( + 863D42949D725AD8F8FB5CFA588995E6 /* ARTBrush.h */, + C6689062F276838BBC2F836F080ED20A /* ARTBrush.m */, + FF4CC019C6A7F3AD874836BE32F5D7B2 /* ARTLinearGradient.h */, + ED878C79AD09D1D2CAA7EA3A80B0FC62 /* ARTLinearGradient.m */, + 258B91E715DED0A38A9452BD4B766218 /* ARTPattern.h */, + 453DDF07237BD816BB5931DE332C50DA /* ARTPattern.m */, + 2C914260E14BFC206DFDEE3734A44F64 /* ARTRadialGradient.h */, + AC648412AF4600F9C1EDFB18BC08768E /* ARTRadialGradient.m */, + 21A17FEC35C795A42DD06D5E212C1DA9 /* ARTSolidColor.h */, + 351492E3C14B88EF2F44583F4F1097A5 /* ARTSolidColor.m */, + ); + name = Brushes; + path = ios/Brushes; + sourceTree = ""; + }; + 7D2E80EA83695B9B18387F2802263216 /* TextInput */ = { + isa = PBXGroup; + children = ( + A7C6FD5F50751A07FAC17D258A658563 /* RCTBackedTextInputDelegate.h */, + 574E7D76BC41B088CC91942C613E7B7E /* RCTBackedTextInputDelegateAdapter.h */, + F6B060FA7384859BC82F1A012092389F /* RCTBackedTextInputViewProtocol.h */, + 2B7E25A5F3D83CA32E225BD43B8747E2 /* RCTBaseTextInputShadowView.h */, + 66EE284016BCA0CF8AEAF406584719E5 /* RCTBaseTextInputView.h */, + E2FF0EF6A719422A08A1E74AA5C5D136 /* RCTBaseTextInputViewManager.h */, + 86D659A8989A7924F422EAE8E671F369 /* RCTInputAccessoryShadowView.h */, + F908B6D3318ECC8CB21079076A97D721 /* RCTInputAccessoryView.h */, + 80508BF83A805007058178A772178F5F /* RCTInputAccessoryViewContent.h */, + F7AE31CA026D3F48692DCBCF9E5CD469 /* RCTInputAccessoryViewManager.h */, + 691822CFD4F0F714CE44F57239754CA3 /* RCTTextSelection.h */, + 3293B7A68371FD3CCBED56CE672CC2B5 /* Multiline */, + 9E0BCE2C1F81840823665BF9DDCD7E5A /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; + 7E12656CBD0F143E81463C24CA1F429E /* Pod */ = { + isa = PBXGroup; + children = ( + 67BF2DDA8C43089C1DA6D9F5B5503606 /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; + 7E611EB379C738A6DCAE651E5F022936 /* Support Files */ = { + isa = PBXGroup; + children = ( + AF8CDB3234290BED94BE4557F5886530 /* EXFileSystem.xcconfig */, + 0426B8342173670C364646932520A584 /* EXFileSystem-dummy.m */, + 14EA82D8AF8E2D9B52189D6C7341EEDB /* EXFileSystem-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + sourceTree = ""; + }; + 7E8067D850626F2B4FFEB84BD94D81C9 /* VirtualText */ = { + isa = PBXGroup; + children = ( + 30C1742AE22CCE53FAE08FFBF0D3F9E3 /* RCTVirtualTextShadowView.m */, + B8BDA0D59E0FDFD4916DCD98BC7C3B04 /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = VirtualText; + sourceTree = ""; + }; 7FB97AA06C19FB7FB455F477F2961F80 /* GoogleDataTransportCCTSupport */ = { isa = PBXGroup; children = ( @@ -9880,280 +9831,218 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 7FDF4E745F812DD8A2EB66D467DC774E /* links */ = { + 7FF3371C992E87AF4EBA2BD2DA749440 /* Source */ = { isa = PBXGroup; children = ( - B60EAD97AC08615CF8BA89493710EA13 /* RNFirebaseLinks.h */, - D7009140009F7E9B686F2ADB91FDB555 /* RNFirebaseLinks.m */, + 2B4C6F244F8056456104B506B2A65C9E /* KSCrash */, ); - name = links; - path = RNFirebase/links; + name = Source; + path = Source; sourceTree = ""; }; - 804B866785F160BE609EB0D6209A394E /* Text */ = { + 819F2D11E99072EF2C631F0AA2EB6FEC /* Support Files */ = { isa = PBXGroup; children = ( - 5E4A2E27DC374E4005C34F5376DAEBC0 /* NSTextStorage+FontScaling.h */, - 00F141C90BDC5ABFB362C6A910458B2E /* RCTTextShadowView.h */, - 9AEA1F7442A8A10E9F7719D981A6B89F /* RCTTextView.h */, - 8494ADB2C4035D2B22513419C51B5517 /* RCTTextViewManager.h */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - 8144969F53CDB4CC8856B88B71B3E9DC /* vendor */ = { - isa = PBXGroup; - children = ( - D91BB6EA3DCE27E26093C51F9D59CEF8 /* bugsnag-cocoa */, - ); - name = vendor; - path = cocoa/vendor; - sourceTree = ""; - }; - 814D4245AB247FD453A9B1B9BAB1984F /* RawText */ = { - isa = PBXGroup; - children = ( - 30BB975B57CCC177196223E03CF5753F /* RCTRawTextShadowView.h */, - 9D75317127DCA2E50611CDFF673C98CB /* RCTRawTextViewManager.h */, - ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - 81A4892176BA6215C5A8C0A90660CC0C /* Pod */ = { - isa = PBXGroup; - children = ( - B7548BAB87BDEEEC008F4518116A4FB4 /* React-jsiexecutor.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 81D9F6114CC5D0DDC7794C49F61CFC52 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1EAC930ED045E8B5E77D1C890D820095 /* RCTTypeSafety.xcconfig */, - 782FA60B47AB3C13BD5A739B4E7D0267 /* RCTTypeSafety-dummy.m */, - 091A9EF5FA607ADAEA341CEB89ECC221 /* RCTTypeSafety-prefix.pch */, + F8E743FFD85E2C107F52420EAD130F95 /* RNReanimated.xcconfig */, + 100FF80E511A702C2D76B13996B21E9C /* RNReanimated-dummy.m */, + 3CD171160074C2608374F363B5834168 /* RNReanimated-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; - 82FEAA7E6DAD85A7E10A730FED87CEE7 /* RCTTextHeaders */ = { + 82AF47CFEFF6DF94B7E2887A2AEAFACE /* Pod */ = { isa = PBXGroup; children = ( - 258615144280F905E5F66A4A8335502A /* RCTConvert+Text.h */, - 2E29BD840C7EEDF0C2224CAE90F3EF14 /* RCTTextAttributes.h */, - BE09031574CDEACBB49CE1AC66544EDB /* RCTTextTransform.h */, - 7E79955E34B6861F754E475C3161D150 /* BaseText */, - 814D4245AB247FD453A9B1B9BAB1984F /* RawText */, - 804B866785F160BE609EB0D6209A394E /* Text */, - 5E3DFB7FBE620C2F5AFDD1DDFFB7A356 /* TextInput */, - 390785AB55707AC1FD98984D744EBB8E /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = ""; - }; - 8440AC8D6F3E3A763C6F91E4187D72C1 /* React-RCTAnimation */ = { - isa = PBXGroup; - children = ( - 10E726AD9B950953523428C107B73363 /* RCTAnimationUtils.m */, - 57D32BB2DCB9D84442AFA5534DF2D526 /* RCTNativeAnimatedModule.m */, - 8AB77BF2CDF722B873EF17E6A605E2E5 /* RCTNativeAnimatedNodesManager.m */, - A8186EDD0FA77C2DB3EF37A65D27093E /* Drivers */, - 9DCBDF44F74E6951EFE5BE4BCE5A213F /* Nodes */, - A4BCB9D79480D43D95CAB8DE0F7AA6DB /* Pod */, - 54F616DD112705B2D565737FAB46F81B /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = ""; - }; - 846FBDC4EF3A97555FA388157E87AE1C /* platform */ = { - isa = PBXGroup; - children = ( - 8C863F79C0EC6F8D375A01F9B6D01F13 /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - 850D6B4351BCD173A78C8EDA65935971 /* Pod */ = { - isa = PBXGroup; - children = ( - 9526FDA913FFC16A392832E1C4AA3D79 /* README.md */, - 8E4E0B5880476B12A583F23B1B67BA6B /* RNRootView.podspec */, + 0C6D02DEDE8278950D214006FA4E28BB /* LICENSE */, + A585D7271AD91337F3DA2AD8729BA9A6 /* README.md */, + 362771703094659B197B85BCFDFC20AF /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - 859E3F88AFA3715F302213F4F06D1C4D /* RCTCustomInputController */ = { + 82BCA702BE7A3CB8D865989E6100DD8F /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 8FB98F90F90861D1A9C0D3B322EA9646 /* RCTCustomInputController.h */, - 75A3991F723F7E84E6D7328336BCDCBE /* RCTCustomInputController.m */, - 194DF9C69A78D93A7716C6FA7B2DA705 /* RCTCustomKeyboardViewController.h */, - A55F4A869D8A3E299746A434C181C2C9 /* RCTCustomKeyboardViewController.m */, + 4EFFBC728DA46B2973369B908F1716CA /* RCTReconnectingWebSocket.h */, + 672898C13A0510836C2C646CC6EAADDB /* RCTReconnectingWebSocket.m */, + 0CADB33B0380B0BE330FCB93D5EC3AFF /* RCTSRWebSocket.h */, + EFF1AFD3BE2AA2D61B8BF0C534C1FB7C /* RCTSRWebSocket.m */, + 98081B33E4A04202E149C0287D3A2C30 /* RCTWebSocketExecutor.h */, + 4726D6A350DD59E705BBDBE02E6F1C4D /* RCTWebSocketExecutor.m */, + 88BAF4F61A0D2E6C36FB24A5850AF641 /* RCTWebSocketModule.h */, + 11D45A50423950FABFA8813A4308CA5F /* RCTWebSocketModule.m */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = RCTWebSocket; sourceTree = ""; }; - 85F44BB44FA8979CE2DABEBA1C4E3FA9 /* turbomodule */ = { + 83FEC896C9E6E5985F280D0F5FF86E2D /* Pod */ = { isa = PBXGroup; children = ( - 072DC34557BAD7DAD0942CC8DFBA11A0 /* core */, + D418C2038126D73BDBE8EA92C2F89859 /* advancedIos.md */, + 2052B4878E563F44BB2D781DA948B9A4 /* installation.md */, + 0922979F22D8BFDD8D76968A49579474 /* LICENSE */, + FFEC74416586C4A621EBA5BB0F9A1D76 /* localNotifications.md */, + 2C1BAB8F80E64E97042B59A1AC58DECC /* notificationsEvents.md */, + 2A2C885A2496AC354FC80C3A218DF410 /* react-native-notifications.podspec */, + E980A28AE13B024D3022DDBC84630510 /* README.md */, + 09FCFF00BF412129AAFFE0D12D62F1C7 /* subscription.md */, ); - name = turbomodule; + name = Pod; sourceTree = ""; }; - 866072747211D90183BA481EA2016A84 /* react-native-slider */ = { + 855A94F939824FBC4D26D0E1AF2ADFA8 /* Support Files */ = { isa = PBXGroup; children = ( - C9F29936E7E20B3CFD89B9C48AE3C54A /* RNCSlider.h */, - 90F4B4F539C60A30B094D1DF65FF0527 /* RNCSlider.m */, - 19BB2473A3C289774EC32A321472BCE1 /* RNCSliderManager.h */, - B776E20C9A189F93824B81E78FC45C39 /* RNCSliderManager.m */, - FEA54FE692DAF6D4F42F93B2A6A67B68 /* Pod */, - 92C267C0BC402C98305849D6CC321311 /* Support Files */, - ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; - sourceTree = ""; - }; - 86D36252D2C0094FE10743D2E6716959 /* Services */ = { - isa = PBXGroup; - children = ( - FC6AFFF17DED4DDFD06E638BD2D35B9F /* UMLogManager.h */, - CBD234B82B5CCAF78C77FA9DF5E9585E /* UMLogManager.m */, - ); - name = Services; - path = UMCore/Services; - sourceTree = ""; - }; - 872C142B8475E977BE189E6B0703A687 /* ReactNativeART */ = { - isa = PBXGroup; - children = ( - 61BB33DDB089C0F391FE215CEC01FBC2 /* ARTCGFloatArray.h */, - F96DFC58F11AE0F9F57A856E86C307F0 /* ARTContainer.h */, - F58489410FF77E18D59457505B9AA8F0 /* ARTGroup.h */, - 3EFE1A74567BB328FDAE023C043DA3D3 /* ARTGroup.m */, - 1ED6FAF56D3ABCA19813CBD037348E6D /* ARTNode.h */, - DD854D6DCDCAC32BB6D0CAA3C459B62D /* ARTNode.m */, - 4247D0FCFC11B26EB8C2B41054DABBDC /* ARTRenderable.h */, - 86E1E63B15248196AFB2230744A465F8 /* ARTRenderable.m */, - 62F433C626104248599C9F6319D3C54B /* ARTShape.h */, - 4BEAE0D1B153AF1E495632C5F9B28B59 /* ARTShape.m */, - 2906DDB1F14278AA23677F8338948411 /* ARTSurfaceView.h */, - 5B6173C9FF424C99E39122BE128ED09B /* ARTSurfaceView.m */, - D8B8D5E98E85919D0D2AE0E7AA270542 /* ARTText.h */, - D31D1C26D5CC77343AF15248ADE7F6BA /* ARTText.m */, - D798488795753C7103E292B908093381 /* ARTTextFrame.h */, - 306350DC6B344211A1A7511A3235860D /* RCTConvert+ART.h */, - 28A951EB4F09E6AB0FE2D903F6DF0CB5 /* RCTConvert+ART.m */, - B881DF2FF11A7B61D83886479266B643 /* Brushes */, - 432DD7F734385DFE0A23B541CBE8FE93 /* Pod */, - 17D3AF23ACC0C15926BBC96EAF8121E9 /* Support Files */, - 6E59B6B2491036805A97C5720192EB1C /* ViewManagers */, - ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; - sourceTree = ""; - }; - 8737838DAE8C00DC7B4813FEC3F1C751 /* Yoga */ = { - isa = PBXGroup; - children = ( - 13A2EF3CE7CCD3FD7FA53533E22C686E /* Bitfield.h */, - 8F6BBD2D4446D917DBDE428BD8190405 /* CompactValue.h */, - 18D46CE6DE6E232560BCA20F7347F9C9 /* log.cpp */, - D75C4193CBE762C23A5DC2FB6DFF2462 /* log.h */, - E63C65400C7C42AB2ADFD6A72C8D8036 /* Utils.cpp */, - 77624AAEF0034FE4363472281260D6F0 /* Utils.h */, - 520DD62AD62FC1C83839377841D5519E /* YGConfig.cpp */, - 880D12E1D949FD2BA1A1E9FB172B2B09 /* YGConfig.h */, - EA144FF00D58E014F32E879A876E5E39 /* YGEnums.cpp */, - CA3C674A38DA149BA329634D1B2F2B08 /* YGEnums.h */, - 919802DD5EA1842AF2787476A69A3CA9 /* YGFloatOptional.h */, - DFF6B66AD8BD4CED51BA0C7DB2168BC6 /* YGLayout.cpp */, - F341B196FB24869F5A0581AE42F32956 /* YGLayout.h */, - 3F83D90C0F4DB00C007D20D4EC47E4C0 /* YGMacros.h */, - 3160870786078A4A7F5F633B5D8BD57B /* YGNode.cpp */, - 361F842C0A5EF8D666D840B6B25D594F /* YGNode.h */, - 1DE90F6D33BFED95077AB0A667A87F14 /* YGNodePrint.cpp */, - C189945D9B7E0350FFF117B433DA54FA /* YGNodePrint.h */, - 4A570D229F7770410099A7C1A9BF2CC0 /* YGStyle.cpp */, - 80E3C559E928DBF9CC5352937D0D85BE /* YGStyle.h */, - A23231E02523DBE1CEFD142A4EF57119 /* YGValue.cpp */, - B99E5695594CBE8CFD931027DD3C667C /* YGValue.h */, - C0C99EE7CEEF2ECF943384B07DEFBF58 /* Yoga.cpp */, - 1BDF14C570382A8C3638F41F2E56EABB /* Yoga.h */, - 18EDA5479E41E41962A4F9C45DF4B942 /* Yoga-internal.h */, - 53EE14387551717C4A69D79729D5ADF7 /* event */, - E432BFEE9022E9916696E5A039B70FDF /* internal */, - 9B60C34B9DDFBC2756520D0858254DA9 /* Pod */, - 6EB4755249279053D9AC0786D9730206 /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - 875CC2F7611EACA6D2B123E993EBDF27 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2CB8BA9740E480CD8BFB467DB0901F58 /* UMTaskManagerInterface.xcconfig */, + 7144E3AFCB64F4D003E906316D3E2F93 /* UMPermissionsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - 89123F24D3C0DF6BDC2F7A547BA3FCC0 /* Pod */ = { + 859A84580DD23CDB9B1B010C4C32FEDD /* Support Files */ = { isa = PBXGroup; children = ( - 60F5DEBD20C0F278287C5CAE35F3BF74 /* EXFileSystem.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 89400AB629043817EC4B63EA7C7FD802 /* RNLocalize */ = { - isa = PBXGroup; - children = ( - 14C97A8650B918816C5DB9E8D08249AD /* RNLocalize.h */, - BF75FB52132595BFDC41B0278ADAEE91 /* RNLocalize.m */, - 7A1069FED33D20AD1B143E4500F580AD /* Pod */, - F42C49BE8293DAE275EF2C6270BE4B37 /* Support Files */, - ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; - sourceTree = ""; - }; - 89D8EEC95AB05B17F01901D7D203B52C /* Support Files */ = { - isa = PBXGroup; - children = ( - 77E2440A40504F1323D79249850E600B /* UMFileSystemInterface.xcconfig */, + 54F996004D749A8C4E92E03115DB9971 /* RNVectorIcons.xcconfig */, + E4A44DBD0125EC6C933C43B0821CE950 /* RNVectorIcons-dummy.m */, + E51B633A6568F091331A0C0FB8A9AD61 /* RNVectorIcons-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - 8B31B9A1C772B29CDE4B5047E73CC1D2 /* Pod */ = { + 873338F5AAFE3D41E243E456858E2B91 /* CxxUtils */ = { isa = PBXGroup; children = ( - 0EB20C8DF50E560049B18F49C648F10A /* React-Core.podspec */, + C366E75E4970FFB7A917CCD2CEA7C283 /* RCTFollyConvert.h */, + 6155B18D8CF4FB456DC33C47918C8895 /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; + sourceTree = ""; + }; + 87539F95CABB9949D19B0D7455021360 /* EXAV */ = { + isa = PBXGroup; + children = ( + 357EE4430484C005819F04B685F87230 /* EXAudioSessionManager.h */, + 5FDF7BC550BC5054CE7AC008CBA17AF3 /* EXAudioSessionManager.m */, + 6B4FE9F9973F703E076635C26942E1DC /* EXAV.h */, + F68B894BFB676E3DB6ABFF59C9420AC9 /* EXAV.m */, + EC14B89EB09A6697A2C3F755E6C05789 /* EXAVObject.h */, + 5553295AE6D49C6BA686D1E0A7046384 /* EXAVPlayerData.h */, + 731F8AF10F09EE4C983A1BD142DFAFE8 /* EXAVPlayerData.m */, + D97DCBB8B817BB7055DA5FF2ED1E07F4 /* Pod */, + 77544E5B889A6C60EE92C76C5912357D /* Support Files */, + 738FEC59CC39145D0F74A0D0CF4E4347 /* Video */, + ); + name = EXAV; + path = "../../node_modules/expo-av/ios"; + sourceTree = ""; + }; + 8792BA9651C7EAEB0C26DA9DC308C049 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2E985151BC5A1D14982E940CFB852708 /* react-native-jitsi-meet.xcconfig */, + 8424053FF468644E6725083AA014F82E /* react-native-jitsi-meet-dummy.m */, + 215087140A560782E3D4183A4ACC10C2 /* react-native-jitsi-meet-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + sourceTree = ""; + }; + 88280434FC80FEC8CCB1B46B4ED96389 /* Pod */ = { + isa = PBXGroup; + children = ( + 2BAA4B4A8C57845FCA56A74CFFEB1621 /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = ""; }; - 8C863F79C0EC6F8D375A01F9B6D01F13 /* ios */ = { + 88A42DE2ED39185CAD8F249848287DC4 /* Views */ = { isa = PBXGroup; children = ( - A4061ACF38DF7CD0EBA4002BB78F6207 /* RCTTurboModule.h */, - CA1241D3B5EEE4FD5C20C761219A6335 /* RCTTurboModule.mm */, - 90E6D6E6AF7AF5CBA6B44DC028DFE6B0 /* RCTTurboModuleManager.h */, - 21FE77054F9C254ACCD4B873EF82A437 /* RCTTurboModuleManager.mm */, + 6B9D7BBFB1A3C4386C89106FD16D456A /* RCTActivityIndicatorView.h */, + 1D44E75F76E72B5F892FC80EF09CB91E /* RCTActivityIndicatorView.m */, + 6AA8B0F8C06DC33CE0CAAE1D66DFFA08 /* RCTActivityIndicatorViewManager.h */, + DB6BDFB3FFC45D52CADDD63EC71C494B /* RCTActivityIndicatorViewManager.m */, + A524FF638100AC45C33EF88339FC17D4 /* RCTAnimationType.h */, + F7C298AE307A303912D4493997FA6582 /* RCTAutoInsetsProtocol.h */, + 006A91ACB3FAF05E02C0BB84902EB5B9 /* RCTBorderDrawing.h */, + 9F044DED62A1D2EA266A2B01BDE3C5DC /* RCTBorderDrawing.m */, + B19F2883CDC6C609DB643BCC2F776E02 /* RCTBorderStyle.h */, + B446B989F75F5B50E56A3C514BEF3880 /* RCTComponent.h */, + 48A0AADB2A4FA5488B3B5199F7C8EEBF /* RCTComponentData.h */, + 5409CC27E1D7E6A8BFA8708EA2D391C0 /* RCTComponentData.m */, + 03E085DBA7E97CE3E2B19A40F6AF0571 /* RCTConvert+CoreLocation.h */, + FDF03B342108C1A30921382AA6BBBF1B /* RCTConvert+CoreLocation.m */, + EFFB9E6DFDC83EB069C6B62933495D8F /* RCTConvert+Transform.h */, + 19F236EFD656CD6ED1BE2782FF78DE63 /* RCTConvert+Transform.m */, + 6F21C0E0E5E6EDB0E38A20856E37E5CD /* RCTDatePicker.h */, + A74E5A3A211DACFFD2A246748236E82D /* RCTDatePicker.m */, + 734F3CDB841342C878472876A5DB5FC0 /* RCTDatePickerManager.h */, + D189DE6A6BF262777E79201138018E7E /* RCTDatePickerManager.m */, + C2F4266A6264DC9E74BC7FDFE139661B /* RCTFont.h */, + 86E76DEC6BC5EA597C6615549CE52739 /* RCTFont.mm */, + FCFCA0A9FD3E48FABC0516EC7451EA72 /* RCTLayout.h */, + AEAB7139C9DEA683254F207803C2F25D /* RCTLayout.m */, + 35CEE6892322D48927C3ECC84DC8438C /* RCTMaskedView.h */, + F4B85F10AD24144C0F4ACC8B52FE996C /* RCTMaskedView.m */, + AA02C1E29CB6E36CF2F968FDC1B38B00 /* RCTMaskedViewManager.h */, + 3227B4916513844D43733B4A452ABCE2 /* RCTMaskedViewManager.m */, + C7B90CBFB4AC716BB821DF3EFE150151 /* RCTModalHostView.h */, + 12C009003B7CE339561B3DAA7A118DAB /* RCTModalHostView.m */, + EAE13E4C86559B451B3E35488EF986B7 /* RCTModalHostViewController.h */, + DFFC97154F73523F6603DD1F3EE64182 /* RCTModalHostViewController.m */, + 0DCEA70A8455AC7D4E35182D9A7F4ECC /* RCTModalHostViewManager.h */, + 5139D60632AE33D4BECAD013650BB15B /* RCTModalHostViewManager.m */, + 59956243013DCFA9A85894DE86ACB589 /* RCTModalManager.h */, + 66523D431756F5E9A7D84399DBABC82A /* RCTModalManager.m */, + A57F6995734EE8ADDE7F8FEFA25AC49C /* RCTPicker.h */, + 06C337547CAF801A9A2D2CED641A5482 /* RCTPicker.m */, + 0C883A93632C4771ABA985D21932C9C6 /* RCTPickerManager.h */, + 072A229515E67856918919BF7026D719 /* RCTPickerManager.m */, + EEA585537C5D6D7BE71A56655065B6DD /* RCTPointerEvents.h */, + FB2C4C71D65E4EB15B7280625E88E856 /* RCTProgressViewManager.h */, + 6FBF5A4822BDB431BABE233D633F13F7 /* RCTProgressViewManager.m */, + 6E959B9FA576284194DF49005EC2F3D3 /* RCTRefreshControl.h */, + C9882F9D0C1F75D8C5013E75A9C5BE28 /* RCTRefreshControl.m */, + BBAF83B7BD347FC1D67A49FC2E8FE76D /* RCTRefreshControlManager.h */, + C648552A2843B71224D3B125A45C15ED /* RCTRefreshControlManager.m */, + 930D4F04D29FCE7F407D31112767117C /* RCTRootShadowView.h */, + 35507195B669932A80E9BC3CC8A78C3B /* RCTRootShadowView.m */, + 118846E156FED3C748B4D00BEDCFDAC5 /* RCTSegmentedControl.h */, + A5453BA67D5A8D1265CC4D4F25D4ACCF /* RCTSegmentedControl.m */, + 7FE22117442F8A974DEA3541D0275D00 /* RCTSegmentedControlManager.h */, + A1512754E862C64B6D673A29DBA48C95 /* RCTSegmentedControlManager.m */, + D3F2E8CA46311C82685B3649AE8679F9 /* RCTShadowView.h */, + B6469FF91BE35896A0F7C4A257B67385 /* RCTShadowView.m */, + E0927A2CA77A93D1A338FDD1DCEF0951 /* RCTShadowView+Internal.h */, + 2DBD16FE4BF18987F2ECB83E4922B98E /* RCTShadowView+Internal.m */, + 85F066CE260AE8BB1CA397934C287D3E /* RCTShadowView+Layout.h */, + 603517CE0433967A9489AF7139F3570B /* RCTShadowView+Layout.m */, + 45DF188108DEEED5638FCF676355F54E /* RCTSlider.h */, + 827A734788ECFE9FCB7027E40BE94D5E /* RCTSlider.m */, + 2D4B1E99092E36615F101CE0658D0426 /* RCTSliderManager.h */, + FDB38AF4E7E9413184E7F9BF4D847424 /* RCTSliderManager.m */, + D3E3FF9AA367DAACB6D30CB31A02C1B5 /* RCTSwitch.h */, + C305168FAD215519274F2AE6E43577F6 /* RCTSwitch.m */, + 3195AB95D70C5E65B55CF799C8C31B41 /* RCTSwitchManager.h */, + F6003F7281C2606475FAA67EFB05A68B /* RCTSwitchManager.m */, + FF007B97ED4825FB5DD4EC5B259F585A /* RCTTextDecorationLineType.h */, + CAF1BE452932FE40346A576C71DBEFAE /* RCTView.h */, + AD3015F3E07D474D457615D397B24B94 /* RCTView.m */, + F862CB52DCD0D46C3E12B5EF581B4BE6 /* RCTViewManager.h */, + FF812C33AF0646DB394034654C8C6836 /* RCTViewManager.m */, + 758BC65F26ABE0B8DB84F926F3833C6E /* RCTWrapperViewController.h */, + 9C89316550F291AB37CBB8DCF16C4945 /* RCTWrapperViewController.m */, + 845A0DDCB7399C26618185BC79192F34 /* UIView+Private.h */, + E42C397B7AF23652BBF8CFC531689C07 /* UIView+React.h */, + 27BD052E627B478D6051402BFAC7F93E /* UIView+React.m */, + 630B077C2EDBE671957C71681DAF7911 /* SafeAreaView */, + AD9D133B34FBB5415C385E9A1B204368 /* ScrollView */, ); - name = ios; - path = ios; + name = Views; + path = React/Views; sourceTree = ""; }; 8D436834128E652E6596ABE44DEF437D /* SDWebImageWebPCoder */ = { @@ -10170,123 +10059,103 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 8D5B19163CA6D41154D94054A165A4A1 /* UMBarCodeScannerInterface */ = { + 8D8923069463657465541A44797FFF5F /* Pod */ = { isa = PBXGroup; children = ( - 5A91CA6D6022705DA88BF6B6A1C7879A /* UMBarCodeScannerInterface.h */, - 11E389E045BCBF83010393F69FBDC4B1 /* UMBarCodeScannerProviderInterface.h */, - 2188DAB106F0A2AC9B7BA6704B34E13F /* Pod */, - E5414C3857C4790B6064426592A6DCCE /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - 8D629DAE4A27A35F87B892806AF25955 /* ReactCommon */ = { - isa = PBXGroup; - children = ( - 6326917F0F601EB34EF3343C96151EED /* jscallinvoker */, - 0BE77E4DC8A7CF2DE5DEAE22C0E846C8 /* Support Files */, - 85F44BB44FA8979CE2DABEBA1C4E3FA9 /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = ""; - }; - 8E1143E45A11ECBE38C417058EA097D7 /* Pod */ = { - isa = PBXGroup; - children = ( - D09A584413A8371E3BE799A82AD2D5EF /* React-RCTVibration.podspec */, + D9ACFDF4DA3BB4FF97DBEDA3A6574097 /* EXFileSystem.podspec */, ); name = Pod; sourceTree = ""; }; - 8EEC6EA583252762A5907791D3E2026C /* Pod */ = { + 8DF5B14300924905847CAE5A7B992DDB /* Support Files */ = { isa = PBXGroup; children = ( - 031612F602327B8E86998A9BFC8772FC /* UMFontInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 8FE0BC24B053A376B2E7E600AA192E71 /* Pod */ = { - isa = PBXGroup; - children = ( - 9798729FBA61A01FA4BAF2C5935013DF /* EXHaptics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 927FC05AD6B14B696177D57F6849D94B /* Pod */ = { - isa = PBXGroup; - children = ( - 784773599B7F6FF0668F7908F0A92394 /* UMFaceDetectorInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 92BA217416E46D586AD7103A6DBB7E28 /* Pod */ = { - isa = PBXGroup; - children = ( - F07BA3F4F9FA3F8EB130BB58422488F8 /* EXAppLoaderProvider.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 92C267C0BC402C98305849D6CC321311 /* Support Files */ = { - isa = PBXGroup; - children = ( - EB1BE5978B196C0A8829D5BB8DDF3138 /* react-native-slider.xcconfig */, - CC034D566D928405177A6168FCC656C5 /* react-native-slider-dummy.m */, - 072E531D9DB89866DCC6BAC3A7D5C874 /* react-native-slider-prefix.pch */, + D8EF6DABD23F578542E2D20B74D3D64E /* React-RCTBlob.xcconfig */, + C52A38A26D941F72597DDE9F0A37A8DC /* React-RCTBlob-dummy.m */, + A90CA3A92964EF2579DC9E11BCCBFD45 /* React-RCTBlob-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 92F526C4944BF4E55B6633B4FEA0AF07 /* Pod */ = { + 8E2C5AA9D033DD35588088E468FA2CD8 /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - 3621EF4F476C845F377BC235A6C838CD /* LICENSE */, - 116BEB3EE21206B1D4CB59AC53153DE3 /* react-native-jitsi-meet.podspec */, - 2A0FB9521830D237F4463109251B0464 /* README.md */, + D6F8ADAD4AFB1AE3D9D85434F6AA021B /* RCTSettingsManager.h */, ); - name = Pod; + name = RCTSettingsHeaders; sourceTree = ""; }; - 939830D5245B16EF0C59B91B66C79AC0 /* Protocols */ = { + 8F762DA11B81D04ACDC5A102833BD935 /* Support Files */ = { isa = PBXGroup; children = ( - E50F1BDB59560C2208BC53CD88107847 /* UMAppLifecycleListener.h */, - 93F2C682FA6F99D67928F8667235A3CF /* UMAppLifecycleService.h */, - F44086620DAB6F77CF3BD6506D06798F /* UMEventEmitter.h */, - 7CC8FBDE81778614DD8CE5DE55460D4C /* UMEventEmitterService.h */, - 9A37385936A3AF6975BE19B5E37A6A63 /* UMInternalModule.h */, - E2967FC394675462ECF917E020B88494 /* UMJavaScriptContextProvider.h */, - E07D0B943DAD7D7AB04C7BFE016DCBFF /* UMKernelService.h */, - AB152A216EE0183A2D0E61D446A9F071 /* UMLogHandler.h */, - F8BED19E476483C03DEC417A2219CFE7 /* UMModuleRegistryConsumer.h */, - 481152DCF8381BB81B4CB5E318542A6A /* UMUIManager.h */, - 86CBEBBFD992C37A25A483B4EBEF43B1 /* UMUtilitiesInterface.h */, + 6D4D16EF9A9FA6A4DA66570F44B05F69 /* RNFastImage.xcconfig */, + EDFAF1B6836FFC3204CA8080AA5A0A41 /* RNFastImage-dummy.m */, + EB2E1A70F920AA0547AF7A2FEA170ECC /* RNFastImage-prefix.pch */, ); - name = Protocols; - path = UMCore/Protocols; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - 946A89FD67B5A835E18AAF7943636B89 /* Pod */ = { + 90735FA5CDEC56104FB6959B2ACBC245 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 1C53CFE294908B03C59C10311B192437 /* LICENSE.md */, - 3AA1B19BB56ADF960DF7D344F78BA8A5 /* react-native-document-picker.podspec */, - A010E6033FF9CA9113F7E3A876AC660F /* README.md */, + 302E37CD54C3F4A32229F63F22126C7B /* UMAccelerometerInterface.h */, + 0C969501BDF38B00CC0121F55DA57182 /* UMBarometerInterface.h */, + D4159F77094F0425FF6A5AA3AF1F78BA /* UMDeviceMotionInterface.h */, + 1267B6AD3D8D2F6ECC365F547ADADBE2 /* UMGyroscopeInterface.h */, + 1545B2D238AD8991AA4F2778E2468B26 /* UMMagnetometerInterface.h */, + ADA731BEC58D9973CC2DD6E9675F34A3 /* UMMagnetometerUncalibratedInterface.h */, + 9B8AD2281FB727154D5C12E6BBB1D5C5 /* Pod */, + C914192CBFDB0B92300456ACAB52B0CF /* Support Files */, ); - name = Pod; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - 947B6BBD5A9067BE629AB6524FAA116B /* Pod */ = { + 9123C92DE2C18EC07F799A51ED634756 /* Resources */ = { isa = PBXGroup; children = ( - 395979489ACBA344F3B2C903E6230E32 /* FBLazyVector.podspec */, + A1C4DE3775731A6AEDD336067EEE03BF /* de.lproj */, + A83563ED1B8552B3023F8496D52DDEC5 /* en.lproj */, + 0204FFA6DCCD570CDC31DF830ED0B68B /* es.lproj */, + 54E38666EED87DA6C2D2AF27054A6575 /* fr.lproj */, + 32ECFD56D4C15CD002B0CDFB5E599B13 /* ja.lproj */, + A385FCD9093C6C9907B533D8CF292798 /* pl.lproj */, + 46AF21F851A2C82B2BEC5949ECD6817B /* QBImagePicker.storyboard */, + DEBC889B15F04209C3F46BA6C73C3923 /* zh-Hans.lproj */, + ); + name = Resources; + sourceTree = ""; + }; + 9231AB94B806622B9641E7FD02609619 /* Surface */ = { + isa = PBXGroup; + children = ( + EDC4C57603BF295EF4AB5458DCA3EEDF /* RCTSurface.h */, + 5C56DBC1C1527639250735A3D334D465 /* RCTSurface.mm */, + 421749BA2F7571D99D820BC166D7C111 /* RCTSurfaceDelegate.h */, + 85FA1D48D833ABB0A1B1615989E77633 /* RCTSurfaceRootShadowView.h */, + 604B9E77AF347C8E1577DEFB739855DA /* RCTSurfaceRootShadowView.m */, + 6E6105005932822D378CAAC5CC045CA7 /* RCTSurfaceRootShadowViewDelegate.h */, + AE2922524544A62E72CAE556CACF8353 /* RCTSurfaceRootView.h */, + 0DED9A673F38976D3067C9FDC5F2C87A /* RCTSurfaceRootView.mm */, + B64ABAA2ED051F4D59C5A0E249CA284F /* RCTSurfaceStage.h */, + 94A1DC650FDB78B22851D3136118CEF9 /* RCTSurfaceStage.m */, + C326E06124A6D1EA1B7089D5E7E9F8EC /* RCTSurfaceView.h */, + 40D46DDA157EBD324FC6343D6E49BE4D /* RCTSurfaceView.mm */, + BCC049C90E0046B1BB61D933AA01747C /* RCTSurfaceView+Internal.h */, + F30FFFF1DA8E2E2F1F65A4F83FD5867F /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + 92389350297983952D35B34535E9FC77 /* Pod */ = { + isa = PBXGroup; + children = ( + A17C4CE7CC07E5F34676C85FE28D0296 /* LICENSE */, + 42F513FE353D63FC8714B2577677A819 /* README.md */, + 37EA7BC2C3DE6B10FCEBC3CE17342E4D /* RNAudio.podspec */, ); name = Pod; sourceTree = ""; @@ -10301,16 +10170,79 @@ name = Logger; sourceTree = ""; }; - 95D5B36387E87767B9FB7CCD5DDEF04D /* RCTAnimationHeaders */ = { + 95A402F8B3EBF0AD35A9DB225B732ADB /* Pod */ = { isa = PBXGroup; children = ( - 5414AE6DDACD6C4C27220E5FF9C96EE1 /* RCTAnimationUtils.h */, - C2517F65DB4D4963955B79BCC8FB2A1D /* RCTNativeAnimatedModule.h */, - A02C799EB03CF97350DD5854B811C0C0 /* RCTNativeAnimatedNodesManager.h */, - 03F26E927D251683786753CDBBF5117D /* Drivers */, - ECE3CFC6B733646AACDA8B2FFD0BB0C3 /* Nodes */, + A6B7370434CF3B98104CFA90EDB7588C /* UMImageLoaderInterface.podspec */, ); - name = RCTAnimationHeaders; + name = Pod; + sourceTree = ""; + }; + 96044D29C99F780724EDE717767873BE /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + 3A8786AC01810ABD6981FF8F09682DAF /* DeviceUID.h */, + 56B736E929813BD04E3FF23F394B3A85 /* DeviceUID.m */, + CA48529D6657E08F27B32CA412904B75 /* RNDeviceInfo.h */, + 00E59C3B11F5E8E852ADAE43B161CD71 /* RNDeviceInfo.m */, + 6D2CF932B9861AE12D8B61B8542B6A99 /* Pod */, + A0B95FA5B7D4B4E98ACD7FE0A8B0A54F /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + 968A2ACB1E413B2C72CA3CD6F1253159 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9259D6124279E8C709FDF24A7DBEAB57 /* react-native-cameraroll.xcconfig */, + 21C4DFD1278075E0235297783391EC0B /* react-native-cameraroll-dummy.m */, + 1D12D0E6F3B8DBB744D9B0D77BD7229C /* react-native-cameraroll-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + sourceTree = ""; + }; + 96EB065CC28163B4EF99B1E9E5DB8DD5 /* converters */ = { + isa = PBXGroup; + children = ( + 832A6EF418F653A14F74FC571CD08688 /* RCTConvert+UIBackgroundFetchResult.h */, + 14AB6E124BD2B583021797BCCE2C01DA /* RCTConvert+UIBackgroundFetchResult.m */, + ); + name = converters; + path = RNFirebase/converters; + sourceTree = ""; + }; + 972CCDD830772F8FC6B9ADDBF6C52113 /* Support Files */ = { + isa = PBXGroup; + children = ( + B0F6C3A54D39DD74B9F4CC6074F892FD /* React-RCTText.xcconfig */, + B506EC4F45536B9E3416460A49B876AB /* React-RCTText-dummy.m */, + 90507927AE33EAAA01876F1F005EDBF0 /* React-RCTText-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + sourceTree = ""; + }; + 97573B2B175A3B0CE4E7A69A7016C0C3 /* react-native-video */ = { + isa = PBXGroup; + children = ( + 547A32EA6290CE06A658E0B9106FDAC8 /* Pod */, + 109B400EEEDF4D9F490E55B32452859C /* Support Files */, + D4177EB5DF2D53FE85EDD1484E87E43E /* Video */, + ); + name = "react-native-video"; + path = "../../node_modules/react-native-video"; + sourceTree = ""; + }; + 979B5CBDCEF21160CC063D059B527321 /* Pod */ = { + isa = PBXGroup; + children = ( + 35F1D4307439ED1F6D8A7522E6ED147B /* LICENSE */, + A0814B9980CEFB4AA163E5C0FE491507 /* react-native-orientation-locker.podspec */, + 0344E7B3D81DCAC80D0E9F775A586C1B /* README.md */, + ); + name = Pod; sourceTree = ""; }; 980CB63D38BFD9A5C4593515A9DFFD9B /* Support Files */ = { @@ -10322,6 +10254,14 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; + 98B7054A4DB2D5035F5CDF03BAE21326 /* RCTActionSheetHeaders */ = { + isa = PBXGroup; + children = ( + C0D3EA5253A7172009313C0537219DC2 /* RCTActionSheetManager.h */, + ); + name = RCTActionSheetHeaders; + sourceTree = ""; + }; 99DE0DAAD1BFD1A124EF4C0B63BBDE80 /* Support Files */ = { isa = PBXGroup; children = ( @@ -10332,126 +10272,223 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 9B60C34B9DDFBC2756520D0858254DA9 /* Pod */ = { + 9AA7C3645606A8951EA9FAF7D467C997 /* Pod */ = { isa = PBXGroup; children = ( - 13418D83B88F6337A936215291AAEFE5 /* Yoga.podspec */, + FFFD625030EF9BBF22BA1942501A9954 /* React-RCTImage.podspec */, ); name = Pod; sourceTree = ""; }; - 9D97246403426DF0F2CBA4FA32E78DAD /* Pod */ = { + 9B8AD2281FB727154D5C12E6BBB1D5C5 /* Pod */ = { isa = PBXGroup; children = ( - 6067ECBC099C5610EEA24A21E6891249 /* RCTRequired.podspec */, + CF9FE7206E1F2A9BDC50B23FE1E37FC6 /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 9DCBDF44F74E6951EFE5BE4BCE5A213F /* Nodes */ = { + 9E0BCE2C1F81840823665BF9DDCD7E5A /* Singleline */ = { isa = PBXGroup; children = ( - 5300827367CB8363939AF1B14CB87CC7 /* RCTAdditionAnimatedNode.m */, - BD46AC5385CC84A5952D1E255FF9A689 /* RCTAnimatedNode.m */, - 21F7F0D642A4BE155F53A6D1027A76FB /* RCTDiffClampAnimatedNode.m */, - D6F407857CF8E797D83CF81B4DDA0B83 /* RCTDivisionAnimatedNode.m */, - 541875FC146A3D4AF7C305C9CC783C28 /* RCTInterpolationAnimatedNode.m */, - 881868D218B5223A2DF347CA1DFCFDD0 /* RCTModuloAnimatedNode.m */, - 8A7DBD047D8132A53973B81E8A3B6CF4 /* RCTMultiplicationAnimatedNode.m */, - 1B824CABD58145BAA085DEB425D763CD /* RCTPropsAnimatedNode.m */, - 2A9288615ACA0BF93301A73914C47FFF /* RCTStyleAnimatedNode.m */, - F1831FDF795AAFF008805D1C8B5DAF7A /* RCTSubtractionAnimatedNode.m */, - 07460367788943CC87A5DEBC9F0BE2A6 /* RCTTrackingAnimatedNode.m */, - 65394E91B0674DD8D11B74FFC7530670 /* RCTTransformAnimatedNode.m */, - 1C89C4FC2E607369BF79A14FC2B68643 /* RCTValueAnimatedNode.m */, + EDEB5577CD1899B3F7F5F11FBB09EAEC /* RCTSinglelineTextInputView.h */, + 289E33179454D7E3859D7E6A9BB5E1FD /* RCTSinglelineTextInputViewManager.h */, + 5E2F75CCFA4725EE9D410580E837D823 /* RCTUITextField.h */, ); - name = Nodes; - path = Nodes; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 9E96F67867DFE54001375286DBC2FD95 /* Pod */ = { + 9E1768CDF083B50F5B6B4A924ED23343 /* Support Files */ = { isa = PBXGroup; children = ( - 1098DF3E0DF3277CE36F1C55214E28A3 /* React-RCTSettings.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 9FFD6C48AA84AA0129A6513D521A3D8D /* messaging */ = { - isa = PBXGroup; - children = ( - 243C7E6E9AAD9EA0A3101707AE96006D /* RNFirebaseMessaging.h */, - E16B31693808D9810E08D38B3EF71479 /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; - A061C5FA102DDABE39001BE6A1E7B305 /* React */ = { - isa = PBXGroup; - children = ( - 57CA39376C3D1DAD8E89C3F9E5F4201B /* Pod */, - EEF594D71A7C7BC9D8AECC3DE6FC6577 /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - A206351E8B0C1EA96791B49E02267087 /* Support Files */ = { - isa = PBXGroup; - children = ( - 72188C17FE197C7A31B4E11CB885F50D /* React-jsi.xcconfig */, - B3036C135F1DFCE419D5AA9B4DFDEC42 /* React-jsi-dummy.m */, - C5BEB9A848B453A49069AB5DAC45D1EF /* React-jsi-prefix.pch */, + 27341596529135D5692B7B7327999DD0 /* Yoga.xcconfig */, + 21E66246E2002B85194EEACF48230410 /* Yoga-dummy.m */, + DB4735DDBE3DD40EDB9C6F2556240802 /* Yoga-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; - A2CBEA085E8D707A9A11D90318F1A210 /* UMFaceDetectorInterface */ = { + 9E30BE24C978A478D4600ECF6C458AB3 /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - D3962AC3887D0F520323B79177D86337 /* UMFaceDetectorManager.h */, - C2205758F4EAEBB746E096C755FAD032 /* UMFaceDetectorManagerProvider.h */, - 927FC05AD6B14B696177D57F6849D94B /* Pod */, - 23B710BC1438BB7A13D6A0AEE72B4577 /* Support Files */, + AC69360E61A151E205754F6D669DF8FC /* UMModuleRegistryAdapter.h */, + F3D6F56C79F582CB8EE3851BA74DA5EB /* UMModuleRegistryAdapter.m */, + 4179534C459643FB4412416844CC4852 /* UMViewManagerAdapterClassesRegistry.h */, + 0C86DC2194454F6FFCCC4AF94718B89A /* UMViewManagerAdapterClassesRegistry.m */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; - A2DA6D64544A7F296F606130412D3FEB /* Multiline */ = { + 9E3E9D043406A1EA0416CAB0C14A9602 /* jsi */ = { isa = PBXGroup; children = ( - 4CBAE850177822CAAF0B0484BB32822C /* RCTMultilineTextInputView.m */, - A6843A5A11A1F90BF27E91E750F962B7 /* RCTMultilineTextInputViewManager.m */, - 53FE4C651E52A4B096600F1C4BF1EF94 /* RCTUITextView.m */, + 0246FD45FA1E925C01BDADC66A69BC39 /* decorator.h */, + C571527543C1C6A72236C840D24CEE16 /* instrumentation.h */, + A27782AF48BDEA48AEDB672971EA809C /* jsi.cpp */, + 6B654E9C1528E014D67AE41F31A1A810 /* jsi.h */, + FB684571273849A8C02F5DD444715C62 /* jsi-inl.h */, + E6375D5B3B39A6B2703BDCB2AFA1279B /* JSIDynamic.cpp */, + 6B117D74D971589A64829864A8AE6FE0 /* JSIDynamic.h */, + D5B1BB2341170C48622677C2029A72A6 /* jsilib.h */, + D3AAB2DF9FB83B7E1D4F00EC2B58AF10 /* jsilib-posix.cpp */, + E22BC49ED73C86D9E689D04CC9A5DD81 /* jsilib-windows.cpp */, + D77D2E2EB87638F70AEF59D57EDC5A5D /* threadsafe.h */, ); - name = Multiline; - path = Multiline; + name = jsi; + path = jsi; sourceTree = ""; }; - A4BCB9D79480D43D95CAB8DE0F7AA6DB /* Pod */ = { + 9E6228C6B7C4BCDE68BD58A72591803B /* Support Files */ = { isa = PBXGroup; children = ( - D0E0DFCD14E67C11706909A6A99C5344 /* React-RCTAnimation.podspec */, + 23566E6F78D76EF7DB7F33316861017C /* UMFileSystemInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + sourceTree = ""; + }; + 9E6756D40AD3A3AC58403F2EA7302C19 /* Support Files */ = { + isa = PBXGroup; + children = ( + 59BAF3A23CAA66E951CAF91ECA82D36E /* RNUserDefaults.xcconfig */, + F34D0B0B362BBF100ABC690E2B333422 /* RNUserDefaults-dummy.m */, + BE9FB13293581E79896EBD861ED578BE /* RNUserDefaults-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + sourceTree = ""; + }; + A01A72142E2AB987EA773A1F8A404783 /* RCTTextHeaders */ = { + isa = PBXGroup; + children = ( + 120634EB9136888379CC2EA67B466B54 /* RCTConvert+Text.h */, + 9F242E15D7BB04FE6B21F6E867AB5261 /* RCTTextAttributes.h */, + 1C6546E9FD98E3BE5EF35E4FF590C91A /* RCTTextTransform.h */, + FD51F31B3D2791E128D3AEE8EB5D88F0 /* BaseText */, + 4713B0D8FA8D39DFA18A82BD56E94D60 /* RawText */, + 5CB7B6F39944A53ED8CBBD4361E7670D /* Text */, + 7D2E80EA83695B9B18387F2802263216 /* TextInput */, + 74F2F3492D9F583ED53410BD35F1B8E8 /* VirtualText */, + ); + name = RCTTextHeaders; + sourceTree = ""; + }; + A03A484C57382D5B670BD3688710DD54 /* Pod */ = { + isa = PBXGroup; + children = ( + BB82B5DEC21C8CA4E11D8F527AEFA571 /* LICENSE */, + 7FC510C48EBFA39577EF98D127383FA7 /* react-native-background-timer.podspec */, + E9C654A0AD8D0911035235A07C6C9B01 /* README.md */, ); name = Pod; sourceTree = ""; }; - A510E4787B3B9B6EC2A6B86917CA46E4 /* Resources */ = { + A06D7F7F666DD9E1E88EEFD88E729F03 /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 4AC37404E19DE4B79D6A09FB3B4D274C /* de.lproj */, - 8D6D629A6E640F6D69B60F695979A2FE /* en.lproj */, - F93E285BE4F106BF8932B2B288E0B96A /* es.lproj */, - B6B7BACA996C70663A94C0AC4B349908 /* fr.lproj */, - 0BFBA628CCFEC71D915A97EFB96799A7 /* ja.lproj */, - B2AC5E2196CD9B6DD211636809906426 /* pl.lproj */, - 9D96339CB00FBFB4B25ED781F333A880 /* QBImagePicker.storyboard */, - 4E865392D14D7F9AAD27DDB39B8F642E /* zh-Hans.lproj */, + AD4ABA5CEBCCE553E9F6A570051F14A0 /* RNJitsiMeetView.h */, + FA7013F86AC1B2635A36F1539E9D6E7C /* RNJitsiMeetView.m */, + D3A7CF65F52705E88A875E0CC391FDD9 /* RNJitsiMeetViewManager.h */, + 6A210A44A558DB4BE0D609D7D770FA3B /* RNJitsiMeetViewManager.m */, + 545F789467F83C5423E96549E59D05EB /* Pod */, + 8792BA9651C7EAEB0C26DA9DC308C049 /* Support Files */, ); - name = Resources; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; + sourceTree = ""; + }; + A0B95FA5B7D4B4E98ACD7FE0A8B0A54F /* Support Files */ = { + isa = PBXGroup; + children = ( + F04CB905DFD3B94F1F3F521BAD78ACF9 /* RNDeviceInfo.xcconfig */, + 1140F8AD8AAC4AED507E57F76A1AE751 /* RNDeviceInfo-dummy.m */, + 8A3642E9FE853839F0DEA00990380AF3 /* RNDeviceInfo-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + sourceTree = ""; + }; + A1861E7AF117040A309136E80BDE1650 /* Pod */ = { + isa = PBXGroup; + children = ( + CF4EB570F171F88B03630291CA925B74 /* UMFileSystemInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A2BF728FF26677BBC7EB0793961CDAD3 /* EXAppLoaderProvider */ = { + isa = PBXGroup; + children = ( + 6C07B23C852AFA33E95ABF5E8127209A /* EXAppLoaderProvider.h */, + 689E9ED13FA93FC1C672AE63ED33A12E /* EXAppLoaderProvider.m */, + 157918AAB22696ED0C9AA24EF4ACE758 /* Interfaces */, + 5220675971833FCB750DFB6BD46407B1 /* Pod */, + DCD023393C4EC0F1C5D5D595173F645A /* Support Files */, + ); + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; + sourceTree = ""; + }; + A34AD49AA8F202369E4D92B3CAEB6B4C /* EXFileSystem */ = { + isa = PBXGroup; + children = ( + 116E27FCF5E3E7F1D8A46A5C3AAE1C61 /* EXDownloadDelegate.h */, + 22C109EEADD4F8B96EE22C868CE3C14A /* EXDownloadDelegate.m */, + D78AD78AF6AB6F0BE0B02B4408976AA0 /* EXFilePermissionModule.h */, + F432125A1B3B8BEC00831CD879D6FB71 /* EXFilePermissionModule.m */, + 6E159BE489695C1D64837AE29E2B78B9 /* EXFileSystem.h */, + 3DFC4B8E6E0E43682B3D1525E51D6D97 /* EXFileSystem.m */, + E90ACF398CB3D713895AFC1C26A0FA6C /* EXFileSystemAssetLibraryHandler.h */, + 7A3A1F5ED915DC00717D0F67ADC8098B /* EXFileSystemAssetLibraryHandler.m */, + 1405744478739E45790735E1263FC0DE /* EXFileSystemLocalFileHandler.h */, + C54CCB3443354957C01F6FF6B3003657 /* EXFileSystemLocalFileHandler.m */, + 8D8923069463657465541A44797FFF5F /* Pod */, + 7E611EB379C738A6DCAE651E5F022936 /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = ""; + }; + A361BC9D1A4E3D755933D2A8C0112B3B /* EXWebBrowser */ = { + isa = PBXGroup; + children = ( + AEF4B5710E91A0F3799C82823FC25226 /* EXWebBrowser.h */, + FD1B095061113BA335473EB4D464C2D0 /* EXWebBrowser.m */, + 415437BABC896E14171F47B22A12AB14 /* Pod */, + 23A282661138822D370AF962624009F6 /* Support Files */, + ); + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; + sourceTree = ""; + }; + A4231A5E0AB99A7ABAD58D6B6B1F617D /* Support Files */ = { + isa = PBXGroup; + children = ( + 4E08927F1B4152793720308645B87189 /* ReactCommon.xcconfig */, + C7C00ADCD67CFC65D0CE6E869E4F049A /* ReactCommon-dummy.m */, + 0559E4C614E870B6135748B7139B4706 /* ReactCommon-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; + sourceTree = ""; + }; + A4DCBE6B634782134654E5CFF87B1703 /* React-RCTNetwork */ = { + isa = PBXGroup; + children = ( + A5A00C735FF3CC0126B0373B8738EE83 /* RCTDataRequestHandler.m */, + 211F6AF473FDA2EDC014A6465966DFC8 /* RCTFileRequestHandler.m */, + 4E3FBD127ED49BAF37B1EC06723A345E /* RCTHTTPRequestHandler.mm */, + 2A261E6DC47FC78C346E476DFA901018 /* RCTNetInfo.m */, + C3320471C1E5BA0EB07F380A0B91F931 /* RCTNetworking.mm */, + 7AFA9D5359BE1E4E260426F1C13F2D01 /* RCTNetworkTask.m */, + 27818A7732CDA5E2A205B80EAB989760 /* Pod */, + AEA18FC117AA0320B4A38A09674AB327 /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = ""; }; A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { @@ -10463,66 +10500,28 @@ name = "Targets Support Files"; sourceTree = ""; }; - A5B8AB97BA05633A698A3020F24039F1 /* Modules */ = { + A6245E4B34499F2C0151CB5865B2A3B2 /* RNVectorIcons */ = { isa = PBXGroup; children = ( - EBC7B2F4677382CBD60210CA455E8F86 /* RCTAccessibilityManager.h */, - 4CC1D16019A96C865667CB57CCF23519 /* RCTAccessibilityManager.m */, - B038F44ABE2A3C6093324D530ABFE312 /* RCTAlertManager.h */, - 5915477795932526EEFC89FBEA7B82AC /* RCTAlertManager.m */, - F8B7263BADCFD744E32F1CC23ECA5549 /* RCTAppState.h */, - 9C7E01E3156F2137645C0D6C51F90EB6 /* RCTAppState.m */, - EC7F2D94E3973F2448BF2399A82AEAE0 /* RCTAsyncLocalStorage.h */, - D800362A1EAC706DB637DDDA815FCB64 /* RCTAsyncLocalStorage.m */, - 801E99A21664D8D68B2DACB0704F68A0 /* RCTClipboard.h */, - D38935DB2A21836A8A17D87C02FE8DCC /* RCTClipboard.m */, - 8E13BA75043295B8C6EA26BBCE451CC9 /* RCTDeviceInfo.h */, - 10781EC5358906306658F75464CEAB50 /* RCTDeviceInfo.m */, - 1588722AC1F1877FF162DB4503545D65 /* RCTDevSettings.h */, - E1AC7446DCA0665C90D621BE057E9256 /* RCTDevSettings.mm */, - 3AF5E0FDB28083ECE7863DC7831470AA /* RCTEventEmitter.h */, - A798D3BC0A968E1D468B9F1BE57782DE /* RCTEventEmitter.m */, - 5F172B9DBE8D23302C6B8A44AE928388 /* RCTI18nManager.h */, - 5F0FB6B1D273917FA9C0F1B70ECFCB3F /* RCTI18nManager.m */, - 772720108593E953F4093B30981FFD2D /* RCTI18nUtil.h */, - 3D4ACA40E9618BFDDDAB6169A365CC8D /* RCTI18nUtil.m */, - 659DA3653F4F72A99996761FA56C4DBC /* RCTKeyboardObserver.h */, - 8E5496FD4962BCDE6FDFEF4257C4A257 /* RCTKeyboardObserver.m */, - FB7CEE5036E73D34C54DE51B53DA7EE3 /* RCTLayoutAnimation.h */, - F8F37064246BEE9F8C7A69671281433B /* RCTLayoutAnimation.m */, - 657929BA048F6BF2E57ADF4C9CD39799 /* RCTLayoutAnimationGroup.h */, - 62E11190F74476BB4254611B685A5685 /* RCTLayoutAnimationGroup.m */, - D32FD2DC67C23F6E6A8180188AD1592C /* RCTRedBox.h */, - A61A2F8B6DF63BCB408BA44CF8062CE2 /* RCTRedBox.m */, - 4BBFBE789BEF0674A3F1A44F89494557 /* RCTRedBoxExtraDataViewController.h */, - 59DD6416FA43F3F675F005EF8FD3F328 /* RCTRedBoxExtraDataViewController.m */, - 1AF7C413C7FA2654A5538A174E57FF11 /* RCTSourceCode.h */, - 215BA62B612524467633014B1E139B0D /* RCTSourceCode.m */, - AF1D3A7E4F081812185DAEB37EE6E065 /* RCTStatusBarManager.h */, - BA44C408D387162B22E4CD223D65C7B2 /* RCTStatusBarManager.m */, - 118A76D5450D2D9A30DAD8E065C92CCB /* RCTSurfacePresenterStub.h */, - 69B055354EAE4BA62853C728881ACD3A /* RCTSurfacePresenterStub.m */, - FF905AF5FDF55125E6D055EEB4E6D87B /* RCTTiming.h */, - DA46EC3F7B4ACC9EE9EFC228D62084F1 /* RCTTiming.m */, - B90B4942E1ED0199158E5ACC0EF66E35 /* RCTUIManager.h */, - FA3C9C05A2745796C90E164493003F98 /* RCTUIManager.m */, - 3C936AB33DF656FAF2C5EAB8138CA869 /* RCTUIManagerObserverCoordinator.h */, - 4FEADA75A15417B8AAAADA6C46C6DBB7 /* RCTUIManagerObserverCoordinator.mm */, - F1591CF497A71B0B4B05EFD3E3656A52 /* RCTUIManagerUtils.h */, - 29296F8F060C36B7C0B8B12AD859654B /* RCTUIManagerUtils.m */, + BCBB7BBB84CE072F72C306CB1A339DAB /* RNVectorIconsManager.h */, + 7DF0BB256952FA1C74F4A0CA9BC1673E /* RNVectorIconsManager.m */, + E57FB6E4DC9D7361CC253CEA3E86D58C /* Pod */, + DB128E88DF4E76C0B5804288D3DE69AD /* Resources */, + 859A84580DD23CDB9B1B010C4C32FEDD /* Support Files */, ); - name = Modules; - path = React/Modules; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; - A62C13346C97FB929652EC1F1713E53C /* Pod */ = { + A63CCD465EA8AE08A2674E48F407F158 /* Support Files */ = { isa = PBXGroup; children = ( - B440325A10B029C79737D862E693796A /* LICENCE */, - 8D4FB13C673E905FB20F81C28D9B6679 /* react-native-cameraroll.podspec */, - 351675B33C756AF5361F3A72F375E758 /* README.md */, + 5FFE412BBCB497A02653CCEF6E3B6E83 /* UMCore.xcconfig */, + A04378B750390FA9197CE08773E8A6DF /* UMCore-dummy.m */, + 76E696B1942CACA7E87E4FC3A80402AE /* UMCore-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; A6F18B90ADD5F3C489E841EC3046432D /* Support Files */ = { @@ -10535,28 +10534,6 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - A718D11B54AC65BB9896DBA26EC395C4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3A0DF83220F1B3829DBA4156BBB386E7 /* RNGestureHandler.xcconfig */, - 687A41FEC3A047663FAB081DC2F60CE6 /* RNGestureHandler-dummy.m */, - 588755B3754A6DB230AE8F9E6402F292 /* RNGestureHandler-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; - sourceTree = ""; - }; - A72C662DEB69E045721B286ADE1B6D22 /* Support Files */ = { - isa = PBXGroup; - children = ( - 06BDE908A3E04767FA0717BD6D74A719 /* RNVectorIcons.xcconfig */, - 8E13103EBBAC3CC02469B4EE37E8FCDE /* RNVectorIcons-dummy.m */, - 59D7B48D028CE1B663314427A679E875 /* RNVectorIcons-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; - sourceTree = ""; - }; A73232D7B575C52303AFCBA0D1952B59 /* Support Files */ = { isa = PBXGroup; children = ( @@ -10568,97 +10545,154 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - A8186EDD0FA77C2DB3EF37A65D27093E /* Drivers */ = { + A744FFFD456BC639B08B86E71C20857B /* Text */ = { isa = PBXGroup; children = ( - 927C17DD6B309124DF54EAD8D4F887E9 /* RCTDecayAnimation.m */, - AD04C1BFC9C5F281657981675CDCA95D /* RCTEventAnimation.m */, - 4518AAEDC4391458D6489E7697479069 /* RCTFrameAnimation.m */, - 9754CCB1B41C75728B6A02F4FFF969B1 /* RCTSpringAnimation.m */, + 0A4496C6492E8BA45305A1FEEEBD6901 /* NSTextStorage+FontScaling.m */, + DFCDCABAC89EB98D24C53BBA6FE3C904 /* RCTTextShadowView.m */, + 1F2821F039B7C781208D6F11549AEDD7 /* RCTTextView.m */, + 33DA9299DFA80FDAB63C5678B0DBC6BD /* RCTTextViewManager.m */, ); - name = Drivers; - path = Drivers; + name = Text; + path = Text; sourceTree = ""; }; - A82E022078BADCE51C793274FF9AFF8D /* RNReanimated */ = { + A83C4863F9F332688257562CD94509B1 /* Modules */ = { isa = PBXGroup; children = ( - C9CD2D78E8F41D39A64B4383E335683A /* REAModule.h */, - 706F9976E2D7AAA380D98FA3C76F52EB /* REAModule.m */, - 8F8D67059CA3241FF449AFB5ADB16969 /* REANodesManager.h */, - 0929481204407C90D1661AFC8B0305EF /* REANodesManager.m */, - 33C49BFA8F277312FB304C11F979AF90 /* Nodes */, - 4B66572C07E264459E4647ED964458C5 /* Pod */, - B05602ABB715CCCDE8BDB495CB73FA66 /* Support Files */, - CCDDAAE69E1395EE41AE31D3FD03FAB5 /* Transitioning */, + AB5BB3FFB9D166893CC95BD6DE247464 /* RCTAccessibilityManager.h */, + D59AF94D98ABE63F8E9F9432A8E0B6B9 /* RCTAccessibilityManager.m */, + 9BA52432AC0F92647A05FD7AA1853188 /* RCTAlertManager.h */, + 0BEDD37A8070C2259A52C4B87FF220F4 /* RCTAlertManager.m */, + 1AF8E2E2B0217A01CC5F953744A9DF6A /* RCTAppState.h */, + 20BBB7E03E30C29DDFE9DF994DD64251 /* RCTAppState.m */, + B9E5C63C60D30DA96765FBD72D37FF76 /* RCTAsyncLocalStorage.h */, + B98247EBB5782CE8051AFEBEAAF257F5 /* RCTAsyncLocalStorage.m */, + 4C9DDBACF725C8DF01B6EF485940BFA4 /* RCTClipboard.h */, + 4A0A48F2D1FD4AC2E2748195E43184AF /* RCTClipboard.m */, + C2E8E8563621FE972E731563A3DE02B7 /* RCTDeviceInfo.h */, + 74376EC07D3F975FD1FE66CAA2ECD8BD /* RCTDeviceInfo.m */, + 4017661D8F5B0682D15202454DA35C9D /* RCTDevSettings.h */, + DB3316D4381F7AC386AB594BE1C1C667 /* RCTDevSettings.mm */, + 9FA625835071568485C6933C1EA918A2 /* RCTEventEmitter.h */, + 877DBBAB43FAAE182840481DA1DC1A07 /* RCTEventEmitter.m */, + 7E579EE2A835E3A78C32B26DCBD2BB27 /* RCTI18nManager.h */, + 0A1AE9B39C7652616C8D6BB801552498 /* RCTI18nManager.m */, + F9516B4B5D2BDED1D66108948E2AA2A2 /* RCTI18nUtil.h */, + 78B439012552CA142F16499426113545 /* RCTI18nUtil.m */, + BE0FFCFDCA1E8A5EF2264985059D1E7C /* RCTKeyboardObserver.h */, + 6054DB5F045D5F8BD9D721BF98672CA2 /* RCTKeyboardObserver.m */, + E2BB89BA761B35A863A3495F2A3AF0EC /* RCTLayoutAnimation.h */, + 5EDDF3D2DEA48D4BF148E990ABD5611B /* RCTLayoutAnimation.m */, + A73B61118A7A2771EA9034045466E257 /* RCTLayoutAnimationGroup.h */, + D6177BC2A28363DFBB91DF58AAE3AF1A /* RCTLayoutAnimationGroup.m */, + 846233A24465EE0DD2BD8C6C3B578E7D /* RCTRedBox.h */, + 4973755A5C8153712ECB14D21BA02D68 /* RCTRedBox.m */, + A7A53BE143693748F97B1EE4DB8C7E59 /* RCTRedBoxExtraDataViewController.h */, + 74A79C14BCB87394D8AC086FCC4B270A /* RCTRedBoxExtraDataViewController.m */, + 75595DBD8618D15D864C395D2F159A4E /* RCTSourceCode.h */, + 1124C23FB2A502A12201876226BE9C90 /* RCTSourceCode.m */, + 3B38F45AC5E85864AA2C7BD66B068E17 /* RCTStatusBarManager.h */, + A9044317CFED7D37B46560668B46ED79 /* RCTStatusBarManager.m */, + 05B45453F410B75D4C4E47E4EA8F3068 /* RCTSurfacePresenterStub.h */, + 86EE36CDC5C5F64D89A484D13F9B47C1 /* RCTSurfacePresenterStub.m */, + F709179D786BA8906C86B1B39489121C /* RCTTiming.h */, + 57368F2086DD6FE94DE31D75C66B6F6B /* RCTTiming.m */, + 4D0671E55285B4D24FE81A73F840E8C7 /* RCTUIManager.h */, + E8A42F0D1F9D6C089BAFF542B55AF0C2 /* RCTUIManager.m */, + 062446A5926322219204F38CBF59BDC9 /* RCTUIManagerObserverCoordinator.h */, + 8D956427505125B9D0424549715F1C38 /* RCTUIManagerObserverCoordinator.mm */, + 7D5EFE352D1378B557468F64D9E5D2B9 /* RCTUIManagerUtils.h */, + 892AC60839C08FA6A779EE5D826A90D5 /* RCTUIManagerUtils.m */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = Modules; + path = React/Modules; sourceTree = ""; }; - A8786A9739F351000CC7B97C0FA2ED67 /* react-native-background-timer */ = { + A83ECDB43D3B5944F57F10CEDD66C033 /* Support Files */ = { isa = PBXGroup; children = ( - 6467BFC418094BBA82ED699AF2F84AF9 /* RNBackgroundTimer.h */, - 958A538964B046F5FC63A884FA9D441F /* RNBackgroundTimer.m */, - 15DC3C6BB12D3D8C419EBD198E67A719 /* Pod */, - 7F37CB0903896965A1D1E3252A578D9B /* Support Files */, - ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; - sourceTree = ""; - }; - A96923899F2F14E2364CB7C8325C5577 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4F4C6E57AC99298022B09CF2374E728E /* react-native-orientation-locker.xcconfig */, - A40D49376282675A8A1608198C4819B7 /* react-native-orientation-locker-dummy.m */, - D9A8502E9AE2B82E3B1A952D5000C0ED /* react-native-orientation-locker-prefix.pch */, + 657975F7B4BE548D53BA70808D19A6FD /* RNGestureHandler.xcconfig */, + 8676E7BD06D3F128D9D5C6B7E96FC999 /* RNGestureHandler-dummy.m */, + 5976BB582FC1B576A8E541CD9CF1247E /* RNGestureHandler-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - AA3E7AE0231288897DE76CDABB551CB3 /* Pod */ = { + A97247CCB1E30E266F87484709474A1B /* Support Files */ = { isa = PBXGroup; children = ( - 4AB9E9CA09E9781500458F00D906FB44 /* EXWebBrowser.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - AB377B3B92224DFB1AF61E3C42865A4C /* RCTTypeSafety */ = { - isa = PBXGroup; - children = ( - F6C495F26CFBEFBC26967005E92B0173 /* RCTConvertHelpers.h */, - EDBAC99A7274E858D9F6D3A2910C2E1D /* RCTConvertHelpers.mm */, - A8E7C9A1C152FB2C9A1CBC1BE0C1D48F /* RCTTypedModuleConstants.h */, - 2F41EAF7D54D08571323E5F785BD3EEE /* RCTTypedModuleConstants.mm */, - B68067CA807F7B14A302B72645ECBAD6 /* Pod */, - 81D9F6114CC5D0DDC7794C49F61CFC52 /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; - sourceTree = ""; - }; - ABCBE9BCACE873B6BB605D5DE98C22EA /* Support Files */ = { - isa = PBXGroup; - children = ( - 59D02771C01E48498F859538F8184216 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 882E9C8F4668EAE72A264FA716EFE3F2 /* RNImageCropPicker.xcconfig */, - 262A578D9D6A95FA9D2C63A74A12B843 /* RNImageCropPicker-dummy.m */, - 0A82093132C2C256F2FA5D3B65FD62D4 /* RNImageCropPicker-prefix.pch */, + 47B932A1E353FC65AD3F13D732A9DBD6 /* RNLocalize.xcconfig */, + 58EF93B049742B7FB0AB00B73E81BD47 /* RNLocalize-dummy.m */, + 7EE5DB9D9967205EB5BC1EA6B3AA8880 /* RNLocalize-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; - AD45E2D9087363D280450BDF56E68CA8 /* Pod */ = { + AA2A95EDD86826C606770DDCA7F7B6F9 /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - 8547386EC742745D31300181ACD1066E /* UMCore.podspec */, + 3362B1E98540EE7878B5FAED2A9FBD1E /* UMNativeModulesProxy.h */, + 0D442CA9F738EB55C03CA6B4B7FAEF05 /* UMNativeModulesProxy.m */, ); - name = Pod; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + AA8E90B37E383107D69F1B523B4A265F /* RNRootView */ = { + isa = PBXGroup; + children = ( + 669AACED5451B74A1B173F8CF58715E7 /* RootView.h */, + 99D483AC9B598492130F46428DEC1739 /* RootView.m */, + C3B3E03F97E7B7DD122588722348B7F9 /* Pod */, + 45897F0BECAED6EC776202F5C645FF15 /* Support Files */, + ); + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = ""; + }; + AAEBF56580F3C9F02D78FAD116CD825F /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + A84BC45100C1120943994118E8BC0CB0 /* FBReactNativeSpec.h */, + 2C1CFB0B5D7CC8DEC9559EE6FECE03EA /* FBReactNativeSpec-generated.mm */, + 52FF1AAF01255F2CBB8837DE5E2419E6 /* Pod */, + 0D3ABA4516E2E220B42F8B2E97742DA9 /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + sourceTree = ""; + }; + AD9D133B34FBB5415C385E9A1B204368 /* ScrollView */ = { + isa = PBXGroup; + children = ( + 0D289E948BE7E930A28010FC8E9FB03A /* RCTScrollableProtocol.h */, + F95CACA4782D0191B641D0B5B56A6685 /* RCTScrollContentShadowView.h */, + 1500D248579B51E7855A20DF09D5BD70 /* RCTScrollContentShadowView.m */, + AAF5A90B3B77B36A07954CA39856C1A7 /* RCTScrollContentView.h */, + C5BEED58E8DF46B6F6652CDFE70D044F /* RCTScrollContentView.m */, + C12809028E6E70029F79024699E11BE2 /* RCTScrollContentViewManager.h */, + D026ABCDBD78619A4E476193AED5682A /* RCTScrollContentViewManager.m */, + CA2F65AFBC02446295C8D9339079109C /* RCTScrollView.h */, + 8FA7B11D82F4AC9EC688E6F5E93EF8B2 /* RCTScrollView.m */, + 3CC310ACD5DBE33D3108FF1205BEDB15 /* RCTScrollViewManager.h */, + 5ECDC816BB62DE08A42E843F9CAAF3E2 /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; + sourceTree = ""; + }; + AEA18FC117AA0320B4A38A09674AB327 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8DD751932D7C7B69540AA41E52642326 /* React-RCTNetwork.xcconfig */, + 3F12B9FF4727F1E046CCC81B567800DA /* React-RCTNetwork-dummy.m */, + 841514801CFA5A56C2B0CDF669444C84 /* React-RCTNetwork-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; AEA9BACD48867572A3F1E34A434EA210 /* Folly */ = { @@ -10695,171 +10729,75 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - B02E5B3AC1BFCED3D92AC1C87235253B /* Views */ = { + B080F826DB3A8B1A46E35432E0CBBE8F /* Support Files */ = { isa = PBXGroup; children = ( - 20B89E66A01DCF69DB5C84DFEAF3C692 /* RCTActivityIndicatorView.h */, - BF5CBB0DE4D0AA9DE287CF7AE6A51CEF /* RCTActivityIndicatorView.m */, - 773D91497860302EEC08AB5AEE213413 /* RCTActivityIndicatorViewManager.h */, - 4C648EE5AAA2B5DF6168714E9EFEBB57 /* RCTActivityIndicatorViewManager.m */, - 60133F456FF78804F9AEE4D2C3B11678 /* RCTAnimationType.h */, - F65F1F278B0F93DF76C27745779138E5 /* RCTAutoInsetsProtocol.h */, - 736077A8246C8154580EA08DB05C35BF /* RCTBorderDrawing.h */, - 00D78A4B0214C7CF7F25E5312572EE0C /* RCTBorderDrawing.m */, - 15D44666109AB3610BC6DEF28C5CA237 /* RCTBorderStyle.h */, - F5AAC602913992146864B8C3BB903AB4 /* RCTComponent.h */, - 4E92E29D5A6756A75844E6E90EB02976 /* RCTComponentData.h */, - 3972A87C0C31E6D865566FB1C97594D7 /* RCTComponentData.m */, - 2BC5EF86275F965D3421C5818AB69340 /* RCTConvert+CoreLocation.h */, - 2C17ABAB606722715420D6708B76E113 /* RCTConvert+CoreLocation.m */, - 48609FC6A9DB5548BDEC23FCA011708E /* RCTConvert+Transform.h */, - 97BC1C8A76869E6D037D92F566BDDC8D /* RCTConvert+Transform.m */, - 93C3F265E963792B616A869437DF3D6F /* RCTDatePicker.h */, - 6AD46E5BD03286A699768842ABBEB548 /* RCTDatePicker.m */, - 1231B98DC8FA463C5147C87F53A7B0CD /* RCTDatePickerManager.h */, - 13FC99CB679FAF0B279975B449E1D487 /* RCTDatePickerManager.m */, - D50D717ED039514E7E3EF72E9ED56463 /* RCTFont.h */, - 117823082507FF2CD3810DE8A924654C /* RCTFont.mm */, - 3E13F2680B890F89ED3CAA5AB74573C4 /* RCTLayout.h */, - 8C51D6EBAB67D41940C272A7960AEFC9 /* RCTLayout.m */, - C72F668DD60E0AAB30EDB1330EFA94FA /* RCTMaskedView.h */, - 15C1E533EFB2551229D5D8018377F547 /* RCTMaskedView.m */, - A65519711D7E6514127CE6BBFACA6EE4 /* RCTMaskedViewManager.h */, - 7521D31F3A9E79D6E0C978B3EEC1436A /* RCTMaskedViewManager.m */, - 0060ACFCB7F4DE84A9C2625491EA6A6D /* RCTModalHostView.h */, - B7E0EB48FBFC098528F3AFFD3FF860C5 /* RCTModalHostView.m */, - 7D6700C73A21F270ADADE2937AD41BE0 /* RCTModalHostViewController.h */, - 8D7233787C00DF7D995ABCCA5B3EB617 /* RCTModalHostViewController.m */, - 354570A9B75704AAC869CD4A66F043E9 /* RCTModalHostViewManager.h */, - 50980AAB9368C75899714BEE65A19973 /* RCTModalHostViewManager.m */, - FF2321EA1129CD7B9A3C570468E6AD70 /* RCTModalManager.h */, - D66376417C047FE531FA96D8FE8291E2 /* RCTModalManager.m */, - 8EE0DB3A20DEA4CB06D26C4EED1FA386 /* RCTPicker.h */, - F3BEBAA5D1ED553CB8FCF2B22DF6606C /* RCTPicker.m */, - F174D9CC21F0D1762B87F5D148999515 /* RCTPickerManager.h */, - DE94B45B20EBA3A79B75B576DB1CE5B4 /* RCTPickerManager.m */, - C3AF558283E7E128FB626F24EDADC103 /* RCTPointerEvents.h */, - 9FFBBF90E279EBAC6C6E5B68B7943051 /* RCTProgressViewManager.h */, - 52D23EDA5F884C3239B077C15910ECC1 /* RCTProgressViewManager.m */, - 242B18E8C5CE1CDEE3BF9A0CCB1AC607 /* RCTRefreshControl.h */, - 4A49957A6E59C86F1A4F1583FB7FD8F4 /* RCTRefreshControl.m */, - 69B44F6867FDC888D9B3E778B0CC86DA /* RCTRefreshControlManager.h */, - CCA75C4910342977B6F64CA73A753E66 /* RCTRefreshControlManager.m */, - 606613496D858DA774ED2305077A99F6 /* RCTRootShadowView.h */, - 4C62A883CE89818A80C430CA55152373 /* RCTRootShadowView.m */, - F75E382715FBE5250A79F0C98DE6E678 /* RCTSegmentedControl.h */, - 1530FCAA091AB1F8F8F266BFA7BDFA14 /* RCTSegmentedControl.m */, - AE1C1F5B1636218DCEC267CBFC409026 /* RCTSegmentedControlManager.h */, - 0BAEFD4C4562C5D193B2D14D21D30A0A /* RCTSegmentedControlManager.m */, - 8AA8BCB483CB0B37699373BE5950DB82 /* RCTShadowView.h */, - 6CF13AE017A0A23961BB8B7EB170F98A /* RCTShadowView.m */, - DA9AAE44CF3B1F9CBD5F932B34C3A912 /* RCTShadowView+Internal.h */, - C64D7B0743BF13D2875ED1AD6F5B1BBF /* RCTShadowView+Internal.m */, - 0357F2904793AF75BF705D34080B39A7 /* RCTShadowView+Layout.h */, - F75184F86F3E79DE210E71936545C57D /* RCTShadowView+Layout.m */, - D7B69490D4E712916566E0CCCDF08953 /* RCTSlider.h */, - 8CA0C9A7CC0AC4898AE2F9A566726C4C /* RCTSlider.m */, - E5C7FEE81D653379FD6F11F5976D61FB /* RCTSliderManager.h */, - 0552660F46727BD283F8A428044D8013 /* RCTSliderManager.m */, - 861210F0BE7A71097101B88DB973BF08 /* RCTSwitch.h */, - F20F066B0F018C6B2B233B5AA947D408 /* RCTSwitch.m */, - D2E9528C15F34FC663E46FCF92A0ABB1 /* RCTSwitchManager.h */, - 42DF9032CA32383CC1CF121CF6BEF124 /* RCTSwitchManager.m */, - ECF350EEF9D4CB89A936158E831C3E76 /* RCTTextDecorationLineType.h */, - 309BA5AC5996A59987DC5FC2AA555F5F /* RCTView.h */, - D89B07927047B4DADE70F271874C1179 /* RCTView.m */, - 333C8FCC3D51249171A72DCE9A5EEE18 /* RCTViewManager.h */, - 36B4707E6C2B2E5939A8D58E98A7930E /* RCTViewManager.m */, - EF1F0F24D6B249F14C0FFA5C73F33D1C /* RCTWrapperViewController.h */, - 37ACBA7F8BB60C087B592CF49B2BDCBF /* RCTWrapperViewController.m */, - B244A2A0B9030A23EFCCC664D154DC51 /* UIView+Private.h */, - D88A8CB93215FC62B8F7F4B729D1A2D3 /* UIView+React.h */, - 151FCAEAB01057A6DFAF66D7094DF371 /* UIView+React.m */, - 3BF0EA6928A58A20352AA515D94834FB /* SafeAreaView */, - 738D7C374CE849CBD7E89140967869F6 /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; - B05602ABB715CCCDE8BDB495CB73FA66 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2F0027FFFA10DB9DCD0A6F3347CF8702 /* RNReanimated.xcconfig */, - E921DC8EDE043AA484BBA1A749AC157E /* RNReanimated-dummy.m */, - F7D4F70EF52ABE13A3914E7AF82CDDFF /* RNReanimated-prefix.pch */, + 753C9900C0C5A879FD9D6FB073809EF6 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 23E2E604813E0A83C42F4CDDFD52CD96 /* RNImageCropPicker.xcconfig */, + 2BA51A1007797DCC6ADB9381AA484EB2 /* RNImageCropPicker-dummy.m */, + 19F564B389F733F3CA3C7EA9890D9DE1 /* RNImageCropPicker-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - B07AC8F4290C2EA3DBDCF7B8566997C1 /* VirtualText */ = { + B0DD81621B0BD2C649696BBF75236FEE /* turbomodule */ = { isa = PBXGroup; children = ( - 89AFB173CF329C6B51A398514E06ECCC /* RCTVirtualTextShadowView.m */, - F095906BDA3965C76D41B3547C91D8F5 /* RCTVirtualTextViewManager.m */, + 47E0FC9C441F47A30B282421E2DEC439 /* core */, ); - name = VirtualText; - path = VirtualText; + name = turbomodule; sourceTree = ""; }; - B15AD51A5DF18F95213308993EA15FFC /* Support Files */ = { + B0EB5D645C1B35BF91F55B7AFA819B3A /* ios */ = { isa = PBXGroup; children = ( - BE07A41A7E2BE53BFC6B0863EDD5137C /* React-cxxreact.xcconfig */, - 070F4DA174D42E2375C1E26D009B3DE9 /* React-cxxreact-dummy.m */, - 087D122178ED9A990BC9A3E85FEA2EBD /* React-cxxreact-prefix.pch */, + 336D45C35F2EC445F9ED02E3142446F0 /* RCTTurboModule.h */, + 5FFBE109A12C58D1B77F06CCD5095525 /* RCTTurboModule.mm */, + 21C76485E7EAEA78DB78AC4C425CAA0C /* RCTTurboModuleManager.h */, + 4CBDEF8F1A47C67AEB2B155630AF019C /* RCTTurboModuleManager.mm */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = ios; + path = ios; sourceTree = ""; }; - B1665F87F8BA2F486556E521D84802C7 /* Pod */ = { + B12B31D10C3CE740D44048624586167E /* fabric */ = { isa = PBXGroup; children = ( - E5878A1E7D3087A8215BF63C5CAA5193 /* LICENSE */, - 7F2B27C002C382F3CAF553F080C2E896 /* README.md */, - AF2A59648637F747F242FC3FCD695827 /* RNVectorIcons.podspec */, + 774A1A55E44DB194E3123C72DC0C2DFA /* crashlytics */, ); - name = Pod; + name = fabric; + path = RNFirebase/fabric; sourceTree = ""; }; - B1E872E40803773336EDBDB75702C67F /* react-native-video */ = { + B29353F9A3E5F6C66A586DB2290FAC84 /* RNFastImage */ = { isa = PBXGroup; children = ( - 15B0FD077CFC5788A5954EC9F4B593CC /* Pod */, - 5CA86C622EA350271608F251A866DEE0 /* Support Files */, - DC3F6B2FAE740701720365BAD2F818D5 /* Video */, + 4B6B3289F56C937FDA8C432D6F5B4B9E /* FFFastImageSource.h */, + 61DB6721AE305D83B24E136EF4B371B7 /* FFFastImageSource.m */, + 4375ACCE1A55127C013DC61A09C35CB3 /* FFFastImageView.h */, + 5CF2C83A24C569BB24ADED4DFC7EBF61 /* FFFastImageView.m */, + 4E3FB1287667DDC194E4D8E21DD0BAE1 /* FFFastImageViewManager.h */, + C572628581AD45D5616C05090F280293 /* FFFastImageViewManager.m */, + 17141239540AA5069F72F42CBD467742 /* RCTConvert+FFFastImage.h */, + 67964FF6376567E1802FAB5BA7EA7E0D /* RCTConvert+FFFastImage.m */, + 0DA50F762446FD615EBE13795BD9EF57 /* Pod */, + 8F762DA11B81D04ACDC5A102833BD935 /* Support Files */, ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; sourceTree = ""; }; - B21C9D07D1FB01FF18C9E066375C0924 /* LNInterpolation */ = { + B46E9D9F671555A2B0569513F85B8E58 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 8D88E63A793A46AE2A8E4914AF3394BF /* Color+Interpolation.h */, - 48B9ADB111EAAA20CF02AC1AC415BD12 /* Color+Interpolation.m */, - 9554C2907C9D9E8F76D8D70EA7EE6249 /* LNAnimator.h */, - 0BA0CDC92F4D7E062A8E3BD5ECA5BFFA /* LNAnimator.m */, - 405EA870C2BB4F89E5D6CD159F4CFA9E /* LNInterpolable.h */, - 5B0CD88C65A8CB1C23C2AEB4992F49E0 /* LNInterpolable.m */, - 39AD9D7041B853DF12888ADCD3801AEC /* LNInterpolation.h */, - E569D86CD050677F1EF7A85AF453CFA7 /* NSValue+Interpolation.h */, + E17CD201BC4B5925862EDD49BB5CBD62 /* UMPermissionsInterface.h */, + 1765A5F8E66CC0295A7A923FAD7E1217 /* UMUserNotificationCenterProxyInterface.h */, + CC3FFB52B22FAC988B7116B184588B2E /* Pod */, + 855A94F939824FBC4D26D0E1AF2ADFA8 /* Support Files */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; - sourceTree = ""; - }; - B34945BD3380F76C26DF4ACCF60C6D1C /* RCTRequired */ = { - isa = PBXGroup; - children = ( - 7A6789E68DF4AAD0DFD8FA5B9FF2B754 /* RCTRequired.h */, - 9D97246403426DF0F2CBA4FA32E78DAD /* Pod */, - 6333BC07A24B777CCDFD15F4BCE5E2B7 /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; B4938EC6831DA7FA371B4207AAB74D27 /* Frameworks */ = { @@ -10871,12 +10809,15 @@ name = Frameworks; sourceTree = ""; }; - B68067CA807F7B14A302B72645ECBAD6 /* Pod */ = { + B52F431B8F7A0E565F6CFEDB304AB086 /* Singleline */ = { isa = PBXGroup; children = ( - 3E92E96817582040994DF0D989214349 /* RCTTypeSafety.podspec */, + 9E107DEEF88FC5E34D4C5DD2128BCB77 /* RCTSinglelineTextInputView.m */, + 39FE672E234A0F2B4D3D2F49800483F2 /* RCTSinglelineTextInputViewManager.m */, + D1F10B6309426F814E403630CA560E9F /* RCTUITextField.m */, ); - name = Pod; + name = Singleline; + path = Singleline; sourceTree = ""; }; B6A83DC00D9E4675456B2DE4508CADFD /* Support Files */ = { @@ -10890,68 +10831,103 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - B79DBA2AB47499BB433C98EB6567959E /* RCTWebSocket */ = { + B85EE38012D7ED8FF280C3CF51D4EA26 /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - DBE6E85653366321A31E90396130F69E /* RCTReconnectingWebSocket.h */, - 13B96040DC69901B1C2CD26E570EEB47 /* RCTReconnectingWebSocket.m */, - A472BB9384B83E73AFAE0B367EE088AD /* RCTSRWebSocket.h */, - ECC27A56848B03CC648EC2BF28BCC55F /* RCTSRWebSocket.m */, - 064AC547DFF8127EEE541F3A1B437236 /* RCTWebSocketExecutor.h */, - CDB5F578E2042E693A3F18E5B3DA855A /* RCTWebSocketExecutor.m */, - E40D66AD3F0AA0EC528EA8FA8910211C /* RCTWebSocketModule.h */, - 405CD50CB99B3F8DFEC76511A7B8A317 /* RCTWebSocketModule.m */, + A935FC058BB1092F0600E4B45DFBAB74 /* RCTAnimationUtils.m */, + D7B672FF680F74FBCDC5832FD405BB8D /* RCTNativeAnimatedModule.m */, + 460E788B26005F112CA7C460BBB151AD /* RCTNativeAnimatedNodesManager.m */, + 1CEBAA3EDE00919363871F6F6611D2F8 /* Drivers */, + 683B6B8F928F5F936E48AA09BA73543C /* Nodes */, + 5C4CDD4D22AD876B87D628E9C64EAF41 /* Pod */, + CA20FA4AEAEE97BA455EDF183BEFE7B0 /* Support Files */, ); - name = RCTWebSocket; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; - B7BE8DFAA2AD11763B7912752135C3DA /* EXAppLoaderProvider */ = { + B8AC8B0C904E9C46DA6D53FCE3F696CB /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - A3909AF4DCC56DEC8BD614F01AECA9B0 /* EXAppLoaderProvider.h */, - 65D183BDB3EBB6B36FE89D8168848CA3 /* EXAppLoaderProvider.m */, - 4959A9D24132890691AF88E4AD67A636 /* Interfaces */, - 92BA217416E46D586AD7103A6DBB7E28 /* Pod */, - CF2A8F498C3CDE5043DC85D9A8DC61E4 /* Support Files */, + 91998B7E944D93EEF99B3A806997975C /* UMBarCodeScannerInterface.h */, + E677A52BD42240B400A623D925C5C64B /* UMBarCodeScannerProviderInterface.h */, + 5A226242CEB90B67A60A44F53DE501CC /* Pod */, + DF8FE38C8FB0EF0C313087B9EA084C20 /* Support Files */, ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; - B881DF2FF11A7B61D83886479266B643 /* Brushes */ = { + B9638BBE4456C200CCE55463C8709079 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 236C579C9D265168EDE8DB0F896CBBAA /* ARTBrush.h */, - CC3A25758C48E41849D21816D17AE1E8 /* ARTBrush.m */, - 9AD4CB6111497F53E4A5BB288BFD3461 /* ARTLinearGradient.h */, - D87EC78B85E8485FBD61F0D265007A55 /* ARTLinearGradient.m */, - 77327992D03EFF43D7486B0D4DF8FFAB /* ARTPattern.h */, - F254BA39B80F635278F87ECA06DBFD0D /* ARTPattern.m */, - 2AFEC36A329F7F411B66663877EE221E /* ARTRadialGradient.h */, - B13AF61B2C73376A40B9B8A94305983D /* ARTRadialGradient.m */, - 5AFAD101DE817A8C09E6DCDB6C006CB5 /* ARTSolidColor.h */, - 8EEAC5F08D6B4D9AF7534012B48BB559 /* ARTSolidColor.m */, + 2AF5ACE10E5F64B3AA4D2DEBD41A9A8B /* RCTConvertHelpers.h */, + 05D05EE0108C878FE066A6ADC6A0C45E /* RCTConvertHelpers.mm */, + D7F9632E5C13C4849BFB6A0F074B0389 /* RCTTypedModuleConstants.h */, + C0CC7EFB48352588D0BB4E513ADDE0F5 /* RCTTypedModuleConstants.mm */, + 34D6A4FD6656FB27EB353A9657D01E16 /* Pod */, + 3F148F443A49875EF68C9C5DD921A1A3 /* Support Files */, ); - name = Brushes; - path = ios/Brushes; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; - B8F89FFC1BE6749DC8CAA37B16AE61B4 /* react-native-appearance */ = { + B97B3E42D3C6017CBE23D24131ACC397 /* react-native-appearance */ = { isa = PBXGroup; children = ( - FFC5D879ED9F5C124C1039F164C7B009 /* RNCAppearance.h */, - 21199E18BA11E7D9DFB4E16A495239DE /* RNCAppearance.m */, - ECAF2F04ACCF39BF7E4DD7FBF6BE4009 /* RNCAppearanceProvider.h */, - CB45C71AA8B34A612BAED8BF10703C66 /* RNCAppearanceProvider.m */, - 9AD1E67D6C1F41C818BB20DE61AAF67E /* RNCAppearanceProviderManager.h */, - 343F28199569171A7F9EEA6E15511B0B /* RNCAppearanceProviderManager.m */, - 195E608FEFFC6177D6727580B75A402E /* Pod */, - 0508C6F7F75B0ED9A5694EC465B998C8 /* Support Files */, + F97E853DB70D725BC3302A7AFF33C7B9 /* RNCAppearance.h */, + 98A728E5AC8DB7B3E1E7CF2C81D5500F /* RNCAppearance.m */, + 3F74E6C1B371D11676E56E1E56343C6F /* RNCAppearanceProvider.h */, + 00909459C52E57438B89BF650B1ABC2F /* RNCAppearanceProvider.m */, + A791612F5D338BBF660CFE92C5102F3C /* RNCAppearanceProviderManager.h */, + 4FB98E155E9B39BC732FC65B0AF382CC /* RNCAppearanceProviderManager.m */, + D6EED05CFFAF11E351A7F4D6109A4344 /* Pod */, + 1FB3C0DD5F27DE23E1C6E367ED4A5AAB /* Support Files */, ); name = "react-native-appearance"; path = "../../node_modules/react-native-appearance"; sourceTree = ""; }; + B9C5DE5E01C8A1A614DB00AF1C558EF8 /* RCTNetworkHeaders */ = { + isa = PBXGroup; + children = ( + 5FC8F93B70A554F4F421277A6DBBE90E /* RCTDataRequestHandler.h */, + F8899F2A764A05C333FD6EE951873DBC /* RCTFileRequestHandler.h */, + DD017B1997FF374261163E158159F2F9 /* RCTHTTPRequestHandler.h */, + C10B157B3F1BE0EDC78CE7A467C73BF2 /* RCTNetInfo.h */, + CE21A33BDDA440B6E28DB4EA198320B0 /* RCTNetworking.h */, + A21E000F1B505340A3B129180C852E2F /* RCTNetworkTask.h */, + ); + name = RCTNetworkHeaders; + sourceTree = ""; + }; + B9F8EF71B96AF2BF3AD9DCCBFB332590 /* Pod */ = { + isa = PBXGroup; + children = ( + 35135DE07FA8F772CD7B17D5966C81F2 /* LICENCE */, + BA7CB9D34D41F813DEC836D69DF5371B /* react-native-cameraroll.podspec */, + EA32A2FCCFF848C82721AF09A7607EC9 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + BA90178B36F55D980E1ABA7D98633589 /* Pod */ = { + isa = PBXGroup; + children = ( + E20AB1B1CA0D5E00342866ECC55F9014 /* UMFontInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BB4A093505ED669D0E8B673D55323A46 /* vendor */ = { + isa = PBXGroup; + children = ( + 3E2C7A9E9262AEBDD86D61872E18C318 /* bugsnag-cocoa */, + ); + name = vendor; + path = cocoa/vendor; + sourceTree = ""; + }; BBA877DD1554291622AD1862CF160973 /* Support Files */ = { isa = PBXGroup; children = ( @@ -10962,10 +10938,10 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - BBFF655567CB14D7432C188C1C518533 /* Pod */ = { + BC5E13FAA4DDC3A92061F35A5E8F150B /* Pod */ = { isa = PBXGroup; children = ( - CDF181DFCA63D1C13DCE1BBC296EF995 /* UMCameraInterface.podspec */, + 0013A8590B263E8EAA1ABEA919F20609 /* EXHaptics.podspec */, ); name = Pod; sourceTree = ""; @@ -10980,6 +10956,18 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; + BCF6ABFDE29B0ABA8AD6021904F3105C /* react-native-orientation-locker */ = { + isa = PBXGroup; + children = ( + 232B00A456185E68EA56676298BEEC30 /* Orientation.h */, + 229B69F7A2BA93AE5530A6099A73B0BD /* Orientation.m */, + 979B5CBDCEF21160CC063D059B527321 /* Pod */, + FABC33B3DCAE5C687D46162E09F68585 /* Support Files */, + ); + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; + sourceTree = ""; + }; BD62BB88BAFD525AE7E898BBB5BCA27B /* Support Files */ = { isa = PBXGroup; children = ( @@ -10991,139 +10979,101 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - BED2C0FBBE99BB99619F4B9BE5A2927F /* RNAudio */ = { + BE05CA7ABFB3EA55C07E554A50D89C73 /* Services */ = { isa = PBXGroup; children = ( - 66A3C30FAD3141239D732D294DFC5598 /* AudioRecorderManager.h */, - 0EE0EFB192D6A4057750293E76172B93 /* AudioRecorderManager.m */, - 7F8FEEF189E6A6AEB5889E74EB968FC3 /* Pod */, - 793D0C511A174B029CA0E428B1CAE4A7 /* Support Files */, + 8648B9C836C15BD4F95DBE953307BE59 /* UMReactFontManager.h */, + A7A3F93009F5C4B541284A373C6C8B5A /* UMReactFontManager.m */, + EFC4EDA6C0C5156BEB199765F0D7F162 /* UMReactLogHandler.h */, + 67E154936155C08F92F5CA8B3529FDF0 /* UMReactLogHandler.m */, + 4B90B45428596392B758EBB8172173C2 /* UMReactNativeAdapter.h */, + 0AE3F020CCF5349A5E74731A533AC3A5 /* UMReactNativeAdapter.m */, + E004B0F0A38C5ECB4EC9C44607962B40 /* UMReactNativeEventEmitter.h */, + C915CE4C5E850639992421BBA978984E /* UMReactNativeEventEmitter.m */, ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; - BFEE45F1AAED6EDEAE970DDF52C1F61F /* RNVectorIcons */ = { + BEBE8D03D21A0955172F39E027A66138 /* Drivers */ = { isa = PBXGroup; children = ( - 0BE9428A6197F293955DE9F6417A0F5F /* RNVectorIconsManager.h */, - D25CB0CC8CE447B4C42427B04DFA8320 /* RNVectorIconsManager.m */, - B1665F87F8BA2F486556E521D84802C7 /* Pod */, - 129CA80BAC5EACA37391B771D9FFB7FD /* Resources */, - A72C662DEB69E045721B286ADE1B6D22 /* Support Files */, + CC54D90115AE3980D90920A76CC33A3B /* RCTAnimationDriver.h */, + ADEC67C2CCDE6DB26D8E0AB6E15E78B0 /* RCTDecayAnimation.h */, + 1939F7B6A9B5EAE0A54DEB9EE153EADC /* RCTEventAnimation.h */, + 9080FD4A5DF9FCC85CF16DC16AEBE022 /* RCTFrameAnimation.h */, + 858F57F74E0AC2BB2AFA035AE21275BA /* RCTSpringAnimation.h */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - C09C751793502FF761871B3B557A739F /* Support Files */ = { + BECC0D98EABF990ACD682B871E95019E /* react-native-keyboard-tracking-view */ = { isa = PBXGroup; children = ( - 1079B8B6C30DFB82CE00FBEE2735966C /* React-RCTLinking.xcconfig */, - C46431CFE02C9A38B7F8ACD3747A235B /* React-RCTLinking-dummy.m */, - E22B3EB392ABB38E366C116EA756EF58 /* React-RCTLinking-prefix.pch */, + 07BB0BC0862B3F52AA1F1D2EF8400E41 /* KeyboardTrackingViewManager.h */, + 551C4E17EB7E93FF7EAD018EEBBBE162 /* KeyboardTrackingViewManager.m */, + B07EAD9D7D7567672292BBFF00972542 /* ObservingInputAccessoryView.h */, + 0B48FE90950FBE9D03598F7ED94A8579 /* ObservingInputAccessoryView.m */, + DA806E23EF7BF0703730663A39D90E5F /* UIResponder+FirstResponder.h */, + CB88591B689B15F32DB8F6DA910E1845 /* UIResponder+FirstResponder.m */, + E6794ACEBC5051EC2263C8FB8189E27F /* Pod */, + E83BA8AEDF0F1A179E8605777EC7208D /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + name = "react-native-keyboard-tracking-view"; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; - C17F0C741A0D2F404A1F81E891AD6317 /* Support Files */ = { + C3B3E03F97E7B7DD122588722348B7F9 /* Pod */ = { isa = PBXGroup; children = ( - 2B403A7E880375608506A45DE05EC20B /* EXFileSystem.xcconfig */, - 76107D98663D0AAB38C7B9B963D90872 /* EXFileSystem-dummy.m */, - A049DCD752ED73A3C3142911E583CC30 /* EXFileSystem-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; - sourceTree = ""; - }; - C2174660A9E901666950E37667D95458 /* Support Files */ = { - isa = PBXGroup; - children = ( - D051CE3F548B77940F8E4B0E54D0A708 /* EXWebBrowser.xcconfig */, - 8959AF48FDC941E794274BEA913493C8 /* EXWebBrowser-dummy.m */, - E2AC3A79DBAB72A429EBF14D12AAC4FF /* EXWebBrowser-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; - sourceTree = ""; - }; - C2C269465549A56BEF729055333BF83B /* React-Core */ = { - isa = PBXGroup; - children = ( - 7B14295CEB66078EF0F3A22C714C083E /* CoreModulesHeaders */, - CD29E27897DC159247E17F62E554A32C /* Default */, - 5BC84B20A147F43812CDB5B6EB0DEF95 /* DevSupport */, - 8B31B9A1C772B29CDE4B5047E73CC1D2 /* Pod */, - 01F8A9FEBA82F0D1CE024EEC79C178A5 /* RCTActionSheetHeaders */, - 95D5B36387E87767B9FB7CCD5DDEF04D /* RCTAnimationHeaders */, - 4F965C8E1C4E9AAE8A2DBDACDF86E4FC /* RCTBlobHeaders */, - 47384517E877F69FF0829F827FE8F393 /* RCTImageHeaders */, - F93F20133C27896750343DF37AB93802 /* RCTLinkingHeaders */, - 7BBE028CA50936D7A6FDE48491CCF099 /* RCTNetworkHeaders */, - 2BDBF1D61D16E1861A4310E8D28A6B14 /* RCTSettingsHeaders */, - 82FEAA7E6DAD85A7E10A730FED87CEE7 /* RCTTextHeaders */, - 66C91488E43BC5C77B1FA962169D5A3A /* RCTVibrationHeaders */, - B79DBA2AB47499BB433C98EB6567959E /* RCTWebSocket */, - DAE247AA05E0554740C37E6DF25B6E01 /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - C390A4C3844BEC34B1A05C5F05EC9280 /* Pod */ = { - isa = PBXGroup; - children = ( - 29CF9A5137C788E777B3CFA9D6621816 /* EXAV.podspec */, + 3482CBFA3D85576FFEB8AC575C1468C7 /* README.md */, + 5C0A244BB6D03816A12C9643F95C5777 /* RNRootView.podspec */, ); name = Pod; sourceTree = ""; }; - C621711C72CCEECB2747920B1775F252 /* Pod */ = { + C3F9A737E2DCEF0336D9F731C647C48C /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - A397C6432EF2937F4CA14D523E05B8FE /* UMReactNativeAdapter.podspec */, + A5D2B29920AA7C36258802B49B49806D /* RCTAnimationUtils.h */, + E7B3CD7D9E23BB664217C58C5B2DDFE2 /* RCTNativeAnimatedModule.h */, + DBD854995D38FE5CC19A6220E243CBD9 /* RCTNativeAnimatedNodesManager.h */, + BEBE8D03D21A0955172F39E027A66138 /* Drivers */, + 758A1A076CBC221F51E314EDDB084E66 /* Nodes */, ); - name = Pod; + name = RCTAnimationHeaders; sourceTree = ""; }; - C66B8BF3DD912660B0684E7EF107AE25 /* fabric */ = { + C43AA1D2F463FC8F8940D5C4F4131234 /* Support Files */ = { isa = PBXGroup; children = ( - F7EA241128517E3294BEDE6B38804BD0 /* crashlytics */, + 28CDC08B6B4BBC47ED4C4C5B83A9988C /* react-native-webview.xcconfig */, + 9C012FB7B0BC76B0C6B7C8D565A27D68 /* react-native-webview-dummy.m */, + 70DAB6D4DA6CB63FD51D125B58C02414 /* react-native-webview-prefix.pch */, ); - name = fabric; - path = RNFirebase/fabric; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - C68FDF6A51CBF069AD0C8B3667B72539 /* RNScreens */ = { + C479A163E6F60AD0952EFACA20AFD029 /* DevSupport */ = { isa = PBXGroup; children = ( - 95DC10A30ABC3BE3446C6B462168101A /* RNSScreen.h */, - 0B83181F58997E709D2CF0ABFA639CB6 /* RNSScreen.m */, - F208CB3F8E89D985AB203CAD66B7B0EE /* RNSScreenContainer.h */, - C8CDFAE1DC19C13D3DA945619871BD92 /* RNSScreenContainer.m */, - CE0BF9DA931342C7564A2F989F329C44 /* RNSScreenStack.h */, - 02153101DD015A798818C151A182F4DB /* RNSScreenStack.m */, - 78BD83D02F69F9B51DEF7E9F6F62829F /* RNSScreenStackHeaderConfig.h */, - A9A87A0830B20D2F1D739F76A9890AE3 /* RNSScreenStackHeaderConfig.m */, - 64FFB4BA0280A74B10F16A2F0D7C45E6 /* Pod */, - 0BB5DD74FC8B5C6FADF0CA66AF171F64 /* Support Files */, + 6A0DA87BC28CD0B6157283C26879B064 /* DevSupport */, + 519EAB38AD0198ACC2FF9345124D9C18 /* Inspector */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = DevSupport; sourceTree = ""; }; - C6E2F14CAC25E873F1EFC6E32E4A19AF /* React-RCTLinking */ = { + C4C680B6620077A69F3A9FA9B4724F78 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 8B2AC099629C46CC93F0E91ADFEB8830 /* RCTLinkingManager.m */, - E487855FD27B014F986C99F3D243C6BE /* Pod */, - C09C751793502FF761871B3B557A739F /* Support Files */, + 5D221ABF0773197F72042B933F72EFA3 /* UMConstantsInterface.h */, + 703223209256A3AD3C35EA8718E54D87 /* Pod */, + D30CA9076EB0C247AAD3E26158FEC671 /* Support Files */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; C6EAA678CE34CC24B34CB5A710052FC0 /* boost-for-react-native */ = { @@ -11149,42 +11099,28 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - C6FF59578801B8BD98D5B56D5CD53A44 /* React-jsiexecutor */ = { + C74939F52009C40E18BE82A628AB68BA /* Handlers */ = { isa = PBXGroup; children = ( - 0390AAC82D88B6B9496BEB754DB6C1CB /* JSIExecutor.cpp */, - E7AFB949AA68523D3816D43F5D0B6829 /* JSIExecutor.h */, - F5DC588802B42ED16EAEE7DDAA94E6D8 /* JSINativeModules.cpp */, - 6803EF30AD795DD46BE07598CF430D32 /* JSINativeModules.h */, - 81A4892176BA6215C5A8C0A90660CC0C /* Pod */, - CD25E726B62B75E70F3CC9792D73FF2F /* Support Files */, + BADF8A407B32FB661517543C4601901D /* RNFlingHandler.h */, + 576A3C54BF9B2F039E680D2B94139C6E /* RNFlingHandler.m */, + DD64EA045883AD0A4E597F714F32B30E /* RNForceTouchHandler.h */, + 2CCE0A0312367F91E8898886D48805D2 /* RNForceTouchHandler.m */, + C73766F708C9C34B377D7AE36CE2A4E2 /* RNLongPressHandler.h */, + EF4F651BD7B0A9243D1AE528F276FE3E /* RNLongPressHandler.m */, + 0A60B62926F6005BFF390DC4D2797C72 /* RNNativeViewHandler.h */, + 4B463DBFE41C24BF5FCE50CF65E6A3DC /* RNNativeViewHandler.m */, + 66D05EBAD11E8517ED4B7F16934E3577 /* RNPanHandler.h */, + A8D76E43186948D347E816B807616C51 /* RNPanHandler.m */, + 08558881FB7059A61C52EBC5A08E176F /* RNPinchHandler.h */, + 786B0356571432F408E5FB3F37CBA9FF /* RNPinchHandler.m */, + 8C44DD9431AE1E29AFDBA1C962ABDB2B /* RNRotationHandler.h */, + C6BBB9126F7034482276766B5771AB71 /* RNRotationHandler.m */, + C17BB0397F61A1876AEA6689322C7C09 /* RNTapHandler.h */, + 62E5EC542ED5433007F855277F236BD0 /* RNTapHandler.m */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; - sourceTree = ""; - }; - C72BB789283E67F577B46060F88081AE /* UMFileSystemInterface */ = { - isa = PBXGroup; - children = ( - 0B37F2001960B611D9EA5B02EA2CF2FC /* UMFilePermissionModuleInterface.h */, - 0D2C6A295ECFD85BFE14D59F29FEDA84 /* UMFileSystemInterface.h */, - EC500DA14D373AF1EABEAF2C9AF30A2C /* Pod */, - 89D8EEC95AB05B17F01901D7D203B52C /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = ""; - }; - C76AFE09903D893DCB3082B4FC04A93B /* FBReactNativeSpec */ = { - isa = PBXGroup; - children = ( - 3E41231EFA93F8A6858FD06F87921644 /* FBReactNativeSpec.h */, - 93F2C3F2346A8BEA7226DFFDF8F4D52E /* FBReactNativeSpec-generated.mm */, - 6F08214599E3B9030C848EE11439BE3F /* Pod */, - D771D5E0576806F586429DEE15CEE87D /* Support Files */, - ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = Handlers; + path = ios/Handlers; sourceTree = ""; }; C78784711C677018497E8D5457CAB129 /* Frameworks */ = { @@ -11195,15 +11131,63 @@ name = Frameworks; sourceTree = ""; }; - C8AC68C3E1079E3AB11A0AE9BA44C6BD /* Support Files */ = { + C8E049F9E469297DA6F954975A6D7509 /* RNReanimated */ = { isa = PBXGroup; children = ( - 56507E226A67C4F068E52F755465710B /* React-jsinspector.xcconfig */, - 67540560D918C61609D9DD135A728D53 /* React-jsinspector-dummy.m */, - 0E3A25BE3F680D75F170C25CAEDE11CB /* React-jsinspector-prefix.pch */, + 6DA3AE16A57E70E50580A389DC412033 /* REAModule.h */, + 55B03B81844C54B2F42409680420ED0C /* REAModule.m */, + AE241FF3367B3DAC3C5D168BD7B35DF5 /* REANodesManager.h */, + EFA6FC05F95DBAF0B63C85E29EB10177 /* REANodesManager.m */, + DFC5F3E20D49A00049C4EA1140791DB3 /* Nodes */, + 7473A40A9F5073105C4E63C3F044284B /* Pod */, + 819F2D11E99072EF2C631F0AA2EB6FEC /* Support Files */, + FBE67F862C0D6AE06559619C16D86771 /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + C8EDF203E89523D43EEA266D0ADCAF54 /* Support Files */ = { + isa = PBXGroup; + children = ( + F4838FE647AA9468A2991304694C8C67 /* EXHaptics.xcconfig */, + 5B48917E09F92A52C67B660D9FA644D7 /* EXHaptics-dummy.m */, + DD7F410B1638478F621AE2F432707D6D /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; + sourceTree = ""; + }; + C914192CBFDB0B92300456ACAB52B0CF /* Support Files */ = { + isa = PBXGroup; + children = ( + 32D2268A5D462DFB4C6F2459EAFDD6BB /* UMSensorsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + sourceTree = ""; + }; + C9704452309A6C6E9453E699009662FA /* Support Files */ = { + isa = PBXGroup; + children = ( + C8FA6653516966570CD5E109475D8D85 /* React-CoreModules.xcconfig */, + 544B62EA9E3FF7693056DAD8F825DABE /* React-CoreModules-dummy.m */, + 1E8B8C0C4A338088311A9CA4BDA0B991 /* React-CoreModules-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + sourceTree = ""; + }; + C99C2E3FA044340CEDBD17A3AD8D547B /* RNUserDefaults */ = { + isa = PBXGroup; + children = ( + 80F34AE6ABA12371F3A514C456D4F519 /* RNUserDefaults.h */, + 3C94089E22CE7D7B4F7A353EDD64A4CA /* RNUserDefaults.m */, + 015BEE905A62BB03C1649CEE99884ED7 /* Pod */, + 9E6756D40AD3A3AC58403F2EA7302C19 /* Support Files */, + ); + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; sourceTree = ""; }; C9E9CA8F82E4F06733FA3FF55AFC1BA9 /* Support Files */ = { @@ -11215,123 +11199,108 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - CB52C4E07F056BDFB85AC3C205A116B0 /* React-cxxreact */ = { + CA20FA4AEAEE97BA455EDF183BEFE7B0 /* Support Files */ = { isa = PBXGroup; children = ( - 8C97DDC0573F567F53412E83F064BC52 /* CxxModule.h */, - 63AECF618A1E2CB8D3F97014A3D37AB8 /* CxxNativeModule.cpp */, - 7D0E03388EBACCF6E9B6F9671AAF2F55 /* CxxNativeModule.h */, - BF45BB6462C515794294F19F13B4BB37 /* Instance.cpp */, - 8AEF51CFB5D2A21518EC339F1438E9B5 /* Instance.h */, - 961650D89213F585C40D63EF23FC4767 /* JsArgumentHelpers.h */, - 5FF6908128D9BDCF36D9E9E2CBC0256D /* JsArgumentHelpers-inl.h */, - F9BD0857EE43DA88E1FB5A23EE203CE5 /* JSBigString.cpp */, - 3EB6DE0D9A1824EE199A41E34D2D0573 /* JSBigString.h */, - BAA6411C85426B36C85020C4B1C208E6 /* JSBundleType.cpp */, - F330F62465D1AC3978641F665A77320D /* JSBundleType.h */, - AE049BEA86652F24D0A2D756241E35EB /* JSDeltaBundleClient.cpp */, - 2F7F35B41FAB9FA37A2B5968D68D8838 /* JSDeltaBundleClient.h */, - 951C3D1141215236BF3E717E98972F20 /* JSExecutor.cpp */, - 94CDC22B49EC8B76E4EE023F1313845C /* JSExecutor.h */, - ACF74694A6631E1862E7387FF1FE94C9 /* JSIndexedRAMBundle.cpp */, - 484F116868006BD6B32BDC972A8A5370 /* JSIndexedRAMBundle.h */, - 2057AABFC66C0A8C7AE0D06D345C2B55 /* JSModulesUnbundle.h */, - 103AF3B67564C17BFFE8AC3251B444C2 /* MessageQueueThread.h */, - 08ED12117BB4332C204661E3C9D293BE /* MethodCall.cpp */, - 78E7BDED4CA237BA0E4E1B8DA70EDF15 /* MethodCall.h */, - 17C501E18A92D84749D865D5BC99708B /* ModuleRegistry.cpp */, - 304DA1D0C363EA0FC991F52EC05BAB2C /* ModuleRegistry.h */, - 75F364C673640804FB74B70CFC3E3463 /* NativeModule.h */, - C71C5AB1403BC17521FDEF0FDBF14CDB /* NativeToJsBridge.cpp */, - 3577E0616DA660D725D6546620A9D780 /* NativeToJsBridge.h */, - 3FCD506D4980CB5795E9063F3B3B82A4 /* RAMBundleRegistry.cpp */, - BD8E04118ED59087038A3197896170AE /* RAMBundleRegistry.h */, - 715704BCA6396E7B6D2AB56C7F7FE3B9 /* ReactMarker.cpp */, - A819EBFAB8718BC7B0C8F260D76861B5 /* ReactMarker.h */, - 4B56838A8EB055CC8F57F87833A58B50 /* RecoverableError.h */, - 6A4380E4A384171BCA37835AB57207EF /* SharedProxyCxxModule.h */, - 25F03951255FA20CD20B62D3C45CFB53 /* SystraceSection.h */, - 3D5CE38DE95B750ECBACC3EC92C963D6 /* Pod */, - B15AD51A5DF18F95213308993EA15FFC /* Support Files */, - ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; - sourceTree = ""; - }; - CB848FE84CB02CF4BC123F679125A2DD /* Pod */ = { - isa = PBXGroup; - children = ( - 06247B3D87BBF857CA1826A54AD1E3D5 /* UMImageLoaderInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - CCDDAAE69E1395EE41AE31D3FD03FAB5 /* Transitioning */ = { - isa = PBXGroup; - children = ( - B2EDF1DFD33ED220F0315B82842BA8C8 /* RCTConvert+REATransition.h */, - EFEE57B5E9B7E6FFAE0FBB71BB7F7C04 /* RCTConvert+REATransition.m */, - CCEBD8208E1F25947DBF57D76B5C55C5 /* REAAllTransitions.h */, - 5EECAA76F5023729BF7A8A99CFF1F073 /* REAAllTransitions.m */, - 725C9D7519C9246294964E65F09B5F2C /* REATransition.h */, - AA0B72A9927C8B436461731558241482 /* REATransition.m */, - 8C62EE627611C937E0EEBF789C755F28 /* REATransitionAnimation.h */, - B9F9868FE878EA3D72E95B136344BEC1 /* REATransitionAnimation.m */, - 11FE3D70314F711012EF0BDE4979BE00 /* REATransitionManager.h */, - 4FC5241CCA8BB67252A090DE9D5C0CA6 /* REATransitionManager.m */, - BEA2EA1E087459E4C63B1E4E71562822 /* REATransitionValues.h */, - 2FF4B60E416BC2B631C047F702F4A746 /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; - CD25E726B62B75E70F3CC9792D73FF2F /* Support Files */ = { - isa = PBXGroup; - children = ( - CD0FE9AEC71E72BBA5EDC48C7AD1A511 /* React-jsiexecutor.xcconfig */, - AD6BFF2AC7F77775631A869327EBF543 /* React-jsiexecutor-dummy.m */, - ACC9E5D3EB6C2A37A989CD278DFF0E54 /* React-jsiexecutor-prefix.pch */, + 91B19BCC8E0A96C2AF91B1DC3DD55BD3 /* React-RCTAnimation.xcconfig */, + 952FA733AD9398172DBD62B726338DBC /* React-RCTAnimation-dummy.m */, + D9A3FD35B8F399B0E2DECE9E0CEF8482 /* React-RCTAnimation-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - CD29E27897DC159247E17F62E554A32C /* Default */ = { + CA5494BF160B186F7BF1BFDC4466966C /* Pod */ = { isa = PBXGroup; children = ( - FE34CE2D085F4421803DCD833D9DC814 /* Base */, - 5112381C93A2FA19F602463DF29123D2 /* CxxBridge */, - 3A93548036A9C002D66EA203CC9A8AC4 /* CxxModule */, - DB3369A75F554CC3910398506C0A833E /* CxxUtils */, - A5B8AB97BA05633A698A3020F24039F1 /* Modules */, - 76A3A4C2482FAEA76BF4C720E0997436 /* Profiler */, - 2A5C1E2BD2DA94955EE4471FEAAB4A69 /* UIUtils */, - B02E5B3AC1BFCED3D92AC1C87235253B /* Views */, - ); - name = Default; - sourceTree = ""; - }; - CE603AF45600482464DDBF024E5D2719 /* analytics */ = { - isa = PBXGroup; - children = ( - 358BD7B832116AF70901ECA85F519623 /* RNFirebaseAnalytics.h */, - 5E4C192890231485B12830210B5D7DE2 /* RNFirebaseAnalytics.m */, - ); - name = analytics; - path = RNFirebase/analytics; - sourceTree = ""; - }; - CE641041C6DAEC112079553FA4E2E841 /* Pod */ = { - isa = PBXGroup; - children = ( - 10FA9B0754D6B11BF211BFF613C14EAF /* LICENSE */, - 33B4AB78B50EFBF505827F11EE524DDA /* react-native-keyboard-tracking-view.podspec */, - B265EC590D0D4072D136197B36E1FA5E /* README.md */, + 160DF05E77457A4C987EEF31129699D3 /* React.podspec */, ); name = Pod; sourceTree = ""; }; + CBE19EBA36FEAECFE1DFD7ABB0EB590F /* Support Files */ = { + isa = PBXGroup; + children = ( + C906F0BE4914661A27CA98A44C69709D /* EXPermissions.xcconfig */, + 4D3642C76C7142649802EF585F7C52D8 /* EXPermissions-dummy.m */, + 398EE049FC6B737F72F29FC61E7A0601 /* EXPermissions-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; + sourceTree = ""; + }; + CC18EE7C30BAED13297CCFDA783EFE0C /* Support Files */ = { + isa = PBXGroup; + children = ( + B4D0C66DF0FB8536973108AC7E4F6636 /* RNFirebase.xcconfig */, + 87769C291A4B1E7C8702BFE93FFB588B /* RNFirebase-dummy.m */, + E56571BE4522845701F5646D92855270 /* RNFirebase-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; + sourceTree = ""; + }; + CC3E020E2A111F736C42EBA6724713B8 /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + EC3AF76A540E9FEEC0757B1E194BD55E /* RNFetchBlob.h */, + 89B33D4B3C5357A308EFE99B01D9DB5C /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; + CC3FFB52B22FAC988B7116B184588B2E /* Pod */ = { + isa = PBXGroup; + children = ( + 673E347DA8B734B7C816D2B8A6DC1B73 /* UMPermissionsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CC96679AA98B76E42E488C217AC0C210 /* Pod */ = { + isa = PBXGroup; + children = ( + BF932DD413EE334E7D999B9AC00BC754 /* LICENSE */, + 703A1223A24D3DE36E05D002C1052883 /* README.md */, + 60B66FD3173CE2D9C8DDC3BBDEA29F89 /* RNImageCropPicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CDF2A90750537C68D0497696D0B47435 /* internal */ = { + isa = PBXGroup; + children = ( + 3DB7D908BC246E9CEF24903471EDFFE4 /* experiments.cpp */, + 94606D3881606D2E4B349880A5E20253 /* experiments.h */, + BA484BE2D968B51B86CB86188515DDB5 /* experiments-inl.h */, + ); + name = internal; + path = yoga/internal; + sourceTree = ""; + }; + CE01AE0AEB95B7268A75EB7D78F30BA6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 314047BB0B970D4EBAD862DE50898BF6 /* react-native-document-picker.xcconfig */, + 8C28AE6EE2A7481C0B38297CAD41AD83 /* react-native-document-picker-dummy.m */, + CE5AB6C8A238F8EB2918F0E7FA1C2938 /* react-native-document-picker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + sourceTree = ""; + }; + CE6B48E2400CBAFCAC879796CCBDB204 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2E7C00BA69A1BF912A5E0A5119A9DCA0 /* react-native-notifications.xcconfig */, + 239227450F1F8CBF02753D7FF58066D8 /* react-native-notifications-dummy.m */, + 7CDC85108B0461CF3918EE3BA7A0DEB2 /* react-native-notifications-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; + sourceTree = ""; + }; CEB97193EFC32D087D832BADA04E1AFD /* Fabric */ = { isa = PBXGroup; children = ( @@ -11344,73 +11313,128 @@ path = Fabric; sourceTree = ""; }; + CEC31E1C581AC5DFC3EA1D7BE9F0AA32 /* event */ = { + isa = PBXGroup; + children = ( + 408F22F3F444319857776C2C7864AF7A /* event.cpp */, + 95002A3B0A2E1A89A06DB758C12DCFC3 /* event.h */, + ); + name = event; + path = yoga/event; + sourceTree = ""; + }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 2400411D160157C0F8B8C8D820D017A9 /* Development Pods */, + 5B1620C7655D06B68305718F7E49F05F /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, F3CF337684CF232BC0A534A0C924468A /* Pods */, - 2831255621399A1A95B6A58D28D3B520 /* Products */, + 061A2EAA9975DC819040E39B4127A4AA /* Products */, A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */, ); sourceTree = ""; }; - CF2A8F498C3CDE5043DC85D9A8DC61E4 /* Support Files */ = { + CF1924AEBEC8AB75C152C1CE2E778A50 /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - E9CE00B5CE44E78B47E746CCA313CBA0 /* EXAppLoaderProvider.xcconfig */, - FA61EA52F6BD937338BB3E55FAAC5537 /* EXAppLoaderProvider-dummy.m */, - F52D381D6283844DF39C9278B7E0E583 /* EXAppLoaderProvider-prefix.pch */, + 59600445D29019B4CCD9DB295FA77D45 /* IOS7Polyfill.h */, + FA9F87D3F74668A90265E7ED0F1AF4E1 /* RNFetchBlobConst.h */, + 302504B5F4CBE43404E02F9264F9C6BF /* RNFetchBlobConst.m */, + 6D15D28FF47C2931493135B573C3C6A6 /* RNFetchBlobFS.h */, + 87D78B3652AEEB759EDAC023ECDC4296 /* RNFetchBlobFS.m */, + 0B3B1522AF71F1928759D062C6264FFA /* RNFetchBlobNetwork.h */, + EF2E9C0AB9A9570651210E25D28D6B8D /* RNFetchBlobNetwork.m */, + 17A45AB7007FE9A17DBCAB986A38929C /* RNFetchBlobProgress.h */, + 558F3A1F827E2A4227105B723DC14BC1 /* RNFetchBlobProgress.m */, + 06A091CBC32EF17A8EEE1A0C5F34273A /* RNFetchBlobReqBuilder.h */, + A2D800D10618A0144F1DD5864B687C20 /* RNFetchBlobReqBuilder.m */, + 1D589DABDEA669C1310CAE687D4DC0B9 /* RNFetchBlobRequest.h */, + 84C123446557587F2421C8A680B0D6AC /* RNFetchBlobRequest.m */, + 736D58E451CBDD179DEE9B76F870CB30 /* Pod */, + CC3E020E2A111F736C42EBA6724713B8 /* RNFetchBlob */, + 7B9E288F290B9AA92F2A2FB4AE6796C4 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - CF36727041A266328F41131487661BB3 /* Support Files */ = { + D01A22F330DDBDA8AB77019ABC8D7433 /* Pod */ = { isa = PBXGroup; children = ( - E74648815DF469E32BC60D459AC2BAA3 /* React-RCTText.xcconfig */, - 8DD644175A669B738B4231111B5F113F /* React-RCTText-dummy.m */, - 8C3D5D3F7FBCD01E42C88BF2881A6727 /* React-RCTText-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; - CFF92BB5DF14885ADE88A4DE00EF5E78 /* Support Files */ = { - isa = PBXGroup; - children = ( - 67C719EB33E2B62BE893CB8EFC2064FF /* React-RCTImage.xcconfig */, - BAE4E2BC7E0C20A3AA1DB5C880F2695F /* React-RCTImage-dummy.m */, - 29FB7BDB0A111B602E396CF36196D450 /* React-RCTImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; - sourceTree = ""; - }; - D0537242BC524411B1F5BB775A11B108 /* React-jsinspector */ = { - isa = PBXGroup; - children = ( - 066DAB200485098245D5EED0B1FEF098 /* InspectorInterfaces.cpp */, - 9F30FEDE839FB7BCCC1244D32E272745 /* InspectorInterfaces.h */, - 6C4AE4ECD10D124D99520C22026D0E50 /* Pod */, - C8AC68C3E1079E3AB11A0AE9BA44C6BD /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; - D4077CE69563C7626C35FB4A16C6DB7F /* Pod */ = { - isa = PBXGroup; - children = ( - E375C63826F12FB78D6646874BE63CEF /* LICENSE */, - C81F654D7818C2EE9EF9C05806424B36 /* README.md */, - 20A99EE431CC3BD1E3C4AD05F7D59947 /* RNUserDefaults.podspec */, + 86D700CF934ACFA38C20D4DD15D3CE0B /* React-RCTActionSheet.podspec */, ); name = Pod; sourceTree = ""; }; + D1AC7109775817988C64F33B368F286A /* auth */ = { + isa = PBXGroup; + children = ( + 889593AB6526E061881B81EA8AA9CCD8 /* RNFirebaseAuth.h */, + 5A17509973FD1326B45C36373AF7A1B8 /* RNFirebaseAuth.m */, + ); + name = auth; + path = RNFirebase/auth; + sourceTree = ""; + }; + D2167EC888FD075D6C0ABAA2519743B2 /* Pod */ = { + isa = PBXGroup; + children = ( + A402911B73162EAE51DC95CAB1B185BF /* api.md */, + 441753624243B270BFBEB0C27AD71C50 /* LICENSE */, + 6EC70138252E920596D101E1B2FB4A2E /* ReactNativeART.podspec */, + 015A05353455D1AA8609015B06590519 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + D30CA9076EB0C247AAD3E26158FEC671 /* Support Files */ = { + isa = PBXGroup; + children = ( + 785B97657BD4FDDF174BDB148FC496E9 /* UMConstantsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = ""; + }; + D3EA17DE2C5FB41C16F2158CC4CECD3C /* Support Files */ = { + isa = PBXGroup; + children = ( + C569548911D21A9C02AB7628D7CB4D4D /* React-Core.xcconfig */, + E89C137986FEDF89532201F6C541E8BA /* React-Core-dummy.m */, + DC2AF7312D0A77B9489C9B878F6899E1 /* React-Core-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; + sourceTree = ""; + }; + D4177EB5DF2D53FE85EDD1484E87E43E /* Video */ = { + isa = PBXGroup; + children = ( + 55F154F7B21FADAAE48D8A5EF90D8771 /* RCTVideo.h */, + 29C330A7AC446512DCA73AE8F317A6BA /* RCTVideo.m */, + 39F41E2631CD47BEEE466A1AA7D8B992 /* RCTVideoManager.h */, + 32AFA2D3EFECF32CC9AADB24226A3B73 /* RCTVideoManager.m */, + CC91BDE7051E43EAEACD33F3C2D0E4E1 /* RCTVideoPlayerViewController.h */, + B5F480CF72190A5432EC0591BE01C139 /* RCTVideoPlayerViewController.m */, + 6F60AAAB9F2D287AAB07027D4D88BDC9 /* RCTVideoPlayerViewControllerDelegate.h */, + 1E32D2C37782B12BE3B10FE71504A987 /* UIView+FindUIViewController.h */, + 7B3BFD28DAF8B6FAEB60A962321E432B /* UIView+FindUIViewController.m */, + ); + name = Video; + sourceTree = ""; + }; + D45AB61AC1D622576A871D7C8E66925D /* Support Files */ = { + isa = PBXGroup; + children = ( + 4FD55DCA0DD250489F0D0FD30F73B3AB /* KeyCommands.xcconfig */, + CA7950AA6238AB2B349BFC5CE37C26B8 /* KeyCommands-dummy.m */, + 0B467C86E865C0249EDDBA89932DC785 /* KeyCommands-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; + sourceTree = ""; + }; D4E0275CBF7FAA8236649E00F1C8078C /* Support Files */ = { isa = PBXGroup; children = ( @@ -11421,36 +11445,34 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - D741E1DAA8A74DDFEF00C622475515C1 /* RNRootView */ = { + D6E7E819FBE25F0577A61D9E5FDC6EE6 /* functions */ = { isa = PBXGroup; children = ( - 1DD372A7560FF3AD51637124739591F8 /* RootView.h */, - 600CDEED2BE217BF314CB38BE1A0B171 /* RootView.m */, - 850D6B4351BCD173A78C8EDA65935971 /* Pod */, - 2EE809F546E40545E644B57F9631FD44 /* Support Files */, + 520596168666727BFEF67125B5710510 /* RNFirebaseFunctions.h */, + FEF4724D34046529AD96F0F28AA1168B /* RNFirebaseFunctions.m */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = functions; + path = RNFirebase/functions; sourceTree = ""; }; - D771D5E0576806F586429DEE15CEE87D /* Support Files */ = { + D6EED05CFFAF11E351A7F4D6109A4344 /* Pod */ = { isa = PBXGroup; children = ( - 11A2F396A66ACC1494569521055463C5 /* FBReactNativeSpec.xcconfig */, - B414D8CC65221A132C98C29A03A19116 /* FBReactNativeSpec-dummy.m */, - 3F5EBF7213FCCDFDD47D7D283E3789CB /* FBReactNativeSpec-prefix.pch */, + 06A3F25B9F8C6B2AFBE97F39C69B8ED9 /* LICENSE */, + 4A93C7E6682A14BEFB0352C4A3CFEC87 /* react-native-appearance.podspec */, + A057BEC6579119B8A359B3234EDC7AF5 /* README.md */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + name = Pod; sourceTree = ""; }; - D844239DBD039D735B3760F74E38E08F /* Support Files */ = { + D88A6BF079998A20D1208D07A869EA15 /* Pod */ = { isa = PBXGroup; children = ( - EC8DAF60DBAAAE08BB977674B94A8589 /* UMFontInterface.xcconfig */, + 13D9EDE05DCF89A20656BCF72D7B8FCD /* LICENSE */, + 51E8ACEAEA103C718A8C10D32293AEF2 /* react-native-webview.podspec */, + 4B5AEF206802446F75201C8F0EF06A1A /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + name = Pod; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -11460,90 +11482,45 @@ name = Frameworks; sourceTree = ""; }; - D8993B154D1455DC5FBA9C142ECC47E4 /* Support Files */ = { + D8F1C0F480F9757959AD5FA49FB837AE /* links */ = { isa = PBXGroup; children = ( - 517E4B852FCF3D05CBE6ACFB7CF0123B /* UMReactNativeAdapter.xcconfig */, - F0C13DD5B14F39844489AA533439C11C /* UMReactNativeAdapter-dummy.m */, - E18F9D50F84AB4FDC09863F28B537CED /* UMReactNativeAdapter-prefix.pch */, + A2C498039C0E6E39E7ADD5FAF1803B9B /* RNFirebaseLinks.h */, + 473AE24D3E8882A18AA205365D6D55BF /* RNFirebaseLinks.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + name = links; + path = RNFirebase/links; sourceTree = ""; }; - D91BB6EA3DCE27E26093C51F9D59CEF8 /* bugsnag-cocoa */ = { + D97DCBB8B817BB7055DA5FF2ED1E07F4 /* Pod */ = { isa = PBXGroup; children = ( - F4C14BB4EA548D44525759EDF0098D79 /* Source */, + F4FD3AB28EEE6B2A53713032E51882E5 /* EXAV.podspec */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = Pod; sourceTree = ""; }; - D92834DF3EDB6C2C8A706FADC4A215FD /* UMCore */ = { + DB128E88DF4E76C0B5804288D3DE69AD /* Resources */ = { isa = PBXGroup; children = ( - EBAB452EFC2E62AC9BDDA0C948A39F1C /* UMAppDelegateWrapper.h */, - AB872D6F4881170DA344D4B5D2B8950C /* UMAppDelegateWrapper.m */, - 1F9101373978C3B83F589B7777250231 /* UMDefines.h */, - 165085416BBB22C24BA508984FD6C6DF /* UMExportedModule.h */, - 80E600CBC8D78EBFD0015D5E8839B40F /* UMExportedModule.m */, - 5990557900A945AC96315DA636E0AA47 /* UMSingletonModule.h */, - D62B7A3B4AF1152F21105D3B2E827CE0 /* UMSingletonModule.m */, - E46B1AF5E106478A68F22A098B1BEC5C /* UMUtilities.h */, - 82CB5E38F32F0666135F8A6821A7FD7A /* UMUtilities.m */, - 7A5E31C57EE60147EDAAE3E31B1D19AC /* UMViewManager.h */, - 4BEDC16EA249B3BA4903141B600E8AD4 /* UMViewManager.m */, - AD45E2D9087363D280450BDF56E68CA8 /* Pod */, - 939830D5245B16EF0C59B91B66C79AC0 /* Protocols */, - 86D36252D2C0094FE10743D2E6716959 /* Services */, - F4BE25D0288FF64EC55E2EB6B38A67BF /* Support Files */, - 248402D751731B5BF2C27C484B3C4FE3 /* UMModuleRegistry */, - E2EE565E9CB49B38C451F0762C8CDC05 /* UMModuleRegistryProvider */, + B3D91346D5DB2BA26577F5070AD51083 /* AntDesign.ttf */, + B260E0EE240A30CB382B1FB7E0FBD03A /* Entypo.ttf */, + CB1991DD325FC9524024EF4257FB6332 /* EvilIcons.ttf */, + 927182F398771B6371856EE7E50ECFA2 /* Feather.ttf */, + F9B47235C2DACAD23FAAC25880AABED0 /* FontAwesome.ttf */, + AA85A239C0652695B4C80CAFA929E1A8 /* FontAwesome5_Brands.ttf */, + AE9E5B33E4575C3BFDB4F4B244E6A755 /* FontAwesome5_Regular.ttf */, + 43064E4BC1C1B15656FDBA53FB093DCC /* FontAwesome5_Solid.ttf */, + AEC758BDE8542ECD3416902DEA344304 /* Fontisto.ttf */, + EA466B9642F47563B288CDE2A8985061 /* Foundation.ttf */, + 88694BF6FDB06657BF01126AE45093AB /* Ionicons.ttf */, + 74321D345CEA8136C1865AC19AD44F9C /* MaterialCommunityIcons.ttf */, + 28544ADDE758E63A19E825585975E26F /* MaterialIcons.ttf */, + 8BA3C50BB757499678C5BE714615336C /* Octicons.ttf */, + 2891535CE0C5C5D5FD18CE0D197050B2 /* SimpleLineIcons.ttf */, + 222E72EEED1911A995052E5BF33D45B0 /* Zocial.ttf */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; - sourceTree = ""; - }; - DAC753C6181F275AF95BCE4EE7A2CA08 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3CEF4AFFEF71DC700182A251F237CCCC /* React-RCTBlob.xcconfig */, - D7ABCAC09C0A0EA009BA1246F79595CB /* React-RCTBlob-dummy.m */, - 46D4934D3AAAE6360F30A28A577FAA70 /* React-RCTBlob-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; - sourceTree = ""; - }; - DAE247AA05E0554740C37E6DF25B6E01 /* Support Files */ = { - isa = PBXGroup; - children = ( - 338D816078F73FF9542DDDBAED875FC2 /* React-Core.xcconfig */, - 60E41D6EDC00DE5F7FDFD06E86F1A2C5 /* React-Core-dummy.m */, - 458E90426F582931D4E93F24EB75E6A3 /* React-Core-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; - sourceTree = ""; - }; - DB3369A75F554CC3910398506C0A833E /* CxxUtils */ = { - isa = PBXGroup; - children = ( - C211084854232733B6106F84F2060236 /* RCTFollyConvert.h */, - F54A1DE8FD0FC45607B56E1634615E88 /* RCTFollyConvert.mm */, - ); - name = CxxUtils; - path = React/CxxUtils; - sourceTree = ""; - }; - DB4C3B1AE1BBC178CC29DB68B893F3B7 /* KSCrash */ = { - isa = PBXGroup; - children = ( - FF3CE4B51B34C0DB87AE58992A25BC62 /* Source */, - ); - name = KSCrash; - path = KSCrash; + name = Resources; sourceTree = ""; }; DBBD1F13765A25CC8BCBBFBC641BF012 /* glog */ = { @@ -11567,36 +11544,34 @@ path = glog; sourceTree = ""; }; - DC0D970C93D3A3D6B44FBC546DE684E7 /* react-native-keyboard-tracking-view */ = { + DBEC738EECC02D21F7960319BB60045B /* Protocols */ = { isa = PBXGroup; children = ( - 23911734DE7C1D39EC583D4B98597944 /* KeyboardTrackingViewManager.h */, - E0B6747F959C73C69CBFA6EFA290C150 /* KeyboardTrackingViewManager.m */, - 386D96C4A5C67BB0C24B8E6238C2268B /* ObservingInputAccessoryView.h */, - 17E5E5C0406A43442395C6499FD4DC5B /* ObservingInputAccessoryView.m */, - C4D6261E82E694F6E05A3A75BC4BAA45 /* UIResponder+FirstResponder.h */, - 839EED11FB8088ABBAFBAC2C6C429809 /* UIResponder+FirstResponder.m */, - CE641041C6DAEC112079553FA4E2E841 /* Pod */, - EFB7D07B02782BE29191A7C1B705BDCD /* Support Files */, + 07BE5A5F512431AE95BA20D966590C69 /* UMAppLifecycleListener.h */, + 6BF8113D2588CA88EA9058982CC76FB2 /* UMAppLifecycleService.h */, + 01DF6764FE9A5AE522B6E100964D5369 /* UMEventEmitter.h */, + 3B90DF08CDA37A586424E392B137748C /* UMEventEmitterService.h */, + 7126E6E76F462E83CF064A5963F6274F /* UMInternalModule.h */, + 4846E1686CC5A723183D3628D1403B61 /* UMJavaScriptContextProvider.h */, + D875A699D4BC489D7193B900F1E9CE14 /* UMKernelService.h */, + 5B5EF6B4894DC78CBF6D44A1AB93091B /* UMLogHandler.h */, + CDCA5FCE50407C37B8D0720FBEDCDD79 /* UMModuleRegistryConsumer.h */, + F8061B0D5177ECEA9F92BD48600E8B8E /* UMUIManager.h */, + 4B7BE3A6DE33BC60B85F162748EE3ECD /* UMUtilitiesInterface.h */, ); - name = "react-native-keyboard-tracking-view"; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - DC3F6B2FAE740701720365BAD2F818D5 /* Video */ = { + DCD023393C4EC0F1C5D5D595173F645A /* Support Files */ = { isa = PBXGroup; children = ( - 2E136A7DD0501D2920AC6E751907951C /* RCTVideo.h */, - 9DB546F80EA4C8F664F7D34B6D539816 /* RCTVideo.m */, - 4F2025517BC8D557FB99809407956CB6 /* RCTVideoManager.h */, - 200B410FC52ED1D49FB3C784185B8F03 /* RCTVideoManager.m */, - 8498FD18C19E0FE18E529B9AE9B2DFBC /* RCTVideoPlayerViewController.h */, - 84A709674F346A7BEAE13B2A5EE18C22 /* RCTVideoPlayerViewController.m */, - 834E201ABF2061E6D473BE35CAB450C9 /* RCTVideoPlayerViewControllerDelegate.h */, - 826389E051DB9F5DAFC23A5ED7B18FD8 /* UIView+FindUIViewController.h */, - 7FD79D0F338295E977F4D316A76EDFFD /* UIView+FindUIViewController.m */, + 60F27F0D9825020A92FCB19B3C1C90EF /* EXAppLoaderProvider.xcconfig */, + 26CAF031053C08A190DF071A82843657 /* EXAppLoaderProvider-dummy.m */, + 07715D946CC241035AA9330BD7314229 /* EXAppLoaderProvider-prefix.pch */, ); - name = Video; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; DD3EA029EC7383CA893EF3CB97B68F59 /* Pods-RocketChatRN */ = { @@ -11614,77 +11589,33 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - DD8A57E46C4AB31DFF0ACDB7372B52F5 /* react-native-notifications */ = { + DE807557D92EB2E0347663140D76973C /* Support Files */ = { isa = PBXGroup; children = ( - 6B54D91E86F56F1BB3D59F4544FB2B9B /* RCTConvert+RNNotifications.h */, - 8F4BDB1C1F0DEC616F4EE2565D81B77F /* RCTConvert+RNNotifications.m */, - 0A11CFDE7065490F90641B26838FBD7D /* RNBridgeModule.h */, - 0FC051E8E39A958D85281DA2232549E0 /* RNBridgeModule.m */, - F5340F41B48EAB99948E68E58639D98A /* RNCommandsHandler.h */, - BAA7D6FBDA74E2838646EFC29397B571 /* RNCommandsHandler.m */, - 04AF3C51F7F66ECAC396AFBCE9033846 /* RNEventEmitter.h */, - EA972EEF98A6E6063A59FA70C8963000 /* RNEventEmitter.m */, - A96ADDFAE20DF4F9B514874EEA3709EB /* RNNotificationCenter.h */, - 494D7C6BB2849CCECF2A7719596A60E9 /* RNNotificationCenter.m */, - 8A5AA89B3283F17AD3F4DDD55C37A94E /* RNNotificationCenterListener.h */, - CE5C53A1B492CD6BA850C71383973F6E /* RNNotificationCenterListener.m */, - 170A74C6C2C5C22A8B53386C9837E276 /* RNNotificationEventHandler.h */, - 92C67CC10494D314A41B3C2CEA9A697C /* RNNotificationEventHandler.m */, - F7C90F3A98224D6DE3458CF9B4592563 /* RNNotificationParser.h */, - 4009C1F0F5E09AED73CBD13150E7352D /* RNNotificationParser.m */, - C4F47A60F5BCB7F76EED93F1C33E870A /* RNNotifications.h */, - 0783991BC3A821F01ACDC5B0CE3BB3F0 /* RNNotifications.m */, - 30905185B2307B24C83D044B5E756944 /* RNNotificationsStore.h */, - 68467E3CFE2F10ED67841ECFBB5F6447 /* RNNotificationsStore.m */, - 78503CA382C9D43329DC817BF54894EF /* RNNotificationUtils.h */, - CA225D5A2E6D717CD7870ED6432FA37F /* RNNotificationUtils.m */, - 3B33802F7D7B84AA0626D079F70601A1 /* RNPushKit.h */, - E383A34BBE4DF7BC8C5EC68FB84DE350 /* RNPushKit.m */, - 585FC8608495994937895B8A2591307F /* RNPushKitEventHandler.h */, - 5631191D62E5021A68942E823AA434E2 /* RNPushKitEventHandler.m */, - 1546D22C2C8EA6AE11F39999F64BC710 /* RNPushKitEventListener.h */, - 7A2FB31784E1ED7F7C9238D0C311015A /* RNPushKitEventListener.m */, - 491E7EF3AB90FC1BFD8B3ADBFB7D8557 /* Pod */, - 09212FEF239BE83B5FFB0DAA2C9EE3D9 /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; - sourceTree = ""; - }; - DD9EFA1FFBF56A24EE4491C184A2E00B /* Pod */ = { - isa = PBXGroup; - children = ( - A9231F578E26A211DE0002B5BDFDA0EF /* UMPermissionsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - DE4FACEFC9AD5255EA1FE12928C14307 /* React-CoreModules */ = { - isa = PBXGroup; - children = ( - 3D0C5CD61A7E538AAC42D172FDE227FD /* CoreModulesPlugins.mm */, - 565940AB6D57C8F2B22C29AEA65242DC /* RCTExceptionsManager.mm */, - 00D6267DF2FF73D1AF8C5368C1C5E270 /* RCTImageEditingManager.m */, - AC251573210046CA55ECE59BC216F8F9 /* RCTImageLoader.mm */, - 99D8040F6EAEAB257B9664B10F8BFEDA /* RCTImageStoreManager.m */, - 9BA20ECA608A4F959F161F6314C07143 /* RCTPlatform.mm */, - 47A1AC75A8D13AC6E70A28C1C3FD8C8B /* Pod */, - 4A2AEBF150C101AF90D6709E7E47A217 /* Support Files */, - ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - DF40EE2F4076639455AD650E77AF847B /* Support Files */ = { - isa = PBXGroup; - children = ( - FEE17FF191607545AB35410F4FC71A32 /* React-RCTNetwork.xcconfig */, - 0D463BCADAB0CD3FA585E82382C4841E /* React-RCTNetwork-dummy.m */, - 97AF343E5B1DAB57EEDD4B05DC498A51 /* React-RCTNetwork-prefix.pch */, + 41B32C718B311430215CF7605174A6DC /* UMCameraInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + DEE2F6532396FE88E0061FF97165B17B /* BaseText */ = { + isa = PBXGroup; + children = ( + DC7CE3319FDE21DCD68690CEA070AC18 /* RCTBaseTextShadowView.m */, + 80D76D9FDD4369B868CB483CA0860B0F /* RCTBaseTextViewManager.m */, + ); + name = BaseText; + path = BaseText; + sourceTree = ""; + }; + DF405470C745EB45D629F7941FE51DDE /* Pod */ = { + isa = PBXGroup; + children = ( + CB635E8633F5B9A2412799EDEFE2DEAB /* LICENSE */, + 49C2A18A615ABAF44FA09A754BA7DD22 /* README.md */, + 5EB5166BF595DA8635E95DE8A24E84A4 /* RNBootSplash.podspec */, + ); + name = Pod; sourceTree = ""; }; DF46527C239687489BF2D72AE4C69774 /* nanopb */ = { @@ -11705,31 +11636,70 @@ path = nanopb; sourceTree = ""; }; - DF73CEB83498278ABF84F5261280E606 /* RNGestureHandler */ = { + DF8FE38C8FB0EF0C313087B9EA084C20 /* Support Files */ = { isa = PBXGroup; children = ( - 25C61855D9E009FBDE973162823D5B7D /* RNGestureHandler.h */, - 61CC90A251F8AF95EFDC9FD2376EB1D0 /* RNGestureHandler.m */, - 498A4FF6CFAD1B94EF7A4801EFEB3957 /* RNGestureHandlerButton.h */, - 589776A89332278D423D6755E1271325 /* RNGestureHandlerButton.m */, - 12EC3DD9CD28EBA910DC357466A9268D /* RNGestureHandlerDirection.h */, - 5C4D4504A5E0169EEA9E1BD9EEE809BB /* RNGestureHandlerEvents.h */, - 38FA3FE49F8B797FECF2B05366D47C3A /* RNGestureHandlerEvents.m */, - 696BBA70437E1206B8EEEA5A283B2A2C /* RNGestureHandlerManager.h */, - A2B979B49F7F0FD5CF0AFDC0EE85677D /* RNGestureHandlerManager.m */, - 776B81695F3B63E689B69A224988541B /* RNGestureHandlerModule.h */, - 14731FC3B97E813560708C5159C23846 /* RNGestureHandlerModule.m */, - 01AB176D8CCC282389777CB23AF55DBD /* RNGestureHandlerRegistry.h */, - D63D5DE507EB9E643CA55FF3A3F4B965 /* RNGestureHandlerRegistry.m */, - 5801DFFC0C6A59EA34122FA75E352C62 /* RNGestureHandlerState.h */, - 03D63C370B1F5F00787DBD1CC533D8DA /* RNRootViewGestureRecognizer.h */, - 7E2AC07FAC1F2E0091A4C47C3EEBD291 /* RNRootViewGestureRecognizer.m */, - 1A15EFBB0193C8609D77649843FEAD1D /* Handlers */, - 3EBACA3123CE2D52D261EDA6E28A2126 /* Pod */, - A718D11B54AC65BB9896DBA26EC395C4 /* Support Files */, + DE1E5E9D94FBB83D71200FE3F701AFC9 /* UMBarCodeScannerInterface.xcconfig */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + sourceTree = ""; + }; + DFC5F3E20D49A00049C4EA1140791DB3 /* Nodes */ = { + isa = PBXGroup; + children = ( + C1004F9B7B201455C573DF6B8B445748 /* REAAlwaysNode.h */, + 8A308F58A40A9C554C16D0992E95FC01 /* REAAlwaysNode.m */, + C91B68631AA428B8446308DCFEDA2732 /* REABezierNode.h */, + 60D3B7C0C9BFFC9C91BBD426CBC1BF43 /* REABezierNode.m */, + D0277F480CE09A082A86B5E0AEDE50C3 /* REABlockNode.h */, + 9EDDF6D87D982647DB11D09144BA7E1D /* REABlockNode.m */, + 80A10597132CA42828B1C52EA27413A5 /* REACallFuncNode.h */, + A90B1A629720AA5F418DFA00D3D2F3CD /* REACallFuncNode.m */, + 2D04E51B3D9AB1AF4BA1C8CF4B613264 /* REAClockNodes.h */, + 0EE4519DC88D45E3E2863002F2F5C975 /* REAClockNodes.m */, + E077631EEEF1BAC9D4F61506BE04F689 /* REAConcatNode.h */, + F13B1FF9E413876B860A45982F190268 /* REAConcatNode.m */, + 3F8B0F84983E057E85E61BE1578A994E /* REACondNode.h */, + CFD43F02444B6C40723BD79FFF466909 /* REACondNode.m */, + C0E942377919BBE70AB48BAC4D697D4A /* READebugNode.h */, + 2C1AB8196BD52F9B393CF60B88CBED5E /* READebugNode.m */, + 8AF57F5F08561D32276CA6C41C7BA677 /* REAEventNode.h */, + AE587803218535C46E1EEDB2CD30D2E6 /* REAEventNode.m */, + 183650D3199739FA3BADAF479DCF1BFC /* REAFunctionNode.h */, + 8EA909502101D3AE04F68B5C959DDC78 /* REAFunctionNode.m */, + 208B535EFA85EEB6BCF38C0A82906751 /* REAJSCallNode.h */, + E40A00C8C3ED2A93E0EE23547A78DAEC /* REAJSCallNode.m */, + EAE341097CBB8D299DFD9626AE233077 /* REANode.h */, + EC56C96F70B24D207A22E3C32799721E /* REANode.m */, + E240394A0054E5D7DFD99DE12ED70C71 /* REAOperatorNode.h */, + 67D7E900DBA9B68E7900E940C0659DFF /* REAOperatorNode.m */, + 4FA872ECA2364819229F49A28DEE38C2 /* REAParamNode.h */, + E617782815CC6EB6BA87C34D052D87E2 /* REAParamNode.m */, + 7E8628D665ECC3DE993D7A1606537068 /* REAPropsNode.h */, + F9F9856573A9F0E720439BFED117A6BC /* REAPropsNode.m */, + BB6129BCC7D282C67A293E66DCB09D2B /* REASetNode.h */, + 9686F2C0DFDCEA8AFF625734140E786E /* REASetNode.m */, + 4C9C39623A46A8D8A570BCC7F55A69C6 /* REAStyleNode.h */, + EFA32A5C363DDBFEAEFC4923CC52A8A5 /* REAStyleNode.m */, + B22BBE455DEF05ED888005038069CDE1 /* REATransformNode.h */, + F545B27E704F27558A9ED01F0D7EAEC2 /* REATransformNode.m */, + 3ED407286D3EF4CCC9D9A30176A89B2B /* REAValueNode.h */, + E6EE62BB2BE77CD3706F442B1016283A /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; + sourceTree = ""; + }; + E068543D468EB14DF02A179EC3571315 /* Support Files */ = { + isa = PBXGroup; + children = ( + 37A4470DB7E5D6A62D784504743D0D14 /* React-RCTActionSheet.xcconfig */, + D3A3B3F8D4F01934A892D5E018B54300 /* React-RCTActionSheet-dummy.m */, + 98E6DDCC4A47CC1248E29292A2DC25FE /* React-RCTActionSheet-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; E095C3347AF50DDADDDF6CC031DAA6D9 /* FirebaseInstanceID */ = { @@ -11805,66 +11775,105 @@ path = FirebaseInstanceID; sourceTree = ""; }; - E1D93C4A7DDA9F70E2DE8A958BDDB27B /* Support Files */ = { + E0F8B966FCFC7F59BD9575B2A8F9F982 /* Pod */ = { isa = PBXGroup; children = ( - 9178FDFA5A52874BF5724CB2AB964C5B /* UMImageLoaderInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; - sourceTree = ""; - }; - E20C2CB8A73AC20C6B1D8AD1510FEE33 /* UMCameraInterface */ = { - isa = PBXGroup; - children = ( - 0B034A3847293DA3E577408BC6636FDD /* UMCameraInterface.h */, - BBFF655567CB14D7432C188C1C518533 /* Pod */, - 436F49AE999FEA44A0D1ACC43055939A /* Support Files */, - ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; - sourceTree = ""; - }; - E236B2FECC972980F4322123B1EB4C36 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8739EC73C0AA1B43B9231E9727AB3D8F /* React-RCTActionSheet.xcconfig */, - F31A0471859CCA5EAC081F7810DBB406 /* React-RCTActionSheet-dummy.m */, - 212DFA7D181040060D52BE908EF49DB4 /* React-RCTActionSheet-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; - sourceTree = ""; - }; - E2EE565E9CB49B38C451F0762C8CDC05 /* UMModuleRegistryProvider */ = { - isa = PBXGroup; - children = ( - E08255D813D805A74DF0E2AC2D562207 /* UMModuleRegistryProvider.h */, - 2F3869402970ABB5803B20BF44D61D87 /* UMModuleRegistryProvider.m */, - ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; - sourceTree = ""; - }; - E432BFEE9022E9916696E5A039B70FDF /* internal */ = { - isa = PBXGroup; - children = ( - 987821AFFECE76690D223636B519ADE3 /* experiments.cpp */, - 81685809005A13FF186E65DA6FFB1463 /* experiments.h */, - EF7332D22F963E1ABDF5B443A56C2AD1 /* experiments-inl.h */, - ); - name = internal; - path = yoga/internal; - sourceTree = ""; - }; - E487855FD27B014F986C99F3D243C6BE /* Pod */ = { - isa = PBXGroup; - children = ( - 27549CDB44130D9F80FF997211B4967A /* React-RCTLinking.podspec */, + 9E4B8D617AFD312FEBD935F095DC41E3 /* react-native-slider.podspec */, ); name = Pod; sourceTree = ""; }; + E12A3440EBD5075259F87B014ED7EA50 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + 6C9D4B49AD96280E32CA151E0E090A0B /* EXAudioRecordingPermissionRequester.h */, + 64C18F5EC1ECED083D3F569C093B78AA /* EXAudioRecordingPermissionRequester.m */, + 9004F0CE6969B980AB15394D57C6EEE4 /* EXCalendarRequester.h */, + 9C169DD6C1D791F5E0E6CB9652B22112 /* EXCalendarRequester.m */, + B2C3AC10CB012FE8FB31E95320947EEE /* EXCameraPermissionRequester.h */, + EC7D36FD91ED2E6B4A8CCDCF84BA5019 /* EXCameraPermissionRequester.m */, + C181B7F718B659FB9482CFC20888531D /* EXCameraRollRequester.h */, + 60FDD80D6CB21836252E49CED7041D9F /* EXCameraRollRequester.m */, + 834F1E69F45E280B37AEF05EA066A85E /* EXContactsRequester.h */, + FD5C664F173298F179719BB8D48AE9ED /* EXContactsRequester.m */, + 513F5F8991E9989A90D11A4EC14A87AF /* EXLocationRequester.h */, + BE92589706D64B12F90B176B6A57652D /* EXLocationRequester.m */, + 0DF5A7DFF4C37F2500DE0FAC62F58DAC /* EXPermissions.h */, + 4B32571BC38D836A16A0BB4F1DDE12C1 /* EXPermissions.m */, + 6EB93FDA28697B267385637DDC0B84FE /* EXReactNativeUserNotificationCenterProxy.h */, + EDB13CDBF9633B4AF3631C1FFA784113 /* EXReactNativeUserNotificationCenterProxy.m */, + A87D294F6428C7EBBF8E362A82C30DF8 /* EXRemindersRequester.h */, + 1C372D568CD6870CC01830B85A92C17B /* EXRemindersRequester.m */, + 1B63E9B12823AC25D79AE55FE6193299 /* EXRemoteNotificationRequester.h */, + 76078A91E7480FE1D7343FF920B5264D /* EXRemoteNotificationRequester.m */, + F9A15A67248330A5D84B310189C8F2CF /* EXSystemBrightnessRequester.h */, + D48EF3CAC65B53B0E0B1CDACE8FDE8A7 /* EXSystemBrightnessRequester.m */, + 900F5C1CB44D295409FB2FD55AA0D482 /* EXUserNotificationRequester.h */, + E7E099045D89033E9894F6EEB30D1A15 /* EXUserNotificationRequester.m */, + 6F205674DB7D2A9CC757CECECEACDFEF /* Pod */, + CBE19EBA36FEAECFE1DFD7ABB0EB590F /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; + E290A14C6F12405038BCA189E1A50388 /* Pod */ = { + isa = PBXGroup; + children = ( + 9FB4EDF19D1644FF642193E3ECA82351 /* React-jsi.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + E2EFE7553546470387265E4B358849A9 /* ReactNativeART */ = { + isa = PBXGroup; + children = ( + BBE943BCB921CC4D2A39818594F0864D /* ARTCGFloatArray.h */, + 1EE92919E35EA25DF553ADAD467A35D5 /* ARTContainer.h */, + 62ADAC22FFD0463ACD02E37B3CFEFF3D /* ARTGroup.h */, + 46ACE3213293642B56CCF42F0E434F07 /* ARTGroup.m */, + 184BEC56074C469A06B101587D2E9AC1 /* ARTNode.h */, + FAE8A210674ECD1F490A679D92AB54B1 /* ARTNode.m */, + 2EA5632C7E11DE7B34148BF301EA18B3 /* ARTRenderable.h */, + A33BEBEB9296D799A5CC2F6E1DA6868E /* ARTRenderable.m */, + 1E9D43A734EECE32504BF5D855427517 /* ARTShape.h */, + A72C645758FFD253BEAF84EF9815D892 /* ARTShape.m */, + 33A6EBDF50F21E6881419963C4BE04A5 /* ARTSurfaceView.h */, + 5D622E70BFE4596FFAEA5CF31E9934C6 /* ARTSurfaceView.m */, + 67EA3A462AB02756F4A170E38D803C67 /* ARTText.h */, + BC1CF879F6F28A1206E11A2A7270FA83 /* ARTText.m */, + DCEAF7E65FCBB127E2095642489CD6B1 /* ARTTextFrame.h */, + A7B8A6812933BF099464A855BD022D03 /* RCTConvert+ART.h */, + FB79C32615B9E1BA3D70C5E2C249C340 /* RCTConvert+ART.m */, + 7CE364B5FAFFF00B686D772128797865 /* Brushes */, + D2167EC888FD075D6C0ABAA2519743B2 /* Pod */, + 3874875CD7B31AA47540DEC7DEAB5DEE /* Support Files */, + 6CA79A5881796A2CA98A48B049516F72 /* ViewManagers */, + ); + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; + sourceTree = ""; + }; + E45BD582D7ED410BDC31768C659999CB /* Services */ = { + isa = PBXGroup; + children = ( + 55C44DA87EDE4AFD3E53692BCB10D754 /* UMLogManager.h */, + DF95B1F3299788509771779271ABDF95 /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; + sourceTree = ""; + }; + E461113388F11EC3D586194A92361BB0 /* config */ = { + isa = PBXGroup; + children = ( + 42652246EB8597BAB9ED797AFDB29830 /* RNFirebaseRemoteConfig.h */, + B0FF906552B5DFC796F25F2644B3B20E /* RNFirebaseRemoteConfig.m */, + ); + name = config; + path = RNFirebase/config; + sourceTree = ""; + }; E53C9CC3497634A2C855D1ADC4914341 /* Environment */ = { isa = PBXGroup; children = ( @@ -11874,22 +11883,56 @@ name = Environment; sourceTree = ""; }; - E5414C3857C4790B6064426592A6DCCE /* Support Files */ = { + E557EF3162940AE9D8C3218ED589B945 /* Recording */ = { isa = PBXGroup; children = ( - BE06FAF60C7586CDF0EBB38218A8E5B0 /* UMBarCodeScannerInterface.xcconfig */, + 90A26A9AD1A38C028993D2F38F74CEE2 /* BSG_KSCrash.h */, + 7520309124E264C55C6F0F773691957D /* BSG_KSCrash.m */, + 95F7B73C7BC6EDE9052F07E04DB0C417 /* BSG_KSCrashAdvanced.h */, + E294DA72BFCD10B1152867AA7571D454 /* BSG_KSCrashC.c */, + 732E1BAF94E188712C21BD39B96FCE26 /* BSG_KSCrashC.h */, + DD0AE59F51A1DE1759E3E500BEC37AC1 /* BSG_KSCrashContext.h */, + 943D7DEBC82207F41DED0ABECF1EF62A /* BSG_KSCrashDoctor.h */, + A3563F6253B3ADA72FC5A1180FA6EB55 /* BSG_KSCrashDoctor.m */, + 8726331AF6FD5A9A46E6D76C69CFE1BC /* BSG_KSCrashIdentifier.h */, + 18E62FAC3EFD4396EB4C691B8C82D1BB /* BSG_KSCrashIdentifier.m */, + DA367791D3EA913EE63D4B6186F07065 /* BSG_KSCrashReport.c */, + 76F95C1AC7952AABE43BB6B15937845E /* BSG_KSCrashReport.h */, + D57EEC60392CEA5042D268D64C5D6928 /* BSG_KSCrashReportFields.h */, + 520CEBF422EA2532B8E674FC815BDE24 /* BSG_KSCrashReportStore.h */, + DB1042CE5347E5C69C05DF9654B6FC58 /* BSG_KSCrashReportStore.m */, + FD013A881AB7C8A0B88A7917FB4BCD7C /* BSG_KSCrashReportVersion.h */, + 4D22BB927D67620FDAACAD659A22B72D /* BSG_KSCrashState.h */, + F8B82E7DFEC57F3F2BF27DFD687B53A4 /* BSG_KSCrashState.m */, + FCAAC1F8A1131F406346B5AE3D886ED1 /* BSG_KSCrashType.c */, + EE869A12F535871BA33512B4E9E9E46C /* BSG_KSCrashType.h */, + 265C960F3781EC699D265B371CEBA7C8 /* BSG_KSSystemCapabilities.h */, + 40C2D09AB3F7E78DEEC2F574DCBA8DA1 /* BSG_KSSystemInfo.h */, + 59C5D3D4BAB635C84E35AE51D051C7F5 /* BSG_KSSystemInfo.m */, + 7B72C33D070D0F03288E76E1DA1BAAEE /* BSG_KSSystemInfoC.h */, + 4E632BA6BB0CA2912FFF6430D6F4C829 /* Sentry */, + 22CA24DED669E401F787CE35C93C7172 /* Tools */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + name = Recording; + path = Recording; sourceTree = ""; }; - E6924C626A81C739BCD478E1B761DC7A /* Support Files */ = { + E57FB6E4DC9D7361CC253CEA3E86D58C /* Pod */ = { isa = PBXGroup; children = ( - 53441B3DCB5B9E117FAFCF7CE71424E0 /* UMSensorsInterface.xcconfig */, + 816B24C331E764562DE95D88D72E8EB0 /* LICENSE */, + E14881EF00C615A3DCC304159EC09F46 /* README.md */, + 70BE8888DF464E15C845F104312F342D /* RNVectorIcons.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = Pod; + sourceTree = ""; + }; + E6794ACEBC5051EC2263C8FB8189E27F /* Pod */ = { + isa = PBXGroup; + children = ( + FF122266DD300E2F062DD83CFE32B661 /* react-native-keyboard-tracking-view.podspec */, + ); + name = Pod; sourceTree = ""; }; E7827566348E22ABE932A130C01B6751 /* Support Files */ = { @@ -11901,39 +11944,36 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - E79D1BC8A5DB98EC2396D6DC6F3753A2 /* Support Files */ = { + E81AF7D9DE4016395ACEDDA1E5D799C9 /* Support Files */ = { isa = PBXGroup; children = ( - 3CCA71000CC3B0C0CF5C98C7BAAFA706 /* UMConstantsInterface.xcconfig */, + D7442488D44347FE3864D6299F3467B8 /* RNAudio.xcconfig */, + FBE1DCE5E476F4EC8A2EDE5C906A1053 /* RNAudio-dummy.m */, + BA1ED11FF0F2ADB786C99C7FFA39D264 /* RNAudio-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + path = "../../ios/Pods/Target Support Files/RNAudio"; sourceTree = ""; }; - E7F48E9662730F52690E12D8EC00034F /* QBImagePickerController */ = { + E83BA8AEDF0F1A179E8605777EC7208D /* Support Files */ = { isa = PBXGroup; children = ( - 451C703CE7E8AC15E9472E9F32558A11 /* QBAlbumCell.h */, - 49255696C1CCEA1E1242C663239CCB89 /* QBAlbumCell.m */, - 833A6A67ACF149F280F8CE95DC6D8B09 /* QBAlbumsViewController.h */, - 28265B29D617FAAA311A5A948A405705 /* QBAlbumsViewController.m */, - 945812BAFCFBCA799CDA6828A3F43720 /* QBAssetCell.h */, - 6DE079E5E70B4BA4B86DB31EFEA492E6 /* QBAssetCell.m */, - 90CED7693DC05D50A140637839883E72 /* QBAssetsViewController.h */, - 1CA80193E1A0EDA3D3A4B103FC31B051 /* QBAssetsViewController.m */, - FB8640F657DD2122ADB8CAB8319C9279 /* QBCheckmarkView.h */, - 3F8AAAFDC375A850D80E66702DD4BF52 /* QBCheckmarkView.m */, - 7737694E9B3A951E07FF7E8C2E7C4880 /* QBImagePickerController.h */, - 1068FEF6E9F10FCEC7F7A0F102077F7D /* QBImagePickerController.m */, - 6708E35DBB3D103F8267F825E34A5657 /* QBSlomoIconView.h */, - 94249BEAC1A4D633C6807346A8070F3D /* QBSlomoIconView.m */, - 2A67786461370E185AF7874C96314135 /* QBVideoIconView.h */, - A46CEB0D88622A4206E1436F9F31EB39 /* QBVideoIconView.m */, - 8D41701D90D5307954B1742BDAFC0654 /* QBVideoIndicatorView.h */, - 8B177BBB89F7A58B6A2340B1CE785CF7 /* QBVideoIndicatorView.m */, - A510E4787B3B9B6EC2A6B86917CA46E4 /* Resources */, + 3D6B737432CBA54A89E0AEFA22DF0FBF /* react-native-keyboard-tracking-view.xcconfig */, + 2C17E36E535E6F0C1AE18EA84D85A981 /* react-native-keyboard-tracking-view-dummy.m */, + D3F1982C9DE5194AEB5AAF32073DB26F /* react-native-keyboard-tracking-view-prefix.pch */, ); - name = QBImagePickerController; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; + sourceTree = ""; + }; + E89983AD81E9A664B03FBC332E269D08 /* analytics */ = { + isa = PBXGroup; + children = ( + 0DBD4D04E771C54FA52A477EC9FC70CB /* RNFirebaseAnalytics.h */, + 91965C85CF66D8EA20BA211B8836235A /* RNFirebaseAnalytics.m */, + ); + name = analytics; + path = RNFirebase/analytics; sourceTree = ""; }; E8EEAD52B1001C6E42DE46FA67FFC33B /* Resources */ = { @@ -11944,12 +11984,46 @@ name = Resources; sourceTree = ""; }; - EC500DA14D373AF1EABEAF2C9AF30A2C /* Pod */ = { + EA819708ACB911FDB801A231FA928058 /* Profiler */ = { isa = PBXGroup; children = ( - D80D5D7DE95EF5FEBB5FCFC91ACE7124 /* UMFileSystemInterface.podspec */, + 702D442BFAEEBC53967590E478172D81 /* RCTFPSGraph.h */, + 66679F7DD5C25FB6D5A0FA4B91A6CD05 /* RCTFPSGraph.m */, + 321A3EB0FB64C5D2F763BBDD94BE0F90 /* RCTMacros.h */, + D858D60B19B15DD3B37BFCFA9D636CAF /* RCTPerfMonitor.m */, + E99010208DB40FF5DE426252C8136019 /* RCTProfile.h */, + AED110A21816296407A6A61AC9990E5F /* RCTProfile.m */, + 3C48EE00491A8A4B8EEFA84F944F86A4 /* RCTProfileTrampoline-arm.S */, + 1418C7E922900E5DE839F18D991C3B84 /* RCTProfileTrampoline-arm64.S */, + 392E52760A362EB0A97D3E6EFB27B76E /* RCTProfileTrampoline-i386.S */, + 9D7BB9A9986EC460E6DA90011D792EFD /* RCTProfileTrampoline-x86_64.S */, ); - name = Pod; + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + EB7830C10F2B6F429566321E5411CCC2 /* FBLazyVector */ = { + isa = PBXGroup; + children = ( + 0BD001A7A37F01C00E5CC08101FD9FD1 /* FBLazyIterator.h */, + 165EF85905D443770194085D1852BB5D /* FBLazyVector.h */, + 0F65A7F91102F315BCE3C7D9C7C82CF8 /* Pod */, + 6A2669798997CB60BEDFF14FAC4E1813 /* Support Files */, + ); + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; + sourceTree = ""; + }; + EC63520602EA1EAE02153A86F1ECEE32 /* database */ = { + isa = PBXGroup; + children = ( + 1FA5E0CA44BC2E324B39B0EC61089027 /* RNFirebaseDatabase.h */, + A9691ABB37712E5FCEBACD419A31BD2C /* RNFirebaseDatabase.m */, + DC898FA019A3F25EA6F04D68DD84E834 /* RNFirebaseDatabaseReference.h */, + 94E57B5ECB870EF9C65BE0DB598689E4 /* RNFirebaseDatabaseReference.m */, + ); + name = database; + path = RNFirebase/database; sourceTree = ""; }; ECD336A7C45854EB4022B9D5DF23021F /* DoubleConversion */ = { @@ -11979,25 +12053,16 @@ path = DoubleConversion; sourceTree = ""; }; - ECE3CFC6B733646AACDA8B2FFD0BB0C3 /* Nodes */ = { + EE8F9650481736DB306924C006565936 /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - EDCB561D274C78BAB42BDF5266FEEFF6 /* RCTAdditionAnimatedNode.h */, - 77CAA27A0F211D519B85CBF3D079AADF /* RCTAnimatedNode.h */, - 637B2905EFCA92F6B6F01A80EC507AF2 /* RCTDiffClampAnimatedNode.h */, - 4299726BEA3130042018922655CEAB31 /* RCTDivisionAnimatedNode.h */, - 740C19CBAF1B7128836A086F6F400C7B /* RCTInterpolationAnimatedNode.h */, - 3406114BB84016C3BF3C6DD7AEF5D054 /* RCTModuloAnimatedNode.h */, - 83DF81F714471EE2EDA81F05870FC7BD /* RCTMultiplicationAnimatedNode.h */, - 30486FCD09C0FB413C2B73A34AB04757 /* RCTPropsAnimatedNode.h */, - 9A6DF1FEA62063EE8DE21E0184A2F1A1 /* RCTStyleAnimatedNode.h */, - 3AC31182A2D26CD330A9E68DDF5CAF70 /* RCTSubtractionAnimatedNode.h */, - 04AF880EA4E6EC46A565A469E7BBF10A /* RCTTrackingAnimatedNode.h */, - B7A4880C2EE835771E9D06A2BD538F35 /* RCTTransformAnimatedNode.h */, - 167001BB542F875BB6AE6374CBE2F8D3 /* RCTValueAnimatedNode.h */, + 7DED4185513221BD8A0C78546E28CE08 /* UMFilePermissionModuleInterface.h */, + 3AB044C3B7717953322047E450A71A45 /* UMFileSystemInterface.h */, + A1861E7AF117040A309136E80BDE1650 /* Pod */, + 9E6228C6B7C4BCDE68BD58A72591803B /* Support Files */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; EEBFE49148F1CF5A03CA08723969E319 /* Support Files */ = { @@ -12011,53 +12076,14 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - EEDDE5C993CBBDBF48EADF5CE85C4D21 /* RNFirebase */ = { + EF07FF0862760CF2BEB7721143D4585F /* RawText */ = { isa = PBXGroup; children = ( - 5DFDDA9B1A315696FB654E1F37F4A0A5 /* RNFirebase.h */, - CE2680792DF7834893B2F58F450A3ED6 /* RNFirebase.m */, - 64C3E12A134EC7FB4105E2FFA8E68E22 /* RNFirebaseEvents.h */, - 675F6D25A6A38C0965EC0E8FFF68F5E6 /* RNFirebaseUtil.h */, - AA86777BCF757519048D2B2F0BB57062 /* RNFirebaseUtil.m */, - 26F4DA5A38C20ADCB4C5E504904EEC1E /* admob */, - CE603AF45600482464DDBF024E5D2719 /* analytics */, - 7999D3E2158F1FE1FF19235AC75A2F38 /* auth */, - 0A7E816D401E3E937E3B8A49DF920903 /* config */, - 336EB278F85CDB580EEEEF7750D9218D /* converters */, - 7C467CD5188676DCEA532A5F82D88714 /* database */, - C66B8BF3DD912660B0684E7EF107AE25 /* fabric */, - 718E955F05CA0EE12785D49BD7302E30 /* firestore */, - 6AECC41E74DBEEC65BE1FAEB518A5FC9 /* functions */, - 11286122E16AA6A7EB9997E9E2938367 /* instanceid */, - 7FDF4E745F812DD8A2EB66D467DC774E /* links */, - 9FFD6C48AA84AA0129A6513D521A3D8D /* messaging */, - 5D11A8B46FE1AAE9F9768C889CEEA7F3 /* notifications */, - EF27ADDD6C9444A1DCB19825CF2D3672 /* perf */, - 16F70382F813FC70862131F09AD25F8B /* Pod */, - 66753F01ECABD89ACFBED16354687E0F /* storage */, - F6C884388081F3AC6A1D5E593BE711FB /* Support Files */, + 0E6977FAA63F6CA6D8FDBC6AFA3B9E98 /* RCTRawTextShadowView.m */, + E9A7CAE3BE3E4DA6F072F8361E730C28 /* RCTRawTextViewManager.m */, ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; - sourceTree = ""; - }; - EEF594D71A7C7BC9D8AECC3DE6FC6577 /* Support Files */ = { - isa = PBXGroup; - children = ( - B3DF4F93DB36B32D91549C6ABADDB132 /* React.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; - sourceTree = ""; - }; - EF27ADDD6C9444A1DCB19825CF2D3672 /* perf */ = { - isa = PBXGroup; - children = ( - FF707174B2503E5C71F8EF8F5FECB06F /* RNFirebasePerformance.h */, - CDBBCFB76DC32DEC120D50C17B098C0E /* RNFirebasePerformance.m */, - ); - name = perf; - path = RNFirebase/perf; + name = RawText; + path = RawText; sourceTree = ""; }; EF4FF077384894C92E4814E8E288BDD5 /* FirebaseAnalytics */ = { @@ -12070,15 +12096,16 @@ path = FirebaseAnalytics; sourceTree = ""; }; - EFB7D07B02782BE29191A7C1B705BDCD /* Support Files */ = { + EFAF538BA0EE9D5E25FB39B6EABC8883 /* RNLocalize */ = { isa = PBXGroup; children = ( - 3E37DEA736B7624538DEF328612A34EE /* react-native-keyboard-tracking-view.xcconfig */, - EBADEA41150AD86AFE019C4CD4E2FD6F /* react-native-keyboard-tracking-view-dummy.m */, - CFC03FF9F7DC49A49DBF4D4127046ADC /* react-native-keyboard-tracking-view-prefix.pch */, + B631F247E1DC396A1BA5E711C5F70F33 /* RNLocalize.h */, + 1CA8125439F97A566317021EC91B6DDC /* RNLocalize.m */, + 82AF47CFEFF6DF94B7E2887A2AEAFACE /* Pod */, + A97247CCB1E30E266F87484709474A1B /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; F0044B9650E6BC845F649EE7C95040E3 /* mux */ = { @@ -12095,51 +12122,95 @@ name = mux; sourceTree = ""; }; - F0926636B296F05464EB022485D23721 /* EXFileSystem */ = { + F068D7B773BC6F6A480165D026AFD76D /* Support Files */ = { isa = PBXGroup; children = ( - D02DEFE53D76538671483BD6ABAFF332 /* EXDownloadDelegate.h */, - 33EC0E5B8B9ADDB4838EADB7A50AE5A1 /* EXDownloadDelegate.m */, - 15B515C88A882F49E4AE51F40CC365F3 /* EXFilePermissionModule.h */, - 23754EA75C4611DD841F9D526A5FE05D /* EXFilePermissionModule.m */, - 892DAF84D0BCCEFD111C94D7517BC3C9 /* EXFileSystem.h */, - E86EAAE85254BEA5727D1E88DF730008 /* EXFileSystem.m */, - CA21EDA115C0A41E286ADB005D6A38CA /* EXFileSystemAssetLibraryHandler.h */, - C1E9AC90B7DAF68E7C5B579D368FF30B /* EXFileSystemAssetLibraryHandler.m */, - 1AEE9A0BA7E271016CEF50622ADF9914 /* EXFileSystemLocalFileHandler.h */, - 2D49C8A04AF309CE5BE94686AF3A1831 /* EXFileSystemLocalFileHandler.m */, - 89123F24D3C0DF6BDC2F7A547BA3FCC0 /* Pod */, - C17F0C741A0D2F404A1F81E891AD6317 /* Support Files */, + 038A80AF4541A3218A844236F86DCA0A /* React-jsiexecutor.xcconfig */, + 2BDB0E86D85831000375A7EC4A0024AD /* React-jsiexecutor-dummy.m */, + 0A5419ECC15C97412C523F0FBE0D4FD4 /* React-jsiexecutor-prefix.pch */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - F14797CC7C3D89CE01B290AACC1055F3 /* Pod */ = { + F1A57550C5453A8DA356A8B90D747A3C /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 918D0DAAF3DAF360A13EB2EA19CDD30D /* UMConstantsInterface.podspec */, + A3415E38D5E1DBC30DC4BCACCD73D64E /* Compression.h */, + 7D827844647E7A17CE8BDBBE80B4D2FD /* Compression.m */, + D27ADF8C1E1379A4F7E0518AF69FCA06 /* ImageCropPicker.h */, + 00E82BDB2C9F5873A72BD92FC76E564A /* ImageCropPicker.m */, + E9DB9A7CD9DA43DDDE88315A08E9FA82 /* UIImage+Resize.h */, + 5F9B41F73DE3A642B7685B934EA65566 /* UIImage+Resize.m */, + CC96679AA98B76E42E488C217AC0C210 /* Pod */, + 432827F5900D9FB6002F825C586CE0AC /* QBImagePickerController */, + B080F826DB3A8B1A46E35432E0CBBE8F /* Support Files */, ); - name = Pod; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; - F2C6BCFDFFA6129D3F5F4F5902665EDC /* Pod */ = { + F2FD01AAB7CB67814252C9FA9FAEB1F5 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - F170556229F32C7D7FDE04E6D4B8DF5E /* React-RCTNetwork.podspec */, + DB11279B4CC28B0171055B063B80E6FD /* RCTSettingsManager.m */, + 47304582F21DE6B0E4E607FCC454ACDC /* Pod */, + 086E96906DDFE55D11DB51E67305AF4E /* Support Files */, ); - name = Pod; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; - F3743B731BBAD0D08B07902E40C4E2D8 /* UMImageLoaderInterface */ = { + F30FFFF1DA8E2E2F1F65A4F83FD5867F /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - A6E5449429D43C155281806D933D684C /* UMImageLoaderInterface.h */, - CB848FE84CB02CF4BC123F679125A2DD /* Pod */, - E1D93C4A7DDA9F70E2DE8A958BDDB27B /* Support Files */, + F1CA86EC02704792F80A09983025BB31 /* RCTSurfaceHostingProxyRootView.h */, + A9260E377C17898766A665275BEC9B96 /* RCTSurfaceHostingProxyRootView.mm */, + 5BB54D1729F8F16A934E77D5B4B9D643 /* RCTSurfaceHostingView.h */, + 6EB0B824AF84B8E153BF5D7B66B29FC1 /* RCTSurfaceHostingView.mm */, + 32272DA9DC56D2252137E11DFDD0517C /* RCTSurfaceSizeMeasureMode.h */, + 30F16B599AF32757BBF394ECCF64BDD8 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = SurfaceHostingView; + path = SurfaceHostingView; + sourceTree = ""; + }; + F36D461317159FC502D91243A6403D41 /* Support Files */ = { + isa = PBXGroup; + children = ( + 254D39F8195B37A3224A2EA960FA0D26 /* React-RCTImage.xcconfig */, + BCA226BD14A22B9CE3BDFE2C44E4B410 /* React-RCTImage-dummy.m */, + 3137B0446693BB23F7A1A2CB88F11B2D /* React-RCTImage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = ""; + }; + F3BE0150FBD78FFE7569D4C7EC9595E0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 73ADFAB63097DFC4C3025654ED38A35C /* rn-extensions-share.xcconfig */, + 792F3DE9224A1DD993CC8210F6D61535 /* rn-extensions-share-dummy.m */, + 3D6971B0E12F518CC9290AD6EF122EF7 /* rn-extensions-share-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + sourceTree = ""; + }; + F3CAF142A2F6B10909EED3343B9FF4C6 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + 551309157E1F140AD78CCC739864810C /* RNCWebView.h */, + 36769BAED6E76E3E195F3B0E0D4B6A88 /* RNCWebView.m */, + 0E350C264AE4803D6EBD9A194FEC1259 /* RNCWebViewManager.h */, + 257FAA10FD8901F9CC7B43BBE01C8824 /* RNCWebViewManager.m */, + EE77122A910065EFA2B5CC41D22D6077 /* RNCWKProcessPoolManager.h */, + E898E9CA1257AA2D50D0F4AB5D00E3B8 /* RNCWKProcessPoolManager.m */, + D88A6BF079998A20D1208D07A869EA15 /* Pod */, + C43AA1D2F463FC8F8940D5C4F4131234 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; F3CF337684CF232BC0A534A0C924468A /* Pods */ = { @@ -12171,132 +12242,6 @@ name = Pods; sourceTree = ""; }; - F42C49BE8293DAE275EF2C6270BE4B37 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7AD7320F2AEFFAC745ECA1D9F9D55A8C /* RNLocalize.xcconfig */, - FC1C9BACB409258D55795F22EC30E614 /* RNLocalize-dummy.m */, - 7D13056FE137E30E8A829D3579A5B8D5 /* RNLocalize-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; - sourceTree = ""; - }; - F4699DB6E7354F606CAB2F2AEE95C256 /* UMConstantsInterface */ = { - isa = PBXGroup; - children = ( - 38B977DE9FFF08C295B61F356F4DEB68 /* UMConstantsInterface.h */, - F14797CC7C3D89CE01B290AACC1055F3 /* Pod */, - E79D1BC8A5DB98EC2396D6DC6F3753A2 /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; - sourceTree = ""; - }; - F4BE25D0288FF64EC55E2EB6B38A67BF /* Support Files */ = { - isa = PBXGroup; - children = ( - 10890E9947EA5BDF4FA0F61021BE331F /* UMCore.xcconfig */, - D4D3029D489B9CC30FC5E9DFF1C63994 /* UMCore-dummy.m */, - 125C9C4E1B08E35E47F42EE6FABDA55F /* UMCore-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; - sourceTree = ""; - }; - F4C14BB4EA548D44525759EDF0098D79 /* Source */ = { - isa = PBXGroup; - children = ( - B1BCB56DF0243718905C4F01C56AED89 /* BSG_KSCrashReportWriter.h */, - 2E9C065145AF9F65D3F2ADEC6D33A0BA /* BSGConnectivity.h */, - BAC744DF840B073F67D86E407066568C /* BSGConnectivity.m */, - 4EDBF66A927B5F8A8DE3756BD792B701 /* BSGOutOfMemoryWatchdog.h */, - FD46A0FA38F89A3EBB4D1D8F2C6C82B6 /* BSGOutOfMemoryWatchdog.m */, - 289FDAE476A89BDD5D67514FF6353737 /* BSGSerialization.h */, - 2E3F2CC88D9C0D9C761BCBC536541DF3 /* BSGSerialization.m */, - 56539446BB3AB5B151AB3B63CDFD213C /* Bugsnag.h */, - C382C4B6DF1722D9953FF2B3DCD27F4E /* Bugsnag.m */, - B40F0C3B301F32AC85B84546178CE0CD /* BugsnagApiClient.h */, - 8C57C3B759A5EEBA851D9DEC243E07D0 /* BugsnagApiClient.m */, - 807A779FAE2954A7DEB36EE202F2B50B /* BugsnagBreadcrumb.h */, - 66FBDAC9AAE6212A5C0524E6F1220950 /* BugsnagBreadcrumb.m */, - 87F09B22862988263200E4BCFAC2F8A8 /* BugsnagCollections.h */, - 7C5AB60DB5E0886BB2ED862637A07EF4 /* BugsnagCollections.m */, - B41590C1DCAAA35C248A956F2B3F7929 /* BugsnagConfiguration.h */, - 64F18790A50A2179CC7BE6090135313C /* BugsnagConfiguration.m */, - B312FE5691799113B85CEF8AE9BB6290 /* BugsnagCrashReport.h */, - 36EA2990DB0BEF0EBFC83DF98C1FD56A /* BugsnagCrashReport.m */, - DE9504A2A6B1C25558882AE62B22F9A5 /* BugsnagCrashSentry.h */, - C486485423B3730492ECFD48D1453907 /* BugsnagCrashSentry.m */, - 90DD67F63242CF1116E18DA6D1483E77 /* BugsnagErrorReportApiClient.h */, - B11A55FD8328E6DD365FE8FE004FCBC7 /* BugsnagErrorReportApiClient.m */, - 9ED0B61A0303FB3177736862FD78448E /* BugsnagFileStore.h */, - 75A708AD80219699E2A645931B9F0274 /* BugsnagFileStore.m */, - FB6EE44FA7F3B55552E8366D392E5AF7 /* BugsnagHandledState.h */, - 536F45DD82C94CE6D96EA437C0C21BBB /* BugsnagHandledState.m */, - 69553ADA0240020F66CCC3166C6C9541 /* BugsnagKeys.h */, - 13779FADE8C2EEA8185E90141DA3E5D4 /* BugsnagKSCrashSysInfoParser.h */, - 28AD009D7AA520A7C1D6D17FD2291045 /* BugsnagKSCrashSysInfoParser.m */, - 73D798B4EDDC375384A075DD5D1B7403 /* BugsnagLogger.h */, - 748FC8EFDBC62C2C86AE00238C2E8EED /* BugsnagMetaData.h */, - 6C0075391F3315DD5C0B9E7632576E32 /* BugsnagMetaData.m */, - EEC0E6E9AC18BBFC719102A5C56D9AAD /* BugsnagNotifier.h */, - C1F15DAD777D61E47556A49390A2CB1C /* BugsnagNotifier.m */, - 9073F0DA69D25921E861A82C234697E9 /* BugsnagSession.h */, - 9046E8F29610D14F5BFA1946206DA373 /* BugsnagSession.m */, - 094F4CDB49A7800ACC684C08A72D2F40 /* BugsnagSessionFileStore.h */, - 16839A17E6F24246EC83A9E32C3C3AA7 /* BugsnagSessionFileStore.m */, - 2698D552A903060218AE893510C4D8C1 /* BugsnagSessionTracker.h */, - A1D0CBD754DC34F014D38B05008B8745 /* BugsnagSessionTracker.m */, - 69356F2622014AF7DC2A3EA2A07BB2EE /* BugsnagSessionTrackingApiClient.h */, - 6A68B8844C7EB5008E2C239A40008B60 /* BugsnagSessionTrackingApiClient.m */, - D115542288AF9DA2B7799D6CCF398704 /* BugsnagSessionTrackingPayload.h */, - 97B0C12188F70CE990D5D85626F3C361 /* BugsnagSessionTrackingPayload.m */, - 51A5F2C64929287D8852E8AD60EECEA3 /* BugsnagSink.h */, - 8D0FA4CCB2D15F90D716627CD0615088 /* BugsnagSink.m */, - 72EEE078A0BECBB045605975E76C3299 /* BugsnagUser.h */, - 685D707D72CF9347E0B77A3C59D950EF /* BugsnagUser.m */, - 26C529F93BEAF01BDCF314272A97D5A2 /* Private.h */, - DB4C3B1AE1BBC178CC29DB68B893F3B7 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; - F67177150FB7594317F1C8FCEE31A4E7 /* Inspector */ = { - isa = PBXGroup; - children = ( - 19284D31BD342A64F8E638D6F6DD5F87 /* RCTInspector.h */, - E4FCD746909AA36FD59C8BE52573CC6E /* RCTInspector.mm */, - F29860ACF6D3192CE27B72D8D9BF7CC6 /* RCTInspectorPackagerConnection.h */, - EA27D397082A0630D8A137FE7CE51625 /* RCTInspectorPackagerConnection.m */, - ); - name = Inspector; - path = React/Inspector; - sourceTree = ""; - }; - F67B7F7CA6523D154409A00CC91A7F6F /* Support Files */ = { - isa = PBXGroup; - children = ( - C830DA96237FF0F27DC906DD364FC1BD /* React-RCTVibration.xcconfig */, - 03FF3F73FA8FCF5C8B6299B130D5BD70 /* React-RCTVibration-dummy.m */, - D9D21E025012A678F9BBDDA66EC83FCD /* React-RCTVibration-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = ""; - }; - F6C884388081F3AC6A1D5E593BE711FB /* Support Files */ = { - isa = PBXGroup; - children = ( - 9174D5E115C1B05B5CB34E7BA461B452 /* RNFirebase.xcconfig */, - 2870DD1B6E957DCCFFE20D03678B0CAB /* RNFirebase-dummy.m */, - DB738437742B8F8F39C9F91C3FBD639A /* RNFirebase-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; - sourceTree = ""; - }; F74417EBA7079E353532E43164085A3C /* Frameworks */ = { isa = PBXGroup; children = ( @@ -12306,59 +12251,53 @@ name = Frameworks; sourceTree = ""; }; - F74AA74E1C62ACF85293872EB742261D /* Support Files */ = { + F7C7166FF5CAB4846BC9291C6EA0B00A /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 77156F8F966471CD2FB751F90464C421 /* KeyCommands.xcconfig */, - 6FF34E16BF85DD97F2E55FE764F2285B /* KeyCommands-dummy.m */, - D5AE47A56689398D07D34765AF4F992F /* KeyCommands-prefix.pch */, + 7E4ED99A93F06400213D81873A377F33 /* RNDateTimePicker.h */, + F379F672762AEC43E947387F93AF42A0 /* RNDateTimePicker.m */, + F1B8D84E9C430C8D1138F1F0DB1AA81A /* RNDateTimePickerManager.h */, + 5E56E65AFB8D31A73252F026A0E7F196 /* RNDateTimePickerManager.m */, + F7DB0D30BB116E9FC3FCD6CDCFFD694B /* Pod */, + 0970F0ED02E9C51A2BD85B30311E385D /* Support Files */, + ); + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; + sourceTree = ""; + }; + F7CEBEFD6F5C2F4AB598FC4947F8860A /* Support Files */ = { + isa = PBXGroup; + children = ( + 3203079066E7FCC33FC1DD60C01A38A6 /* React.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - F7EA241128517E3294BEDE6B38804BD0 /* crashlytics */ = { + F7DB0D30BB116E9FC3FCD6CDCFFD694B /* Pod */ = { isa = PBXGroup; children = ( - 9603D56149DCC0F2A9E3930B1929F72A /* RNFirebaseCrashlytics.h */, - AC65625B781057D8733A1F09D482D2DC /* RNFirebaseCrashlytics.m */, + A26D21EE6973836603D8347C4AA8BD9E /* android_date.png */, + D0344C759AE01FB1CF12390619BA0A54 /* android_time.png */, + DAC30BE4A1E6FE0E54C7C16F3E46E981 /* ios_date.png */, + 0595C8D67D9DB14FFA87BABD57DE21B7 /* ios_time.png */, + 17C87CC3D47C59576B910B2659EE7E64 /* LICENSE.md */, + CF43D92D4A9E043BF617A5C4C33ADE35 /* README.md */, + 11E882177D9D544089B62829B6126A2B /* RNDateTimePicker.podspec */, ); - name = crashlytics; - path = crashlytics; + name = Pod; sourceTree = ""; }; - F867CEFD1BF8FB67A7D0AF9E505B7560 /* KeyCommands */ = { + FA06029B50ADF40D556CDB3E6E523B94 /* React-jsinspector */ = { isa = PBXGroup; children = ( - 1F783017BFCE6D8957205E2368080555 /* RCTKeyCommandConstants.h */, - EFE587B647AEA797A88F2C365DAC8EC2 /* RCTKeyCommandConstants.m */, - C558069696C77025B946DE8910693620 /* RCTKeyCommandsManager.h */, - 30F18E9133C9EE4A81CFD2687ACBCD7C /* RCTKeyCommandsManager.m */, - 1D8C8999A35ABC5C79957F7D96B00F4A /* Pod */, - F74AA74E1C62ACF85293872EB742261D /* Support Files */, + E19616DDEC3B522B13FDEBA40986692E /* InspectorInterfaces.cpp */, + 1FE3B0E6E0B73EFFD9494512EFE99A81 /* InspectorInterfaces.h */, + 684239CAEA64D3CB6D399BA0165EAA36 /* Pod */, + 50E9EA75A7B811F01F743AC4B43270CB /* Support Files */, ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; - sourceTree = ""; - }; - F87E04A83FF69993C92AA158DB5FEB4D /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - C9C40E7B6B5993D70A5D70F7D30FD3B4 /* UMModuleRegistryAdapter.h */, - 4D4EAD8BE22D1A60AEC57B78752F6185 /* UMModuleRegistryAdapter.m */, - DAA490AB8CAED42668DC35D43BA2575D /* UMViewManagerAdapterClassesRegistry.h */, - 03CF8B129F84A67BF7EDAEC900572B62 /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; - F93F20133C27896750343DF37AB93802 /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - 2896DB1C66C7E0D6CEA401311DFC3CE9 /* RCTLinkingManager.h */, - ); - name = RCTLinkingHeaders; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; FA96FD2F5FF83DA4DC289C7788B0E8CC /* Crashlytics */ = { @@ -12378,160 +12317,94 @@ path = Crashlytics; sourceTree = ""; }; - FB3B9A1DBDC252416661F3F95C715416 /* React-RCTActionSheet */ = { + FABC33B3DCAE5C687D46162E09F68585 /* Support Files */ = { isa = PBXGroup; children = ( - F48F0465A6D63E3E02891CE558A1DCDC /* RCTActionSheetManager.m */, - 16D69AB38B717A437838F777DB6C60AA /* Pod */, - E236B2FECC972980F4322123B1EB4C36 /* Support Files */, + CAF6DF8DAE53574A10DEFC9B56B1584D /* react-native-orientation-locker.xcconfig */, + 57AECC27F567DD3DF4C93EB41CFC289E /* react-native-orientation-locker-dummy.m */, + CB68CB30885069F725864FF48E3AC1AA /* react-native-orientation-locker-prefix.pch */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; - FC6665FFD77964E3E4E786DA0BDDB47A /* RNDateTimePicker */ = { + FBE67F862C0D6AE06559619C16D86771 /* Transitioning */ = { isa = PBXGroup; children = ( - 17341144B555A03C5EBEDD81B0B832E0 /* RNDateTimePicker.h */, - 6562F2DB054F9F4800DEEBF8FFAA8C95 /* RNDateTimePicker.m */, - DC0B02E92152D5231A7995E9D166C4C0 /* RNDateTimePickerManager.h */, - E878C1F2050BF8CB9FC08C84EDE84445 /* RNDateTimePickerManager.m */, - 5BF29734ACC36944167E843E796C2D80 /* Pod */, - 2E275263C32F6D7F832A4FBFA3C33B7B /* Support Files */, + 902E2339E7F9CAD6C410D04B1C8FD1A5 /* RCTConvert+REATransition.h */, + BCA45C455C082F94549D0DBF86BB2CCB /* RCTConvert+REATransition.m */, + B0B271CC330D29F0587211E3E531EF9E /* REAAllTransitions.h */, + F05866DFD17F00D85C0E2FE3F063EF12 /* REAAllTransitions.m */, + ED72CB75EE41F1699A55F0A56B38D40E /* REATransition.h */, + B895124FF14733D7CEBA9349AA9E6180 /* REATransition.m */, + 3EA5866DCD3136661203018625FF4331 /* REATransitionAnimation.h */, + 1F6A4A32003BE13755DF6A7C0A164DCE /* REATransitionAnimation.m */, + E5AC8B98C098C0C26E995038B4A120EE /* REATransitionManager.h */, + 0D15ED0D3FBC255024DAD806706032C5 /* REATransitionManager.m */, + D3ECE73C933780D042B8EE7211C45B3B /* REATransitionValues.h */, + 0EA7070E8C3E015DE88259B3A3CDCD83 /* REATransitionValues.m */, ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; + name = Transitioning; + path = ios/Transitioning; sourceTree = ""; }; - FCC9B7799ADA7628DA20B56B814A62D4 /* Pod */ = { + FD51F31B3D2791E128D3AEE8EB5D88F0 /* BaseText */ = { isa = PBXGroup; children = ( - B501E4BAEF3F88DD797B97D436749B45 /* LICENSE */, - E12DA10290867974F37743E322B25F95 /* README.md */, - 8F075D7361A98EC92912D23F62ECD7DD /* rn-fetch-blob.podspec */, + 264B5E7D4C00A43280E5A09AFF8A418D /* RCTBaseTextShadowView.h */, + 1FC725872F6FD1C53517FFE99D1685CD /* RCTBaseTextViewManager.h */, ); - name = Pod; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; - FD768AEB32AE1D768A90A5E5A575D036 /* Surface */ = { + FDCDFD15E0E55A11B5B46875F275B9AD /* React-RCTText */ = { isa = PBXGroup; children = ( - 5D49F55D4CD4364E4649FFB0945D8B85 /* RCTSurface.h */, - D6B3569005FEF35CBCD397365AD669B3 /* RCTSurface.mm */, - 7C840FED49BB6E4503D0250D4C7345A7 /* RCTSurfaceDelegate.h */, - C046E8B167E889528CF9671EC0A9C7CD /* RCTSurfaceRootShadowView.h */, - F60BC6A0E8111DD5ACBEF3CC5959ECD8 /* RCTSurfaceRootShadowView.m */, - 22F389B285F0B865DEAD7629FED2F9AC /* RCTSurfaceRootShadowViewDelegate.h */, - 7B4F35BD813347FF988C6039F938EDE8 /* RCTSurfaceRootView.h */, - 3A35B3C486393401E3F04F277F938938 /* RCTSurfaceRootView.mm */, - CDCB0F44C93968319F5B2F7B8EBC8DEA /* RCTSurfaceStage.h */, - F0171EC8BC3009153E594A4B4AEF8326 /* RCTSurfaceStage.m */, - 1A73B6FB820D5DF2EC492B1A4D6037F2 /* RCTSurfaceView.h */, - BFA466318F7726718D3485D2E96C30E4 /* RCTSurfaceView.mm */, - F3263CC7CDAAC78D64ECE2AF8DF05354 /* RCTSurfaceView+Internal.h */, - 59F3361EA6F06B8EF7426FBF06B847F9 /* SurfaceHostingView */, + D74C97B2031F3ECE61A82A6769BED2CB /* RCTConvert+Text.m */, + 24E9CF082676CAD594449D4A5283465E /* RCTTextAttributes.m */, + DEE2F6532396FE88E0061FF97165B17B /* BaseText */, + 64EF8CE4CC19D2846861EB59274D0892 /* Pod */, + EF07FF0862760CF2BEB7721143D4585F /* RawText */, + 972CCDD830772F8FC6B9ADDBF6C52113 /* Support Files */, + A744FFFD456BC639B08B86E71C20857B /* Text */, + 2098E5B060FB3A3EECC09E9682750B62 /* TextInput */, + 7E8067D850626F2B4FFEB84BD94D81C9 /* VirtualText */, ); - name = Surface; - path = Surface; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = ""; }; - FE34CE2D085F4421803DCD833D9DC814 /* Base */ = { + FEBA5CACAC6487839B5FC2B44320F93C /* RNBootSplash */ = { isa = PBXGroup; children = ( - BCB2FAFE4C12BA32A8EADC9720F53E34 /* RCTAssert.h */, - EB731F52BCE9B41E27D5C618E184F494 /* RCTAssert.m */, - BC9D7CFECF0E1016A7AC15B8E44E1539 /* RCTBridge.h */, - 8D3ACA5DF26B64D8BFB86382C59C225C /* RCTBridge.m */, - 1275E79B06824B79F8ED750B4F349A74 /* RCTBridge+Private.h */, - F76035A1C60156C30D8C7AC85A25B87E /* RCTBridgeDelegate.h */, - 37AA33A165E8A21BDAF2AA4E1482AD12 /* RCTBridgeMethod.h */, - 8FA02F2BDAC2181FFE353B2B8F23A3CB /* RCTBridgeModule.h */, - C7699AFD882E9DB82C6396CD2B33D5D9 /* RCTBundleURLProvider.h */, - 1A79B9769DABF5D747621369F882A30A /* RCTBundleURLProvider.m */, - 79C9A31269E81DF965C0EFADB2012AC4 /* RCTComponentEvent.h */, - 985950B5EA8B80D858D6759A4C297DAF /* RCTComponentEvent.m */, - CEB2BCA0F0DD370D4283F50B7F88290F /* RCTConvert.h */, - 177DDED5760D29524F4FB9784CE2D2E4 /* RCTConvert.m */, - 08F60035D9582D5CA9D282FC2589628D /* RCTCxxConvert.h */, - AC4FDBC85BDB8D7D488E2A0A3D48D552 /* RCTCxxConvert.m */, - 0B1B654D254C7E1810BADC1CBB4306B8 /* RCTDefines.h */, - 665E4D5175A646C08F3D216295A530A2 /* RCTDisplayLink.h */, - 85DAF0ADF9D871D10FCAD5FCC5B53E0B /* RCTDisplayLink.m */, - EA7D43AB936D50A81723BA9C97BB3326 /* RCTErrorCustomizer.h */, - 24A2994EDB8FF27036011F13232C65E0 /* RCTErrorInfo.h */, - 84BE2C7443B6C5385B9E1464E6B32E3E /* RCTErrorInfo.m */, - C9C25D35DBEAD6FD160BAA8C91BC077A /* RCTEventDispatcher.h */, - 7D0BC95ED6BBB430597CE23C417B542E /* RCTEventDispatcher.m */, - 1DE98B4DC71DC91B5858A13E77D55B21 /* RCTFrameUpdate.h */, - B250BD041FB5381BC6D982CBE9174EB7 /* RCTFrameUpdate.m */, - 77416528506225EE2972EBF70D15691C /* RCTImageSource.h */, - 8C5775E7F823B6BF19C0FBAAD82D5A41 /* RCTImageSource.m */, - 6B5BF6F5C3F36B03310C16BB02AE92EB /* RCTInvalidating.h */, - 60D9920325F1E197245EC5E2DDB3E2C6 /* RCTJavaScriptExecutor.h */, - C1BDAF7514D177B767F3850F0608EBF3 /* RCTJavaScriptLoader.h */, - 27F11528898E1C09AC16B648A3466810 /* RCTJavaScriptLoader.mm */, - A2128DAA3DAC64937C1E6568A67A7439 /* RCTJSStackFrame.h */, - 45202BBAAEAF335F1FB60BBFC69380C2 /* RCTJSStackFrame.m */, - 0499506163E27FDFE72BF36433C9AB81 /* RCTKeyCommands.h */, - E99AFBF30A3D56FE587EF4FDA58BDAC4 /* RCTKeyCommands.m */, - 4FE49070AC3414D65AA9228AB7579A7C /* RCTLog.h */, - 8540E2CE4399AB56BCE33B40A8623314 /* RCTLog.mm */, - C003E82845B79893D5C223AF9F0D9547 /* RCTManagedPointer.h */, - 48D13CE06914C02A51CA1D66E14B9F40 /* RCTManagedPointer.mm */, - 3023C9C83AB3D0B89E41DC5070F26651 /* RCTModuleData.h */, - 9B1701CE791ABE0B135B42558643BA83 /* RCTModuleData.mm */, - DB1A81F1252B43F5F5ECB2C3F5872E62 /* RCTModuleMethod.h */, - 783B06CA56E7F31AAD0E0144F28CAEDA /* RCTModuleMethod.mm */, - 6902BF644B6D22E65F917FE0AD95F867 /* RCTMultipartDataTask.h */, - 7AFAA9D3ADEE4875D364F0EA50C4098C /* RCTMultipartDataTask.m */, - 0A674AEBCA76215CB8F991FFDBA16AFE /* RCTMultipartStreamReader.h */, - 459D354B128A5B3FD0717608572663F7 /* RCTMultipartStreamReader.m */, - 12AF02A793F26E562BCB5474EC337429 /* RCTNullability.h */, - 82E63E35E28925985F52851F5E7F7A2F /* RCTParserUtils.h */, - 43003C63AB6D53D8F0C724F05E07DBBF /* RCTParserUtils.m */, - FBA0A0A797AF05C4739D1E5917DD321E /* RCTPerformanceLogger.h */, - 1DC6AB09782FC3C60D8E082174E26072 /* RCTPerformanceLogger.m */, - BEF99ADC4DDE3984F46775A1AC8A3678 /* RCTReloadCommand.h */, - 272EDD435D37F6C2EFA2EC5FB49D400D /* RCTReloadCommand.m */, - 4B1F199CCF5EDA47DFCC987B9A28801E /* RCTRootContentView.h */, - 16E6D00B240E8A6875583B15B09C0AD0 /* RCTRootContentView.m */, - 0AD8727BFD3898AB37FF5C02D3A2019C /* RCTRootView.h */, - D7E4D46622518C9F84C86F8D27596A4A /* RCTRootView.m */, - D86B87674697BCE5BC5B2C09E088521A /* RCTRootViewDelegate.h */, - 05C392ACAA16564F1646887DF81113EF /* RCTRootViewInternal.h */, - D9515AF621FACD624F464EB9B8404E4F /* RCTTouchEvent.h */, - E20BECAAF117D13FDFA68D903AB2823F /* RCTTouchEvent.m */, - 64AB36A81419579DFBE653B56BFDE10B /* RCTTouchHandler.h */, - B234A34E47BD553B1BBB16FE8E4232F5 /* RCTTouchHandler.m */, - A1B82C747E2EFEE16D2A007D5E678461 /* RCTURLRequestDelegate.h */, - 920F14D05D427385C4CFA10C28574833 /* RCTURLRequestHandler.h */, - 04281FA56489A7CCB9EF40362A453BBC /* RCTUtils.h */, - EB2BDA32F9D8827CD2E9C6BD3D8D811F /* RCTUtils.m */, - 10250D78C60056D203D235E04EEDF191 /* RCTVersion.h */, - 6DB42004B240B79A0FF03409A8928664 /* RCTVersion.m */, - 7E1768101677ED3E062B092BABACCADF /* RCTWeakProxy.h */, - CD3C78B7160EC7119BD39667D355E1DD /* RCTWeakProxy.m */, - FD768AEB32AE1D768A90A5E5A575D036 /* Surface */, + 11E5A3078F36287C0F1AB13ED9B084C9 /* RNBootSplash.h */, + 7C38CA7B81ACA338D999FE3C0EAD78B7 /* RNBootSplash.m */, + DF405470C745EB45D629F7941FE51DDE /* Pod */, + 56151608E33FF7556216B5A92B4972BE /* Support Files */, ); - name = Base; - path = React/Base; + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; sourceTree = ""; }; - FEA54FE692DAF6D4F42F93B2A6A67B68 /* Pod */ = { + FF1A399FEB6FFE0986AD8B5388D58AD6 /* Support Files */ = { isa = PBXGroup; children = ( - F9FEF1D228AABFA6A55230C1568B4054 /* react-native-slider.podspec */, + 04C3B1DD186B53182C077DA48835BE9E /* UMReactNativeAdapter.xcconfig */, + F478A516B3DE1209CB2CA59579797CA0 /* UMReactNativeAdapter-dummy.m */, + CD6882F61920B611634F3F9BB4EA9300 /* UMReactNativeAdapter-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - FF3CE4B51B34C0DB87AE58992A25BC62 /* Source */ = { + FFB27F4914493A168D828431D88C8F05 /* Support Files */ = { isa = PBXGroup; children = ( - 57E00A7B1961A7A0115F24D5EECFDEC9 /* KSCrash */, + BCA6D798952261C230B8842DB9F4AAFD /* UMTaskManagerInterface.xcconfig */, ); - name = Source; - path = Source; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; /* End PBXGroup section */ @@ -12710,6 +12583,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 191A951BEBE62123328E10960A97742B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1C74D6215F0C3A85E599235A13CD942E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13603,13 +13483,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B54B2EA07A950483567A4EE48C6A61CA /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; B867AC4A22E8F5A7A3D0582234514108 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13839,6 +13712,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D646D19125B422E93DA6AC3DEC61099F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D95B05326AF15538B6FBCABCB9D4D103 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13870,13 +13750,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DE461437D0A6DA3FFC7D0AD90EC0DA48 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; E0B483014E365A90533B81954BB9440E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13912,20 +13785,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F8CCF5A3EDB5E671286C7967F5CE7E18 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */, - 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */, - 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */, - F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */, - D1E312DB375D99286F30D9A1B11166DD /* NSValue+Interpolation.h in Headers */, - 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */, - 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; FF03ED8CD43F9BD58ED397C0CAC7D251 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14576,24 +14435,6 @@ productReference = 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */; productType = "com.apple.product-type.library.static"; }; - 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */ = { - isa = PBXNativeTarget; - buildConfigurationList = B16590D3A26F524C4A34D5B9050B819E /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */; - buildPhases = ( - F8CCF5A3EDB5E671286C7967F5CE7E18 /* Headers */, - 8AF81224397E9B8D59FB1BA5FC3A17AD /* Sources */, - 1ABFFABAB0756F5E3E1BBEE712C282F8 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - D1F1057A65FDD43412DCD824E1BE5E0A /* PBXTargetDependency */, - ); - name = "react-native-keyboard-input"; - productName = "react-native-keyboard-input"; - productReference = 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */; - productType = "com.apple.product-type.library.static"; - }; 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */ = { isa = PBXNativeTarget; buildConfigurationList = 79E0F8E712302597309A4A4019EC9CEE /* Build configuration list for PBXNativeTarget "React-Core" */; @@ -14804,90 +14645,89 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 84D844B5B1A5A159FA1354847AF1C5F2 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = BF6D63B17D5C63042513F82F1193860B /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - DE461437D0A6DA3FFC7D0AD90EC0DA48 /* Headers */, - 65A1B35CEAC137CBF0FCE206330606FB /* Sources */, - 4ED403BDD27312674468E8ADFA6651E3 /* Frameworks */, + 191A951BEBE62123328E10960A97742B /* Headers */, + 9850EBE09C4A5928323740CEC9BFE56A /* Sources */, + 9AFA89372B0E8CDE4126DF182D63A31D /* Frameworks */, ); buildRules = ( ); dependencies = ( - 8D897ADFD6021B4EA62E54C64B55BFEA /* PBXTargetDependency */, - 553925F91AEB7A8E2E61A76C5AF9D7CE /* PBXTargetDependency */, - C645BBB39D2B11D5DEFEB49848E58387 /* PBXTargetDependency */, - EACC3444C67E4E4BAE806BD1CA1FEA92 /* PBXTargetDependency */, - E2244065FA1223A7CF3E4ACB4204C8C7 /* PBXTargetDependency */, - EA1DF9AF1605D69A9E493475043FCE93 /* PBXTargetDependency */, - 011CE2450AE11B9FFFD84C8C280B809E /* PBXTargetDependency */, - 602A3B014BDD6E297A8B17F44B7DC030 /* PBXTargetDependency */, - 0692B9311498395175014308A4B17348 /* PBXTargetDependency */, - AC20D02C6F925EDC7FEBD903FF720C5F /* PBXTargetDependency */, - BE4FEED59E491904CE4BD004E767F806 /* PBXTargetDependency */, - 3C9ED716278DEDD9C23186BBFBD5EA8C /* PBXTargetDependency */, - 20703024E39087D7C031C804D6BCEFF8 /* PBXTargetDependency */, - CAE7C2C3BC7D4E545021A3F3C7C16973 /* PBXTargetDependency */, - 2D260EA03E351DC1F2717A13C55D8771 /* PBXTargetDependency */, - 8782AAA74C904CCE255C72ECF206E1C6 /* PBXTargetDependency */, - 9896A1AF3453162EB7EB29D194F06233 /* PBXTargetDependency */, - 83FA8E780BF466A0524C15E80F4CF6A0 /* PBXTargetDependency */, - 6416253C00B453FBF72529B4E21F1032 /* PBXTargetDependency */, - AA7AD60D5235888EC341334EDCCDAFB6 /* PBXTargetDependency */, - 8A443DC599AB6CFC8ABA5EE01E0B814B /* PBXTargetDependency */, - 4963BC6B413E9824F3A1069AFE2F132C /* PBXTargetDependency */, - 36085484496E1F1EA08F1E85B71F7C28 /* PBXTargetDependency */, - 17947E88C0E0CB0A18CCC8C3508896E7 /* PBXTargetDependency */, - 0BD13821A9C8FC60639800F9E042B301 /* PBXTargetDependency */, - 6F7CF6F5CED7CDF369F09FEF90C8DAEA /* PBXTargetDependency */, - 66FAA0B04C9E851DBA408F4A549DBCEF /* PBXTargetDependency */, - A51F65EAD36CCE675809E93B7786A519 /* PBXTargetDependency */, - 21F9E245DFAA830695ECA1BA3B2FB3C0 /* PBXTargetDependency */, - 150BB3ABB2223BE26DE7CCB3EA3D7C74 /* PBXTargetDependency */, - 79F60B75C63F6AC459C733796895B621 /* PBXTargetDependency */, - 1237AE89B63F015C7E26B2D86BFE5F9C /* PBXTargetDependency */, - BC10BCFBCDEFBE0E272B0E180A715023 /* PBXTargetDependency */, - 26EFF042DA0CD9D33047967AC564DEEC /* PBXTargetDependency */, - 9ACF6F7D4D3B013B7EA561F9B7155781 /* PBXTargetDependency */, - 0FCC59413B178473BC55420AF3C49A6F /* PBXTargetDependency */, - 804F52E3C5D01279D23793D6D35F33F2 /* PBXTargetDependency */, - 3BFB73B008A37B64330C3E1CA3BCAB50 /* PBXTargetDependency */, - 3855E27B68ED054E97CACD53FE5CC3B3 /* PBXTargetDependency */, - D5CE386CDF9F1F4220B5089B9420D09E /* PBXTargetDependency */, - 9C18702469077C8DACF8DACD32DDF840 /* PBXTargetDependency */, - 5EB6726044F264774D1E46B53F1A2794 /* PBXTargetDependency */, - 55722A81772D06EF32AFA39E8EB2954B /* PBXTargetDependency */, - 6CA9EA87831BC93427DE6C3AA76C0656 /* PBXTargetDependency */, - 935C417CF2404560123EBE35FA4351D3 /* PBXTargetDependency */, - 031BB745803DFB5F7C92D86B728AD847 /* PBXTargetDependency */, - 25862982C5B8C76A0F37C78A32BE8454 /* PBXTargetDependency */, - C73BD81AD5B197191C1F845DB073580D /* PBXTargetDependency */, - 2CA3FE825C7E41078DC517ACCFEEE07F /* PBXTargetDependency */, - 022CFBAE58924B459078A66C0369BECE /* PBXTargetDependency */, - D9B4CAB98F8EC12018F5950A6F20CEE0 /* PBXTargetDependency */, - 9D750ECD9911045D4B3D69AC27F10EFD /* PBXTargetDependency */, - C8C1050CAA3EA6EDCC1BA1D33EFE0B5B /* PBXTargetDependency */, - F86CF3781044024C68C1E550DB327E62 /* PBXTargetDependency */, - 7112A6A9028559EB53609FF2A2C18B7E /* PBXTargetDependency */, - A635399A6AC3E63872EB7A87250DA5D8 /* PBXTargetDependency */, - C29E526B96D9A7BD2F1CABC3556D50A2 /* PBXTargetDependency */, - AA515B3BAA960F561BDDA3E5ECD2862F /* PBXTargetDependency */, - 3BE413762EE83511BEA7FB6A3EBFB944 /* PBXTargetDependency */, - 5C8416A73FC4A6B9DABDA16AC7707F96 /* PBXTargetDependency */, - 17F926AC4EFFC702D9501F3B2F031264 /* PBXTargetDependency */, - 9FA0E718A1779574E41F3D1878FA1C27 /* PBXTargetDependency */, - B8C102D9B6AA6F75BCF2289632AC4389 /* PBXTargetDependency */, - DBAD676559C0DC50198628B865CC67EC /* PBXTargetDependency */, - BC06CFE8C40141A78385BC07EDFDD31D /* PBXTargetDependency */, - 4C94FE8C8754C0A24982810B09EA4912 /* PBXTargetDependency */, - 8F7B66F2FFA247D753A8C50116021AB0 /* PBXTargetDependency */, - 3437608C9291EB7895ADE0A3421D016C /* PBXTargetDependency */, - B620B167723C90B31E5D417C9626B33F /* PBXTargetDependency */, - 0C5012192C2A78D2E5C0343B586236A4 /* PBXTargetDependency */, - 5BD0CD31D415E100348CC082A961047D /* PBXTargetDependency */, - 193D36068CC93F653E48B08DB805299F /* PBXTargetDependency */, - FA90323DAAFA4AACED76974DE4121292 /* PBXTargetDependency */, - B7C8781DC81153F741B88DC751E33D70 /* PBXTargetDependency */, - 3B9BE266D61514BB37C80426B55B6B24 /* PBXTargetDependency */, + DE797ACFB28FC0B963FF733B116E955A /* PBXTargetDependency */, + 73749982B9A8199CC3D081C112E0876B /* PBXTargetDependency */, + 7144D577D67A010134981D0A3BD46F6F /* PBXTargetDependency */, + D061A8C7598EF7E5C25B3577648711C9 /* PBXTargetDependency */, + F8E91D828C182A916A866B922755EA47 /* PBXTargetDependency */, + B7DC66864CFF7E3C6F48638DCB50FC1B /* PBXTargetDependency */, + 6637FB687F785DF4CE98E11B424DF908 /* PBXTargetDependency */, + 84ADD0398FDB774DC98D1AA886B0CD34 /* PBXTargetDependency */, + D660EFB24D0E989EC3878B6A80C74073 /* PBXTargetDependency */, + 56673919C97B472351BEF2F1949261AC /* PBXTargetDependency */, + B6C4B4CB45088E288F8285514963FC29 /* PBXTargetDependency */, + 21132C7DC7508F5F7D0ACF3973FE874E /* PBXTargetDependency */, + C00F79824B55940FAFE9B3D84B6925FE /* PBXTargetDependency */, + B03624C3EDAE694426535FCC3935AAB7 /* PBXTargetDependency */, + 3B7AEFBF5FD857C31DA77A6841C1F342 /* PBXTargetDependency */, + EA2D5C8BA9DECD94123730A7BFD17034 /* PBXTargetDependency */, + A864CE676D2C361ACCBB45ECEA29BB28 /* PBXTargetDependency */, + 8116EFD5F8E9502FCF675F340D3DE7EF /* PBXTargetDependency */, + D52A2DF08888C18361C22D0573BD2330 /* PBXTargetDependency */, + 2D0ECB22B1F8E3EABABE587848DCD386 /* PBXTargetDependency */, + E49BCA0499071808CE2E54EF6142C206 /* PBXTargetDependency */, + 2EE3DB92DCA9D45077C2345F44EEC61E /* PBXTargetDependency */, + AAF2F80425DB268B0CDE20CDAE4B324B /* PBXTargetDependency */, + 303F265BF76F55A0EA1411A05A4B5702 /* PBXTargetDependency */, + 6134E2DD787DBCB7AFCE0073AC3B9815 /* PBXTargetDependency */, + 262BE4F4564144B6042D25EB7091A224 /* PBXTargetDependency */, + 2CE392585411EEAEEC72AF5C44ABA8EC /* PBXTargetDependency */, + F47A9830DBC43FDC0316F1E8F18D8FF6 /* PBXTargetDependency */, + 135A6972A27F25BA8EAFC27A9EC11AFB /* PBXTargetDependency */, + 88AF767C3C2CDFD9E19E3B5CD6789417 /* PBXTargetDependency */, + A7D91E5223BBF29C11FC7D07EDF4EC70 /* PBXTargetDependency */, + 423D0F2D49F3AA6A5B119E06070F1D03 /* PBXTargetDependency */, + 63B2C42EFCCBF6EC370087535F06AEED /* PBXTargetDependency */, + 83C1CA64EA7ACDA99C999101D7EB32C7 /* PBXTargetDependency */, + C41265306CD6E13E0B7F645D7E7932BE /* PBXTargetDependency */, + 17634ABD8EC4AD7FD28A2F314D536F82 /* PBXTargetDependency */, + E4AEA850B381ED12406FD7C3CC6568B7 /* PBXTargetDependency */, + 537F816FD3F3B0C568C19D6CB94D5D1C /* PBXTargetDependency */, + C1A89407170ABAD72275F4257A4E6C29 /* PBXTargetDependency */, + 189311A0B31BBCA4170A7050B5669655 /* PBXTargetDependency */, + F92B371906C6236DB646DF8E124B4B40 /* PBXTargetDependency */, + 85D27841E51D4815A334F273FD62997B /* PBXTargetDependency */, + C49E2561903CBF6010BB03D3EFC9997B /* PBXTargetDependency */, + 91DADC6CC5E854900CE4DBCF93982871 /* PBXTargetDependency */, + 384E6F7CD534095608A3E5F8480ED244 /* PBXTargetDependency */, + 6790F159B0FA686CA40309424FB81FC9 /* PBXTargetDependency */, + BB07BC469A656E92FFDD70A712BD74DB /* PBXTargetDependency */, + F2494CCC4AE2E8BFFFA15C59FFE35DCE /* PBXTargetDependency */, + C80D06C8C164DB4B0C71AE8CF8293E57 /* PBXTargetDependency */, + 41140FA5EB0E8AC81CFDBC9C3596BD2C /* PBXTargetDependency */, + 289ECA4C2990708BF7357243AB0E1585 /* PBXTargetDependency */, + 7A7F3800F3716FE0EE304CA206A89486 /* PBXTargetDependency */, + AB3A6B0B5733AB21E44C839D65B023CA /* PBXTargetDependency */, + AF0138CB3BCD3E15DC6622582FE61633 /* PBXTargetDependency */, + 31D4F64C2790A50EAFEE606CD5FA6A60 /* PBXTargetDependency */, + C3D24F865D040DF71B16E6AD8D829752 /* PBXTargetDependency */, + 55E862D358755960D5F29E90149EF7C4 /* PBXTargetDependency */, + E085D10908C31363DF19F89B092482B5 /* PBXTargetDependency */, + AA5F0BBEE633E3C3085F5A35D039AD35 /* PBXTargetDependency */, + ABDAA24CD24A3C9F114042CA86A20752 /* PBXTargetDependency */, + A849AE94BC3475D77CCFADEEBCC207ED /* PBXTargetDependency */, + 502995F2AFECD1C42E7686967BF4FE70 /* PBXTargetDependency */, + 7914C34B466D4EBBAEC8BF9A9D38FB56 /* PBXTargetDependency */, + EDD8CC53627AD66D16BA254C1F269243 /* PBXTargetDependency */, + 68B2BDE34C618ECA40BD8E9EFD636F82 /* PBXTargetDependency */, + AAE5485630EDBE911784C138D10E5C26 /* PBXTargetDependency */, + 82B4C0A2315FFB18F49471A1B4DB1014 /* PBXTargetDependency */, + 2FF3A2A05A40838509657E5D6CB00F4E /* PBXTargetDependency */, + B680347D50C63B50D8731839F8CFDF38 /* PBXTargetDependency */, + CC05126F0C1065ABF5FCBF194F96E6DF /* PBXTargetDependency */, + 086D65457AC5FFD77F382821A6F4E77B /* PBXTargetDependency */, + 455AFBCC2BC29D52C209FD9F39BBF3A4 /* PBXTargetDependency */, + 5CBCD777F631F06496B91D5B7A1390A3 /* PBXTargetDependency */, + D87EE66944A7F9A79793F598AE0E75A7 /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -15027,109 +14867,108 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 1DB56DF9C9DCECB3F400803AE7F2B433 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 81B2ACBAF780F14103FA727588F1A3D3 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - B54B2EA07A950483567A4EE48C6A61CA /* Headers */, - E355D16EE6D3419FAE0DCFC516787AE1 /* Sources */, - EE3FEEB374134A0B7F94417E8B62176D /* Frameworks */, + D646D19125B422E93DA6AC3DEC61099F /* Headers */, + 5C4DB075FE582FA4367962B4F43BA286 /* Sources */, + ACC445671E3F1ACCACEAC8A098A84119 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 6F3376FE38F78EF35862053882A41586 /* PBXTargetDependency */, - 769025D7B3F14F33EEE05E0A156A96F4 /* PBXTargetDependency */, - C48CABCA14D12DE4A49546003197DA32 /* PBXTargetDependency */, - D89FAEABE18B6ABE756BDDD1BD185B5F /* PBXTargetDependency */, - F1CA1792136DD775A53CEF6F23916B03 /* PBXTargetDependency */, - AEDCEBA0C5F2C140BA119D90CB606F90 /* PBXTargetDependency */, - D47114DA10295B597ED4E6738B4A0C20 /* PBXTargetDependency */, - F42665ED8C85B74A93D863E06C36BF6E /* PBXTargetDependency */, - 931244338C030B9998E9C1E705961787 /* PBXTargetDependency */, - BC7731ECD2164E4A12D67DF7DC7D4C1D /* PBXTargetDependency */, - 923E1C81DE5990D401E7CAE78D7742E0 /* PBXTargetDependency */, - 42B00CA477FD1334EA95BA7C155641BA /* PBXTargetDependency */, - C6DF705C8E98ACE10EA9AFBAF6FC756C /* PBXTargetDependency */, - 6859D3F255AD22269FFF0E22E9236BAC /* PBXTargetDependency */, - 57548C50D5585146B371B90476FBC33B /* PBXTargetDependency */, - 6CC2B6F28019D16BF0C4466A1B124A97 /* PBXTargetDependency */, - FBF0F88B7864CB2A75B21D13E7FC04D9 /* PBXTargetDependency */, - 0B7760A825C50E046F98BDF3E1B415A0 /* PBXTargetDependency */, - E8E63875698973CAEDECA472AF8745D4 /* PBXTargetDependency */, - 92204B75DCBDF5FDB01B418E6F754B05 /* PBXTargetDependency */, - 0B8F803EE4667004EA6E67A4F1AFEC8D /* PBXTargetDependency */, - A4336332A667BB26D3D9EB3361B99158 /* PBXTargetDependency */, - E4AF80A841E3E79AEBFE20DFA132C6DB /* PBXTargetDependency */, - 944F08C02FCB51881D75976127A7303E /* PBXTargetDependency */, - EF466E2FD91422D5A18060901D88CA1B /* PBXTargetDependency */, - 673BC7E7C3BF7B75DB54F25C5582DA88 /* PBXTargetDependency */, - 39AECA7D5FDDBCAFD8346DC3BE44EA8A /* PBXTargetDependency */, - 8200679C831FBE1892B07E11AE2EA39C /* PBXTargetDependency */, - 33474FF920FAD58FA7B408C423A44FF6 /* PBXTargetDependency */, - 4B414D99A77D84E4640E1F400E100000 /* PBXTargetDependency */, - 5C4A8EC38916A46D8BF78D6B92C27C21 /* PBXTargetDependency */, - 0D792B55CDAA4B9CA054A0E122E34020 /* PBXTargetDependency */, - 2D3137A8BE2479EEB2342FA59C29DBAC /* PBXTargetDependency */, - E4B2D5B663AD6ACF1AB4497218D26158 /* PBXTargetDependency */, - 1AA7ECBFA331151021ACBF0788B62F66 /* PBXTargetDependency */, - D40A6F6B7DF10D9B852BC4314BF5A472 /* PBXTargetDependency */, - E01C4B9CBE7943187583AB2333D00A63 /* PBXTargetDependency */, - F33E52A0DF2608BBA4A19CF78D334846 /* PBXTargetDependency */, - 1A18C555A4C0E90CFCE1862DC8F94408 /* PBXTargetDependency */, - C432B23C7DEA9B18962DF98F9774CF19 /* PBXTargetDependency */, - BBE49A21A3F20BAB40B4368933595AF5 /* PBXTargetDependency */, - B318C1E18E3B03D1F1DE223C7D8A08BC /* PBXTargetDependency */, - 0A449D0BE5B185FF11C96E9F5CC19486 /* PBXTargetDependency */, - 60B99BFA0813458750AA90079166DEB0 /* PBXTargetDependency */, - A462C292FF6609D1C058D452EAC07538 /* PBXTargetDependency */, - 9E65126D8DDFC0EB1D8D7109E2C0BDE3 /* PBXTargetDependency */, - 37FB5C7B72D045CAE22C5EAC7812BBD9 /* PBXTargetDependency */, - 27FACA0BAC43B2675E0267008E9E627F /* PBXTargetDependency */, - 2F0476764400AD4554B2872A5796AF38 /* PBXTargetDependency */, - 6B02748F14AD08615F8C678A24075364 /* PBXTargetDependency */, - E1B86AB0D1A83A47152A0CE26C8CE3FD /* PBXTargetDependency */, - BFC9B784B74D53143B92D969468BD747 /* PBXTargetDependency */, - A00F7D1F2E5FA8A71F5FF808042F370B /* PBXTargetDependency */, - DC9A85F49B82B7F22A7803CFA91C8E15 /* PBXTargetDependency */, - A6E3425CD84B74A59211BDFB9CBC0763 /* PBXTargetDependency */, - 2F2588736D321292D53D28A37C664F70 /* PBXTargetDependency */, - A65BC11EA787F00F5D5EB861E325B976 /* PBXTargetDependency */, - E589A3C702755C230943931EDF601D32 /* PBXTargetDependency */, - 9BB29AF7239D3234E787597D1587A787 /* PBXTargetDependency */, - 882AF2998070216BFFC6AC351A6D93BA /* PBXTargetDependency */, - 2F6D71221C37CE705E0303BBAF072877 /* PBXTargetDependency */, - 92A3267C8C229EC3A9ECA570B3E25722 /* PBXTargetDependency */, - 440373922DE3ED51391E86704C3A38E1 /* PBXTargetDependency */, - 3F4A120C4B846D8E042C2BB83D3FA6B9 /* PBXTargetDependency */, - CBFEB75D6A2D0EB64C17DFCC5F511A88 /* PBXTargetDependency */, - 8A0A19CCCF567EC157D575B96BB29900 /* PBXTargetDependency */, - B63E315162188D1ADCDB3B5EE5949ABF /* PBXTargetDependency */, - 54A402E9AF412294F66474616291D028 /* PBXTargetDependency */, - 32C240DD6E2BA6E488CEC058017753B2 /* PBXTargetDependency */, - 0E4F01207E4AFE2CDFA8DED86C4C16F8 /* PBXTargetDependency */, - 44B70418341831A412F740541F6A534E /* PBXTargetDependency */, - 602A410A05BA0E628C8FDF85179F4FDF /* PBXTargetDependency */, - 636D75672D7EDB2A118132A5A9EA1C7E /* PBXTargetDependency */, - 9318AE6F3320E09BDE3141091FFF5A8D /* PBXTargetDependency */, - 49292584FA4714589EB951DDC95D69C3 /* PBXTargetDependency */, - 56C0FD2808D49993FDE48614FB3978A7 /* PBXTargetDependency */, - 964109AE196A6851276DB5C43F1E3DA6 /* PBXTargetDependency */, - 600648DBE3C7E0BF44794CDED2F25C5C /* PBXTargetDependency */, - 706023807B9D8AFA9F701E3D9B4D1416 /* PBXTargetDependency */, - 5D5157C9A2C581A8AD4940BBC4511807 /* PBXTargetDependency */, - 3B7B8A6ADDE30A50B5EC9020B52473DC /* PBXTargetDependency */, - 8366E560B08CA4D7D3FA57FBDA61B9EF /* PBXTargetDependency */, - 5CD0970A463CFF7339CC303F6B7A9441 /* PBXTargetDependency */, - 4C1CAF066A1C63D9AE10FE61A12BDAD9 /* PBXTargetDependency */, - 8914A57E010383BA1DDE7FA5DED0BDF7 /* PBXTargetDependency */, - EF30B4A3FC48ED30F7586BD600A8A42D /* PBXTargetDependency */, - 9BC9B9CE44DC1F8E4EDBA17DF8DDF142 /* PBXTargetDependency */, - 1D863773EFC8144808B59D9033579431 /* PBXTargetDependency */, - E245BA5C1A61D8665824EF1453D40061 /* PBXTargetDependency */, - 46C96F842145BC8DF79599F0473BE104 /* PBXTargetDependency */, - 7EF584C5A0F119F8B6D1148BECD6B312 /* PBXTargetDependency */, - 8916AF5D9DC74DCC24D01E0AC9F6B9D3 /* PBXTargetDependency */, - 132FE8B8E63BD64C3D7B7562048122ED /* PBXTargetDependency */, - 86EABBDBC7F0FE84DFA9434BDA78DE40 /* PBXTargetDependency */, + C12D4E28125578C8D6CFC22BC94D4CCF /* PBXTargetDependency */, + 81049588235BC9C2D7B63D5C8BD9C970 /* PBXTargetDependency */, + C26CBDDE4CAB427EF39B1E0A29445F62 /* PBXTargetDependency */, + 42CA430D9ADF5B33FEBC8C7FA9091DCA /* PBXTargetDependency */, + E9F9774A86E3EA9DE3A787ADE2283D82 /* PBXTargetDependency */, + BB4DCFB6C5A86475A990A902222068FA /* PBXTargetDependency */, + 89AFDA73622E4F676F358615122EA259 /* PBXTargetDependency */, + 47308ACDDAFE8D302CC82063C0AC6F13 /* PBXTargetDependency */, + C7624C04249486BA53224BA178FB02A9 /* PBXTargetDependency */, + 31B4453F4A467AE58FC818C8EA9ABE18 /* PBXTargetDependency */, + 3A9A39824D548188D0E80B071C22237C /* PBXTargetDependency */, + 5E1B0443F129EC24642AC415142339C2 /* PBXTargetDependency */, + B422F5633A1244B7611F5F9E1C58F247 /* PBXTargetDependency */, + 8D4C47FA0FE32C9E1B42738AA54F6583 /* PBXTargetDependency */, + EA0647086E3C2259F3D70F575ABD2D9B /* PBXTargetDependency */, + D77DF2F6419525551C684ABFCC941BA0 /* PBXTargetDependency */, + DDE3CE8D0E4C0B1FA04E5AE8EE3FE08C /* PBXTargetDependency */, + C40F95791C56584A3A0F9022ED240174 /* PBXTargetDependency */, + 1D7BE1B40D73D886C08C3EAF3AEF8A51 /* PBXTargetDependency */, + 150815A5BA646F5C247315243CDAA412 /* PBXTargetDependency */, + 78150159A101BD8D2559E7246D5D21AD /* PBXTargetDependency */, + B78339E02D51AB163680F9AB70C850D1 /* PBXTargetDependency */, + AED863C8C6C88277E0F6E392B70A9A8B /* PBXTargetDependency */, + 103A67F612D0177274D8CE98BBBBAF76 /* PBXTargetDependency */, + 51A44449DDC825518E0544921BABCC71 /* PBXTargetDependency */, + 42671B1896E3F27001C6AB07907784E6 /* PBXTargetDependency */, + 7D5A221A7BEFC4E2244A58FB19C986A5 /* PBXTargetDependency */, + 27929BC25D3AC3ED6E7890B6822AE73A /* PBXTargetDependency */, + 2B8598F2CBB387C940A1FA2D652F4394 /* PBXTargetDependency */, + 45A02D94FDEF4EBAEE7B40981DDC1C61 /* PBXTargetDependency */, + 689D6F561199CEDB6D3138CA552D3F53 /* PBXTargetDependency */, + DED18A31CE8FFA059D8013DC4A83DC2F /* PBXTargetDependency */, + 79C8551C146779E93E20C15911CA3BD0 /* PBXTargetDependency */, + 4DD8BC3A530BED496510FB84BC656779 /* PBXTargetDependency */, + 4B6E3E0BB53B3276E57DB55122C738D1 /* PBXTargetDependency */, + 3F16197661742FBFDEF20737B37EDB6B /* PBXTargetDependency */, + 510387D6BAB4A57E079166A54DC434FA /* PBXTargetDependency */, + E68647813534AEA84F5B3998F9B2412C /* PBXTargetDependency */, + CB0B95B00968F527F167A50BF3CC50EF /* PBXTargetDependency */, + 6534D5C1960A374B317EA0E461EC624E /* PBXTargetDependency */, + 6389624F3A1F303BDAB3FFF845300C94 /* PBXTargetDependency */, + 42C0B912BB00FD00911DBA87C3377EEC /* PBXTargetDependency */, + 56DE21C75126AF31A5E94EE6F99D2BF9 /* PBXTargetDependency */, + 62D932DC02BFEBDDD2FF5BD7D73F51AD /* PBXTargetDependency */, + ECE1FF9044F320FD194A1576E718F572 /* PBXTargetDependency */, + 0FF688475C509FEBF47F8F6338896FD9 /* PBXTargetDependency */, + F3BD3856770F23EA5B1D00AAC53410B0 /* PBXTargetDependency */, + 7ADCF824D0C1203A949C96094503C602 /* PBXTargetDependency */, + B7715B852DC62FE8F8319D58610AF666 /* PBXTargetDependency */, + 17E67BEE76E6BC11894C0D64D23D0933 /* PBXTargetDependency */, + 398F0C597BCA5EE1647885443566E8FB /* PBXTargetDependency */, + 577227C9EAAB1992707B08F8FAA5DB2F /* PBXTargetDependency */, + 3428E2F38F33937D3E173113C7ACA1F2 /* PBXTargetDependency */, + 580A194E831066D08BAF6BEECDE118AA /* PBXTargetDependency */, + 515F4856218D66DA46398B7A6036B62E /* PBXTargetDependency */, + 7E7EC706048136D092110E773617BFA0 /* PBXTargetDependency */, + 39F90BCEE33849127E71239104B45AF9 /* PBXTargetDependency */, + 8AADBAD0FE34341492E30E5D2B27BBF7 /* PBXTargetDependency */, + FC0B043F9A61A40CEC8105993D640C00 /* PBXTargetDependency */, + 4FBA80ECCAE87CD90E6BE8B440292006 /* PBXTargetDependency */, + D5FAA9F4B29B766332F073BBB1A1C4E9 /* PBXTargetDependency */, + B48FF6505FA5365520B4933D53A12D0E /* PBXTargetDependency */, + 1C3324F9FA8112D0D4CB7FDE5FB0F426 /* PBXTargetDependency */, + ABAECFE6530536D80A4748F0BD19EDFA /* PBXTargetDependency */, + F0B1B660D06D4D4A9B9AEC88F14E79A4 /* PBXTargetDependency */, + 68B7D7313CFD6BE1AE8C023712B964B1 /* PBXTargetDependency */, + 844ABE593954223D238ECA78C81439BE /* PBXTargetDependency */, + 4AE3A39FF66D392A1B0A5C572FE7EA4A /* PBXTargetDependency */, + 135200112ED7A5E3ECA210F6D46B096A /* PBXTargetDependency */, + 7169F908024952E5F7F0128DDA244E2C /* PBXTargetDependency */, + AA795EC5A2793FCAF26363EA92A80E98 /* PBXTargetDependency */, + E9713E0C2EF9361BBA3F3638CBFBC42B /* PBXTargetDependency */, + EED4A172A1DEA09379AF8CC61A9B7F6A /* PBXTargetDependency */, + 4D8F64378745354B694B62B49FB751CF /* PBXTargetDependency */, + 3E6803C8B29AF76BFC5C95513829792F /* PBXTargetDependency */, + CD521EC9AA470DF8D52414A9D86B966A /* PBXTargetDependency */, + 3F3C9E6765BC147DA267791A980A7454 /* PBXTargetDependency */, + 4ABBB9BD4F9544583033CA3BAA906379 /* PBXTargetDependency */, + 7BE6208F9A0E772B5ACA35EB7BE8F267 /* PBXTargetDependency */, + B6DDD633D6E058FF872C4AB56BF6A94C /* PBXTargetDependency */, + 7A8B4CE3EA655BF9B4A89986FA26F982 /* PBXTargetDependency */, + 1106E894C479E191CA9ECCA01395F6B2 /* PBXTargetDependency */, + 5A416B76E16E3A9442E3DC07AB7F7C5D /* PBXTargetDependency */, + E65E53F03D177003FF0FC9A6757045E5 /* PBXTargetDependency */, + 2AE1AB43913431D909708C6D33B763B9 /* PBXTargetDependency */, + 098ED75ABD1DF07744163F6C735C9BD8 /* PBXTargetDependency */, + FBADAE667705F13EC81990A4F1E983A9 /* PBXTargetDependency */, + 1EF9C3EE6D3C34883AE89D528999F1C9 /* PBXTargetDependency */, + 200D0F7329C3601E1E48FCDCEE03916A /* PBXTargetDependency */, + 0DA5A0B5112EE13122FBE0F58F94ACEA /* PBXTargetDependency */, + 663887FAC5945BE63E7B7D4D9FABDEB3 /* PBXTargetDependency */, + 6033A5C8C12EFA9BD8B8E06FAD744530 /* PBXTargetDependency */, + F087BB51BD7174866021F9A779AC0111 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -15555,7 +15394,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 2831255621399A1A95B6A58D28D3B520 /* Products */; + productRefGroup = 061A2EAA9975DC819040E39B4127A4AA /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -15605,7 +15444,6 @@ BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */, D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */, D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */, - 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */, EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */, CA400829100F0628EC209FBB08347D42 /* react-native-notifications */, 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */, @@ -16455,6 +16293,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5C4DB075FE582FA4367962B4F43BA286 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 587B29B1F811B3DCAB8C8282B1756BEF /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 616B04C56E5A24AE12954337A293AB46 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16476,14 +16322,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 65A1B35CEAC137CBF0FCE206330606FB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6A85D1B26E9CDC97E15DE8C824A82736 /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 67E9F6969AB2358E8DE16FEA91209509 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16641,19 +16479,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8AF81224397E9B8D59FB1BA5FC3A17AD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */, - 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */, - DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */, - 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */, - 141CB062270AB0D64040EE9FF7CCDFC0 /* RCTCustomKeyboardViewController.m in Sources */, - 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 92019729DD1112D43EDFC947C908B4D5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16700,6 +16525,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9850EBE09C4A5928323740CEC9BFE56A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9498774D036082A8B4E197579E6016BF /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 99EDCE1B78902B6308B92C69ACBFFB37 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16931,14 +16764,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E355D16EE6D3419FAE0DCFC516787AE1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D72C629D929E02F506B34837A3FEFF23 /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E52752F659F5427D67E7BC18DCD04B86 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17099,30 +16924,12 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 011CE2450AE11B9FFFD84C8C280B809E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = BC8C24324CBCCA7C9FD4E3E8423E923F /* PBXContainerItemProxy */; - }; 01C4775EBB1ADD0B79CC48B319789E79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 97B757EDAC3A7488ACC8A43E74C8388E /* PBXContainerItemProxy */; }; - 022CFBAE58924B459078A66C0369BECE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 9221682DEFC433F52DC9D6667B00E8E1 /* PBXContainerItemProxy */; - }; - 031BB745803DFB5F7C92D86B728AD847 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 3C43C5DEE85968F10ED7D2A1163F91DA /* PBXContainerItemProxy */; - }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -17135,12 +16942,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = D1DD6F0528614F3F6A959C01AB7F7DCB /* PBXContainerItemProxy */; }; - 0692B9311498395175014308A4B17348 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 96666480DE980C58BDF3B02926F87595 /* PBXContainerItemProxy */; - }; 073CD2E5F0971C9A28E591F6289C48BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Crashlytics; @@ -17153,35 +16954,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */; }; + 086D65457AC5FFD77F382821A6F4E77B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-video"; + target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; + targetProxy = 293DBD979E37882283943EEFEBC776F0 /* PBXContainerItemProxy */; + }; 08834986FB3887AACF94417FB2063810 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A9D92F68FAFAEBBE26C78B0172ED347C /* PBXContainerItemProxy */; }; - 0A449D0BE5B185FF11C96E9F5CC19486 /* PBXTargetDependency */ = { + 098ED75ABD1DF07744163F6C735C9BD8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = 4D75BDE4708454F4909FB10307068841 /* PBXContainerItemProxy */; - }; - 0B7760A825C50E046F98BDF3E1B415A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 328188725A5709DCD846ABC6008CA4A4 /* PBXContainerItemProxy */; - }; - 0B8F803EE4667004EA6E67A4F1AFEC8D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 2AA6341385C9D7D36A09008D60E9A168 /* PBXContainerItemProxy */; - }; - 0BD13821A9C8FC60639800F9E042B301 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = B1D869B08EF0EFE10993521A96F7D391 /* PBXContainerItemProxy */; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = 5E4B75F838EA6500E2F70C98C23329FC /* PBXContainerItemProxy */; }; 0BDC71A280A13EDA3BACEEA9FFA4057C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17189,29 +16978,17 @@ target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; targetProxy = CF87F655D13B486B7A39F4A5166807A5 /* PBXContainerItemProxy */; }; - 0C5012192C2A78D2E5C0343B586236A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = A294E7323DF03350958C1AC67D2A1C0A /* PBXContainerItemProxy */; - }; 0D751055C363323C78854582E5CE9EEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBLazyVector; target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */; }; - 0D792B55CDAA4B9CA054A0E122E34020 /* PBXTargetDependency */ = { + 0DA5A0B5112EE13122FBE0F58F94ACEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 76CE472186ECE30C9667447E3C9E2A37 /* PBXContainerItemProxy */; - }; - 0E4F01207E4AFE2CDFA8DED86C4C16F8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 7D27ED6567EFD4F81531C72772720B9C /* PBXContainerItemProxy */; + name = "react-native-video"; + target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; + targetProxy = 3F233DD877377E4E13A6102268F04D46 /* PBXContainerItemProxy */; }; 0EA175BD24BB28A0E0412FF094DE386B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17219,11 +16996,23 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */; }; - 0FCC59413B178473BC55420AF3C49A6F /* PBXTargetDependency */ = { + 0FF688475C509FEBF47F8F6338896FD9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = B144A4DEF75CE655FEEF5DEDC873FA72 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 7BDB8FA60F307DBE98E1A1BBBDBE8A45 /* PBXContainerItemProxy */; + }; + 103A67F612D0177274D8CE98BBBBAF76 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = FD95985655C01A2E05B291CA06AAFCD4 /* PBXContainerItemProxy */; + }; + 1106E894C479E191CA9ECCA01395F6B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 6D703170549265D538B76695D9F11BDE /* PBXContainerItemProxy */; }; 111B42C5DC57FD6481F10A216C2A2A54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17237,23 +17026,23 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */; }; - 1237AE89B63F015C7E26B2D86BFE5F9C /* PBXTargetDependency */ = { + 135200112ED7A5E3ECA210F6D46B096A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = F6E7B967BAB0CFDAF1E4584ABE5385FC /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 1AE7005914E52A005F591CDE4E355B58 /* PBXContainerItemProxy */; }; - 132FE8B8E63BD64C3D7B7562048122ED /* PBXTargetDependency */ = { + 135A6972A27F25BA8EAFC27A9EC11AFB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 7B199FB4BE2CA58EA743C45D6609AC0F /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 3E83DA5CB5A4A4CBE5BC3B7021ECAAEB /* PBXContainerItemProxy */; }; - 150BB3ABB2223BE26DE7CCB3EA3D7C74 /* PBXTargetDependency */ = { + 150815A5BA646F5C247315243CDAA412 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = FED0787EF1320E02CB9E59A7A9F4D067 /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 0E1E95272142A4DD4793E4BCC36AA7DD /* PBXContainerItemProxy */; }; 16D9EDA83A5EAC350AAADE42DC833185 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17261,11 +17050,11 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = E7713748923D5218C5086559D4632CF6 /* PBXContainerItemProxy */; }; - 17947E88C0E0CB0A18CCC8C3508896E7 /* PBXTargetDependency */ = { + 17634ABD8EC4AD7FD28A2F314D536F82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 920BBBF84113CAE19E321EAAFE6546B4 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = 721D022BF7B7A864C121769CB1817B93 /* PBXContainerItemProxy */; }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17273,11 +17062,17 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 17F926AC4EFFC702D9501F3B2F031264 /* PBXTargetDependency */ = { + 17E67BEE76E6BC11894C0D64D23D0933 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 9BF5924BA9D17A4904D3454D2A86CF70 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 4952A68A7EE0A73023C8C30F916CDDF6 /* PBXContainerItemProxy */; + }; + 189311A0B31BBCA4170A7050B5669655 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 9B4B943D6F7368C124A65870E1B5AA7D /* PBXContainerItemProxy */; }; 18FD1501C797648CCBBE6F5A312BFE05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17285,29 +17080,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */; }; - 193D36068CC93F653E48B08DB805299F /* PBXTargetDependency */ = { + 1C3324F9FA8112D0D4CB7FDE5FB0F426 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-video"; - target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; - targetProxy = 49F05BDCFA402317EFCE4D988B52E30F /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 7E544BF4B592599D7C926E03AF304B82 /* PBXContainerItemProxy */; }; - 1A18C555A4C0E90CFCE1862DC8F94408 /* PBXTargetDependency */ = { + 1D7BE1B40D73D886C08C3EAF3AEF8A51 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 91E7BE7B7B4A92B30DDEEDB1C61491FF /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = B9D79D20404B146AC29C03FE1AD96C03 /* PBXContainerItemProxy */; }; - 1AA7ECBFA331151021ACBF0788B62F66 /* PBXTargetDependency */ = { + 1EF9C3EE6D3C34883AE89D528999F1C9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 6EC5D99CB7C92E00E2D0CACD98349692 /* PBXContainerItemProxy */; - }; - 1D863773EFC8144808B59D9033579431 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = FB8962C393814D899BA352B00394587C /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 98D896D698F7491BAE25E198EB3446F6 /* PBXContainerItemProxy */; }; 1F7F74A9D27293B2CD3A13D6A29E8DCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17315,17 +17104,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */; }; - 20703024E39087D7C031C804D6BCEFF8 /* PBXTargetDependency */ = { + 200D0F7329C3601E1E48FCDCEE03916A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 57F3D7487917ADFE4B6C3F7DBECD5F8F /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 1EFD775BD2E6D8EAB8DD4C12B10B98CF /* PBXContainerItemProxy */; }; - 21F9E245DFAA830695ECA1BA3B2FB3C0 /* PBXTargetDependency */ = { + 21132C7DC7508F5F7D0ACF3973FE874E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 49CBCEEC7CD88EA79F05EF04B91304B4 /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = 59BACDF507289F4ACB3A4077AC2B6A0D /* PBXContainerItemProxy */; }; 247FEEC1E501C4839C5EE406D74A3A13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17345,47 +17134,47 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */; }; - 25862982C5B8C76A0F37C78A32BE8454 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 3944CB563B3BC5309021CA988FB39A42 /* PBXContainerItemProxy */; - }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; + 262BE4F4564144B6042D25EB7091A224 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 8AD98246D0E79A443E9598472BA4C7AB /* PBXContainerItemProxy */; + }; 264D93AAAC6C7D8A972E618ABE3F4764 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 32EDED458FEDBDD31B9D588BD688E1DA /* PBXContainerItemProxy */; }; - 26EFF042DA0CD9D33047967AC564DEEC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = C8E7636CCA91128D75FBB3064C303CF5 /* PBXContainerItemProxy */; - }; 271F0600BAF57AF6817D4EBF63BF104D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = 9AC1F06D86A0940CBEDC84127390E31D /* PBXContainerItemProxy */; }; + 27929BC25D3AC3ED6E7890B6822AE73A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = B05729177D762B1484EA31FE2B192F72 /* PBXContainerItemProxy */; + }; 27C702A0CD5B9CAB6ADF12761D4592D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */; }; - 27FACA0BAC43B2675E0267008E9E627F /* PBXTargetDependency */ = { + 289ECA4C2990708BF7357243AB0E1585 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 6B353BDDA4C3E6B73BAC65854BC4EE5A /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = BA6A87806E852DECE2417B12D5CFCFD3 /* PBXContainerItemProxy */; }; 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17393,6 +17182,18 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */; }; + 2AE1AB43913431D909708C6D33B763B9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 402E669DAC592D8549ACFE8A6016A9C8 /* PBXContainerItemProxy */; + }; + 2B8598F2CBB387C940A1FA2D652F4394 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = E72F93C5ADD69CD4E8122F4FCBFEDA4B /* PBXContainerItemProxy */; + }; 2C093D825CD5837807DDB5B0FBABE56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; @@ -17405,11 +17206,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */; }; - 2CA3FE825C7E41078DC517ACCFEEE07F /* PBXTargetDependency */ = { + 2CE392585411EEAEEC72AF5C44ABA8EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 72FFCE6D24CC5C292B2C863ED19A3550 /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = 0BC9F2BBC9BBE607E7CCFD808A85B1F0 /* PBXContainerItemProxy */; + }; + 2D0ECB22B1F8E3EABABE587848DCD386 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = FAEB113988D078551DD440B5811BE6B7 /* PBXContainerItemProxy */; }; 2D12D63E9EFDBBACEC8A2C6384D85FD7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17417,18 +17224,6 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = A6D3FBE192729DD81F271A1FC6DA3AC7 /* PBXContainerItemProxy */; }; - 2D260EA03E351DC1F2717A13C55D8771 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 35E83C6752758A15697A5C0764818779 /* PBXContainerItemProxy */; - }; - 2D3137A8BE2479EEB2342FA59C29DBAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 307ABBF2B56D8DE9A4765909763281AA /* PBXContainerItemProxy */; - }; 2D400D296D174E898B4E20125D436B48 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -17441,23 +17236,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */; }; - 2F0476764400AD4554B2872A5796AF38 /* PBXTargetDependency */ = { + 2EE3DB92DCA9D45077C2345F44EEC61E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = B5F1124F98DDA693985714257034E729 /* PBXContainerItemProxy */; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = 0C0C7E4729BB6DEC28583212C48D0667 /* PBXContainerItemProxy */; }; - 2F2588736D321292D53D28A37C664F70 /* PBXTargetDependency */ = { + 2FF3A2A05A40838509657E5D6CB00F4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = AA3D617BC33D3300EA85143BA7607626 /* PBXContainerItemProxy */; - }; - 2F6D71221C37CE705E0303BBAF072877 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = D2EEA6CAF0D8F9AE42037AE2CD98F08C /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 382951586E78CC41044DCAD3F979C352 /* PBXContainerItemProxy */; }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17465,11 +17254,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; }; - 32C240DD6E2BA6E488CEC058017753B2 /* PBXTargetDependency */ = { + 303F265BF76F55A0EA1411A05A4B5702 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = F7197E8A78D91E6D03D445D2B44173AA /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 6C5D1AF94E953E4888BBFDC54AC217D6 /* PBXContainerItemProxy */; + }; + 31B4453F4A467AE58FC818C8EA9ABE18 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 3FC82A5B2AC222C7A7933B2CA25610AA /* PBXContainerItemProxy */; + }; + 31D4F64C2790A50EAFEE606CD5FA6A60 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = C41CF851F7FF52EAD14A31FC91CE44F2 /* PBXContainerItemProxy */; }; 330F77DFE2073004CAEAE6D131E54D67 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17477,23 +17278,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 1C84D35F43BF9C71C2EEE3812CDC5C8D /* PBXContainerItemProxy */; }; - 33474FF920FAD58FA7B408C423A44FF6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = E1C421EE796DDA0903F9CAF48DB34D00 /* PBXContainerItemProxy */; - }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 3437608C9291EB7895ADE0A3421D016C /* PBXTargetDependency */ = { + 3428E2F38F33937D3E173113C7ACA1F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = EEEC9DA5A1F7E3749DE71EB47566F9D4 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 01E1C2F0C1330276845541D7FCDE9D30 /* PBXContainerItemProxy */; }; 35D5269AD31979BA1B767BBD3ED53885 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17501,47 +17296,41 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = BF3AAFF64628FD7E9E7A7DD743002FFF /* PBXContainerItemProxy */; }; - 36085484496E1F1EA08F1E85B71F7C28 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 8A1B4551FBF8F550985B968E5FB22C8C /* PBXContainerItemProxy */; - }; 3739916787D47022FEBE0DBE7FDAC532 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RSKImageCropper; target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; targetProxy = AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */; }; - 37FB5C7B72D045CAE22C5EAC7812BBD9 /* PBXTargetDependency */ = { + 384E6F7CD534095608A3E5F8480ED244 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 519F2E56F6C82B6DBBE5AC50E62CD74B /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 308CB2ED713BFA054D8EB2F0D06AFA16 /* PBXContainerItemProxy */; }; - 3855E27B68ED054E97CACD53FE5CC3B3 /* PBXTargetDependency */ = { + 398F0C597BCA5EE1647885443566E8FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 5027C7B0A8DA8D038D576E67EEF5780B /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 10399A97EABB5F89BCB17ABF69CA87B2 /* PBXContainerItemProxy */; }; - 39AECA7D5FDDBCAFD8346DC3BE44EA8A /* PBXTargetDependency */ = { + 39F90BCEE33849127E71239104B45AF9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 425A35FF1C349923FBC60860170E6F98 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 4B07143B1B59D56632347002AAAA437D /* PBXContainerItemProxy */; }; - 3B7B8A6ADDE30A50B5EC9020B52473DC /* PBXTargetDependency */ = { + 3A9A39824D548188D0E80B071C22237C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 87197B34A43BDFD610E82071C7C49838 /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 417C4B37FBF10188AF7335F3FA18E334 /* PBXContainerItemProxy */; }; - 3B9BE266D61514BB37C80426B55B6B24 /* PBXTargetDependency */ = { + 3B7AEFBF5FD857C31DA77A6841C1F342 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 47450B6D8E3C6D80282F4B95884C03AE /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 9C9DCBD3CB2DE5791F27DCB8E00C5BB5 /* PBXContainerItemProxy */; }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17549,23 +17338,11 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3BE413762EE83511BEA7FB6A3EBFB944 /* PBXTargetDependency */ = { + 3E6803C8B29AF76BFC5C95513829792F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 18C0E297199B88DF61080C55F0ED5D91 /* PBXContainerItemProxy */; - }; - 3BFB73B008A37B64330C3E1CA3BCAB50 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 742668A6152D4A35E1CF8DA490FF864D /* PBXContainerItemProxy */; - }; - 3C9ED716278DEDD9C23186BBFBD5EA8C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = 3BCA64347C6160D30C274D72A09D9586 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 287A4B30D18582D993096165A60C3078 /* PBXContainerItemProxy */; }; 3EC9C41467F00AB41E8790F4AABEC57D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17573,47 +17350,65 @@ target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = C5D50E7D903962E2C2E382B536062BDB /* PBXContainerItemProxy */; }; + 3F16197661742FBFDEF20737B37EDB6B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = ABCA878079204477F95ACF349B134A59 /* PBXContainerItemProxy */; + }; + 3F3C9E6765BC147DA267791A980A7454 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 7065495626DCA21731426A45B790DEE2 /* PBXContainerItemProxy */; + }; 3F3EC18CA27FD995B1E6952D48C0C2D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFontInterface; target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = 86FBD5BA95718ED6238A8919F42616C5 /* PBXContainerItemProxy */; }; - 3F4A120C4B846D8E042C2BB83D3FA6B9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 4E8A822A3AC1F62151AB71510CEE0B28 /* PBXContainerItemProxy */; - }; 41013E96A559735139B429989B2F3644 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */; }; + 41140FA5EB0E8AC81CFDBC9C3596BD2C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = CF4C77FAF354C159D5D07A168021AC69 /* PBXContainerItemProxy */; + }; 41FF68034D509FCE39317463A46EE39D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 42B00CA477FD1334EA95BA7C155641BA /* PBXTargetDependency */ = { + 423D0F2D49F3AA6A5B119E06070F1D03 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 118016450313151D29E6B9F4BBED8396 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = D5B64814EF2A440EB22C618F91BCAE0B /* PBXContainerItemProxy */; }; - 440373922DE3ED51391E86704C3A38E1 /* PBXTargetDependency */ = { + 42671B1896E3F27001C6AB07907784E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 181FB338D96357AC053FCCF2E154D0BE /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 36305F240D87F3E11C4530F378963D6F /* PBXContainerItemProxy */; }; - 44B70418341831A412F740541F6A534E /* PBXTargetDependency */ = { + 42C0B912BB00FD00911DBA87C3377EEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = E349A2357A5D191D2BE6E5DBB91CC053 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 19C33ED24FB49FC741E5471B79E46224 /* PBXContainerItemProxy */; + }; + 42CA430D9ADF5B33FEBC8C7FA9091DCA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 670C372A32DD6F4E8DDE9DD208B1959F /* PBXContainerItemProxy */; }; 4525B78AB9B05D2433479A9579FE333F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17621,11 +17416,23 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 557407361285FA301951204E241F9CDB /* PBXContainerItemProxy */; }; - 46C96F842145BC8DF79599F0473BE104 /* PBXTargetDependency */ = { + 455AFBCC2BC29D52C209FD9F39BBF3A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 6BE17AD7C555AE1C5F07FCC65FFEEBC3 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 1AE55B317D1952FD116D76CAAED7DF01 /* PBXContainerItemProxy */; + }; + 45A02D94FDEF4EBAEE7B40981DDC1C61 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 55C9DFEE64190DC5D7B659AEAC999467 /* PBXContainerItemProxy */; + }; + 47308ACDDAFE8D302CC82063C0AC6F13 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = D4001BB8F0E1CC188062556FC8254A35 /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17633,18 +17440,6 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 49292584FA4714589EB951DDC95D69C3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 003661AEAD4E66005C2C91B02B9B709D /* PBXContainerItemProxy */; - }; - 4963BC6B413E9824F3A1069AFE2F132C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = 63D13802311B32160BD8F47452967D30 /* PBXContainerItemProxy */; - }; 49B84289A3B9871A10A133360307483A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -17663,11 +17458,23 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */; }; - 4B414D99A77D84E4640E1F400E100000 /* PBXTargetDependency */ = { + 4ABBB9BD4F9544583033CA3BAA906379 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 87802E74B4233E83A705E90C847E767D /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 46C442A90B3F4D2FE8F2908D8DF29193 /* PBXContainerItemProxy */; + }; + 4AE3A39FF66D392A1B0A5C572FE7EA4A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 70E6CA166BBC98CD53E3C1C4431640BE /* PBXContainerItemProxy */; + }; + 4B6E3E0BB53B3276E57DB55122C738D1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = CC7FEEE361E9E93EC0AF53DEA0487162 /* PBXContainerItemProxy */; }; 4B7CF4BCE880915A07A1011FB01F4A55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17675,17 +17482,17 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */; }; - 4C1CAF066A1C63D9AE10FE61A12BDAD9 /* PBXTargetDependency */ = { + 4D8F64378745354B694B62B49FB751CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 73CE57915F8A37491D19934C8E3E3376 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = A3B60D1C518F1C8C813F5E32A75DD327 /* PBXContainerItemProxy */; }; - 4C94FE8C8754C0A24982810B09EA4912 /* PBXTargetDependency */ = { + 4DD8BC3A530BED496510FB84BC656779 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 269E3E717CF09543FA138376C554E3F1 /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = E566304553EFCEBA4F051E9BCAD0BB6A /* PBXContainerItemProxy */; }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17705,53 +17512,89 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; + 4FBA80ECCAE87CD90E6BE8B440292006 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = E56C8CB5984F079F18A8A02FB8BDBFC2 /* PBXContainerItemProxy */; + }; + 502995F2AFECD1C42E7686967BF4FE70 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 2CD60693D39AEAE91E7ADEB448D65FD1 /* PBXContainerItemProxy */; + }; + 510387D6BAB4A57E079166A54DC434FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 954E0CCA5E8B480350E8436EE474FAD8 /* PBXContainerItemProxy */; + }; + 515F4856218D66DA46398B7A6036B62E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = E879B118CC080DD7D9D9466736FD606B /* PBXContainerItemProxy */; + }; 5195D675E015DEB9B99885FE0B15AAFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = A33043B018A8D3B28DA9124A1579E13A /* PBXContainerItemProxy */; }; + 51A44449DDC825518E0544921BABCC71 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 517E95D5CAD03EA75E0C6617D9294D01 /* PBXContainerItemProxy */; + }; 52ED0D1D4CE538BBA93169D2D44FFFF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */; }; + 537F816FD3F3B0C568C19D6CB94D5D1C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = B687C9A22D2D12EFB200C5D67C839906 /* PBXContainerItemProxy */; + }; 53B411A732F99F8D51E15B2CE451B1C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */; }; - 54A402E9AF412294F66474616291D028 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = ECA29CD1CAAD5B626BAA69A224B592F3 /* PBXContainerItemProxy */; - }; - 553925F91AEB7A8E2E61A76C5AF9D7CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = F43325096A500828490E85360829798B /* PBXContainerItemProxy */; - }; - 55722A81772D06EF32AFA39E8EB2954B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 3C16780A980340108ED15E3B431DF62B /* PBXContainerItemProxy */; - }; - 56C0FD2808D49993FDE48614FB3978A7 /* PBXTargetDependency */ = { + 55E862D358755960D5F29E90149EF7C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = AE0E1CA44BD2181F02740B57829BAD7B /* PBXContainerItemProxy */; + targetProxy = DA4E0CF0076635A9C93366BE55B631DC /* PBXContainerItemProxy */; }; - 57548C50D5585146B371B90476FBC33B /* PBXTargetDependency */ = { + 56673919C97B472351BEF2F1949261AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 4936892D09C4323AC6969A3CBC57E9AC /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = A219A525F7D89CB505775229778B9A36 /* PBXContainerItemProxy */; + }; + 56DE21C75126AF31A5E94EE6F99D2BF9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = F8D4D2CDF1354D450268ABEC07E1B256 /* PBXContainerItemProxy */; + }; + 577227C9EAAB1992707B08F8FAA5DB2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 69B99B1CA02C6A7B7D1C6041F1A33EF7 /* PBXContainerItemProxy */; + }; + 580A194E831066D08BAF6BEECDE118AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 9D7112820FE404AD3889A8C613EB673D /* PBXContainerItemProxy */; }; 593EED89BEA0A6FAB5FB78DAF42A92C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17759,65 +17602,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 5BD0CD31D415E100348CC082A961047D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 8D166E6DC97E66ECE4E146F8606FDF64 /* PBXContainerItemProxy */; - }; - 5C4A8EC38916A46D8BF78D6B92C27C21 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = FD6ECC61BA8F1EE2ED5B3BBDD73C7E70 /* PBXContainerItemProxy */; - }; - 5C8416A73FC4A6B9DABDA16AC7707F96 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 7BCA53A464C3341E7A7D4AE499BBCE86 /* PBXContainerItemProxy */; - }; - 5CD0970A463CFF7339CC303F6B7A9441 /* PBXTargetDependency */ = { + 5A416B76E16E3A9442E3DC07AB7F7C5D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-cameraroll"; target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 4B1239845E12FE3A6B2DCCA12A519B10 /* PBXContainerItemProxy */; + targetProxy = 402729C8AF71EB939F39BE06188B3042 /* PBXContainerItemProxy */; }; - 5D5157C9A2C581A8AD4940BBC4511807 /* PBXTargetDependency */ = { + 5CBCD777F631F06496B91D5B7A1390A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = AA683DBA0B2F417BE4B830F44E78DAE9 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = BA3F7D36F6E5ECA2F4C8FAB2CB071D26 /* PBXContainerItemProxy */; }; - 5EB6726044F264774D1E46B53F1A2794 /* PBXTargetDependency */ = { + 5E1B0443F129EC24642AC415142339C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 59C6F419D816DC8DE859BF6E48A82937 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 320353F04E268962E404EC723479978D /* PBXContainerItemProxy */; }; - 600648DBE3C7E0BF44794CDED2F25C5C /* PBXTargetDependency */ = { + 6033A5C8C12EFA9BD8B8E06FAD744530 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = C345B49DF1FD64A2511E8ADFB302CDD9 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = F9FA9A4B93BE9BA6DAB7949C24BB5F24 /* PBXContainerItemProxy */; }; - 602A3B014BDD6E297A8B17F44B7DC030 /* PBXTargetDependency */ = { + 6134E2DD787DBCB7AFCE0073AC3B9815 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 2DFAC70FFB58083A50BFD74B8CBF7CB0 /* PBXContainerItemProxy */; - }; - 602A410A05BA0E628C8FDF85179F4FDF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 83885E57E5842582AE0EBE125C789C86 /* PBXContainerItemProxy */; - }; - 60B99BFA0813458750AA90079166DEB0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 8D5515BBE0F7514C77BE5CBE42628BE0 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 8F92F098DAF2474862E1EAF580073CAE /* PBXContainerItemProxy */; }; 6142C90C7067738802070DBD12BAA802 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17825,11 +17638,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */; }; - 636D75672D7EDB2A118132A5A9EA1C7E /* PBXTargetDependency */ = { + 62D932DC02BFEBDDD2FF5BD7D73F51AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = B5F526CAA3A7B86FC6219266D5CDBAA8 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 717692BC65669812B7F522EA2187003C /* PBXContainerItemProxy */; + }; + 6389624F3A1F303BDAB3FFF845300C94 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 45AFA3D4740E3124EED9D5ED6B043C63 /* PBXContainerItemProxy */; }; 6395E3254FF15C5334B441B2D03EFBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17837,11 +17656,11 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 9999A457A3E364808C9E122EC64D955D /* PBXContainerItemProxy */; }; - 6416253C00B453FBF72529B4E21F1032 /* PBXTargetDependency */ = { + 63B2C42EFCCBF6EC370087535F06AEED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 40722E20ED16E33A140CF7C78FC8B72A /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 5E3D2AE3A5333B142CB68B67C4ACE095 /* PBXContainerItemProxy */; }; 648641E197156F9497402698E7616999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17849,35 +17668,41 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = EF797B6066E1025B5FD8590A476CD8DC /* PBXContainerItemProxy */; }; + 6534D5C1960A374B317EA0E461EC624E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = E5977561143FBB1F7FC7B0730E111BD6 /* PBXContainerItemProxy */; + }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; + 6637FB687F785DF4CE98E11B424DF908 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 8584DE7BCC7ADB3BDB3FE89B61242870 /* PBXContainerItemProxy */; + }; + 663887FAC5945BE63E7B7D4D9FABDEB3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 971EBA09E440DFF8F429A7118EEA8FDE /* PBXContainerItemProxy */; + }; 66F08441F9F016CA320259F5EC30225B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */; }; - 66FAA0B04C9E851DBA408F4A549DBCEF /* PBXTargetDependency */ = { + 6790F159B0FA686CA40309424FB81FC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = E6AA76FB869511C87C0F59AB5D2E0711 /* PBXContainerItemProxy */; - }; - 673BC7E7C3BF7B75DB54F25C5582DA88 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 78168902AF542C6B44CAADD59C45B2B9 /* PBXContainerItemProxy */; - }; - 6859D3F255AD22269FFF0E22E9236BAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 9340DA83B0AFC57D4B646B1D26FA2D4E /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = B8970DFDF95002FD0A14B4D77503A214 /* PBXContainerItemProxy */; }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17885,59 +17710,47 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; + 689D6F561199CEDB6D3138CA552D3F53 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 9D51D3FFD7C86A6A93E99C5CE65657CB /* PBXContainerItemProxy */; + }; + 68B2BDE34C618ECA40BD8E9EFD636F82 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = B412D7FD710901709A3083B46CF3702F /* PBXContainerItemProxy */; + }; + 68B7D7313CFD6BE1AE8C023712B964B1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = F66DF275B4674A769762AB96EE55CFEB /* PBXContainerItemProxy */; + }; 68FB2B8F06277465B5375A45215CC9BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; - 6B02748F14AD08615F8C678A24075364 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 3DB931A9B45692A33690F47416BD6AB8 /* PBXContainerItemProxy */; - }; - 6CA9EA87831BC93427DE6C3AA76C0656 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = CD7D7CE64221D2F810D53644B5CD9D72 /* PBXContainerItemProxy */; - }; - 6CC2B6F28019D16BF0C4466A1B124A97 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 70506A22AE25BDD58151B717B0F4C22F /* PBXContainerItemProxy */; - }; 6D8C00952B65F5BD4F322D959F307D80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = D9E3EDC835FCF7086651DEA02BD80CC6 /* PBXContainerItemProxy */; }; - 6F3376FE38F78EF35862053882A41586 /* PBXTargetDependency */ = { + 7144D577D67A010134981D0A3BD46F6F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = AC9BCF22ABC537CD2D90BD3E179BFC83 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 172BDD77CDCF2840675DA947894A338D /* PBXContainerItemProxy */; }; - 6F7CF6F5CED7CDF369F09FEF90C8DAEA /* PBXTargetDependency */ = { + 7169F908024952E5F7F0128DDA244E2C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 1C0D4EDE54700E03EE76BD4564618F44 /* PBXContainerItemProxy */; - }; - 706023807B9D8AFA9F701E3D9B4D1416 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = B3BD5672FE1CCAABCE599CB125843D13 /* PBXContainerItemProxy */; - }; - 7112A6A9028559EB53609FF2A2C18B7E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 6A594DC7B924CE27B59981A75BF166DB /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = FC2D8CDA8C6819244FFB8BEC04875A14 /* PBXContainerItemProxy */; }; 7256F46E80FAF060C9B45570D9CDD063 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17951,17 +17764,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */; }; + 73749982B9A8199CC3D081C112E0876B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = FC3D1359470801CE2B157C29ED51BEBD /* PBXContainerItemProxy */; + }; 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; }; - 769025D7B3F14F33EEE05E0A156A96F4 /* PBXTargetDependency */ = { + 78150159A101BD8D2559E7246D5D21AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = B31A35FC99432556A392CA1D2ED5C27A /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 104EB12BDB7CE9BB901088CB0317D472 /* PBXContainerItemProxy */; }; 7818A97BE9882F05F0EE52CA3FB7ABEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17975,11 +17794,35 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; }; - 79F60B75C63F6AC459C733796895B621 /* PBXTargetDependency */ = { + 7914C34B466D4EBBAEC8BF9A9D38FB56 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = C7DE1803713B58CB919CE3EB04543743 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = F7E4A705A8999C3724E4A0F45D1714B7 /* PBXContainerItemProxy */; + }; + 79C8551C146779E93E20C15911CA3BD0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 60309F1BE665B10103A75D922E3EC51C /* PBXContainerItemProxy */; + }; + 7A7F3800F3716FE0EE304CA206A89486 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 275184F18104D4E8615D6866CB29A402 /* PBXContainerItemProxy */; + }; + 7A8B4CE3EA655BF9B4A89986FA26F982 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = BBBCB452501F022F10A90B55CBEEE891 /* PBXContainerItemProxy */; + }; + 7ADCF824D0C1203A949C96094503C602 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = FC3F84C6724CFB62A253DF9B93BF2C02 /* PBXContainerItemProxy */; }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17993,29 +17836,47 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; + 7BE6208F9A0E772B5ACA35EB7BE8F267 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 96259237E6EF341CE2D2ADC369748D00 /* PBXContainerItemProxy */; + }; + 7D5A221A7BEFC4E2244A58FB19C986A5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 8513B0B23F501D30EBD770AE16DDC32D /* PBXContainerItemProxy */; + }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 7EF584C5A0F119F8B6D1148BECD6B312 /* PBXTargetDependency */ = { + 7E7EC706048136D092110E773617BFA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-video"; - target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; - targetProxy = C8F31F27E885C7BF0CB0536D87A79750 /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = B78DEBEDD5ABBC8402DD51C6392DDD23 /* PBXContainerItemProxy */; }; - 804F52E3C5D01279D23793D6D35F33F2 /* PBXTargetDependency */ = { + 81049588235BC9C2D7B63D5C8BD9C970 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 0C15209CA320BC1EEA1AFD2ECE80B1E7 /* PBXContainerItemProxy */; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = 707DBFAC0F367C91F7464F128FFF4FCD /* PBXContainerItemProxy */; }; - 8200679C831FBE1892B07E11AE2EA39C /* PBXTargetDependency */ = { + 8116EFD5F8E9502FCF675F340D3DE7EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 952D8D95F99846648150A4D15014D3F0 /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = CE4A7DC33E0F6EA56EC03CA52580CE16 /* PBXContainerItemProxy */; + }; + 82B4C0A2315FFB18F49471A1B4DB1014 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = 6E0CAEF0DF7688D83AECD74FACE0138B /* PBXContainerItemProxy */; }; 82DE4A10C611155EAA73BA712DF1D258 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18023,17 +17884,11 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; - 8366E560B08CA4D7D3FA57FBDA61B9EF /* PBXTargetDependency */ = { + 83C1CA64EA7ACDA99C999101D7EB32C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 29C8498BA9401C29DCEB36F24BA3D821 /* PBXContainerItemProxy */; - }; - 83FA8E780BF466A0524C15E80F4CF6A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 4470DF690078CCCFC5A0E26F8E95B5C8 /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 8F88FE0C04DC1C152B58E0361B149376 /* PBXContainerItemProxy */; }; 8428EE18A7782DDB4023470F96AFF628 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18041,6 +17896,18 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B8E5BD7E0904D95225F1C6CC70ADE8CA /* PBXContainerItemProxy */; }; + 844ABE593954223D238ECA78C81439BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 2137D5AADC00C670BBF209C6E3D3878F /* PBXContainerItemProxy */; + }; + 84ADD0398FDB774DC98D1AA886B0CD34 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = A2FBD5133148A69D26BD3F8CB2963991 /* PBXContainerItemProxy */; + }; 84C564CB9F9513DE23A47461E9EFBC6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; @@ -18053,17 +17920,11 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = F11BC96676F5675A20A8EEF5971E90CC /* PBXContainerItemProxy */; }; - 86EABBDBC7F0FE84DFA9434BDA78DE40 /* PBXTargetDependency */ = { + 85D27841E51D4815A334F273FD62997B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 444BCD6C8D99EC76E2B7CA594F0CDDEE /* PBXContainerItemProxy */; - }; - 8782AAA74C904CCE255C72ECF206E1C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 71E5C85C32D32F1F04C800D5A703C49A /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 3A1E47E06590AD806904148A81674998 /* PBXContainerItemProxy */; }; 87AEF2C8DFA51306ED9C9AB1DE0F546C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18077,41 +17938,29 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 0A0B4D127A91E77DB469579CC4FF0F57 /* PBXContainerItemProxy */; }; - 882AF2998070216BFFC6AC351A6D93BA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 4615FE0733428BB0AA78E2EFE9089DE0 /* PBXContainerItemProxy */; - }; 8836577855B2A402BB8083E2178254B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = A3B47DA7FB5AF667B2756DAC549D2642 /* PBXContainerItemProxy */; }; - 8914A57E010383BA1DDE7FA5DED0BDF7 /* PBXTargetDependency */ = { + 88AF767C3C2CDFD9E19E3B5CD6789417 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 52C37EC013797E043C65843C8114B04B /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = D2C7310A49E77758AC413C2BF25CA941 /* PBXContainerItemProxy */; }; - 8916AF5D9DC74DCC24D01E0AC9F6B9D3 /* PBXTargetDependency */ = { + 89AFDA73622E4F676F358615122EA259 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 5B62530741BD5714CD56AF19839463F3 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 40084875DC2C681C72190ADA5D777126 /* PBXContainerItemProxy */; }; - 8A0A19CCCF567EC157D575B96BB29900 /* PBXTargetDependency */ = { + 8AADBAD0FE34341492E30E5D2B27BBF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = A354CF663E4D8E78CD93FD1AD483AC9D /* PBXContainerItemProxy */; - }; - 8A443DC599AB6CFC8ABA5EE01E0B814B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 1D8EDBE4862F1172B067616AE92BC536 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = D70666205C99C6195B5678C376383933 /* PBXContainerItemProxy */; }; 8B45BA9683C0AE1D7149D313D4FDC461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18125,53 +17974,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DE8F7B6EA7B1B017A43DEDEAA9020A16 /* PBXContainerItemProxy */; }; - 8D897ADFD6021B4EA62E54C64B55BFEA /* PBXTargetDependency */ = { + 8D4C47FA0FE32C9E1B42738AA54F6583 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = E9B7DE6782CB1AFA824686CE3F5E6244 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 32E225C2E87590796F689CDA686A746E /* PBXContainerItemProxy */; }; - 8F7B66F2FFA247D753A8C50116021AB0 /* PBXTargetDependency */ = { + 91DADC6CC5E854900CE4DBCF93982871 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = 8CD02B7BC7B52B650E994D6784D8F231 /* PBXContainerItemProxy */; - }; - 92204B75DCBDF5FDB01B418E6F754B05 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 8BF89A917095D5157744CA3A3DDF0694 /* PBXContainerItemProxy */; - }; - 923E1C81DE5990D401E7CAE78D7742E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 07CB207984DC219C24E538EC07BECE67 /* PBXContainerItemProxy */; - }; - 92A3267C8C229EC3A9ECA570B3E25722 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 3AB947A007E4632E142CA898AB5D7D56 /* PBXContainerItemProxy */; - }; - 931244338C030B9998E9C1E705961787 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = F50AB6D44713FB32A3096F258E5D75F7 /* PBXContainerItemProxy */; - }; - 9318AE6F3320E09BDE3141091FFF5A8D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = E7F8B63B1F9D0C488BDB4D00E7E4849C /* PBXContainerItemProxy */; - }; - 935C417CF2404560123EBE35FA4351D3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 09D593C9AC48DFD729A196FCE6B75766 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = F526CFA1968B27B4BEA79732D19A8FDD /* PBXContainerItemProxy */; }; 943D3BD4A6984BC783E7677F30722A02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18179,24 +17992,12 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 46C8DE13FECE137E1DF29D2657A15C93 /* PBXContainerItemProxy */; }; - 944F08C02FCB51881D75976127A7303E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = C9C871423DD699DA51012B83751B6E82 /* PBXContainerItemProxy */; - }; 945F4CADF65ED07B6D298CB9886846F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTAnimation"; target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */; }; - 964109AE196A6851276DB5C43F1E3DA6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = F17B4995C520DE461541A03295BDE1EB /* PBXContainerItemProxy */; - }; 966429256B271DD0F30E2FA25D97B79D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; @@ -18209,66 +18010,24 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 9896A1AF3453162EB7EB29D194F06233 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 671DF5E465C47266E89D2307072898C5 /* PBXContainerItemProxy */; - }; 994ADAEEEA94855F19638FBB96D0D629 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */; }; - 9ACF6F7D4D3B013B7EA561F9B7155781 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 1B41BA61DB20B05AE8C29E182A53214E /* PBXContainerItemProxy */; - }; 9AE14FA1F306013F286ABA20DD87B69C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */; }; - 9BB29AF7239D3234E787597D1587A787 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 4847E3B18791FE6E3E94AA5781F3C219 /* PBXContainerItemProxy */; - }; - 9BC9B9CE44DC1F8E4EDBA17DF8DDF142 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = 1DF35873D24AE2A4B161722573B5E51D /* PBXContainerItemProxy */; - }; - 9C18702469077C8DACF8DACD32DDF840 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 1FD068163D38F2DB2240805C8E64EBE1 /* PBXContainerItemProxy */; - }; 9C390500C3C568F59A8589C455BFF4D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; targetProxy = C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */; }; - 9D750ECD9911045D4B3D69AC27F10EFD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 6DBAA7D492F6913D24F58658F0948574 /* PBXContainerItemProxy */; - }; - 9E65126D8DDFC0EB1D8D7109E2C0BDE3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 1B8D1B0DAC080E3B195827A9996B9FCC /* PBXContainerItemProxy */; - }; 9F4B49F01A597EA4F18DDCEBB1AF2B2E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTText"; @@ -18281,42 +18040,12 @@ target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = A93E606DCB9E6493FE4333269FB7DB4D /* PBXContainerItemProxy */; }; - 9FA0E718A1779574E41F3D1878FA1C27 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 1044FDC2303CAF1C91892A68F2A8E4AE /* PBXContainerItemProxy */; - }; - A00F7D1F2E5FA8A71F5FF808042F370B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 0BD696FBF6A39FE97C13A5A1ABF55C11 /* PBXContainerItemProxy */; - }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; - A4336332A667BB26D3D9EB3361B99158 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = F34982CECD4A0E7E5C361467B942AFD5 /* PBXContainerItemProxy */; - }; - A462C292FF6609D1C058D452EAC07538 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F5C9C8DA4EF06D90E55CBF7F674BDEF1 /* PBXContainerItemProxy */; - }; - A51F65EAD36CCE675809E93B7786A519 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = A51B4E84523EE9025F2923E0EF9C8DF6 /* PBXContainerItemProxy */; - }; A5351590EF2D946171B0ECC1142DED94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransportCCTSupport; @@ -18329,29 +18058,23 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; - A635399A6AC3E63872EB7A87250DA5D8 /* PBXTargetDependency */ = { + A7D91E5223BBF29C11FC7D07EDF4EC70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 5DC25A1D4E918E1675990CA1D8A67BC5 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 2415652152E232D9A385F2BF06E30732 /* PBXContainerItemProxy */; }; - A65BC11EA787F00F5D5EB861E325B976 /* PBXTargetDependency */ = { + A849AE94BC3475D77CCFADEEBCC207ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 9DA910A181B4EDFFC52A91B769656CDF /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = C007ACF14C1064044D9BD8EB35FEB43A /* PBXContainerItemProxy */; }; - A6E3425CD84B74A59211BDFB9CBC0763 /* PBXTargetDependency */ = { + A864CE676D2C361ACCBB45ECEA29BB28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 592693EA8C81FF03676E6A02CFA16F14 /* PBXContainerItemProxy */; - }; - AA515B3BAA960F561BDDA3E5ECD2862F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = FE897A3B09C0C877C1425D2D0F0AE06C /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = FAC02C27A0673C97EF1C046A21DB770C /* PBXContainerItemProxy */; }; AA55BD4562CF0DDCA3C38F5ABA08AF89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18359,11 +18082,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 185B11EB8A27612A9B75BAA1ACDFBF0A /* PBXContainerItemProxy */; }; - AA7AD60D5235888EC341334EDCCDAFB6 /* PBXTargetDependency */ = { + AA5F0BBEE633E3C3085F5A35D039AD35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 75A19794D437B8D5F82DF2363871A104 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 53DA77F82575474462AD71648C4EDD36 /* PBXContainerItemProxy */; + }; + AA795EC5A2793FCAF26363EA92A80E98 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = D8BA779B67C0609ECB59A0ABEA386ED1 /* PBXContainerItemProxy */; }; AA9052A974DA4ECF27CC38A7633849E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18371,11 +18100,35 @@ target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; targetProxy = BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */; }; - AC20D02C6F925EDC7FEBD903FF720C5F /* PBXTargetDependency */ = { + AAE5485630EDBE911784C138D10E5C26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 2EA7DE3C4E6319549E4C6A2EDEB40C37 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = A3E4D5683701E2A900C35ED966EB6653 /* PBXContainerItemProxy */; + }; + AAF2F80425DB268B0CDE20CDAE4B324B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 8786903AA6F32475D724C105FB071E9A /* PBXContainerItemProxy */; + }; + AB3A6B0B5733AB21E44C839D65B023CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 2D3326D620B6A39271C4441799294647 /* PBXContainerItemProxy */; + }; + ABAECFE6530536D80A4748F0BD19EDFA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 79FCCD3960B1C651CD1B8140E92861DD /* PBXContainerItemProxy */; + }; + ABDAA24CD24A3C9F114042CA86A20752 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = D624DE6873C7905B1A1CADFD49663364 /* PBXContainerItemProxy */; }; ACDFD30135AB57A1F062637C78FB2E81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18395,11 +18148,23 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - AEDCEBA0C5F2C140BA119D90CB606F90 /* PBXTargetDependency */ = { + AED863C8C6C88277E0F6E392B70A9A8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 53B0D573801F04727A5968A24DCEDB3A /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 04AF6DEA4DDC0ECB4D5934C8F3D182DB /* PBXContainerItemProxy */; + }; + AF0138CB3BCD3E15DC6622582FE61633 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 95F202C16F2E096E63EA85E929C33A4F /* PBXContainerItemProxy */; + }; + B03624C3EDAE694426535FCC3935AAB7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 6E29D6575C8DB48BCD6EB09C573D7439 /* PBXContainerItemProxy */; }; B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18407,11 +18172,17 @@ target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - B318C1E18E3B03D1F1DE223C7D8A08BC /* PBXTargetDependency */ = { + B422F5633A1244B7611F5F9E1C58F247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 226291D00695774450BE39CA7E709FE2 /* PBXContainerItemProxy */; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = 6B9EEBA2024E9C3E4A0B500A9656EFF3 /* PBXContainerItemProxy */; + }; + B48FF6505FA5365520B4933D53A12D0E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = C4E52F1E098EC9D179CFCEF2A3754390 /* PBXContainerItemProxy */; }; B522C45997E90058E7BACAB65C97DDE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18425,23 +18196,35 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */; }; - B620B167723C90B31E5D417C9626B33F /* PBXTargetDependency */ = { + B680347D50C63B50D8731839F8CFDF38 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 9FBE29897B10BA3238B4E77375E53B48 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 3E5A84A1441859E921BB6CD461F5E265 /* PBXContainerItemProxy */; }; - B63E315162188D1ADCDB3B5EE5949ABF /* PBXTargetDependency */ = { + B6C4B4CB45088E288F8285514963FC29 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = B6188822A8A78712424CA19B932100E8 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 67FBEA74D4E3D03958D3FCA81395FE21 /* PBXContainerItemProxy */; }; - B7C8781DC81153F741B88DC751E33D70 /* PBXTargetDependency */ = { + B6DDD633D6E058FF872C4AB56BF6A94C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 7545D1E8732C8A669C329263632A2F9C /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 05809CB8554B96BAD97A2522AA570BAF /* PBXContainerItemProxy */; + }; + B7715B852DC62FE8F8319D58610AF666 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = DAEB0AF2BFDB8B949BE59A274BDCC56A /* PBXContainerItemProxy */; + }; + B78339E02D51AB163680F9AB70C850D1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = A527A444ED21744AF6544777DFE6404E /* PBXContainerItemProxy */; }; B7CA987A1545E9E4D990C621C4B0D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18449,6 +18232,12 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */; }; + B7DC66864CFF7E3C6F48638DCB50FC1B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = B68576AFB6F11BAD9DF77AAAB1786E92 /* PBXContainerItemProxy */; + }; B89D2CB67178C93A2DFF80F628C7A710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -18461,12 +18250,6 @@ target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; targetProxy = 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */; }; - B8C102D9B6AA6F75BCF2289632AC4389 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 6F4298251BA281F74B8663156C4EA0E1 /* PBXContainerItemProxy */; - }; B92630B331C84A01EBE7ECA0D823D9FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -18479,35 +18262,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; + BB07BC469A656E92FFDD70A712BD74DB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = CB9A1514A74BA6B294881C5D49B4BD56 /* PBXContainerItemProxy */; + }; BB0C888F9800A9CBBD7F9AB387D65080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */; }; - BBE49A21A3F20BAB40B4368933595AF5 /* PBXTargetDependency */ = { + BB4DCFB6C5A86475A990A902222068FA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = C2F3CB80CD4B5FF1CC89D31492675B2E /* PBXContainerItemProxy */; - }; - BC06CFE8C40141A78385BC07EDFDD31D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = F961935CF80EBDB232EE3BBE07180D40 /* PBXContainerItemProxy */; - }; - BC10BCFBCDEFBE0E272B0E180A715023 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 8C00AF0CF0FFBD1F03F368E59C0C6E49 /* PBXContainerItemProxy */; - }; - BC7731ECD2164E4A12D67DF7DC7D4C1D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 0A8EB351142067C2AFA6EFE6C8D65E73 /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = AB360A4F54357E0EF27BA1013DA95BD3 /* PBXContainerItemProxy */; }; BD1C2D29B9FAFAFEC379903BBA7FB010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18521,12 +18292,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */; }; - BE4FEED59E491904CE4BD004E767F806 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 709C87ADB203D2D492FF3D76F91A489C /* PBXContainerItemProxy */; - }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -18539,11 +18304,11 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; }; - BFC9B784B74D53143B92D969468BD747 /* PBXTargetDependency */ = { + C00F79824B55940FAFE9B3D84B6925FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 30F5CE6A0AA7FCC1E9DA1213EF8E04CE /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 92C8167A0B1C0CFC5EDCB6A77E82F0CA /* PBXContainerItemProxy */; }; C0B06A5C5229F7876D8CF13D76EADE7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18551,29 +18316,53 @@ target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */; }; + C12D4E28125578C8D6CFC22BC94D4CCF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 067ABF57021EB50D890483D4C8639365 /* PBXContainerItemProxy */; + }; + C1A89407170ABAD72275F4257A4E6C29 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 84FE32A6A58FF4DB1E40B42BF726D712 /* PBXContainerItemProxy */; + }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C29E526B96D9A7BD2F1CABC3556D50A2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 790A470EFDD88EEDCB39C9CD7DC4A0AE /* PBXContainerItemProxy */; - }; - C432B23C7DEA9B18962DF98F9774CF19 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 1E7A4AD5FBA09FE19600612F7B68B50F /* PBXContainerItemProxy */; - }; - C48CABCA14D12DE4A49546003197DA32 /* PBXTargetDependency */ = { + C26CBDDE4CAB427EF39B1E0A29445F62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = C9AB9E31511613E7773ECD99B5BB4A25 /* PBXContainerItemProxy */; + targetProxy = A9689D073775F19CC22FBFBEB8D401B0 /* PBXContainerItemProxy */; + }; + C3D24F865D040DF71B16E6AD8D829752 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = DAE75970E173695ADA1DDFDF7503C0C1 /* PBXContainerItemProxy */; + }; + C40F95791C56584A3A0F9022ED240174 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = E807FCAA63ACCD6E07113B2719C5CE62 /* PBXContainerItemProxy */; + }; + C41265306CD6E13E0B7F645D7E7932BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = A6D422094C74D84634D1485AE974F60A /* PBXContainerItemProxy */; + }; + C49E2561903CBF6010BB03D3EFC9997B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 731D9A76399671E525E2162EEEAED217 /* PBXContainerItemProxy */; }; C5AE41D857959DAFF5E75B0995A21A95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18581,23 +18370,11 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 983AD1895C24585DEA95A1E14A0A74C6 /* PBXContainerItemProxy */; }; - C645BBB39D2B11D5DEFEB49848E58387 /* PBXTargetDependency */ = { + C7624C04249486BA53224BA178FB02A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 864D1D6DAA9D95E786FD868C53C055B9 /* PBXContainerItemProxy */; - }; - C6DF705C8E98ACE10EA9AFBAF6FC756C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 2FE2C35337A08515922901E0BF777825 /* PBXContainerItemProxy */; - }; - C73BD81AD5B197191C1F845DB073580D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 6CFB67BBFCAC8C342352DF567A778A75 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 68D035CB9631197AD6B6FD240C349BBF /* PBXContainerItemProxy */; }; C76A0EE6871933CE34033765BE030A22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18605,6 +18382,12 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */; }; + C80D06C8C164DB4B0C71AE8CF8293E57 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = C48E979E1D0D6C5043ACA61F36400E90 /* PBXContainerItemProxy */; + }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; @@ -18617,12 +18400,6 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */; }; - C8C1050CAA3EA6EDCC1BA1D33EFE0B5B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 03F2CA0672D70BC7FC09B4800D77E422 /* PBXContainerItemProxy */; - }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Fabric; @@ -18635,11 +18412,11 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; - CAE7C2C3BC7D4E545021A3F3C7C16973 /* PBXTargetDependency */ = { + CB0B95B00968F527F167A50BF3CC50EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 1B24397AAA61D5997ED3C946B22A9C7C /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = DD9BC5B98128BCBE02EE7D0F305714A0 /* PBXContainerItemProxy */; }; CB1231450678EB40FF6D52E17793B56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18653,11 +18430,23 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CBFEB75D6A2D0EB64C17DFCC5F511A88 /* PBXTargetDependency */ = { + CC05126F0C1065ABF5FCBF194F96E6DF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 7CF567BF0FF9A2CA68F9268723F55DD6 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 5EA1635A7900F18827B314AB2066E54B /* PBXContainerItemProxy */; + }; + CD521EC9AA470DF8D52414A9D86B966A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = D14EB4032B97D656CD01BDCE3A3390DE /* PBXContainerItemProxy */; + }; + D061A8C7598EF7E5C25B3577648711C9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 5C185361F391575D4DA16E81E17B4A8A /* PBXContainerItemProxy */; }; D0E424AA51C6766027686207E235EA45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18665,35 +18454,17 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */; }; - D1F1057A65FDD43412DCD824E1BE5E0A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = A6C96CD915FAFFA438FE9774216C27FC /* PBXContainerItemProxy */; - }; - D40A6F6B7DF10D9B852BC4314BF5A472 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = E0D98A8909B36864FA2933AEDDD2CF59 /* PBXContainerItemProxy */; - }; D4675DE12C9CE28E7BE2DF3CB5F65EE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 0FBA34E2E29F880F6473E91F3C51B883 /* PBXContainerItemProxy */; }; - D47114DA10295B597ED4E6738B4A0C20 /* PBXTargetDependency */ = { + D52A2DF08888C18361C22D0573BD2330 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 3B1392E067C3E6A9242A6A3D71BAA7CF /* PBXContainerItemProxy */; - }; - D5CE386CDF9F1F4220B5089B9420D09E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 1B79B5551993EED6A2BF0FFD795171BD /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = C205DB80B1CEEF68C92E6343357D7C8A /* PBXContainerItemProxy */; }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18701,17 +18472,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D89FAEABE18B6ABE756BDDD1BD185B5F /* PBXTargetDependency */ = { + D5FAA9F4B29B766332F073BBB1A1C4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = BC0A650988C15F16ACA71087737CD3F4 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 9E36FBA6389A33166DD5FC00876F9356 /* PBXContainerItemProxy */; }; - D9B4CAB98F8EC12018F5950A6F20CEE0 /* PBXTargetDependency */ = { + D660EFB24D0E989EC3878B6A80C74073 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 36FF4ADDD6EB9814501A10DE7E7E4C4F /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 544592DB0AECB2E27F829CE6D6471112 /* PBXContainerItemProxy */; + }; + D77DF2F6419525551C684ABFCC941BA0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 29F3EB3D0DA35A5FE5FDF6DB921A8F6F /* PBXContainerItemProxy */; + }; + D87EE66944A7F9A79793F598AE0E75A7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 66891AB8C01E7C893EB7523B1B22AAA3 /* PBXContainerItemProxy */; }; DA7A7B33C9919FB0F7AAF95AD29445CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18719,12 +18502,6 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = B45BFCA094BB2306A256FB04420598F1 /* PBXContainerItemProxy */; }; - DBAD676559C0DC50198628B865CC67EC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 0A6779856EFD086B16649D182E9E5718 /* PBXContainerItemProxy */; - }; DC365AF9AFF0EED32BE0CC92E8B78C42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -18737,53 +18514,47 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */; }; - DC9A85F49B82B7F22A7803CFA91C8E15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = ED8DF4AF781F646E01339F2EF18E2202 /* PBXContainerItemProxy */; - }; DD42749A0327BDFDE691A4721767F0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */; }; + DDE3CE8D0E4C0B1FA04E5AE8EE3FE08C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 691A3865D64C68C472340C168D9C2400 /* PBXContainerItemProxy */; + }; DE716E784C9BE88B8C21494C695AA318 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 048AC4BFC3DEB50A8114C3826879AEB7 /* PBXContainerItemProxy */; }; + DE797ACFB28FC0B963FF733B116E955A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 3A6CA41075B8D579DF2C7C955B0D73AA /* PBXContainerItemProxy */; + }; + DED18A31CE8FFA059D8013DC4A83DC2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = FDB0917B1E44BD76953F344AF79CA564 /* PBXContainerItemProxy */; + }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - E01C4B9CBE7943187583AB2333D00A63 /* PBXTargetDependency */ = { + E085D10908C31363DF19F89B092482B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = AC929F6DB753F7A5A23136DC8A5AF1F4 /* PBXContainerItemProxy */; - }; - E1B86AB0D1A83A47152A0CE26C8CE3FD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 2B097729BC2B2F4114F1A5FAE154F4C0 /* PBXContainerItemProxy */; - }; - E2244065FA1223A7CF3E4ACB4204C8C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 777A11160F4CB70685296C76EFEE6F3E /* PBXContainerItemProxy */; - }; - E245BA5C1A61D8665824EF1453D40061 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 851BFC34B414575929C9D05C084A883F /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 813B2C49536CDF5D5DCDA2B2CA4D7449 /* PBXContainerItemProxy */; }; E33A6948181332F36C1B948AB5E3D4F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18803,23 +18574,29 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; - E4AF80A841E3E79AEBFE20DFA132C6DB /* PBXTargetDependency */ = { + E49BCA0499071808CE2E54EF6142C206 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 3E7EB2B3FB38137993A296AF74F3CA0B /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 4600504FAD268DBF6C7F7DBEF02F915B /* PBXContainerItemProxy */; }; - E4B2D5B663AD6ACF1AB4497218D26158 /* PBXTargetDependency */ = { + E4AEA850B381ED12406FD7C3CC6568B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 31CE8D75B1A3392204FC1D0E200F8389 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 7B759FB85F7C9C55DF0A284C85720963 /* PBXContainerItemProxy */; }; - E589A3C702755C230943931EDF601D32 /* PBXTargetDependency */ = { + E65E53F03D177003FF0FC9A6757045E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = C6A40FD5CA2BAE47C05F541530D2D070 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 1412D08BDAECA61E636B62B94CE52078 /* PBXContainerItemProxy */; + }; + E68647813534AEA84F5B3998F9B2412C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 4F27147283A7B89EF1C01CEFE599CB7C /* PBXContainerItemProxy */; }; E6C446C9931D7EE8FED9B58FE9C9ADB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18833,23 +18610,29 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4FF10556B9B41D07EFAC6AA420559421 /* PBXContainerItemProxy */; }; - E8E63875698973CAEDECA472AF8745D4 /* PBXTargetDependency */ = { + E9713E0C2EF9361BBA3F3638CBFBC42B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = 9A0FD7307742DE0CDECD4DBA15DA10B5 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 0E5E035BD27C0F412A58C52F51728C4A /* PBXContainerItemProxy */; }; - EA1DF9AF1605D69A9E493475043FCE93 /* PBXTargetDependency */ = { + E9F9774A86E3EA9DE3A787ADE2283D82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 50D43378AB82F90A88B706CDDC8BB391 /* PBXContainerItemProxy */; + name = EXAppLoaderProvider; + target = 2B8C13513C1F6D610976B0C8F4402EC1 /* EXAppLoaderProvider */; + targetProxy = 6C49B5F5AB63668362CD24681ABECAEE /* PBXContainerItemProxy */; }; - EACC3444C67E4E4BAE806BD1CA1FEA92 /* PBXTargetDependency */ = { + EA0647086E3C2259F3D70F575ABD2D9B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = E60B916218717C921E5F11253059C7AD /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = CC390744717882FAF013326AE2225D8D /* PBXContainerItemProxy */; + }; + EA2D5C8BA9DECD94123730A7BFD17034 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 9FEB6FFD475ADDB7C8F4320897A09299 /* PBXContainerItemProxy */; }; EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18857,6 +18640,18 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */; }; + ECE1FF9044F320FD194A1576E718F572 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = ACC1286B8334CEC95ACD1C3ABFB49E22 /* PBXContainerItemProxy */; + }; + EDD8CC53627AD66D16BA254C1F269243 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 8E4A3D572F553CEC53BF18485A903A9B /* PBXContainerItemProxy */; + }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -18869,17 +18664,23 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */; }; - EF30B4A3FC48ED30F7586BD600A8A42D /* PBXTargetDependency */ = { + EED4A172A1DEA09379AF8CC61A9B7F6A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = 909FB4CB16E83CBC6C773C2E99E03EBD /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = FF05F025FB43CF1DC5992E8D006B331D /* PBXContainerItemProxy */; }; - EF466E2FD91422D5A18060901D88CA1B /* PBXTargetDependency */ = { + F087BB51BD7174866021F9A779AC0111 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = EBC7518B544F41E7D3EC6B04FD721254 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 3D2DFABD549FE6DC08A09E656D411E71 /* PBXContainerItemProxy */; + }; + F0B1B660D06D4D4A9B9AEC88F14E79A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 3B37B34459C2896DAD51825CA8814EBC /* PBXContainerItemProxy */; }; F13EA7DAE7A846C572332EFD93580166 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18893,11 +18694,11 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */; }; - F1CA1792136DD775A53CEF6F23916B03 /* PBXTargetDependency */ = { + F2494CCC4AE2E8BFFFA15C59FFE35DCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppLoaderProvider; - target = 2B8C13513C1F6D610976B0C8F4402EC1 /* EXAppLoaderProvider */; - targetProxy = 7946027880C17CF9583C761D484F3230 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 71636DF82DE06D5DC5E3003E6877EC08 /* PBXContainerItemProxy */; }; F25EE5C729FC3245E37C095E9683A3AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18905,11 +18706,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C737ED823B86A2EB5AE9F688BEE3FDCE /* PBXContainerItemProxy */; }; - F33E52A0DF2608BBA4A19CF78D334846 /* PBXTargetDependency */ = { + F3BD3856770F23EA5B1D00AAC53410B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 1E6145CFB733B7389B3BA81B9496EE61 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = B28EF074B302B6A2D8F38DED8CEF9B05 /* PBXContainerItemProxy */; }; F40AEEAA637FAD62AA68E398038D3782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18917,11 +18718,11 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */; }; - F42665ED8C85B74A93D863E06C36BF6E /* PBXTargetDependency */ = { + F47A9830DBC43FDC0316F1E8F18D8FF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = FAA688893F6F7C79DA3E8120E591ED84 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = AD38898AC452DBA3DE9FE7EA27BCFF9B /* PBXContainerItemProxy */; }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18941,17 +18742,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */; }; - F86CF3781044024C68C1E550DB327E62 /* PBXTargetDependency */ = { + F8E91D828C182A916A866B922755EA47 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 43D3ABCC883084F535FB4C94AE270B17 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = D781C1652968935BF4F42491DC466AFB /* PBXContainerItemProxy */; }; - FA90323DAAFA4AACED76974DE4121292 /* PBXTargetDependency */ = { + F92B371906C6236DB646DF8E124B4B40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 0D42E46EADA1B8AF308F3DA9477ECF42 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 40F1C01F63CD3B0F6E7DFA620AB8DBEA /* PBXContainerItemProxy */; }; FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18959,11 +18760,17 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */; }; - FBF0F88B7864CB2A75B21D13E7FC04D9 /* PBXTargetDependency */ = { + FBADAE667705F13EC81990A4F1E983A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 5133F757B57EAC5EB436A3997C0C2D4E /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 0406A95038221EF8583EC3F1E240DE0E /* PBXContainerItemProxy */; + }; + FC0B043F9A61A40CEC8105993D640C00 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = AC8F1A49C5EFA6AED6CD03F6A8510E5A /* PBXContainerItemProxy */; }; FEE4267D512CD5EAA1C9FF46F88ED492 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18974,9 +18781,32 @@ /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ + 00429919963B9F6702F9050496BCE050 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 49A51F5FBBCFD3F02638D5838DF22338 /* 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; + }; 00718DA2EF2C79DDC75597E5CCB5F43B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1262B5E77305E75F6C30EAA6032AD699 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 314047BB0B970D4EBAD862DE50898BF6 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19026,7 +18856,7 @@ }; 0099D41EC358F8EDE289C7A138DD58E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 10890E9947EA5BDF4FA0F61021BE331F /* UMCore.xcconfig */; + baseConfigurationReference = 5FFE412BBCB497A02653CCEF6E3B6E83 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19079,7 +18909,7 @@ }; 024274BA705D432C4A7E56971B76D5C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77156F8F966471CD2FB751F90464C421 /* KeyCommands.xcconfig */; + baseConfigurationReference = 4FD55DCA0DD250489F0D0FD30F73B3AB /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19105,7 +18935,7 @@ }; 02590A2E54E292E4B163CC19E59F2F78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E1E1D08D52095E3F1AA160EA39A591A /* react-native-appearance.xcconfig */; + baseConfigurationReference = 7C9DE44693E482B5752DD2CE36304E71 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19145,7 +18975,7 @@ }; 04B503C5ABE2C215E884B32B4647C2FF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A5EEF4D9C31B72D39D28A48FC1DC2F5 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 7144E3AFCB64F4D003E906316D3E2F93 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19175,7 +19005,7 @@ }; 06BC0A8E01BE9D8AA3FB15051DD205D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B3DF4F93DB36B32D91549C6ABADDB132 /* React.xcconfig */; + baseConfigurationReference = 3203079066E7FCC33FC1DD60C01A38A6 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19189,7 +19019,7 @@ }; 07503BE4DBA728321A66841DFD7B509C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E1E1D08D52095E3F1AA160EA39A591A /* react-native-appearance.xcconfig */; + baseConfigurationReference = 7C9DE44693E482B5752DD2CE36304E71 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19213,32 +19043,9 @@ }; name = Release; }; - 082314B40061447902402103BE02D36E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B5D32CE02F68EE345F9101FFAF7E3476 /* 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; - }; 0A5C3272020B713D7C5769D443274095 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FEE17FF191607545AB35410F4FC71A32 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 8DD751932D7C7B69540AA41E52642326 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19264,7 +19071,7 @@ }; 0B4C266D7201BE42578B00130B939087 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1262B5E77305E75F6C30EAA6032AD699 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 314047BB0B970D4EBAD862DE50898BF6 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19315,7 +19122,7 @@ }; 0D109765BE2DFCFF45B839D6331198AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89EE7CA4B88EDCF9C446BA9DFCB904F0 /* EXAV.xcconfig */; + baseConfigurationReference = 76C856BACD70EF40DF17EDFB42E4D79A /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19341,7 +19148,7 @@ }; 0EC3A23A31F25E370EFBA1F1586B2011 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 441A7D7E0BA21052E87E4AE003FC4562 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 5874B2F6DA9A577BFC6A5D16E5A4CAB4 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19380,7 +19187,7 @@ }; 0FFE4A7E6463DF8D2BF607C001EF26C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3E37DEA736B7624538DEF328612A34EE /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 3D6B737432CBA54A89E0AEFA22DF0FBF /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19406,7 +19213,7 @@ }; 107A38331BA622EFD23AA607C2765C98 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CAC46DBE9FF571BF7244115D067D58EC /* EXPermissions.xcconfig */; + baseConfigurationReference = C906F0BE4914661A27CA98A44C69709D /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19432,7 +19239,7 @@ }; 12FAC84E34D27F50918DC68E37434C4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D051CE3F548B77940F8E4B0E54D0A708 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 22B0E2535684B7CC51D81DE7C573FDC8 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19459,7 +19266,7 @@ }; 15D0C18A330E8C97064F66C89AE92075 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89EE7CA4B88EDCF9C446BA9DFCB904F0 /* EXAV.xcconfig */; + baseConfigurationReference = 76C856BACD70EF40DF17EDFB42E4D79A /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19549,7 +19356,7 @@ }; 17ADCC17D6FBAC88D3849258BEE3E4D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D42AF835132B8F359967AB88C1CF8EB /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 6193C4CF848277CEABC0376D78E333C0 /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19639,7 +19446,7 @@ }; 1A149D092E2CFC6DDCD8E48A2155676C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE07A41A7E2BE53BFC6B0863EDD5137C /* React-cxxreact.xcconfig */; + baseConfigurationReference = EEDD3484BBBBBC29B4DF89842114A0CD /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19690,7 +19497,7 @@ }; 1BBF1FC67203BE8FFEF02CD562A0ABB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 226FCB055213BA46EF8147CC03F0313B /* React-RCTSettings.xcconfig */; + baseConfigurationReference = B5744E663AF4BCC3C10EDBCE112BAAF2 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19730,7 +19537,7 @@ }; 21B20C7A656B8B26606666450F233202 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD0FE9AEC71E72BBA5EDC48C7AD1A511 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 038A80AF4541A3218A844236F86DCA0A /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19755,7 +19562,7 @@ }; 23C6C4DC319C746B0FB2B500A5F11865 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0BD893EC03B684D4C3C45FECB2D8F98F /* react-native-notifications.xcconfig */; + baseConfigurationReference = 2E7C00BA69A1BF912A5E0A5119A9DCA0 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19795,7 +19602,7 @@ }; 244CAA427CEE1963C66E8F160A2D7C44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 226FCB055213BA46EF8147CC03F0313B /* React-RCTSettings.xcconfig */; + baseConfigurationReference = B5744E663AF4BCC3C10EDBCE112BAAF2 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19821,7 +19628,7 @@ }; 26551564308AC8D658D695032AA5AE58 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11A2F396A66ACC1494569521055463C5 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = CD4CF130DEB1168BE11420CFE58B6081 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19847,7 +19654,7 @@ }; 2703B7272D54F6883D4FB415677DB5D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CEF4AFFEF71DC700182A251F237CCCC /* React-RCTBlob.xcconfig */; + baseConfigurationReference = D8EF6DABD23F578542E2D20B74D3D64E /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19872,7 +19679,7 @@ }; 27BCC9CA860F306C015533FEE3107CCD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB93BB2CD1410819A6FEEBB03477DAE8 /* RNRootView.xcconfig */; + baseConfigurationReference = 5948590484661ED346810957D895644F /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19898,7 +19705,7 @@ }; 28D56E215E53845903676C02E9E657A4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B3DF4F93DB36B32D91549C6ABADDB132 /* React.xcconfig */; + baseConfigurationReference = 3203079066E7FCC33FC1DD60C01A38A6 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19913,7 +19720,7 @@ }; 2953790EFB1BD8A9E78C65D8FCEEACFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD8B1EA2CDA612644CBF7C60CE5A76C6 /* EXConstants.xcconfig */; + baseConfigurationReference = 6E6B0505508C8CF75EF9825686A24B8C /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19940,7 +19747,7 @@ }; 2A5E7696D7993201DAD047C1A0D2C4E3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 079D9854C6095ABD1C6BD151B14AC57C /* RNBootSplash.xcconfig */; + baseConfigurationReference = FEF047CCA856CD7D026EF5EBB71079CA /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19963,9 +19770,32 @@ }; name = Debug; }; + 2A85ED336D8A1314757D9059755128C0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B5D32CE02F68EE345F9101FFAF7E3476 /* 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; + }; 2AF938D92353FFD31BE3DB678B15377C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5CEE7A85BBF78894CD063886D710B60C /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 9259D6124279E8C709FDF24A7DBEAB57 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19990,7 +19820,7 @@ }; 2B272C4CE6BEAA0B9E0AA72279542905 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 338D816078F73FF9542DDDBAED875FC2 /* React-Core.xcconfig */; + baseConfigurationReference = C569548911D21A9C02AB7628D7CB4D4D /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20015,7 +19845,7 @@ }; 2BE44409CF53F7716718039FCCF13617 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 64F050E38604CBA15A49D6322C1171C6 /* react-native-webview.xcconfig */; + baseConfigurationReference = 28CDC08B6B4BBC47ED4C4C5B83A9988C /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20109,7 +19939,7 @@ }; 34F3BB3A9EA6790A534F9E5EF2254D12 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 882E9C8F4668EAE72A264FA716EFE3F2 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 23E2E604813E0A83C42F4CDDFD52CD96 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20134,7 +19964,7 @@ }; 371989D182BF95DFA0EC5239D0C21ADD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F0027FFFA10DB9DCD0A6F3347CF8702 /* RNReanimated.xcconfig */; + baseConfigurationReference = F8E743FFD85E2C107F52420EAD130F95 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20159,7 +19989,7 @@ }; 37E163221C1422D15853A75EC40F1ADE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7AD7320F2AEFFAC745ECA1D9F9D55A8C /* RNLocalize.xcconfig */; + baseConfigurationReference = 47B932A1E353FC65AD3F13D732A9DBD6 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20184,7 +20014,7 @@ }; 39788C2E5025D81B1F56F4F62015EC56 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 517E4B852FCF3D05CBE6ACFB7CF0123B /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 04C3B1DD186B53182C077DA48835BE9E /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20237,7 +20067,7 @@ }; 3C2209A72B905CEDAC16D43E4DA43012 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CAC46DBE9FF571BF7244115D067D58EC /* EXPermissions.xcconfig */; + baseConfigurationReference = C906F0BE4914661A27CA98A44C69709D /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20264,7 +20094,7 @@ }; 412737804873ADD8C2E2F340ABFF6718 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7143F0C8CD1D20E78773B0216488F18D /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 91B19BCC8E0A96C2AF91B1DC3DD55BD3 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20289,7 +20119,7 @@ }; 42944898C766E1F58CF1D114D908DF7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 882E9C8F4668EAE72A264FA716EFE3F2 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 23E2E604813E0A83C42F4CDDFD52CD96 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20307,7 +20137,7 @@ }; 455A8CE12E5E915C83AB73A3C62F3F68 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0BD893EC03B684D4C3C45FECB2D8F98F /* react-native-notifications.xcconfig */; + baseConfigurationReference = 2E7C00BA69A1BF912A5E0A5119A9DCA0 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20356,9 +20186,33 @@ }; name = Release; }; + 4959F652AE0B95F2094898AC808A51F7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A9916A69A97251C8AA9535F6F70AE9DB /* 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; + }; 499E8F90EC6439418D63F128B5D6DCD1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0506043E5C6B80ACD82C3F27165D3ABD /* ReactCommon.xcconfig */; + baseConfigurationReference = 4E08927F1B4152793720308645B87189 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20384,7 +20238,7 @@ }; 4C88F3DB03A9D5244D6399F2531E7EFA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9174D5E115C1B05B5CB34E7BA461B452 /* RNFirebase.xcconfig */; + baseConfigurationReference = B4D0C66DF0FB8536973108AC7E4F6636 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20409,7 +20263,7 @@ }; 4EF961C835B566D4EFB3AFE039C623B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9178FDFA5A52874BF5724CB2AB964C5B /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = A585D00A6F08EC44BADDCC044335DDDD /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20425,7 +20279,7 @@ }; 5021E076026902F8042B602ED2AB1FDD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D42AF835132B8F359967AB88C1CF8EB /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 6193C4CF848277CEABC0376D78E333C0 /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20450,7 +20304,7 @@ }; 521E903B734D3E2B9720D043ACC4F421 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5A748EE26C98D9E0EFD4F248FC2C8D02 /* RNAudio.xcconfig */; + baseConfigurationReference = D7442488D44347FE3864D6299F3467B8 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20475,7 +20329,7 @@ }; 531DF162FE7827B65B86953D3626930F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 882E9C8F4668EAE72A264FA716EFE3F2 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 23E2E604813E0A83C42F4CDDFD52CD96 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20491,30 +20345,6 @@ }; name = Release; }; - 56F0F2ACAD6FD2F934097C2504AAFD4E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A9916A69A97251C8AA9535F6F70AE9DB /* 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; - }; 573066A03184765DFD3708A843AF9A7F /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 8A126C06795FE746C9901F5ED989C79D /* FirebaseInstanceID.xcconfig */; @@ -20541,7 +20371,7 @@ }; 5869D54D3A851396E2E6C856D06E7E60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3A0DF83220F1B3829DBA4156BBB386E7 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 657975F7B4BE548D53BA70808D19A6FD /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20581,7 +20411,7 @@ }; 596CD7959D539F7F649544D11CD4713F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8739EC73C0AA1B43B9231E9727AB3D8F /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 37A4470DB7E5D6A62D784504743D0D14 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20607,7 +20437,7 @@ }; 5A8324EA210DF55F87E0DF91047C3A4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 882E9C8F4668EAE72A264FA716EFE3F2 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 23E2E604813E0A83C42F4CDDFD52CD96 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20633,7 +20463,7 @@ }; 5C0B9265CAB0D9CD227A92F72C06CC20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C830DA96237FF0F27DC906DD364FC1BD /* React-RCTVibration.xcconfig */; + baseConfigurationReference = FC4D27A8EB8B619DEBDF92E49F64CE59 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20659,7 +20489,7 @@ }; 5DC883AB0B0414AD48BB3AB4F3269D66 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CCA71000CC3B0C0CF5C98C7BAAFA706 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 785B97657BD4FDDF174BDB148FC496E9 /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20675,7 +20505,7 @@ }; 5DDAA8C3F7FCC062776754B1F3B95D1E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FEE17FF191607545AB35410F4FC71A32 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 8DD751932D7C7B69540AA41E52642326 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20741,7 +20571,7 @@ }; 5E7869770EA6F89BE71AB5A82A8747EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE07A41A7E2BE53BFC6B0863EDD5137C /* React-cxxreact.xcconfig */; + baseConfigurationReference = EEDD3484BBBBBC29B4DF89842114A0CD /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20766,7 +20596,7 @@ }; 60EC64E5B79C5F949116BD34130957D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EDF366CD72859BE99653A7517F199B6D /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 33083449842A3D535CFD8872E4DD77F8 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20792,7 +20622,7 @@ }; 6513D57E09C36B05CF916F7E8A662077 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B403A7E880375608506A45DE05EC20B /* EXFileSystem.xcconfig */; + baseConfigurationReference = AF8CDB3234290BED94BE4557F5886530 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20819,7 +20649,7 @@ }; 65177BF401CF3D4E9EAACC190BD37AC3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9174D5E115C1B05B5CB34E7BA461B452 /* RNFirebase.xcconfig */; + baseConfigurationReference = B4D0C66DF0FB8536973108AC7E4F6636 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20845,7 +20675,7 @@ }; 65EB1A7A5D1465B289935D8C2F1BBD30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45B1E5153BFC16DE9111B4152514C7A2 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 35BD743B7EC13A647309F11CDE0BF4B3 /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20861,7 +20691,7 @@ }; 664E5CB9279DF965C75A308E4C19DE1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 64F050E38604CBA15A49D6322C1171C6 /* react-native-webview.xcconfig */; + baseConfigurationReference = 28CDC08B6B4BBC47ED4C4C5B83A9988C /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20886,7 +20716,7 @@ }; 66B5F5845EEB10E57A3A46D451238559 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E74648815DF469E32BC60D459AC2BAA3 /* React-RCTText.xcconfig */; + baseConfigurationReference = B0F6C3A54D39DD74B9F4CC6074F892FD /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20911,7 +20741,7 @@ }; 677C55C5482A68F862361238F7F8E2D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E855FCF102DC5906560617510B8CD083 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 2E985151BC5A1D14982E940CFB852708 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20936,7 +20766,7 @@ }; 68862420C9D14D6D543E26A3029DA27D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E74648815DF469E32BC60D459AC2BAA3 /* React-RCTText.xcconfig */; + baseConfigurationReference = B0F6C3A54D39DD74B9F4CC6074F892FD /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20988,7 +20818,7 @@ }; 69C2BA4F9009FED344405012652F51CA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E855FCF102DC5906560617510B8CD083 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 2E985151BC5A1D14982E940CFB852708 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21014,7 +20844,7 @@ }; 6A441642FC3FFE19200089E9B23E8FF7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F0027FFFA10DB9DCD0A6F3347CF8702 /* RNReanimated.xcconfig */; + baseConfigurationReference = F8E743FFD85E2C107F52420EAD130F95 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21040,7 +20870,7 @@ }; 6BCF1CCFC9C90ED9DE69A10FDE40B529 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC8DAF60DBAAAE08BB977674B94A8589 /* UMFontInterface.xcconfig */; + baseConfigurationReference = C7CE6D83A542AFECC1A89C528D5F880C /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21055,7 +20885,7 @@ }; 6DB18DF4D7CB92ACF500AA4CB91574EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 02AEAB2464ED470DD8B2BED39CE7D233 /* React-CoreModules.xcconfig */; + baseConfigurationReference = C8FA6653516966570CD5E109475D8D85 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21080,7 +20910,7 @@ }; 6DD833DF82AD945EAC590428925265F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F768D9E00785D6BB9E2DC2D13336CE0 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 73ADFAB63097DFC4C3025654ED38A35C /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21130,7 +20960,7 @@ }; 71909F570922582EB29779D954A7655F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F4C6E57AC99298022B09CF2374E728E /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = CAF6DF8DAE53574A10DEFC9B56B1584D /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21156,7 +20986,7 @@ }; 72C0F38FC6842701424DB20D290EE53C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5A748EE26C98D9E0EFD4F248FC2C8D02 /* RNAudio.xcconfig */; + baseConfigurationReference = D7442488D44347FE3864D6299F3467B8 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21206,7 +21036,7 @@ }; 737D073839062785B358E9BE4DD325CA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 517E4B852FCF3D05CBE6ACFB7CF0123B /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 04C3B1DD186B53182C077DA48835BE9E /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21256,7 +21086,7 @@ }; 7452D595EDF76721ACCD09888C4300EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F4C6E57AC99298022B09CF2374E728E /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = CAF6DF8DAE53574A10DEFC9B56B1584D /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21281,7 +21111,7 @@ }; 745584283E329E8703A11278C5FD98AA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4FEB90EF485C158605741A8808C02EFF /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 59BAF3A23CAA66E951CAF91ECA82D36E /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21306,7 +21136,7 @@ }; 76100320E21D42374BB0F0BD2DD157C1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EFC95FBCDBB6142B436FA9581338BFD5 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 41B32C718B311430215CF7605174A6DC /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21321,7 +21151,7 @@ }; 76BE7F8726B152972329F09707F0ACD9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 10890E9947EA5BDF4FA0F61021BE331F /* UMCore.xcconfig */; + baseConfigurationReference = 5FFE412BBCB497A02653CCEF6E3B6E83 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21347,7 +21177,7 @@ }; 779B1B52B5C8BD4D67CE2B7E314D68A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3E37DEA736B7624538DEF328612A34EE /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 3D6B737432CBA54A89E0AEFA22DF0FBF /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21372,7 +21202,7 @@ }; 79A0890C0FF0EE7CE7DDB7CF814436E7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F768D9E00785D6BB9E2DC2D13336CE0 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 73ADFAB63097DFC4C3025654ED38A35C /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21398,7 +21228,7 @@ }; 79B3E0F885BF8B866097919EC7654A4B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9178FDFA5A52874BF5724CB2AB964C5B /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = A585D00A6F08EC44BADDCC044335DDDD /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21427,7 +21257,7 @@ }; 7BC8ECF42B51502BDEC0C678012395A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 67C719EB33E2B62BE893CB8EFC2064FF /* React-RCTImage.xcconfig */; + baseConfigurationReference = 254D39F8195B37A3224A2EA960FA0D26 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21453,7 +21283,7 @@ }; 7ED2663CADBE5D8B55630D2A2DBE74FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53441B3DCB5B9E117FAFCF7CE71424E0 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 32D2268A5D462DFB4C6F2459EAFDD6BB /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21467,33 +21297,9 @@ }; name = Release; }; - 80DF7974715E39BCD1E5F75815B96F76 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 527CD81DF520880893DE8021CD41E619 /* 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; - }; 82E853AAD06F4C932AAEAEA9A8AE1EB4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EAC930ED045E8B5E77D1C890D820095 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 4B937D46CDC5241DE90CEAC1441A346E /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21518,7 +21324,7 @@ }; 83397D6AC147BB15D1360B863354BE6E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9CE00B5CE44E78B47E746CCA313CBA0 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 60F27F0D9825020A92FCB19B3C1C90EF /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21544,7 +21350,7 @@ }; 83B8667023CCABE7930FECF4308F42C1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 079D9854C6095ABD1C6BD151B14AC57C /* RNBootSplash.xcconfig */; + baseConfigurationReference = FEF047CCA856CD7D026EF5EBB71079CA /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21570,7 +21376,7 @@ }; 83D51B373BC655474060B7059374A055 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE06FAF60C7586CDF0EBB38218A8E5B0 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = DE1E5E9D94FBB83D71200FE3F701AFC9 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21586,7 +21392,7 @@ }; 85F758BB2896EF75F72B6F2A77364175 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7437E080DBD8540D545B371A38CDE34 /* EXHaptics.xcconfig */; + baseConfigurationReference = F4838FE647AA9468A2991304694C8C67 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21638,7 +21444,7 @@ }; 88FCAFE7B06BCEC0AC4CA29D98C90803 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EDF366CD72859BE99653A7517F199B6D /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 33083449842A3D535CFD8872E4DD77F8 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21688,7 +21494,7 @@ }; 911D20316B507B8E73EBD2ADE090E8EA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 720AD59BC6F7F0728F7989ABCF9D1B16 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 3670E524463206499BB086DC52038A62 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21713,7 +21519,7 @@ }; 917A20C7C8D878581AC4A8285097017A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9B6A539690F8003219B15082B9B25C7 /* Yoga.xcconfig */; + baseConfigurationReference = 27341596529135D5692B7B7327999DD0 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21739,7 +21545,7 @@ }; 921CB93956632503338319DD71FF15A5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 777F3D8575340CBFA5E8A0F800F17DDF /* RNFastImage.xcconfig */; + baseConfigurationReference = 6D4D16EF9A9FA6A4DA66570F44B05F69 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21764,7 +21570,7 @@ }; 932715893B5D8A998947BDF948EDEA0F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE06FAF60C7586CDF0EBB38218A8E5B0 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = DE1E5E9D94FBB83D71200FE3F701AFC9 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21779,7 +21585,7 @@ }; 9379E6366D9E11C636D1E54575E216EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EAC930ED045E8B5E77D1C890D820095 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 4B937D46CDC5241DE90CEAC1441A346E /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21803,9 +21609,33 @@ }; name = Release; }; + 944729149362CF0C193245F61DE495CD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 527CD81DF520880893DE8021CD41E619 /* 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; + }; 94E3653223086209F995373532C8F7EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 72188C17FE197C7A31B4E11CB885F50D /* React-jsi.xcconfig */; + baseConfigurationReference = 9911B80A8D09E2F33BC9BB61FF4F6D3E /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21830,7 +21660,7 @@ }; 9798DF63F7267FE1AD56F263EADD5B6A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABBF666395B823EE55B5DA692E6E3421 /* RNScreens.xcconfig */; + baseConfigurationReference = 4F4EF7F276E9C28AFE4C8B18E83D15BB /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21855,7 +21685,7 @@ }; 98D1BE1C631327534141623ED69DFAB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B403A7E880375608506A45DE05EC20B /* EXFileSystem.xcconfig */; + baseConfigurationReference = AF8CDB3234290BED94BE4557F5886530 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21881,7 +21711,7 @@ }; 9A3174FDB1F4445ADEA8F35751AD8207 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 56507E226A67C4F068E52F755465710B /* React-jsinspector.xcconfig */; + baseConfigurationReference = B929AB3C407B90BACE4B5420E0D21534 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21904,35 +21734,9 @@ }; name = Debug; }; - 9B80322166315DE06CF92ECB3BE31E88 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8E83DC189FC3B7A9E583BCE303D1EE63 /* 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; - }; 9CAE17F3AEAA92514573A6AFC28F58F8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45B1E5153BFC16DE9111B4152514C7A2 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 35BD743B7EC13A647309F11CDE0BF4B3 /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21947,7 +21751,7 @@ }; 9D25004EDED3EA338107FA6F993E40BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CEF4AFFEF71DC700182A251F237CCCC /* React-RCTBlob.xcconfig */; + baseConfigurationReference = D8EF6DABD23F578542E2D20B74D3D64E /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21988,7 +21792,7 @@ }; 9D7C7C3A1425C18171275C2A383FA8CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE4F6A837ACAFDF071968B59BBF37B73 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = F04CB905DFD3B94F1F3F521BAD78ACF9 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22013,7 +21817,7 @@ }; 9EACAE2DF1FB29D6CD5849750D0E945D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 777F3D8575340CBFA5E8A0F800F17DDF /* RNFastImage.xcconfig */; + baseConfigurationReference = 6D4D16EF9A9FA6A4DA66570F44B05F69 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22039,7 +21843,7 @@ }; 9F252DECF660AD99C57FE172DC3377CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77156F8F966471CD2FB751F90464C421 /* KeyCommands.xcconfig */; + baseConfigurationReference = 4FD55DCA0DD250489F0D0FD30F73B3AB /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22064,7 +21868,7 @@ }; 9FF84870B7F6FDF9150FDD60E6D57C4F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7143F0C8CD1D20E78773B0216488F18D /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 91B19BCC8E0A96C2AF91B1DC3DD55BD3 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22090,7 +21894,7 @@ }; A071A0C7DF65F1D9E326DD3CE2DE8C9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0506043E5C6B80ACD82C3F27165D3ABD /* ReactCommon.xcconfig */; + baseConfigurationReference = 4E08927F1B4152793720308645B87189 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22115,7 +21919,7 @@ }; A0CE7427B29B950D5C3D9D14D5F0956F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CCA71000CC3B0C0CF5C98C7BAAFA706 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 785B97657BD4FDDF174BDB148FC496E9 /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22130,7 +21934,7 @@ }; A2194A79914B5CC215FA2FF1CF8CFCF8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 720AD59BC6F7F0728F7989ABCF9D1B16 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 3670E524463206499BB086DC52038A62 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22156,7 +21960,7 @@ }; AA08A4CFB27E8D0764FB1F3E7659D277 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD0FE9AEC71E72BBA5EDC48C7AD1A511 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 038A80AF4541A3218A844236F86DCA0A /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22182,7 +21986,7 @@ }; AA3C608C1EFBFF6195298DABF3846DE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53441B3DCB5B9E117FAFCF7CE71424E0 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 32D2268A5D462DFB4C6F2459EAFDD6BB /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22197,7 +22001,7 @@ }; AC7D788F43301FFAEDED241C7A7099A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 67C719EB33E2B62BE893CB8EFC2064FF /* React-RCTImage.xcconfig */; + baseConfigurationReference = 254D39F8195B37A3224A2EA960FA0D26 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22222,7 +22026,7 @@ }; AEE4C1B4604FAAC1DEA8D5FF30CD56C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11A2F396A66ACC1494569521055463C5 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = CD4CF130DEB1168BE11420CFE58B6081 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22247,7 +22051,7 @@ }; B006F308D2A947732D25BF32E328BD7C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CB8BA9740E480CD8BFB467DB0901F58 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = BCA6D798952261C230B8842DB9F4AAFD /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22337,7 +22141,7 @@ }; B1B7713286195D091EC5BC6F27BD5581 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1BC240C9C25F80D8681D0EEC22B07F84 /* ReactNativeART.xcconfig */; + baseConfigurationReference = DF5D27AD14A1991632E190090036255B /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22362,7 +22166,7 @@ }; B4E87D0668029199CD617DB2DDE97D86 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB1BE5978B196C0A8829D5BB8DDF3138 /* react-native-slider.xcconfig */; + baseConfigurationReference = A2EB051A29B35EC96FFE889FC5CCC558 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22388,7 +22192,7 @@ }; B74A66D1B4DB325F337289BC6923B612 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD3B18274C7390B7F392369B851990AD /* RCTRequired.xcconfig */; + baseConfigurationReference = AAC46B5086C5C013D36C6FBF9DDFAC19 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22451,32 +22255,9 @@ }; name = Debug; }; - B8D056209867B8F1F809A098C1072662 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 49A51F5FBBCFD3F02638D5838DF22338 /* 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; - }; B93AD636A7701AACBF5C0DEB8249D15D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1079B8B6C30DFB82CE00FBEE2735966C /* React-RCTLinking.xcconfig */; + baseConfigurationReference = DA27D82F20D6A185B593444261C58617 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22502,7 +22283,7 @@ }; BD044681D243E0E09FBA04ACF21FA123 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABBF666395B823EE55B5DA692E6E3421 /* RNScreens.xcconfig */; + baseConfigurationReference = 4F4EF7F276E9C28AFE4C8B18E83D15BB /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22528,7 +22309,7 @@ }; BE5AE6E1F2B58CFF3217A86780F6336C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EFC95FBCDBB6142B436FA9581338BFD5 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 41B32C718B311430215CF7605174A6DC /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22544,7 +22325,7 @@ }; BF89345BE7A481AA4055FF310B7F3956 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7AD7320F2AEFFAC745ECA1D9F9D55A8C /* RNLocalize.xcconfig */; + baseConfigurationReference = 47B932A1E353FC65AD3F13D732A9DBD6 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22570,7 +22351,7 @@ }; BFB2316A669B0D479BA6634A0904B083 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 024208975464F176E11129E3151BAB2F /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 26EED0C32A6841FD93F64269146D86F7 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22596,7 +22377,7 @@ }; C128C18739AA9067D388429C13824733 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 441A7D7E0BA21052E87E4AE003FC4562 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 5874B2F6DA9A577BFC6A5D16E5A4CAB4 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22611,7 +22392,7 @@ }; C1413F798E37FBF0F0B0CBF49398107C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD8B1EA2CDA612644CBF7C60CE5A76C6 /* EXConstants.xcconfig */; + baseConfigurationReference = 6E6B0505508C8CF75EF9825686A24B8C /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22637,7 +22418,7 @@ }; C675F1101EC56FF48D0EAAF987511073 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8739EC73C0AA1B43B9231E9727AB3D8F /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 37A4470DB7E5D6A62D784504743D0D14 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22662,7 +22443,7 @@ }; C68F8BE3073459D980E297CA1951C3DB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 024208975464F176E11129E3151BAB2F /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 26EED0C32A6841FD93F64269146D86F7 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22687,7 +22468,7 @@ }; C9AD4422D1F772604AC286D0A6DF4189 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06BDE908A3E04767FA0717BD6D74A719 /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 54F996004D749A8C4E92E03115DB9971 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22713,7 +22494,7 @@ }; C9E113D47DEE6500FA656727AD637A71 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB93BB2CD1410819A6FEEBB03477DAE8 /* RNRootView.xcconfig */; + baseConfigurationReference = 5948590484661ED346810957D895644F /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22738,7 +22519,7 @@ }; CBAC48129BCC71255BE1413BD06DFB43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4FEB90EF485C158605741A8808C02EFF /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 59BAF3A23CAA66E951CAF91ECA82D36E /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22764,7 +22545,7 @@ }; CD26F4BEB83F26811BF1081A76FAA47F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06BDE908A3E04767FA0717BD6D74A719 /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 54F996004D749A8C4E92E03115DB9971 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22789,7 +22570,7 @@ }; D04F94085B40D8D4779EBFD0F4383CA8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 338D816078F73FF9542DDDBAED875FC2 /* React-Core.xcconfig */; + baseConfigurationReference = C569548911D21A9C02AB7628D7CB4D4D /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22815,7 +22596,7 @@ }; D17FDDE9E8075FCA5001DB700CFDC7EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 02AEAB2464ED470DD8B2BED39CE7D233 /* React-CoreModules.xcconfig */; + baseConfigurationReference = C8FA6653516966570CD5E109475D8D85 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22841,7 +22622,7 @@ }; D2A71B68B86874314BDCFFB39ACE9B3B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A5EEF4D9C31B72D39D28A48FC1DC2F5 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 7144E3AFCB64F4D003E906316D3E2F93 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22857,7 +22638,7 @@ }; D338DBE12EAEC66131F53EE4259FD4E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77E2440A40504F1323D79249850E600B /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 23566E6F78D76EF7DB7F33316861017C /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22927,7 +22708,7 @@ }; D59C3B7BE5D98BD3A70A5E5B073C631B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CB8BA9740E480CD8BFB467DB0901F58 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = BCA6D798952261C230B8842DB9F4AAFD /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22995,7 +22776,7 @@ }; DB3E7A155C245721FC07D01632F0CFAB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7437E080DBD8540D545B371A38CDE34 /* EXHaptics.xcconfig */; + baseConfigurationReference = F4838FE647AA9468A2991304694C8C67 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23048,7 +22829,7 @@ }; DB9E714E74F88B6DD317822487883DBA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE4F6A837ACAFDF071968B59BBF37B73 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = F04CB905DFD3B94F1F3F521BAD78ACF9 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23074,7 +22855,7 @@ }; DE4E0DAFF0236084703632955B393B89 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD3B18274C7390B7F392369B851990AD /* RCTRequired.xcconfig */; + baseConfigurationReference = AAC46B5086C5C013D36C6FBF9DDFAC19 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23089,7 +22870,7 @@ }; DE8CEC7E031F3505797998B9F3C37A92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 72188C17FE197C7A31B4E11CB885F50D /* React-jsi.xcconfig */; + baseConfigurationReference = 9911B80A8D09E2F33BC9BB61FF4F6D3E /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23113,34 +22894,9 @@ }; name = Release; }; - DF099D9819C5D304192EBE7A7475E55A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8E83DC189FC3B7A9E583BCE303D1EE63 /* 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; - }; E38047BBE4979D9C53D6D7FEA4422373 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC8DAF60DBAAAE08BB977674B94A8589 /* UMFontInterface.xcconfig */; + baseConfigurationReference = C7CE6D83A542AFECC1A89C528D5F880C /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23181,7 +22937,7 @@ }; E651B8F553C5C42CD9C5F0480D01A3A2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB1BE5978B196C0A8829D5BB8DDF3138 /* react-native-slider.xcconfig */; + baseConfigurationReference = A2EB051A29B35EC96FFE889FC5CCC558 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23206,7 +22962,7 @@ }; E7C01DC159749822F32A915919D90ECF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5CEE7A85BBF78894CD063886D710B60C /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 9259D6124279E8C709FDF24A7DBEAB57 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23232,7 +22988,7 @@ }; EAD69AF5DEF01031F1B45B5E1FB65899 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C830DA96237FF0F27DC906DD364FC1BD /* React-RCTVibration.xcconfig */; + baseConfigurationReference = FC4D27A8EB8B619DEBDF92E49F64CE59 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23257,7 +23013,7 @@ }; EB9D4FF27A66AB5460886EA1D7F6EF2D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92F7979B6BC29ED6E6B66B0678441FAA /* react-native-video.xcconfig */; + baseConfigurationReference = 12359A981181A2EA6966C998EF5BB060 /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23282,7 +23038,7 @@ }; EF0788D08C339FE1FB8A20A21A46A640 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1079B8B6C30DFB82CE00FBEE2735966C /* React-RCTLinking.xcconfig */; + baseConfigurationReference = DA27D82F20D6A185B593444261C58617 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23307,7 +23063,7 @@ }; EFF46113088B01826DDB9EE5A92D5CDF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 56507E226A67C4F068E52F755465710B /* React-jsinspector.xcconfig */; + baseConfigurationReference = B929AB3C407B90BACE4B5420E0D21534 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23358,7 +23114,7 @@ }; F4BB0B9A68137AA0D4D3ED480DBFFA5A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3A0DF83220F1B3829DBA4156BBB386E7 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 657975F7B4BE548D53BA70808D19A6FD /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23383,7 +23139,7 @@ }; F5413AE83955B591D3DA4DC3663AFCB5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1BC240C9C25F80D8681D0EEC22B07F84 /* ReactNativeART.xcconfig */; + baseConfigurationReference = DF5D27AD14A1991632E190090036255B /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23434,7 +23190,7 @@ }; F8897D51ADA116A31D6C4B3CABB435E1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77E2440A40504F1323D79249850E600B /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 23566E6F78D76EF7DB7F33316861017C /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23449,7 +23205,7 @@ }; FA402AD52FB31D9F7215703DB1B44B09 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9CE00B5CE44E78B47E746CCA313CBA0 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 60F27F0D9825020A92FCB19B3C1C90EF /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23491,7 +23247,7 @@ }; FBFFAAAD143D5203AF55B1DFDE1C9F19 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92F7979B6BC29ED6E6B66B0678441FAA /* react-native-video.xcconfig */; + baseConfigurationReference = 12359A981181A2EA6966C998EF5BB060 /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23517,7 +23273,7 @@ }; FC71C31E2668416B9072953D27DC64CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D051CE3F548B77940F8E4B0E54D0A708 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 22B0E2535684B7CC51D81DE7C573FDC8 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23569,7 +23325,7 @@ }; FF9F97A496BA9B674F13E18785C6F22B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9B6A539690F8003219B15082B9B25C7 /* Yoga.xcconfig */; + baseConfigurationReference = 27341596529135D5692B7B7327999DD0 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23703,15 +23459,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1DB56DF9C9DCECB3F400803AE7F2B433 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 082314B40061447902402103BE02D36E /* Debug */, - 56F0F2ACAD6FD2F934097C2504AAFD4E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 1F2488A72962984097B2355E4C8F153C /* Build configuration list for PBXNativeTarget "React-RCTText" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -24045,6 +23792,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 81B2ACBAF780F14103FA727588F1A3D3 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2A85ED336D8A1314757D9059755128C0 /* Debug */, + 4959F652AE0B95F2094898AC808A51F7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 81FB9040311F79957A4B9AD8B61E2804 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -24063,15 +23819,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 84D844B5B1A5A159FA1354847AF1C5F2 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B8D056209867B8F1F809A098C1072662 /* Debug */, - 80DF7974715E39BCD1E5F75815B96F76 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 913138D43225773C4430483BA181BA0E /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -24198,15 +23945,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B16590D3A26F524C4A34D5B9050B819E /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DF099D9819C5D304192EBE7A7475E55A /* Debug */, - 9B80322166315DE06CF92ECB3BE31E88 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; B381CD3971A7692A9DA4E5C5156E7297 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -24261,6 +23999,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + BF6D63B17D5C63042513F82F1193860B /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00429919963B9F6702F9050496BCE050 /* Debug */, + 944729149362CF0C193245F61DE495CD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; C74D40E8C9164803BBC9DEEFA106BD15 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( 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 f9281d76d..c47f6ed04 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 @@ -2619,31 +2619,6 @@ SOFTWARE. limitations under the License. -## react-native-keyboard-input - -MIT License - -Copyright (c) 2016 Wix.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - ## react-native-keyboard-tracking-view The MIT License (MIT) 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 a1ff25b21..04985a651 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 @@ -2888,37 +2888,6 @@ SOFTWARE. Type PSGroupSpecifier - - FooterText - MIT License - -Copyright (c) 2016 Wix.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-keyboard-input - Type - PSGroupSpecifier - FooterText The MIT License (MIT) 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 02ad9ce2a..ae1ec4d56 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,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/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/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${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/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${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/RNRootView" "${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-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${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-slider" "${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" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +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/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${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/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${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/RNRootView" "${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-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${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-slider" "${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" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" 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}/FBReactNativeSpec" "${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}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${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}/RNRootView" "${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-CoreModules" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${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-slider" "${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" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -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-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -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" +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}/FBReactNativeSpec" "${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}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${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}/RNRootView" "${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-CoreModules" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${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-slider" "${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" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -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 02ad9ce2a..ae1ec4d56 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,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/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/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${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/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${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/RNRootView" "${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-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${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-slider" "${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" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +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/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${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/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${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/RNRootView" "${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-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${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-slider" "${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" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" 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}/FBReactNativeSpec" "${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}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${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}/RNRootView" "${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-CoreModules" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${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-slider" "${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" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -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-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -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" +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}/FBReactNativeSpec" "${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}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${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}/RNRootView" "${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-CoreModules" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${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-slider" "${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" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -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 f9281d76d..c47f6ed04 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 @@ -2619,31 +2619,6 @@ SOFTWARE. limitations under the License. -## react-native-keyboard-input - -MIT License - -Copyright (c) 2016 Wix.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - ## react-native-keyboard-tracking-view The MIT License (MIT) 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 a1ff25b21..04985a651 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 @@ -2888,37 +2888,6 @@ SOFTWARE. Type PSGroupSpecifier - - FooterText - MIT License - -Copyright (c) 2016 Wix.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-keyboard-input - Type - PSGroupSpecifier - FooterText The MIT License (MIT) 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 32f1af740..40405b9a2 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,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/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/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${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/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${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/RNRootView" "${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-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${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-slider" "${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" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +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/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${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/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${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/RNRootView" "${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-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${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-slider" "${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" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" 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}/FBReactNativeSpec" "${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}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${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}/RNRootView" "${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-CoreModules" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${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-slider" "${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" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -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-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -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" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${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}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${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}/RNRootView" "${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-CoreModules" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${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-slider" "${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" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -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 32f1af740..40405b9a2 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,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/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/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${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/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${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/RNRootView" "${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-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${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-slider" "${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" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +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/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${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/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${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/RNRootView" "${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-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${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-slider" "${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" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" 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}/FBReactNativeSpec" "${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}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${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}/RNRootView" "${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-CoreModules" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${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-slider" "${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" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -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-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -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" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${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}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${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}/RNRootView" "${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-CoreModules" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${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-slider" "${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" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -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-keyboard-input/react-native-keyboard-input-dummy.m b/ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input-dummy.m deleted file mode 100644 index e7ffe4af2..000000000 --- a/ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_react_native_keyboard_input : NSObject -@end -@implementation PodsDummy_react_native_keyboard_input -@end diff --git a/ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch b/ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#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-keyboard-input/react-native-keyboard-input.xcconfig b/ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input.xcconfig deleted file mode 100644 index f0b4090a6..000000000 --- a/ios/Pods/Target Support Files/react-native-keyboard-input/react-native-keyboard-input.xcconfig +++ /dev/null @@ -1,11 +0,0 @@ -APPLICATION_EXTENSION_API_ONLY = YES -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" -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-keyboard-input -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/package.json b/package.json index 4dc8b5d64..ef48cc9db 100644 --- a/package.json +++ b/package.json @@ -66,8 +66,7 @@ "react-native-image-zoom-viewer": "^2.2.26", "react-native-jitsi-meet": "RocketChat/react-native-jitsi-meet", "react-native-keyboard-aware-scroll-view": "0.9.1", - "react-native-keyboard-input": "^5.3.1", - "react-native-keyboard-tracking-view": "^5.5.0", + "react-native-keyboard-tracking-view": "^5.6.1", "react-native-keycommands": "2.0.3", "react-native-localize": "1.3.1", "react-native-mime-types": "^2.2.1", diff --git a/patches/react-native-keyboard-input+5.3.1.patch b/patches/react-native-keyboard-input+5.3.1.patch deleted file mode 100644 index fd9c7b4ce..000000000 --- a/patches/react-native-keyboard-input+5.3.1.patch +++ /dev/null @@ -1,104 +0,0 @@ -diff --git a/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/CustomKeyboardRootView.java b/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/CustomKeyboardRootView.java -index 69ef9f3..10729c8 100644 ---- a/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/CustomKeyboardRootView.java -+++ b/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/CustomKeyboardRootView.java -@@ -1,7 +1,7 @@ - package com.wix.reactnativekeyboardinput; - - import android.content.Context; --import android.support.annotation.NonNull; -+import androidx.annotation.NonNull; - import android.view.View; - import android.widget.FrameLayout; - -diff --git a/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/CustomKeyboardRootViewShadow.java b/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/CustomKeyboardRootViewShadow.java -index 3c8d37e..2fb804d 100644 ---- a/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/CustomKeyboardRootViewShadow.java -+++ b/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/CustomKeyboardRootViewShadow.java -@@ -13,10 +13,10 @@ public class CustomKeyboardRootViewShadow extends LayoutShadowNode { - mLayout.setShadowNode(this); - } - -- @Override -- public void onBeforeLayout() { -- mLayout.setShadowNode(this); -- } -+ // @Override -+ // public void onBeforeLayout() { -+ // mLayout.setShadowNode(this); -+ // } - - public void setHeight(int heightPx) { - setStyleHeight(heightPx); -diff --git a/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/ReactSoftKeyboardMonitor.java b/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/ReactSoftKeyboardMonitor.java -index eecb682..f4d3712 100644 ---- a/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/ReactSoftKeyboardMonitor.java -+++ b/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/ReactSoftKeyboardMonitor.java -@@ -1,7 +1,7 @@ - package com.wix.reactnativekeyboardinput; - - import android.graphics.Rect; --import android.support.annotation.Nullable; -+import androidx.annotation.Nullable; - import android.view.ViewTreeObserver; - - import com.facebook.react.ReactRootView; -diff --git a/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/utils/ViewUtils.java b/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/utils/ViewUtils.java -index 5eda46a..39c30a7 100644 ---- a/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/utils/ViewUtils.java -+++ b/node_modules/react-native-keyboard-input/lib/android/src/main/java/com/wix/reactnativekeyboardinput/utils/ViewUtils.java -@@ -1,7 +1,7 @@ - package com.wix.reactnativekeyboardinput.utils; - - import android.app.Activity; --import android.support.annotation.Nullable; -+import androidx.annotation.Nullable; - import android.view.View; - import android.view.ViewGroup; - import android.view.Window; -diff --git a/node_modules/react-native-keyboard-input/react-native-keyboard-input.podspec b/node_modules/react-native-keyboard-input/react-native-keyboard-input.podspec -new file mode 100644 -index 0000000..1d08ca1 ---- /dev/null -+++ b/node_modules/react-native-keyboard-input/react-native-keyboard-input.podspec -@@ -0,0 +1,19 @@ -+require 'json' -+ -+package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) -+ -+Pod::Spec.new do |s| -+ s.name = package['name'] -+ s.version = package['version'] -+ s.summary = package['description'] -+ s.license = package['license'] -+ -+ s.authors = package['author'] -+ s.homepage = package['homepage'] -+ s.platform = :ios, "9.0" -+ -+ s.source = { :git => "https://github.com/wix/react-native-keyboard-input.git", :tag => "v#{s.version}" } -+ s.source_files = "lib/ios/**/*.{h,m}" -+ -+ s.dependency 'React' -+end -\ No newline at end of file -diff --git a/node_modules/react-native-keyboard-input/src/KeyboardAccessoryView.js b/node_modules/react-native-keyboard-input/src/KeyboardAccessoryView.js -index bd557a8..6745017 100644 ---- a/node_modules/react-native-keyboard-input/src/KeyboardAccessoryView.js -+++ b/node_modules/react-native-keyboard-input/src/KeyboardAccessoryView.js -@@ -23,6 +23,7 @@ export default class KeyboardAccessoryView extends Component { - manageScrollView: PropTypes.bool, - requiresSameParentToManageScrollView: PropTypes.bool, - addBottomView: PropTypes.bool, -+ bottomViewColor: PropTypes.string, - allowHitsOutsideBounds: PropTypes.bool, - }; - static defaultProps = { -@@ -136,6 +137,7 @@ export default class KeyboardAccessoryView extends Component { - manageScrollView={this.props.manageScrollView} - requiresSameParentToManageScrollView={this.props.requiresSameParentToManageScrollView} - addBottomView={this.props.addBottomView} -+ bottomViewColor={this.props.bottomViewColor} - allowHitsOutsideBounds={this.props.allowHitsOutsideBounds} - > - {this.props.renderContent && this.props.renderContent()} diff --git a/patches/react-native-keyboard-tracking-view+5.5.0.patch b/patches/react-native-keyboard-tracking-view+5.6.1.patch similarity index 61% rename from patches/react-native-keyboard-tracking-view+5.5.0.patch rename to patches/react-native-keyboard-tracking-view+5.6.1.patch index 6642b1c05..a8cacceeb 100644 --- a/patches/react-native-keyboard-tracking-view+5.5.0.patch +++ b/patches/react-native-keyboard-tracking-view+5.6.1.patch @@ -1,5 +1,5 @@ diff --git a/node_modules/react-native-keyboard-tracking-view/lib/KeyboardTrackingViewManager.m b/node_modules/react-native-keyboard-tracking-view/lib/KeyboardTrackingViewManager.m -index 800bd35..6e98112 100644 +index 800bd35..edb3030 100644 --- a/node_modules/react-native-keyboard-tracking-view/lib/KeyboardTrackingViewManager.m +++ b/node_modules/react-native-keyboard-tracking-view/lib/KeyboardTrackingViewManager.m @@ -49,6 +49,7 @@ @interface KeyboardTrackingView : UIView @@ -18,7 +18,52 @@ index 800bd35..6e98112 100644 self.scrollToFocusedInput = NO; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(rctContentDidAppearNotification:) name:RCTContentDidAppearNotification object:nil]; -@@ -442,12 +444,28 @@ -(void)setAddBottomView:(BOOL)addBottomView +@@ -170,6 +172,7 @@ - (void)initializeAccessoryViewsAndHandleInsets + + for (UIView* subview in allSubviews) + { ++ NSString* className = NSStringFromClass([subview class]); + if(_manageScrollView) + { + if(_scrollViewToManage == nil) +@@ -195,7 +198,7 @@ - (void)initializeAccessoryViewsAndHandleInsets + } + } + +- if ([subview isKindOfClass:NSClassFromString(@"RCTTextField")]) ++ if ([className isEqualToString:@"RCTTextField"]) + { + UITextField *textField = nil; + Ivar backedTextInputIvar = class_getInstanceVariable([subview class], "_backedTextInput"); +@@ -209,15 +212,15 @@ - (void)initializeAccessoryViewsAndHandleInsets + } + [self setupTextField:textField]; + } +- else if ([subview isKindOfClass:NSClassFromString(@"RCTUITextField")] && [subview isKindOfClass:[UITextField class]]) ++ else if ([className isEqualToString:@"RCTUITextField"]) + { + [self setupTextField:(UITextField*)subview]; + } +- else if ([subview isKindOfClass:NSClassFromString(@"RCTMultilineTextInputView")]) ++ else if ([className isEqualToString:@"RCTMultilineTextInputView"]) + { + [self setupTextView:[subview valueForKey:@"_backedTextInputView"]]; + } +- else if ([subview isKindOfClass:NSClassFromString(@"RCTTextView")]) ++ else if ([className isEqualToString:@"RCTTextView"]) + { + UITextView *textView = nil; + Ivar backedTextInputIvar = class_getInstanceVariable([subview class], "_backedTextInput"); +@@ -231,7 +234,7 @@ - (void)initializeAccessoryViewsAndHandleInsets + } + [self setupTextView:textView]; + } +- else if ([subview isKindOfClass:NSClassFromString(@"RCTUITextView")] && [subview isKindOfClass:[UITextView class]]) ++ else if ([className isEqualToString:@"RCTUITextView"]) + { + [self setupTextView:(UITextView*)subview]; + } +@@ -442,12 +445,28 @@ -(void)setAddBottomView:(BOOL)addBottomView [self addBottomViewIfNecessary]; } @@ -48,7 +93,7 @@ index 800bd35..6e98112 100644 [self addSubview:_bottomView]; [self updateBottomViewFrame]; } -@@ -631,6 +649,7 @@ @implementation KeyboardTrackingViewManager +@@ -631,6 +650,7 @@ @implementation KeyboardTrackingViewManager RCT_REMAP_VIEW_PROPERTY(manageScrollView, manageScrollView, BOOL) RCT_REMAP_VIEW_PROPERTY(requiresSameParentToManageScrollView, requiresSameParentToManageScrollView, BOOL) RCT_REMAP_VIEW_PROPERTY(addBottomView, addBottomView, BOOL) diff --git a/react-native.config.js b/react-native.config.js index 935fa6c85..2956d2460 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -5,11 +5,6 @@ module.exports = { android: null } }, - 'react-native-keyboard-input': { - platforms: { - android: null - } - }, '@nozbe/watermelondb': { platforms: { android: null, diff --git a/yarn.lock b/yarn.lock index e1d016d6a..83fab764d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9396,18 +9396,10 @@ react-native-keyboard-aware-scroll-view@0.9.1: prop-types "^15.6.2" react-native-iphone-x-helper "^1.0.3" -react-native-keyboard-input@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/react-native-keyboard-input/-/react-native-keyboard-input-5.3.1.tgz#e90f43e17c070535cb54cc0be66a247f177474fc" - integrity sha512-NdKgueDFetyh77CC8veXE9jgISxatKbWkOpe3wfyPjw9O0J/c7EI5CEjSp5/ICufkvY6oLVDsZrP6TngTxTrXw== - dependencies: - lodash "^4.17.4" - react-native-keyboard-tracking-view "^5.5.0" - -react-native-keyboard-tracking-view@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/react-native-keyboard-tracking-view/-/react-native-keyboard-tracking-view-5.5.0.tgz#87d28639f30e5b511de510e4063e476f23d6e4f2" - integrity sha512-e/tYhvccmLOSV+6qpU5Hlpn/U2gVu5K5F555oCUBBF229vv/V/fGoq2QyBnBEKmF9IKzBEOpzxBavUR3IfaKXw== +react-native-keyboard-tracking-view@^5.6.1: + version "5.6.1" + resolved "https://registry.yarnpkg.com/react-native-keyboard-tracking-view/-/react-native-keyboard-tracking-view-5.6.1.tgz#287186f6ae6335baf83ad106c7779f68d1cc48c2" + integrity sha512-uud94SDB2ffGWQHb2ehCIxNi1lmSOQneZ/ro3Zb6Nu6yEh4ljqr1fbRco+pU1RWzaM73uS32A3vPu3NuXjPceA== react-native-keycommands@2.0.3: version "2.0.3"