From 28c58ed802da1c3fcafd77aa1a9b0252b1b1a985 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Fri, 17 Apr 2020 16:11:06 -0300 Subject: [PATCH] Basic passcode flow working --- app/index.js | 5 +- app/sagas/init.js | 10 +- app/sagas/state.js | 5 +- app/utils/localAuthentication.js | 49 +- app/views/RoomsListView/ServerDropdown.js | 6 +- app/views/RoomsListView/index.js | 2 +- app/views/ScreenLockConfigView.js | 2 +- app/views/ScreenLockedView.js | 73 +- ios/Podfile.lock | 6 + .../Private/RNCAsyncStorage/RNCAsyncStorage.h | 1 + .../RNCAsyncStorage/RNCAsyncStorageDelegate.h | 1 + .../Public/RNCAsyncStorage/RNCAsyncStorage.h | 1 + .../RNCAsyncStorage/RNCAsyncStorageDelegate.h | 1 + .../RNCAsyncStorage.podspec.json | 22 + ios/Pods/Manifest.lock | 6 + ios/Pods/Pods.xcodeproj/project.pbxproj | 16957 ++++++++-------- ...ods-RocketChatRN-acknowledgements.markdown | 24 + .../Pods-RocketChatRN-acknowledgements.plist | 30 + .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- ...hareRocketChatRN-acknowledgements.markdown | 24 + ...s-ShareRocketChatRN-acknowledgements.plist | 30 + .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../RNCAsyncStorage/RNCAsyncStorage-dummy.m | 5 + .../RNCAsyncStorage-prefix.pch | 12 + .../RNCAsyncStorage/RNCAsyncStorage.xcconfig | 11 + package.json | 2 + yarn.lock | 94 +- 29 files changed, 8953 insertions(+), 8450 deletions(-) create mode 120000 ios/Pods/Headers/Private/RNCAsyncStorage/RNCAsyncStorage.h create mode 120000 ios/Pods/Headers/Private/RNCAsyncStorage/RNCAsyncStorageDelegate.h create mode 120000 ios/Pods/Headers/Public/RNCAsyncStorage/RNCAsyncStorage.h create mode 120000 ios/Pods/Headers/Public/RNCAsyncStorage/RNCAsyncStorageDelegate.h create mode 100644 ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json create mode 100644 ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage-dummy.m create mode 100644 ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage-prefix.pch create mode 100644 ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage.xcconfig diff --git a/app/index.js b/app/index.js index 468cb1b82..27230f05d 100644 --- a/app/index.js +++ b/app/index.js @@ -46,6 +46,7 @@ import TwoFactor from './containers/TwoFactor'; import RoomsListView from './views/RoomsListView'; import RoomView from './views/RoomView'; +import ScreenLockedView from './views/ScreenLockedView'; if (isIOS) { const RNScreens = require('react-native-screens'); @@ -572,9 +573,6 @@ export const App = createAppContainer(createSwitchNavigator( AuthLoading: { getScreen: () => require('./views/AuthLoadingView').default }, - ScreenLocked: { - getScreen: () => require('./views/ScreenLockedView').default - }, SetUsernameStack }, { @@ -735,6 +733,7 @@ export default class Root extends React.Component { > {content} + diff --git a/app/sagas/init.js b/app/sagas/init.js index 7412f436f..5e39e8bb9 100644 --- a/app/sagas/init.js +++ b/app/sagas/init.js @@ -101,13 +101,9 @@ const restore = function* restore() { const serversDB = database.servers; const serverCollections = serversDB.collections.get('servers'); - const localAuthResult = yield localAuthenticate(server); - if (localAuthResult) { - const serverObj = yield serverCollections.find(server); - yield put(selectServerRequest(server, serverObj && serverObj.version)); - } else { - yield put(actions.appStart('locked')); - } + yield localAuthenticate(server); + const serverObj = yield serverCollections.find(server); + yield put(selectServerRequest(server, serverObj && serverObj.version)); } yield put(actions.appReady({})); diff --git a/app/sagas/state.js b/app/sagas/state.js index 9e375bc35..4e7067026 100644 --- a/app/sagas/state.js +++ b/app/sagas/state.js @@ -18,10 +18,7 @@ const appHasComeBackToForeground = function* appHasComeBackToForeground() { } try { const server = yield select(state => state.server.server); - const localAuthResult = yield localAuthenticate(server); - if (!localAuthResult) { - yield put(actions.appStart('locked')); - } + yield localAuthenticate(server); setBadgeCount(); return yield RocketChat.setUserPresenceOnline(); } catch (e) { diff --git a/app/utils/localAuthentication.js b/app/utils/localAuthentication.js index 3d2367623..012e79dcf 100644 --- a/app/utils/localAuthentication.js +++ b/app/utils/localAuthentication.js @@ -3,14 +3,17 @@ import moment from 'moment'; import database from '../lib/database'; import { isIOS } from './deviceInfo'; +import EventEmitter from './events'; +import { LOCAL_AUTHENTICATE } from '../views/ScreenLockedView'; -export const saveLastLocalAuthenticationSession = async(server) => { - console.log('saveLastLocalAuthenticationSession -> server', server); +export const saveLastLocalAuthenticationSession = async(server, serverRecord) => { const serversDB = database.servers; const serversCollection = serversDB.collections.get('servers'); await serversDB.action(async() => { try { - const serverRecord = await serversCollection.find(server); + if (!serverRecord) { + serverRecord = await serversCollection.find(server); + } console.log('saveLastLocalAuthenticationSession -> serverRecord', serverRecord); await serverRecord.update((record) => { record.lastLocalAuthenticatedSession = new Date(); @@ -21,6 +24,14 @@ export const saveLastLocalAuthenticationSession = async(server) => { }); }; +export const localPasscode = () => new Promise((resolve, reject) => { + EventEmitter.emit(LOCAL_AUTHENTICATE, { + cancel: () => reject(), + submit: () => resolve() + }); +}); + + export const localAuthenticate = async(server) => { const serversDB = database.servers; const serversCollection = serversDB.collections.get('servers'); @@ -33,25 +44,31 @@ export const localAuthenticate = async(server) => { return Promise.reject(); } - const isEnrolled = await LocalAuthentication.isEnrolledAsync(); - console.log('localAuthenticate -> isEnrolled', isEnrolled); - console.log('localAuthenticate -> serverRecord', serverRecord); - if (serverRecord?.autoLock && isEnrolled) { + // if screen lock is enabled + if (serverRecord?.autoLock) { + // diff to last authenticated session const diffToLastSession = moment().diff(serverRecord?.lastLocalAuthenticatedSession, 'seconds'); console.log('localAuthenticate -> diffToLastSession', diffToLastSession); + + // if last authenticated session is older than configured auto lock time, authentication is required if (diffToLastSession >= serverRecord?.autoLockTime) { - const supported = await LocalAuthentication.supportedAuthenticationTypesAsync(); - console.log('localAuthenticate -> supported', supported); - const authResult = await LocalAuthentication.authenticateAsync({ disableDeviceFallback: true }); - if (authResult?.success) { - await saveLastLocalAuthenticationSession(server); + const isEnrolled = await LocalAuthentication.isEnrolledAsync(); + const isSupported = await LocalAuthentication.supportedAuthenticationTypesAsync(); + + // if biometry is enabled and enrolled on OS + if (isEnrolled && isSupported) { + // opens biometry prompt + const authResult = await LocalAuthentication.authenticateAsync({ disableDeviceFallback: true }); + if (authResult?.success) { + await saveLastLocalAuthenticationSession(server, serverRecord); + } else { + await localPasscode(); + } + } else { + await localPasscode(); } - return Promise.resolve(authResult?.success); - } else { - await saveLastLocalAuthenticationSession(server); } } - return Promise.resolve(true); }; export const supportedAuthenticationLabel = async() => { diff --git a/app/views/RoomsListView/ServerDropdown.js b/app/views/RoomsListView/ServerDropdown.js index 52e043c02..c1d5c151c 100644 --- a/app/views/RoomsListView/ServerDropdown.js +++ b/app/views/RoomsListView/ServerDropdown.js @@ -148,10 +148,8 @@ class ServerDropdown extends Component { }, ANIMATION_DURATION); }, ANIMATION_DURATION); } else { - const localAuthResult = await localAuthenticate(server); - if (localAuthResult) { - selectServerRequest(server); - } + await localAuthenticate(server); + selectServerRequest(server); } } } diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index fe112ea08..9cccdfc5b 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -533,7 +533,7 @@ class RoomsListView extends React.Component { getUidDirectMessage = room => RocketChat.getUidDirectMessage(room); - goRoom = async(item) => { + goRoom = (item) => { const { navigation } = this.props; this.cancelSearch(); this.item = item; diff --git a/app/views/ScreenLockConfigView.js b/app/views/ScreenLockConfigView.js index ccbbed745..d88f5b678 100644 --- a/app/views/ScreenLockConfigView.js +++ b/app/views/ScreenLockConfigView.js @@ -21,7 +21,7 @@ import { supportedAuthenticationLabel } from '../utils/localAuthentication'; const DEFAULT_AUTO_LOCK = [ { title: 'After 1 minute', - value: 0 + value: 15 }, { title: 'After 5 minutes', diff --git a/app/views/ScreenLockedView.js b/app/views/ScreenLockedView.js index 5ab311a77..f199eeada 100644 --- a/app/views/ScreenLockedView.js +++ b/app/views/ScreenLockedView.js @@ -1,16 +1,24 @@ -import React from 'react'; +import React, { useEffect, useState } from 'react'; import { - View, Text, StyleSheet, ActivityIndicator + View, Text, StyleSheet, TextInput } from 'react-native'; import { connect } from 'react-redux'; +import PINCode from '@haskkor/react-native-pincode'; +import Modal from 'react-native-modal'; +import useDeepCompareEffect from 'use-deep-compare-effect'; +import _ from 'lodash'; import { appInit as appInitAction } from '../actions'; import I18n from '../i18n'; import StatusBar from '../containers/StatusBar'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; +import EventEmitter from '../utils/events'; import sharedStyles from './Styles'; +import { withSplit } from '../split'; + +export const LOCAL_AUTHENTICATE = 'LOCAL_AUTHENTICATE'; const styles = StyleSheet.create({ container: { @@ -26,18 +34,57 @@ const styles = StyleSheet.create({ } }); -const ScreenLockedView = React.memo(withTheme(({ theme, appInit }) => { +const ScreenLockedView = React.memo(withTheme(({ theme, split }) => { + + const [visible, setVisible] = useState(false); + const [data, setData] = useState({}); + + useDeepCompareEffect(() => { + if (!_.isEmpty(data)) { + setVisible(true); + } else { + setVisible(false); + } + }, [data]); + + const showScreenLock = args => setData(args); + + useEffect(() => { + EventEmitter.addEventListener(LOCAL_AUTHENTICATE, showScreenLock); + + return () => EventEmitter.removeListener(LOCAL_AUTHENTICATE); + }, []); + + const onSubmit = () => { + const { submit } = data; + if (submit) { + submit() + } + setData({}); + }; + return ( - - - App locked - Unlock with touchid - + + + null} + // endProcessFunction={console.log} + finishProcess={onSubmit} + // onFail={() => alert('fail')} + storedPin='111111' + maxAttempts={3} + /> + {/* VAI */} + + ); })); -const mapDispatchToProps = dispatch => ({ - appInit: () => dispatch(appInitAction()) -}); - -export default connect(null, mapDispatchToProps)(withTheme(ScreenLockedView)); +export default withSplit(withTheme(ScreenLockedView)); diff --git a/ios/Podfile.lock b/ios/Podfile.lock index ab85def74..6b03a93fd 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -368,6 +368,8 @@ PODS: - React - RNBootSplash (2.1.0): - React + - RNCAsyncStorage (1.9.0): + - React - RNDateTimePicker (2.1.0): - React - RNDeviceInfo (2.3.2): @@ -490,6 +492,7 @@ DEPENDENCIES: - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) - RNAudio (from `../node_modules/react-native-audio`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) + - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)" - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNFastImage (from `../node_modules/react-native-fast-image`) @@ -645,6 +648,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-audio" RNBootSplash: :path: "../node_modules/react-native-bootsplash" + RNCAsyncStorage: + :path: "../node_modules/@react-native-community/async-storage" RNDateTimePicker: :path: "../node_modules/@react-native-community/datetimepicker" RNDeviceInfo: @@ -773,6 +778,7 @@ SPEC CHECKSUMS: rn-fetch-blob: f525a73a78df9ed5d35e67ea65e79d53c15255bc RNAudio: cae2991f2dccb75163f260b60da8051717b959fa RNBootSplash: fbf76a4bf1c03e9acd1dd08ce064847f26d6d8bf + RNCAsyncStorage: 453cd7c335ec9ba3b877e27d02238956b76f3268 RNDateTimePicker: 9db00606d689f5653f08aa601c81b9d3266a0a19 RNDeviceInfo: 17e34f6dd902f08d88cbe2c0b7a01be948d43641 RNFastImage: 9b0c22643872bb7494c8d87bbbb66cc4c0d9e7a2 diff --git a/ios/Pods/Headers/Private/RNCAsyncStorage/RNCAsyncStorage.h b/ios/Pods/Headers/Private/RNCAsyncStorage/RNCAsyncStorage.h new file mode 120000 index 000000000..c27b7a23e --- /dev/null +++ b/ios/Pods/Headers/Private/RNCAsyncStorage/RNCAsyncStorage.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/async-storage/ios/RNCAsyncStorage.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNCAsyncStorage/RNCAsyncStorageDelegate.h b/ios/Pods/Headers/Private/RNCAsyncStorage/RNCAsyncStorageDelegate.h new file mode 120000 index 000000000..83daae9c5 --- /dev/null +++ b/ios/Pods/Headers/Private/RNCAsyncStorage/RNCAsyncStorageDelegate.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/async-storage/ios/RNCAsyncStorageDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNCAsyncStorage/RNCAsyncStorage.h b/ios/Pods/Headers/Public/RNCAsyncStorage/RNCAsyncStorage.h new file mode 120000 index 000000000..c27b7a23e --- /dev/null +++ b/ios/Pods/Headers/Public/RNCAsyncStorage/RNCAsyncStorage.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/async-storage/ios/RNCAsyncStorage.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNCAsyncStorage/RNCAsyncStorageDelegate.h b/ios/Pods/Headers/Public/RNCAsyncStorage/RNCAsyncStorageDelegate.h new file mode 120000 index 000000000..83daae9c5 --- /dev/null +++ b/ios/Pods/Headers/Public/RNCAsyncStorage/RNCAsyncStorageDelegate.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/async-storage/ios/RNCAsyncStorageDelegate.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json b/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json new file mode 100644 index 000000000..68cd767c3 --- /dev/null +++ b/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "RNCAsyncStorage", + "version": "1.9.0", + "summary": "Asynchronous, persistent, key-value storage system for React Native.", + "license": "MIT", + "authors": "Krzysztof Borowy ", + "homepage": "https://github.com/react-native-community/react-native-async-storage#readme", + "platforms": { + "ios": "9.0", + "tvos": "9.2" + }, + "source": { + "git": "https://github.com/react-native-community/react-native-async-storage.git", + "tag": "v1.9.0" + }, + "source_files": "ios/**/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index ab85def74..6b03a93fd 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -368,6 +368,8 @@ PODS: - React - RNBootSplash (2.1.0): - React + - RNCAsyncStorage (1.9.0): + - React - RNDateTimePicker (2.1.0): - React - RNDeviceInfo (2.3.2): @@ -490,6 +492,7 @@ DEPENDENCIES: - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) - RNAudio (from `../node_modules/react-native-audio`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) + - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)" - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNFastImage (from `../node_modules/react-native-fast-image`) @@ -645,6 +648,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-audio" RNBootSplash: :path: "../node_modules/react-native-bootsplash" + RNCAsyncStorage: + :path: "../node_modules/@react-native-community/async-storage" RNDateTimePicker: :path: "../node_modules/@react-native-community/datetimepicker" RNDeviceInfo: @@ -773,6 +778,7 @@ SPEC CHECKSUMS: rn-fetch-blob: f525a73a78df9ed5d35e67ea65e79d53c15255bc RNAudio: cae2991f2dccb75163f260b60da8051717b959fa RNBootSplash: fbf76a4bf1c03e9acd1dd08ce064847f26d6d8bf + RNCAsyncStorage: 453cd7c335ec9ba3b877e27d02238956b76f3268 RNDateTimePicker: 9db00606d689f5653f08aa601c81b9d3266a0a19 RNDeviceInfo: 17e34f6dd902f08d88cbe2c0b7a01be948d43641 RNFastImage: 9b0c22643872bb7494c8d87bbbb66cc4c0d9e7a2 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 493ec549b..856a54d33 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -210,1908 +210,1933 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 014EF95AAC4DFB40DC1F1AFC58414C97 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D10630D29AFCDED6505AC01F612060B /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B3D5DF0D3F1C1EDF9FBF32FB4D10A8 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB5C006FFFD6248BB1DE2BD1FDAA845 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6400266D477D2FA1A5BD7E46E08C1FC8 /* UMNativeModulesProxy.m */; }; - 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = DC7329CA9428EC0F785B6A190B581E9E /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 715DE3D61DB2B9F0C8ED94D9195A2359 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C07F9EEC2DBABECAACCAC8A87228BBF /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9CF80F3F009E6064C67C573894F6D9 /* 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 = 24ED047780F990FDE45C495CB8C81BE3 /* RCTEventAnimation.m */; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A578F4C1550DF241581CCA328A7738 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C5FE9E9F17B137A1325C89084416A8 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 244891F0BB936D5801B43A6B34617BD6 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D86FE7C15703C33A3DE16CEF9FDE33 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF20CEAB0CFF3687E37E4466C9556607 /* UMNativeModulesProxy.m */; }; + 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 464A14CCAF7979464730EA6D35647487 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7069CBFBBA93224DD546702CA3B3972 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BE6018B6A96DAAC1671C04AADF96DA /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB781FD5558E2764E0E59705E19C075F /* 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 = 592D062BBE4E8BEE4FD8119CA38B65EE /* RCTEventAnimation.m */; }; 0168747D9FDB61A33B92889060F5D4B8 /* FIRInstallationsKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4341798946137AA9F80EA098E35B9931 /* FIRInstallationsKeychainUtils.m */; }; - 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = A10936A5CFE73F4649919F750A19356F /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 93ADFE4CAD9451B1B196CECC916633D8 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B02742925AD767AC05634CD404FA3E3 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA565A0D93E8F950877B47493C4AFF3 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 383A35C11C4C2DD2BADC793667564783 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = DCB23ABFC8B49A5E319D843667A25D15 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 420B51DB8652B52DD1B92079DF6EFBB8 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 702CADBFFDC7EF3FBCCA9A11A221319C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE0D0103FCF7397BFE95BB411148F8A /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B51C56BD452024AD1450ED884C3ABA9 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0343D94D2D5E8E2E318BA28B81964C30 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = C0DCE0BB52AF13A0B41211860EA0CDCA /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0F80AA3E4AA05D56513CF3F9689879 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3405BF8C28915A35FDCF0DC28DD6C452 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C236F69F20B76124FCDF88A46243966 /* BSG_KSMach_x86_32.c */; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BB8D1658E6620DC5BD8F056364B9CAD /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 856E1CF8B4C250D2E8D7613E69E069A0 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 82DA8005621A1BA989561187D8DC15D8 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 8567F4BE66BF18CCF6FD545F52D8F6CC /* BSG_KSMach_x86_32.c */; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F5F96EEB39BE4E9A73688C25B3C7174 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03FC1A870235ECB216F4737C694F3747 /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8174EE8838427BE46A0885CA8539CA9D /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FF970C74101530C9A7D48B65A4F84C /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B0D3F0603D57AAF3CC0C0C9DFC12F1 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 043F127F8BCEE1CF57B50F26BC40EEC6 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9414D353B3774B94F6BC07EDA11C7C /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 043F132113151E6ADEDCE2882496167D /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA120FFE328161A90702286BAB6CDA6 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 049781277A4DF708130AF68AA1C925EC /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 297C759A2A6FB64610A331F75C41FC8D /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04AA55BE7FB64746D55ECB9C8714BE6C /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEA5C38759AB791A74D4E71063DB293 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A03901B4DC6ECFD9F75A20F0D222A6 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 43DD593587BFC92CB829D1FE1F07614D /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04F32CC017A5B4680D550DF38F6F630D /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 3995372A68A43A67B051244F80037938 /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D871EA5370D99BCBA2545E46BA94F97 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6D706B80A509660C8D48471972DE63 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = FF00CDB7A8232AE4158B172CB16D57C2 /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E08543FDC39180F83C50169CA50E00A0 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECCF4970025374FDDB118B83F2C603C4 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = D34AAFE9C37C1A4DC2FFAF19DFF69CDC /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B598E756408A131151E0D606053991B /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D13736CB8D6AE556168A4A012A2773 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = CC558CC663CA045F998F5CA528ADEDB7 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5AEFCC8F782FF9FBAC5916C7863513 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C072B46227B510BB9529F24AD3C6EE75 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE42AA2FA59AF812E73CBB61E72ECEA8 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B4456387FD1F49F14C09F38D397A6E /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE0FBF7C339D8B1B66F05D3E8F7ABE4 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F62A51F0D87C21CBDCC1B8756AE451C6 /* nanopb-dummy.m */; }; - 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = F9ECBE21F9340188A655F5682239E588 /* ARTRadialGradient.m */; }; + 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 799240BCD9030357F96AC6E79354A19B /* ARTRadialGradient.m */; }; 05D69A135B67FBAE73D5F583B05D8AB5 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F87F6A22FB4F600954FB2663E53340C6 /* SDImageIOCoder.m */; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = F02ACAE8DEE115DBBC18C44F0AE2128C /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD33AC7A683628CABF9B4DE61ECAC31 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A6FDFA32B8295040197988E798C0AB0D /* REASetNode.m */; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = D428A5F89B83BAC3FD6FC10F08524F4F /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECEE9B7AB6E325C452EC27C706345B5 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 249EA4001666958E10159EC31E37103B /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0522CE2CF3EDD15A3BEA023C78D8A508 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F13DC9E73387630908205297F04EE263 /* REASetNode.m */; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A96EA257B059165E5B142D858245E34 /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 083DEECF25FCD1C719EFD6E0670572EE /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6661B5DF26D3D513147A6BB00CDB9F38 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D21939B5F49D3C368E0AE91BCDCB1CF4 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06922EF69D044B6F0042385A661A6B60 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 82F6DE05F32E14B763473B91688324E1 /* SDImageHEICCoder.m */; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E103C191260FD8059A70EBEAD980250 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 06F69F5024C048D9F5F3D6C441B4C7A7 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; 06FBD958C231090762361344B123CACD /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F107D99DE30C03FC83538F1745C81DE /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07141BDF264104502C0D2041648F7880 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E5CC8F6A5743198CEE068F4A629834B /* FIRComponentType.m */; }; - 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = F824E024621647C5329420E194FC7C22 /* RCTProfileTrampoline-i386.S */; }; + 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 7E5F6A9175C2C2E8BC1900ED908EB292 /* RCTProfileTrampoline-i386.S */; }; 072340F95F41D91DADDE392ACB4F7665 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 06736283C77882D931377C3AF94D64FD /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 325E1317AEFB463846E7C2AE2C8706D0 /* QBVideoIconView.m */; }; + 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = FEBF6A490BEBF5E8D10B5CDC4141015C /* QBVideoIconView.m */; }; 0769A9F39A25A9A976CCD0C87C3D2CFA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 965EC53F67148F2FB7C1C52C636A654B /* 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 = 8E18A88BAD923B062DD7A8FDDE0FC019 /* 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 = CC3FC9700712FBD1AA567F7AC6F218AF /* 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 = 5CFEB116ECB9A495D54B314D795B805B /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = C70418FD985ABB340521F3E3B73FD6B9 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30327B3BBCCCAE76BB48273350864929 /* 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 = CAC8F9C86C3361A687DE72FFA06F22FB /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0209ECC30CDCC83D198C2467437D727 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = C31EC300C1418FF40CB367611BE8EB41 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88648F732932432F6DAC9EBED580C353 /* 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 = AF6B07DDC90A8398F60AD691245EED73 /* 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 = 112CFA9961DCCEA1D55E037EE24E1C38 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F39DA98B4560F63097808A59C778BF0F /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 894F1ED2B6368487AF330CAA982A116A /* UIImage+Resize.m */; }; - 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AA0A3C1FC7159967E28C438FE0FB7 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2DF0505AC6DD488E90BAA79F1E6DB9 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C055DB23C96B16780E4FB84A89F34E2 /* 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 = FAF68036D1CCEC3D01E8537FEC9697AB /* 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 = 6907504E90C00A4008814AE843E60B4B /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = C25E04DB816E50DF60D015164849B0ED /* UIImage+Resize.m */; }; + 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A0D42512086283A861F8CED0F648A0 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D69701D88CD49E6A2117BF0A85D5CAD1 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 5473E304A18535EF8AF54295529408CF /* 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 = 3FBCE7F506D6F5BE5BAC86815AD17870 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0188F1CFA087DDC5889F8B0B0301C3 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09C185F1C7A5642A99FC851468FCD3E0 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE153AFAE2F96D0F934D1BAF6939CCD /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09E32B915F68813180BCB425D417A907 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F72625A8093D89ACAEF9ACBC3883C014 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 09F2344CDF2289F7B806ED72CB1E16C9 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C8B9AF946127A4CCC12F6DA5E9EFD4E /* FIRAppAssociationRegistration.m */; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 14A8661687FD61C71A893E1752F079E7 /* UMAppDelegateWrapper.m */; }; - 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF3A95DB37F815FF43D7EF1E503E1E5 /* 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 = 0E76F3759E8407C982EDBF7A405F370E /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CC6521D5F9809960F39C9D570662BF /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8DE34D2A5336EA6C638A092D29F16C /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DCE41CF26187E79129BAC59D68A588B /* UMAppDelegateWrapper.m */; }; + 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = D6217C740A21F0E53B36EEB9DA8F8008 /* 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 = 143ADFC0FA4DEE2451160EB9A906B4E8 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ED2021122767026E806F8E11F95C51 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6CFCF629C08F645FA877CDF1030306 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E24A9D8245F7C2A76A8F628651409D86 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A0BD5F45347AF241ACD522068EE2A13F /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 20C369594F3002EE0F7D495BDFC51219 /* RCTVibration.m */; }; + 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 781F1C4AE7307355643F18D9C711807A /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DC260A4CDB82C85CF4135AC1F2CB495 /* RCTVibration.m */; }; 0AE630EDDF3087755FB7900375791D51 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 67126F01CF3D1827B3B8FF2A8F677A2F /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = EDA960B488DC6DD0DC8848BF6E76941F /* RNNotificationCenterListener.m */; }; - 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 759973C61B3A8903A686499A76905E4C /* 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 = 1308887462257AEAE38116C2EF6147D7 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B751636E9EB237E78796852019202781 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 64FBE1B7E4D6F9888572C871259C50B8 /* RNNotificationCenterListener.m */; }; + 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C4BCF079199D3E37AEFC84C99381150 /* 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 = 1FBB0C53766AC1DFF327E9CFCBBD6F98 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 064168F3E6D4B3220633AFA8BC13A274 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B7207001D16534DDF0C56E7C6F71B7B /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 93FD2FCA283A90F02414FA05025F9086 /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 450A06AFE47875867D6D007603239D97 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6976F471728D539A443214A0E81DB102 /* 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 = 356A307C6ABF12EF11CA33E44EACF4E6 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E6B5A6BDDAA03117709635756F3EF8 /* RCTActionSheetManager.m */; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = FE1964BB79974C13D7002EC611C003A2 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A728F9090C0195D0BF044B3BC36C5CAC /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F0BA05BEECBF2107FEA371E9D74683 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = A595B6DD138E016E5D80F615167C7FCB /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 357FF7EA38456A76C452E63689055EDB /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 3100F37554E286058370BD062FAC1D47 /* 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 = 0EF13686829746A2F67F9C4179C93609 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A472B29A06F533DC8055155CB0C7DA06 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A3108E867C080F1BF3DD43EBB8CC6D7 /* RNPushKitEventHandler.m */; }; - 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 071D90A52285C5F4B905B6DD3028570D /* 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 = 83669ADFC2BA035A11A398BCCDFB4819 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E4B99868B700BE2A8F0F98FA4F55F7B /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E0BE30EA5CDEF65AD3914F98064A278 /* 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 = E222B7D35352942FDEB61713DCBC4252 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F7A90FFED7376A4D31F6DEF4729CCAD /* RCTActionSheetManager.m */; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 241A07C0E3A25843A3AEC03817BD5953 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = E955D8C9C52D4F1AFCE52ACB8AB52EDF /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = B47E531AF460BFE2AFEB94FB96B0BC40 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 087F4892C4671C1BB1B026E6C11C0C59 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2721C756756313C51B1F5700544D62D9 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = E87BF0629517862C8C75F5911E51CD9A /* 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 = CDB7E4A6B40CC3F7949482EBF4817BA0 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 513597538F028FA79DDB70C44A32E1EA /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A88FC47B886B41C804AA7C878EC4544 /* RNPushKitEventHandler.m */; }; + 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA7EC402A8ABE0976D9FBF93D17D1774 /* 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 = 285DAF02097EA6B348CD8E9E35BD4C8B /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D7E2BB25F84CFE2561BE6FCCF597EF7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 108CB420FAB407BE3178EAEC6141D97E /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D9556D98C79F485EE8896FC3AC92523 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 55ABCD868D69EBB8B226D955E9B65C94 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = C6624A128D06B1B7C27D2FBFA0584A44 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D1EFE5F226BBD145CE95DAC5EA45FA /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA5BE73650483C36940FEB822F5FEFF /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C89485CBD68603701DFD1CF78BD93BCC /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 986CD91741357115E3FE5B8C88A11BCA /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BAD5AF74326E84903632846E3148523 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AB28407587558555967015E8CB7A76D8 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F0C237F0948F4A86466E10DEA439B7D /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AF27BB8FC1D90102AF761B02C48033 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD1EC07061CD01D8DB00C1DF9CBA5B9 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B2778F70E9E7B0D2AE6C69B7F5FA18 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = E0CFCA19099474C4FB8877DE89AE37CF /* BugsnagCrashReport.m */; }; - 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DECC37F011305E4F8D5201A3D90010D /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 124B50748AC829D4F462CD6D1806C564 /* 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 = 5D86346C2AE41566D1B246082A4B399A /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 81143DA51A172C18B1CD38A0FD36407D /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FB336E236A070DCDE8ACF59ED7B49D2E /* ja.lproj */; }; - 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 7DA61CD0F80A05EAE58026DA7C88C082 /* BSG_KSCrashReport.c */; }; - 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = A2A6138081D3600CEEF94F4879B26747 /* BugsnagSessionTracker.m */; }; - 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = C36359EBCDDD39DCBDD63F8A091AF733 /* NSError+BSG_SimpleConstructor.m */; }; - 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 99AC0483E6DC8F46D5EF5A81815C0919 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE3D54D2AA53A71F3B57D92ACDD7671 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 2842B5FFC5432783179FF44CD633B830 /* BSG_KSJSONCodecObjC.m */; }; - 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 06277AF1991D365E5B1E771917DD49D7 /* BSG_KSSysCtl.c */; }; + 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E21147B8CEFAEE7BD94E8E368D13EC7 /* BugsnagCrashReport.m */; }; + 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A03405C284F8E43AA5A271489DB8DE3 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A87A6311133BA73A8410C2973AC9530 /* 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 = E0DB5FF9F320278347715C51C5FDF477 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 768D65199A038233AD69D44C5B5D03E9 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2725B22B46C9C68AE4F25521DFD55CD3 /* ja.lproj */; }; + 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DE0681EDF0E0211D456C5E8D32BDC14 /* BSG_KSCrashReport.c */; }; + 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E13F96763B04252674051C00483AFAC /* BugsnagSessionTracker.m */; }; + 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = C44F6349165D05C3716A69E6A21F1874 /* NSError+BSG_SimpleConstructor.m */; }; + 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF153D464BD99785B34A00EFA868A84 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 96F73718ADFED1B74565DF96A3AB58D3 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 19746B11A9FC85796D2E4D76B1E48390 /* BSG_KSJSONCodecObjC.m */; }; + 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = A91AA40E3B64474267A1DA7F46B616AD /* BSG_KSSysCtl.c */; }; 1045178BFBC6E58CEDC65E19F91A7CB9 /* GDTFLLPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 500E76CDFB8113AFD9AC1DB0CB454843 /* GDTFLLPrioritizer.m */; }; - 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE04C89918794FD8CEB73ED15E0C056 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = F524D386BD08B9CEE9E5CAC22FFEFE24 /* RNFirebaseAdMobRewardedVideo.m */; }; + 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F489A407CA0E326AD8787F35F02B6558 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 79ECC4A13537CF3F08E9F680F3A34F0E /* RNFirebaseAdMobRewardedVideo.m */; }; 10B88123E4B69BD0762CDB5A90CF066A /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 238912792225FCFD2816B4E4CF1D3D79 /* GULSwizzler.m */; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1879999503453BFC58A6601D7FAA72B5 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = BDD4EC0D01813218623B5372433F8219 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D186F30E27BF37E5746C70ABCD2BB61 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A40288D82A3F1706752546010B05892 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 110663446F2A96F5275705CA7143F736 /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB3943BA57703F03AC1AE6E9180EC2B /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E93ECCDA1756C61A19DA411120DAAB7 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = B43642FD0E1029A07935168BAA1A3FE9 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A31E5566AAD517FCD773D6C2F9361629 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B1BD0571CE680D83AA4EE422605FC2D /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 111BF626ABBCE8E04BB4E1EEB8787C09 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = C98669397B6EB380F73981625F007E41 /* SDWebImageCacheSerializer.m */; }; - 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 61ACE6EF73A38A8530394E258344A58E /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5D773D06094FC95830D197D526EAF1C /* 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 = 856E1B287658CC783C39D96BB611437E /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 221D2BD011CFCB20913B91E68A690619 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61BFFF666044707645A41CE5B3984727 /* 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 = 597B45ACDEEE83E10C7BD66FEC256031 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11629DF38EC6C86FE4002B0EF764297B /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = AF56195464AFAF7C34D6F48C7CFF702E /* UIImageView+WebCache.m */; }; - 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DAA2E69EEF67212019EA6FF8CD3E96E /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 86990969EC135D10A5E2D91C04647541 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = DEEAF57B8CE16D5F8C9C22A94E24195A /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E9A448E060A9F0046C27D9089DA693 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11AB86078F205218D679E1C0BB086684 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B60F0B412AB14099AD2E2BCB853B9F5 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11B33B2F8BB6CFADE2A5ED140CFEC8C1 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 993AC02EC1C111E4334D17D3E0BBE05E /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 1229180557BB3A7AD13E3DC16B283B14 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = A2CB7B6EE46AF3166A4B3053A322A61C /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5780B4F8BC5641AAB90E5090C945C115 /* BugsnagErrorReportApiClient.m */; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB4958C1AAE02BF779DE65F281D502C /* rn-extensions-share-dummy.m */; }; - 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD0AEBB89BB36C053458AF452310619 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 47F3DD333F04504A9B36039EB3EBC91E /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B880E649943BF83C8628F37DBA3029C /* BugsnagErrorReportApiClient.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BD3A5828B798419E6D0005418AA7D8C /* rn-extensions-share-dummy.m */; }; + 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 00AA2794A63D47A505005F5D362E2881 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DC8DF73BDA9A60C4CD8B8BF89E8F5C8 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127076FAD518DE8F520B404457D45FF5 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C015C102D6AB79D534F16ADF531CE8A /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDD643D44C870406004853F80397131 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E517EE6A81BC1E2A5ABBEB29553B67 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D34EDB4F334F9A61289CC7A8CE81336 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 388E38F332625087DCF2599BD7A2301D /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC97BD08333B42572B8A6C3044067098 /* 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 = E1E29DDBDC1101D3DCDB77C88EA79F65 /* 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 = 1C9D9B0AD38BEEFDC45CED6AF59EA439 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DFF7DE5F0E6D5918C40DE557A7FAF89E /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C300FFABD69FB816837192A0079DA0 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1D277C7F462961CB68E7F43331AB64 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A77B4DF8755277B47E0F43375B019207 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = F57A875B935129BBC5FED8BA1EB01ADA /* 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 = 5DBE73CF85E0FBD14FC9326FAE9707CE /* 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 = FBFF8E45E24839D5D657907160C704CD /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1340A92BC48BF0D0E320FFD57737B166 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 9338EA7FE417C2BDF76DEEE30198B2B8 /* FBLPromise+Catch.m */; }; - 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 493FAAFD3937E8A839C0988482F7CEB9 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55D3CD657EE4B6F69D3372EF182FD636 /* 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 = C57ADAB61AC6F95EDE1531DCF48B51A0 /* REATransitionValues.m */; }; + 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E09C6C043E69EF1D303B9D0A9555B27 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 956861CF893663DCF60E9E263F20A1FB /* 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 = 3F2162624F2E523C80249E74C2A34F59 /* REATransitionValues.m */; }; 13908C215FAF98E1987E6DD3F7A6C858 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C7F9D33807C629347B5CC327303501 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = B85468D6D253824D2ADD8B2A0CB3AA2C /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = B5218BA52902DA678B5816D60E5C2B27 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 92761219FB30D2337C4A78AE4C28F897 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DDB55323D859401B115652E78293B63 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; 13DB00DEA52829F591682707236F7779 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A8F5B7DA6974622D6C9A6189F7FAEE /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FA43C006EA2B6CF298FE00569849C4E /* 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 = 93397AD379506B0DFA85AB22E1858FC5 /* RCTCustomKeyboardViewController.m */; }; + 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = D7DFCB6E297BBC506B33C46A4BC770E9 /* 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 = 49E08BE2FC87EC1981FC005AA338EF58 /* RCTCustomKeyboardViewController.m */; }; 143514A20BA542FDEC6E1C150B00248B /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 226470D5AC918D710F1EE1BDBAADC256 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3147B54DEFE43FB858A7D64F5171C34 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BA33E546CC64E70F3001F24607E3DC /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1451A870A667B770CA7921A66DF1382B /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = D3ABC6469D72A242803A91AF2DA0B153 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AEEFA27BA1AF4F108E5CAD8B09C5DD8 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = D8445F18BAA6F40088E088474DE8BD78 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1478C97F0EFA9E58B5A017551A091B98 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 726CEC5D657E14C2D28E2608DB007104 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8120E4F98D1D00F4339976D8EDC1057F /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DA50D661A9B86529C8E9289A8C5F35A /* EXVideoPlayerViewController.m */; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = C74C60148A4948BAD446E2F2B11586EB /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D237A584B9F9D09B744C5B9A291ED87F /* ReactCommon-dummy.m */; }; - 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE7F2C3E9991FC3578F7E67BE5C9393 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 978DA240A5DA324CB45468880D17880F /* RCTSinglelineTextInputView.m */; }; - 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F35E076CF529C953D063452BE7B556C9 /* RCTInputAccessoryViewManager.m */; }; + 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D6DF6A4DE770B1B4D1ABA4D14041655 /* ReactCommon-dummy.m */; }; + 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C4074D119A25A498EDD31EECB49B6D90 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECD48DF4DA4FE387EECA42C6D3D9E75 /* RCTSinglelineTextInputView.m */; }; + 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D5B06C8471EC60B0EFED96C02942CD0 /* RCTInputAccessoryViewManager.m */; }; 14FBD8CB3447A6D5C521A0193AF4C43E /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3000A1D45E185CABEFD0B060F04FC4 /* GULNSData+zlib.m */; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26E43B346470D073A3946E6E3CE86745 /* RCTTypeSafety-dummy.m */; }; + 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A66779B86941EC3E046DA5518C56E4F5 /* RCTTypeSafety-dummy.m */; }; 1536DE229D62C9EF155775D756DD3921 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = C4539C0D5139FA433EA40799F1AC83A5 /* SDAsyncBlockOperation.m */; }; 153C36E5468C038F1974115A982058E8 /* GDTFLLUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8FEC8581AD19DDD78ABBB18ECE2F22 /* GDTFLLUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F9325A0ED5CAF49D74FE46655BD88863 /* RCTValueAnimatedNode.m */; }; - 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 807E1456005CC3EAD5A089FFF018EF8F /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABA252CBB6E3B2F8D94515CDAFF5ED8 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C7515F3955A7A7A6F1E0A8089381F968 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7D50EFBEB2E508AF716F3712D90713 /* 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 = 091A574479E27D1661DB903AF31B83AF /* RCTValueAnimatedNode.m */; }; + 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D98EFFF9D41A28945FBA50F000DC3553 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 963BA59445DE7391A6E43D344A3C12DD /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2AD9370C384FA38E08963F526E83E5 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D6D1F6AD95564001DBFAADB6EAB26B7F /* 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 = 1C4857A0842D2EBB815D30CCE3A20B92 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 943E9B246FD22B5A90F44E9DEE7538D3 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 944DBF7D354C42710E3FC54F3497286B /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D93D3654709D1331D79514EC1B960450 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2323F367B32053EA27F9D766634A5DDB /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD51DA66542BC940D4A5FB04D6C0DAB /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A1909E30018152870D41BE4CF7E326 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 75E365638CA123FC673096D535EC8E84 /* UIResponder+FirstResponder.m */; }; - 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 76E8F7051C8AE4EB9A276F0FA68D5A5C /* AudioRecorderManager.m */; }; - 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F9250A90777B0FF446D2599F1718133 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B65A07E70545FED8EB9F3870F539D4 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = EEDE915C22C65B42CE4277C418DB3213 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5567F41097BA02556E86FC147A5DA435 /* 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 = C78CF85D200C3733B1D747C9702711F1 /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E12037BC069B82359BD9130847A65C00 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87F1FB06E4034624ADF89C7264155A30 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D1E7716CC44DDA6ECFCA7F38BAFD28 /* EXRemoteNotificationPermissionRequester.m */; }; + 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F1D0C34940E160A98208A9A359E78C4 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = C151B3E6F916F70B67076631A3BD57E6 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E09B78FB6C90B1B7261FDFC164B3D76 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 24D34F9D57102D6CE933D7AD85DE4B34 /* UIResponder+FirstResponder.m */; }; + 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 167F5F38A1E01066FC901783E7A68521 /* AudioRecorderManager.m */; }; + 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FD8002F3BF22FF64978179AE572EE8 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 458B1BF17FD2B5C712BE6ADEC78775C2 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 488A442FC5F3D5C01FF614989EA8CFE6 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 734C07C36A7F791888477C0D23601C11 /* 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 = 316DA94486647DDBD25D3AF4DE336C44 /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB382DFBCB05EB7B387EED3D0867813 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C17060AC692446E4620A3A371BB4D00 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = CB8F8201AA65DC1316A2F4FCA3B5CA32 /* EXRemoteNotificationPermissionRequester.m */; }; 18A68BC1A619AFFD7CCB45B0AEB98715 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA3042722DE6BE862DDD182F6A65072 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18CE7AC942DCECCDCE8C8153D7CA9E2C /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0078CF9DAC8CC4187F6E291B8F51727E /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18E054C5BBDA83CCE21A718C8DD17262 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05D21B2E62B525961EA9BE1309FB1D32 /* 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 = DD7B1DDC7B038544A875E6A822F28386 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E74D502DF45C3DB6C2002E30237D083 /* BugsnagCrashSentry.m */; }; - 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = ED51C0ACBD2A3F1EE152AAFEDCDCE3AD /* QBAssetsViewController.m */; }; - 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ED4DEE7B509B2575509E63CEB2B1AD /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B65DD7A796FA1FE4E5337786362D6ADF /* 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 = 30B150C99EB1AAE67D345BC94069538D /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AECC493FF67B112DA1222D066A114C76 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 98A0B3AAC61084682CA26ACD65313B0A /* BugsnagCrashSentry.m */; }; + 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A81FBC14386ACA80016032DD21117D08 /* QBAssetsViewController.m */; }; + 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 198682BD604D26EF9517EDA29B3BFE13 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E5E57FECB4E9C66ACEB82B8B5AC7A6 /* 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 = 1B36C277A662045D089C5D30EDF92C38 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A99DA828BE8FDFE29CCA18FF1A666E27 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB6A5959515A1DBDDC1B41C2E63739 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 52CDBAFD1C6554282FCD586FFBA8FFFD /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A171BA2CE9A319FDABBC541555819E /* 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 = B6983AF95B39257FA2BE471713F402B1 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A9503EF536E523F96203052014C6BAF4 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F64DF05D56CE84DDB7050420502C6CE /* 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 = D06FB799B0659053F734A832DBEDBF15 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 99BFEDDC6C2FFD1C5A6D1F2B31078E32 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A491A5EF79205088E6544696C92D02F /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 92839ECA01AD51593C6AC08DBD9EBCC2 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A8C26E48B802ECAF127BAB17E884ABA /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EFB60008DF9B71E0BF22DE8B9F1110 /* FIRInstallationsStoredItem.m */; }; - 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E049A998106BC1D48E224B840B4E17 /* react-native-notifications-dummy.m */; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 604580A241970FCE2252B38D3AD2EB26 /* RNUserDefaults-dummy.m */; }; + 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AC94BE00227F287FC4FAD2364F6A3605 /* react-native-notifications-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E7D84B4EABB669435CADE862C21E25 /* RNUserDefaults-dummy.m */; }; 1ABA2B507962FB92E51A2CA70A819741 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = F43FC1D38479CA8483FA503030EE4B5B /* FIRErrors.m */; }; - 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1F2A873B83D185B95AD54D4488C69F /* EXLocalAuthentication.m */; }; - 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E2170B422AE233CA0E843E1C6F8C5AF6 /* RCTDecayAnimation.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 392498665B438714F134FCBC21214666 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = C1FCBE451CF25A5140A2A3847F531E84 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E3C1C3BCCE56C706BFA114BE0B4287 /* RNFirebaseMessaging.m */; }; - 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5A3FB0E0F5259719BE815748EA69DC /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CAD3E89099CF2EC94DA2040159C4FB1 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E879EE624715C69DD9F0F4E2CE434B74 /* UMViewManager.m */; }; - 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 50134151E35E1B96FD28AC7ED0800892 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = FF02551016BB7F5A3FDF31DBC21468A5 /* EXLocalAuthentication.m */; }; + 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ABCAECA41A28982B4031CBF172B04E5 /* RCTDecayAnimation.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B8A999A9E3B56BAC3E1105CF17726F /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7937088C88E781D69DB63BCBFE2F399F /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 02B303D0F808EE6B7EE020A45013A5BF /* RNFirebaseMessaging.m */; }; + 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 643B77F3614352E821DA708CEFB5DB41 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 19471965D85F9339403EA0E725249FA0 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 124015FC0C273293187C1E07EA396EB2 /* UMViewManager.m */; }; + 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DE736777B95922CA3250DE0A9F4C6D2 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 32964D290663FAA0AEFD17DAEBD90947 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 91EAA0DE0CBBA7A05103808C326CDA3E /* REAAllTransitions.m */; }; + 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 942CD3A4F0F42CAC8EFA1EDAD1D0C74D /* REAAllTransitions.m */; }; 1BDF6BD96EE33DE39DB37AB25232CA12 /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = F3EA4E1C67B5BF8BD4E1E55A6409EB28 /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0C2E0E933DF322244E10D335D3AA3B /* 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 = A0B4A06232EC276DAB783F7F1D6C5866 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0C881E8B3849CF7F576CD086990F1B /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D0F0CB7563A5D8E055CE05B4F8A3A2 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 656E117710D129BCC5F46D0693DF9AB1 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8B9F732954D86D82A441E9B1D642CD /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6D5E0AF58DEBC7EFDA3E4CF9D871E5 /* RCTTrackingAnimatedNode.m */; }; + 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 599F059051EB27007371CB7C5B060254 /* 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 = 7281B2FF997C0B0469201D429C8ECB8B /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D2CD37131FEAF7D4F26098B157E68F /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FF3B13F3C07DA68782FA821CDD28A0 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 06DEF412E3A91B874C1B22F5C9332C65 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = DEBACB8ECB0778B88824215A933E95CD /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FFF7B6FB0985AB4ED8CA1D097BA1D088 /* RCTTrackingAnimatedNode.m */; }; 1DC47F2B7B43257E19EC099965EC544C /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7612B1F9763549EA1DC383D43FC8950C /* SDImageAPNGCoder.m */; }; 1DC8D5909F0CC6F24EF0084ECF759D64 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE1EB0C0D097F1CEF044EABD60FA2B0 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C43C73342C9D6D4D64749F10018473 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F72874EDFE50D6E56444F9CFB997E0D /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DE2ED65A6C32CF6CC486B9DD6BEE45D /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D432FED92D53468BB148EBC674FF927 /* GDTCORTransport.m */; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D1CDB94E5DC720C62258096FB8F188 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C74E0C3EB66731AE1A1A83CA0EFEFA6 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1E9BE88FA1550744658E5DF4C5E27E30 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = A6C7344EA1DD6836B5D82E682D0A59D7 /* NSImage+Compatibility.m */; }; - 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EBE1FD358D5DB444D1994A23AF5B744 /* 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 = A152BFA1C5A859956B6D2415A42FDCA6 /* RNSScreenContainer.m */; }; + 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E123B890BCEED2C16B71A12D95505F5 /* 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 = 17CBE5BB0564D33E9DB99AFC3AAD3747 /* RNSScreenContainer.m */; }; 1F0C67962D2BB44987FD1B99593098A3 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B408AE390C2CD577F7EF23E9F2D97CA /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F2F9B4108921F0391A9CC05C304D013 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BF969C7EE75D6BABCC43461AAEF644 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = C9E77FEC3EF67F96CC4AC77AB9D73516 /* NSTextStorage+FontScaling.m */; }; - 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 08AC8CB8E44B9D7D19D80AA1B56368B0 /* QBAssetCell.m */; }; + 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2365F988FC03687C90A9E78C2FCCDA /* NSTextStorage+FontScaling.m */; }; + 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BB835EB56966F391A219E0A3D4E24AD9 /* QBAssetCell.m */; }; 1FF2393253B66E225DBF6E7B48F3860C /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E2FDE91FD70FFC43E88F683DC84004E6 /* FIRBundleUtil.m */; }; 2001857FBC4E5A92A474A1694AE23BD6 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08ECB6371492FBD46314AE3703CD8DAF /* 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 = 83DE6C3F3438F8E994848E8EFA9A1D28 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB108C5BC250A629873A35654223974 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2060620FDFF5B1A5D8C07E8EF403882E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = E76F1E8AD66134342407C6C7C3FD17A8 /* SDWebImageDownloaderConfig.m */; }; - 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E428AC1A9B8C1B06A9AE52D832972D /* UIView+FindUIViewController.m */; }; - 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC85C917F9308976AC6ED6C364D618A /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0ECAABA573E7A5854923803B4543012 /* UIView+FindUIViewController.m */; }; + 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5E079B861FCA508F242744A7864093 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2076F59F6E240771A5E9CFFD8205AAC3 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D16CA96B3633E9D5C63D2D8DEB3AFD /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = E17056756AD03B5D1A3A24AE1C8217A1 /* 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 = FC106E9BE9BF1893772A66FAF3F9D3C8 /* 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 = 6DE8A4F7C409117A3DC6A2E37ED2DF60 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = ACE4268B41D109C09EB05548F194EF73 /* 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 = D95520735CA05E7C217DFF66FC5149E8 /* 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 = 32AD7270A69F58601E058EE708DFC3C0 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20A5F474212746352B444046C98E45C2 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 85852013697E914BA35F277826FB9CEE /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D499DB14204DC262235EAD034FA63FC1 /* ARTGroupManager.m */; }; - 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 78444D9D4D9D3C0917B8998976E40C70 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = D629257FE572D69ADAC74927CF7D729B /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E2EE66875AAFC03B4C180E7169628571 /* ARTGroupManager.m */; }; + 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C163815BC1046143216F9E3AB57D3A /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE27F3B9676864953CC3577E98902BE /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F03A0EE0116A9EDABC5AB21DC39778 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 76248F9402D4DD786D6A8E7AA04A7A4C /* GULSecureCoding.m */; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = DE6B237DE91DF63A64ABC835E1448A62 /* RNFirebaseAdMobInterstitial.m */; }; - 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 4255DDF37217B80A6FC1AA87E7D961BB /* BSG_KSCrashC.c */; }; - 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = B8B19FA68A32FFF3FCFA024A6DA603B3 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = D6CCC3839226668399756AA19C5F9EB5 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 2387E27F30CD5DA048E9DDE6C997A061 /* RNFirebaseAdMobInterstitial.m */; }; + 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = D8577D2B975A97ADB6C3715CEF5A7459 /* BSG_KSCrashC.c */; }; + 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 81F3CA61C02CBE816B72BFF19462871E /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7E10B2B60D4B2E57F720BCB9453FB9 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21DCB3C8CBBB0BDCA5B2F4F7D875A352 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EA1D92B58046A683FB99792F54C738E /* GoogleDataTransport-dummy.m */; }; 22136FA91117A1F7ED3FF91BBC609979 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 037048A23ACDD15887BD75AFB6F14662 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ADBB374290ACC42CF28CA9F3155AE096 /* REAAlwaysNode.m */; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A0865FC59C46533EFBE99829F2C6E2 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A94EF12DA4840DCF1D416FD566715F02 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E95DBCAC6C998F70DC53712A6BECC62 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 39C1FDADC71496F9DD3313658F36CD5F /* RNFirebaseStorage.m */; }; - 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC1C8636F6E342DC363373509099EC9 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B44F2096A5FF0B60BDF62BAD0EB766 /* 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 = 0ED91A38D50BB121286DD13CE08A30CF /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB14AEB040EF55E079AD9DF8E45383B /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01FB45C7FD3C9C71EE2326C6D2C35FB0 /* KeyCommands-dummy.m */; }; - 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D1652AA28A4E5BB9606FA0F0223880BA /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C065F6D18745B1FCDCA998C64631EDF5 /* REAAlwaysNode.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = EA075078096768144D55BF2486D11C66 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B45A0A58D7CECB9873348CECF626107 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC0D8F3A5C0E21CEF2648F8925E6512 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 40A60FEF8FA0A9AE1FF033396FE7AE5A /* RNFirebaseStorage.m */; }; + 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46410397E3023D5F484AA3CE02FA2C3E /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B529C81C0DD00D71DDA39F12B1114DE8 /* 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 = 6F0B38542FF2B64E7EA95F3112638ABE /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B2BC3743749E4723E1B0BBB8F1076E2 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FED50463E0B54348966E42852210BD8 /* KeyCommands-dummy.m */; }; + 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E04807E2A31F037B1625135145083279 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23179720D87885A6C7BCFE8789B76AFF /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 43670C6003CB892BF4EEBCCCCF5B1628 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B3BE6B96843EC4E2C030914285AAE3 /* LNAnimator.m */; }; + 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E3AEBD740EE480800AE98528B440E01 /* LNAnimator.m */; }; 23314833370A97855835848E48AF9CB8 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6689EFD327C141249C36F84B370FCC15 /* SDAnimatedImage.m */; }; - 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D90DB9772E9FBE6044ED0537B3D578FA /* RNNotificationUtils.m */; }; + 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B231F67D19304F03E128D2CAE829C69 /* RNNotificationUtils.m */; }; 240F76F7437478A24B599EF0EB8A0881 /* FIRInstanceID_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FAFC7FE3AEBCDC53B7E984681EB602 /* FIRInstanceID_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 14227FAAE815AD5DE3A7008DC8C3F31E /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 430AB1CF43FF88FADBEFA7054F43AD7C /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = D11BFC452B2981FF0C8D5009CFCA21E1 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B0953F1B9DB2AC74DF16269D5829B7D /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 2536DE7D124E9784E2285002DB68F17A /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4772B7623E21753987A7130E8621862E /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = B79A67A682917EF788EB5DD261DEE70B /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D2BC77CB55F4F29196EF2403D8C31A /* 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 = DF8C4FB84FC5CC63827683833BF23659 /* 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 = CEB6F60F08AC675430616A8B7C20CF96 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6C56DDF945474351322785D873ED1D /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2E9864BB593868E295DDB617F1F2D0 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 56ABC1C2FF746AF53777F8E930FD8CDC /* 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 = 73710B05B84EC076CC86DAA47036C5B4 /* 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 = 91962A61FF181A9A85B005F9D7F8F8FD /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2521216CE078E953104465D53D96B1AC /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0E66A3C33EB8EEC21616C116ABB4A4 /* GDTCORAssert.m */; }; 2538800F60EA068402CA799DB74EC4BE /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 921B01A30EBFEA00540CF83973A575F9 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5890F013C17AD08F673E9838E1CBC85D /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2565B9310EC364F58EDF6D7C3E9D9E74 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EE46B386E95AC9FBBEE856CF2383198 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C637E0FACF0DC21188B21A19BE3893CD /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D1D8016FFF808566998E371FEB3F3DE0 /* 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 = EB13EAAC29F39342E66D644585186CD7 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 980334210A70EC8FFACDA9AE9DECBEE1 /* 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 = EFFE34F8E17395B29CF1438DC93C6FEC /* BugsnagApiClient.m */; }; + 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B1775F1EA7BC00ADD1CDC80C4D6CC568 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 11DDABF4BC9E23F1781EAEB5854D4E98 /* 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 = 228CFB3390CC7D9CA85CADC0DDF34E83 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 7543543D9993C20E6F8CE3657C8DDA30 /* 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 = 47803AB4E5A16F1D5FF72ADE12B60FBC /* BugsnagApiClient.m */; }; 261F32A1FA02D5BF8B24CB71FD71F10A /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8047865EF52BDB8F74E450253525FD98 /* SDImageIOAnimatedCoder.m */; }; - 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BA98710C34DBCE9064FE58C234DF6F4 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D450362CFE85BDCA37A5CBBA9C6911 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D8B368C340C9FE894310C8E9484B1A /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8648AE914FA3B915EDC121CDE3F064B /* RCTVirtualTextViewManager.m */; }; - 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 44EABB9CB5B9D0D74454496877665506 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D67570D241C8BD96DF9CB19D2E70141 /* RCTConvert+ART.m */; }; - 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF59804677A068BCFC8092661D8A2E5 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 49C8C50270229A19B70BEC8DA6A20D2D /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A4CB03D5319F58E9F1B5E0AFABF94F /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4544721082FD092C71131EAF10C9B613 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A3682B74576D9FEA4B36935562AA4CC /* RCTVirtualTextViewManager.m */; }; + 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D47C18B1A38566DDA509463846D5D40 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B043F46160EE045D242B24C8F178B55 /* RCTConvert+ART.m */; }; + 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E21F989188C48785155D2E89A077C86C /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27905779CF00AA72248BCE35B952D351 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 921C25810B4533D9E001D73370A577B6 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBF562C3060334988DA10DB6D86B54E2 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E5F4B99ABD683869879D48CC022775B4 /* 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 = 9766B809AC1E5C70E1EF8A7B6FB8914A /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2506D056FF1B5F554E6B1F7F8CA98110 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 49450186F5B9E86D18208D07FBF9EF01 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9304E2B15D0A3123635F0438820C85A6 /* 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 = 40ADCED911CCA78FD27A1A816B6F454B /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA94DB98B2B42BD865EE3F7D55B9D7D /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 287E7C771C9169D90BC1BFCA9CED0679 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0B134B634581BF0AB4FFB905334766 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C33912CA546600E42493C322862CA45 /* RCTTextAttributes.m */; }; - 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2DF73102D11D25584EE0473C499831 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = EF1AD2484115EC684DCAAF63FBA418C5 /* RCTTextAttributes.m */; }; + 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C8F2A291F4C215285BB4BCAEEF3023 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28DE633C2791D8880A18411419955E80 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = A88DF20441288B71F15D147211C1C64B /* SDGraphicsImageRenderer.m */; }; - 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A2DBC6972F10CB3F42935FAA3D7FEA6 /* RCTNetworkTask.m */; }; - 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = B1852732427A5BFF71AFCD908B912F49 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = B16A6ED2E88D0CB778BDDDAA99B2CB91 /* RCTNetworkTask.m */; }; + 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D8824C3FADE1C9A14B0237B22A40C2 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8183FDF6CBBC2458D910575E0B9AE45 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 294DF61467891D4A15B8BE8DA7B249C8 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 0162C892BDD766E04E2714F47090AB60 /* FIRApp.m */; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 56768CE84A6E4F7706E8349354FD227B /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 06AF9DEAB18ECA63C1C7E00A032CB825 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 352CE27332BC9A1B0396A41302F73937 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E330229D72950C7ECF82AEC858490128 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29BC45BF5AE5015D46B969B85561BEA0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A15D9453B10C17715504A05E32605847 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A060D275F6FB2202E39824FE20772A14 /* RNRootView-dummy.m */; }; - 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A3D30A327658332768723A3C7A5AD074 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFA837504AF8794986CD44505DF97CDF /* RNRootView-dummy.m */; }; + 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E0F26FB8ED7992F86C07D82EAC6DAA /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29EF263F0219112B7A83EB6282AC6BC8 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E799F0463BF1E9CB29AB2DD41EB7846 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC990FEA4CF0D91B5AA704511B9A366 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4CE24F6E1081A73953291129C65004 /* RNFirebaseNotifications.m */; }; + 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1A06E88A8905EB529EC7DEEA2AC259 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 560407F98C516AE202EC044E7543C5E4 /* RNFirebaseNotifications.m */; }; 2A0CFDAFE1D323DD59F8CC55D2BF21A2 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = DC834FE770DBAFD4CAD544AB5F592ED4 /* FIRInstallations.m */; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A45F0030699924CE63A3BE1A1E04032C /* react-native-document-picker-dummy.m */; }; - 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F385180DE11379132F14DAA02D3F24F /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B62FD50583D50449408683A8512DD85D /* 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"; }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6BAE88016ED84819ECC59A8E1E84682 /* react-native-document-picker-dummy.m */; }; + 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5574642EED822E9625FF87BCA481BC9F /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 440EDB384D2390C01E177C6F0DCD8F34 /* 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"; }; }; 2AD4C462CA3933A8FE83A9AE6C424AC8 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DCB7B74B4C2EC6C5BAFC108D409C754 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F87738549F13FD7A93B2D9A9E7AE3E /* 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 = FF47DDBF0E22453293ECB197BA2FC0C5 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 505D956DD6CAAC97A19BD66A10131789 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB72252CAC0049312C0A632E2F8F719B /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B99648326FDB329C014550E639277A /* Bugsnag.m */; }; + 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 38494B8B4ECF453F4E64964A02EFAC18 /* 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 = E9200C6B2ADABAF0BB7CA63ABBEC4412 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7C9EBBAFDBB553C6D8A0E385B323AF /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE23F2B8AA47C7C0D83B1269BDA976CE /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = BB494AF6148A159C36F4BC6B88C2F8DF /* Bugsnag.m */; }; 2B59524284711BD287A3812E9E981486 /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 325C4D831CC5588DA91A39FF53FA5BB0 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D140D10C5D3ADF647AD0DAE5449594 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AFC3FDE725E9FAA7A4B64F82BF4B32A /* BSG_KSCrashDoctor.m */; }; + 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 10DD403D876812A2CFA647D3AF09EF39 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 267A348BBE5CCBB5F7CFDE697641641B /* BSG_KSCrashDoctor.m */; }; 2B8F067276102FA6915006D607D487FD /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = D7593711A2E6EAD105E206B03D6E3616 /* UIColor+HexString.m */; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F41672D8B6EA45CF462409479614FB31 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6AE78AC48248757E5F4481B82B2EB069 /* fr.lproj */; }; + 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 861DA14224575858F5F466924A6755AB /* fr.lproj */; }; 2C2703DF3EEE37D3A30ECEB1DCD36D94 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9823CB2C7479BFFC9C9AA170BD0CBB10 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C5360E5CE48DB05E73CBCFEE94B489CC /* RCTDataRequestHandler.m */; }; - 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = F36BE07D7433CF6314EDF014BE65D359 /* QBCheckmarkView.m */; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 597D35020229D35A237C0209B93C47B7 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 337AE88C9B8A03E812F00B5F40AA869E /* 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 = 6721B45513882BF506BDB6A743EF761F /* RCTRawTextShadowView.m */; }; - 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FECFA964F448691E08DBF24527F38B /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52F5092222245D907FA715A5E5B4B37D /* UMReactNativeAdapter-dummy.m */; }; + 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E53BF9EB73E8659D3501206E81D6C8 /* RCTDataRequestHandler.m */; }; + 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24F565E98A92800CA20A2D83A3233196 /* QBCheckmarkView.m */; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 484FC0BF8917204AD3A0FF0D7B057B08 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 98EC86A0F6320DFCACE00FD5D9A48933 /* 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 = 67F159A66A2D17CAB3A4277FB3AF6A58 /* RCTRawTextShadowView.m */; }; + 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE6E1B491F297ADE051248B71E113D1 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2658AA021E09980DCEF810707F664D3D /* UMReactNativeAdapter-dummy.m */; }; 2C8B9B59A5D2050A4FC678FA0A65D5D5 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFD07CA8CC396C11428C8593FC6E959 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = EDBFA5777814B21574051F46F39A63C7 /* BSG_KSCrashState.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = CAA81A8AB89E8C8D069C8BDE6728CC72 /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E02B942ACBEE1C0746FCBD61B1B0D35 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = AD2B06DCAB11F3B99CDEB99300E8B31D /* UMReactNativeEventEmitter.m */; }; + 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A556282A3B0F6806B50B9D64B56A8D4 /* BSG_KSCrashState.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = C919F650D58DEBBC04422595612CBB1D /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = CF4A61907180A333D63A2EE9CB6BE3F2 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = F3326BB6015447D408ACE84177F73D8A /* UMReactNativeEventEmitter.m */; }; 2D20AB1269B163E91C616DA631432A23 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AD5C654D5F9C65609BC75BEDEB1C2EF1 /* SDImageCachesManager.m */; }; - 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D89E7B92F1FB75487CC4507EFEDE97 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 0437B4865CB76197F5EF62FBF87D233A /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E0BEB13B0C41568EC020EFDECAACFD9 /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B448CC3FB8A5E0A529641BC3F578C2 /* GDTCORDataFuture.m */; }; - 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FD67A5A0A0E791A241650D09B2C852B /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E78BB7DD764E162B6A016C59A4F38920 /* EXAudioSessionManager.m */; }; - 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB63F685143CFE850F245E806125F4AE /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E830046FD5260CAA2B1AA7B0EECA00 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 823F9CF65AEC7B3D92926179830B4649 /* EXAudioSessionManager.m */; }; + 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DB2F461C5ED332B4E19865257F5FCD /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EE1214FC3E8D03CDD99006494DDCA55 /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 50B1336BF0B799990F11A2C6C846FEC9 /* FIRInstanceIDTokenOperation.m */; }; - 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 443E3FEB5021F5AE568876B2ECE7DAEE /* RCTNetworking.mm */; }; - 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1E97A9F2C1BC67CEFC4ED914700AD2 /* react-native-video-dummy.m */; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BD506638DCCF06CB0434974BFC80C00A /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = DA37F07249FFF2BB589D466D199150AB /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A1909E30018152870D41BE4CF7E326 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F6F76C75DF2E4CDD2B9E6C2B261C387 /* RCTNetworking.mm */; }; + 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E2057DF80BA5D1A31D4F523D7DBA016 /* react-native-video-dummy.m */; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 933711BDDE0493B6FDCADCFC4EEDAC67 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 856096519116E9F83726C5B56485242F /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E09B78FB6C90B1B7261FDFC164B3D76 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F5AE014543358BAEE4B4D6CD5A371E3 /* FIRSecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2987EA104168329CA646DE0B0609C594 /* FIRSecureStorage.m */; }; 2FA53DFC789880672A8C658D69915008 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = B64A61A851185348B2695008405AD490 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4240233ECFEFFB1E31A2BDB0900128 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = F4B6286766BAB16F75C8F3961268387E /* 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 = E222CCBAE4B8B73A1E7FD6E8F2E67F1F /* RNCommandsHandler.m */; }; - 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BD2997D0C57A5E9834A3F6E7D5A2CDC9 /* 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 = 6196C1CFA713FD4566F941812157485B /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 46A304D8C30ADD3DA05AC4E5FEB84EC2 /* 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 = BFECD96F4738C82BA203AB4DEC4E3E27 /* RNCommandsHandler.m */; }; + 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E64BBCFE0D1CD439F335B808B6E51D31 /* 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"; }; }; 308EE9EA4C9727C5413B848F42523151 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 08419E1C07242E0A29A26A675DC67E63 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 309E081F63A76DB6AB8C9F3CE25D9B9C /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = F26BB59FEC9CBF96A4426D94923EF71D /* SDImageLoader.m */; }; - 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924751E7D1039F4FB0EDC9094378B4BF /* InspectorInterfaces.cpp */; }; + 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 523200F618E483B56631A61C76CD23B5 /* InspectorInterfaces.cpp */; }; 30EA63D0E95EB523F359EAA9BCADC1F1 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B4A567AE04DB13B59FF8430E58211E82 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0500B10E6BA68DF16917B05F920FA4CE /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31008478AA016544A263E99504DE8C56 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B1BB1A3C8627427538472C2BEF119CE /* FIRInstallationsIIDStore.m */; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 288BE286F03060115DD9AF8F02177A9A /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FD58DB39F9A32D84F2801237B4423F13 /* REACondNode.m */; }; + 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D35F219D6B1F62CB48666E80FE58D9BF /* REACondNode.m */; }; 315F128047475CF8C8E82CB2C51AC69E /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC2EF7B3BFD238AB12617D31274CEF8 /* FIRInstanceIDStore.m */; }; - 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FBD67DD275E4D2357C19CDB02960A2E /* ARTRenderableManager.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = F367B9EDD6B2025C9972D1F38FCEAC6C /* RNCSlider.m */; }; + 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A98830A6AA4F5203B9ED5BEBD927446F /* ARTRenderableManager.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1183FA05965CCBD6EBE508B2B4A4C168 /* RNCSlider.m */; }; 319B2207EC617BEAACE39E7183364D0F /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C0ACE417B604A869EFEBF0F8727F90 /* GDTCORLifecycle.m */; }; - 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D49A7A06647CABE0B3ED5B1854533F /* RCTFileRequestHandler.m */; }; + 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 192E9DD5E2EA46CE683DB11AC148E676 /* RCTFileRequestHandler.m */; }; 31F3C1F1C0E29CC26D3A6B81776FC9E1 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6853D0C0275C488A7AFF75D5BF9ACC72 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E69F4D5FA2EEA2CCC03B5241F06B998F /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AA7A8DA70DD67769DD72D97B9581CC98 /* RNForceTouchHandler.m */; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB42A1E41CF00DC707700CBBB3D7BD80 /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = AFE2B58EC2E3690530A64E04F5FEA198 /* EXVideoView.m */; }; + 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F0D4EB6C7E3C9ED6349A23B2D7B6DC4C /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A7E15E440FFF061B2A37C5E65D3B6B9 /* RNForceTouchHandler.m */; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 31BFF5E1B9772471B3EE81AC70EB6B60 /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = A497F8793AE52968911B2A7A1FAB1CA2 /* EXVideoView.m */; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 037F5EC90407C5CE3418149B6C7A824B /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 639DAC10EE5EA1A619AB562FD75ED18C /* KeyboardTrackingViewManager.m */; }; - 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B39C5E381ACE6F64E9BB458AE03BD63 /* RCTDiffClampAnimatedNode.m */; }; - 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = B98F6E1E04F546506E19AD6C416C6AF0 /* 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 = 3F91D027E837C20A326639C1BDCE6567 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6041E844744D7775DB92A58CA9C7D1B2 /* KeyboardTrackingViewManager.m */; }; + 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AF04557AAB96AE8BDD0E9D6983690CFC /* RCTDiffClampAnimatedNode.m */; }; + 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00719456C3F689CCFCCAAAB3F5A25AD2 /* 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 = 63ED932836B562304FC500EA790B3543 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33988475BC9754D18D14BF27766A2C0D /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 21A7E3A6A97682E28E064E912B3B4371 /* GULSceneDelegateSwizzler.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F0E564DE338119666276106356B8119 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 73BE64D94A0851F0978E49B13D8A5B6F /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33FE4DEEBCA383ED7755A9CBC51B108D /* GDTCORStorage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D76568A132A5A42C9799FAF84FB8BD09 /* GDTCORStorage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1DA6CA493E93D7AFA97F5096626F49 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DE11E99498B7A9823D6DA87A938589A6 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EEC5E012EF08FE0EE7652064E65C5CF /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A705E458746FB937D5E970232BB2724A /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 341859F7AE772790EC9DE0E1AB2AB792 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 919435F4CD2ADBE3C210FD10F56B568A /* FBLPromise.m */; }; - 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 97BE7BFFF182E661D432FFE8E3898511 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F8ACEA925EDDC058C2DE518185D420D /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34B59CB8CE7F33E4AEFA4F8D21FAF94C /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A38CE196FAF4456B06F77B5B9E0CFDBE /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D79973939CE8EC7D031363E1E2FC21FD /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 88429A773B0AB71900406A45870F1475 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 51EE49DA7F1EB208F9461CB6483D55F0 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = DF625B9FFD7CA277275930691C3AB5F2 /* RNFetchBlobConst.m */; }; - 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B539A266AA947F50A5C2AA6BD5C8AA /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 528CEBD803180BFA178C982103478889 /* RNFirebaseAnalytics.m */; }; - 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ECC8DCC2ABEC6C02D9002EA8DB15B51 /* React-cxxreact-dummy.m */; }; - 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B139C6C451896FB33A71909257B218F /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 003F77A050EC3E8996B044A5976155EA /* zh-Hans.lproj */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 320290B06306F025CDEA0C68A80C2483 /* RNFetchBlobConst.m */; }; + 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 151737EFF230255E4628BAB2FF738C95 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C1C0DF6325073D049977F086DE518CB /* RNFirebaseAnalytics.m */; }; + 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7DE03D1640847C66490747A36E8BE66 /* React-cxxreact-dummy.m */; }; + 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C84DE06D995FB6615016758C04047D73 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35A25D73072000FCDC154E5D52F12925 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; + 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 97CF8C7EB68FF0F389F6748D4B9CC38A /* zh-Hans.lproj */; }; 362992C88541C7E04A9D3CC4D08CB8F9 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 38CB235F9B094ECF8F8B1B1C082AB298 /* GDTCORUploadCoordinator.m */; }; 3656E1A7C7F5703F0068F479C0F68F58 /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E764263319E7C9A53A9AF39D7723E5 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 290E8035DD3CE29392F2FF8F1F3E0AA9 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = F4BB57F2C8342D0890921AD00DE04C23 /* RNBootSplash.m */; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B617EB978015DFC4BBD89BF8E682072 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = FCD4B9DA5174D235E8A5F27A15F33753 /* RNBootSplash.m */; }; 36C7EF28833E6681D834301FE13A86F9 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D31DB622D9EBAA4FBD560D40618BCBA /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = A98B8012F144C30D6A38B0B3B345ADF1 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 682095DA635CC6AEDBF65261265FE60E /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 079482D8D03370ABEA3B4293E9E0F902 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3785F7EB165DAE2A7047D3376A8A5DB2 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DCD8FC43D8554520EF5C154FB8D476 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 21BCCE9D22EB85259CE081E0A923EDB6 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37C0A3BF90F97D08F52212FF1DBF170A /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAF77B51624F49BDB16C3865BA59750 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = DA5AB0196EA5FF764173A516F590D921 /* EXFileSystem.m */; }; - 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DD923C6F64649147DDB235950480E46 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8652B79418E870A7D1FAB5BB20823FEB /* EXFileSystem.m */; }; + 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FFA89B48855AD591D0E0686DAB4388A /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3834792EC9BABDBC3BEC609A77EC0B45 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B6C6D8A65E6CF1025DC7B7A6DEE0CD /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A71F41A03D4C4E9AEB5A2AF289501D8 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC895162175286C34EEAA273FB70393 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 47848D888973B34379A73A1129C8E494 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 38442B0F8709B30A6EDA4CD0454A21A5 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = F4110D159EB83763AAC648B1B81D2F9D /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = B57D43FA12903105F3A9F573F3EE96A9 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 569BB4CE80475699AABC611932B19F3B /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = A5594BC570DC751C1CB2233CB64B1A9A /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A249E8D9CE12DDEED3AF4DB691C25AB /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A8686E3AE8C9948AC8E16A0FF259FD /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = D3601FC2175A7805C42496F6D3F25E1D /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38CD1EEFACF1F4E85CAC904A501B0876 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 438B0AFC915C650C7DD6BBD7E1482856 /* SDWebImageTransition.m */; }; 38D058F638351726858D7A563A8982A7 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = AA4F5619775B05EAF3BD82EDACD91B98 /* FIRInstallationsIDController.m */; }; - 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A3D7035CD7D2F0C8454D9EDC73BA99 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF7D3F8EAE56AEC4BB585166C4985C5 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38E6BCA7EF6AEE0500A1E457935A37AD /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 68041748F69925013F2E5E2E941E5D0B /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBF90403D226FD4BA9D802C0772DC56 /* RNFetchBlob.m */; }; - 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C4203FB922C2EAEC70E9EF0E3F2ACA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7213217E40522F94758DC70EE7305B /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E69F4D5FA2EEA2CCC03B5241F06B998F /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = AF40E2CFC42FB777D2EA13DE2083E86C /* RNCAsyncStorage.m */; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EE0A3B1E2E891EB4A57FC5CA50CF611 /* RNFetchBlob.m */; }; + 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 184DC0D7DE1AE0F20800399CA4E36527 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF51CE73264ED07FDDD86A04DC0D3F9 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F0D4EB6C7E3C9ED6349A23B2D7B6DC4C /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A2AB10764D649D2C494B8ACE9F93C74 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4EB3533CCB7A84BFF17BE881F535D0 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A41B9C4BAA9C197A9D08F1ACC7C7CC8 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = D525C8CC60B15909F0B82D63E338E963 /* SDImageGraphics.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F7B9DC5DBD0A04BB45CF9ABB1FE54F /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6CCFD413FEFB4F283862EE812234243 /* UMAppLoader-dummy.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 105D069F6277F8F1CBF414D734064D70 /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 753777D1486081C047A17939026DF097 /* UMAppLoader-dummy.m */; }; 3A6B7B5EA8B4C74A3B3628907AF2C361 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 325556A95664EB529C31870C6A52D5D8 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A90F40F02279EE028931CE48514D66F /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CC2E2273ED5FE89DBB756223A07E524 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B1EBB82F5E7296CDCBF6DECA8539D9 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A0D22A3DECC27109C0E62487A5D8E9 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E9D774887725A4ECCE32F017053F4DE /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2AAF41E6FC1BB9857221966A40B6A9 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3ABBA80F6C061E7A70AF047FF9B2595C /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5847FD2633BC9047F028FE38A7084AD7 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D2B51DD4DF417B10B71E8B822A93A9B /* BugsnagReactNative.m */; }; + 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9D0C9EB38A158C6737F05F2811A41C /* BugsnagReactNative.m */; }; 3B19116ABDED6431782A3A8BB569F8C6 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9266B058E00473F5A3D7D31E6AFE30EA /* GULAppEnvironmentUtil.m */; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 099A43376A0723FBD49B492ED1DA139D /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = D87D4BF4E569C615C848E73CD7326793 /* RCTKeyCommandConstants.m */; }; - 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 16DC5622C62C49184B49E9D362BB3A3E /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C6AAB1C0DD54AD4F964138F0AFDB78F /* RCTKeyCommandConstants.m */; }; + 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B765C7001344ADD30A7B09D7B18DC16 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B5A6465606762C6EB7BF68923C55487 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE52EC86FAD6477499E13343ED2C1DF /* FIRAnalyticsConfiguration.m */; }; 3C0FCF93B0ED1741AC247835CC335F80 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 91CF14832C73F2B333714483F06B3C9A /* UIImage+Transform.m */; }; - 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83448ADF44CF1911CCE4D8AAB2164880 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = F49BE03F87BDF1DAC772E82BCB319DCA /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 280D196B50B06623BAC88F7C17580D75 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4D0CE13CEA0CF33E35FCD61C079EBD8 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 62A80A601B408A4CB5F883AA9B664B5A /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EC8172F32910DB51E25413A57C72D924 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD9657B5CDE67AE647DA7FC86A341A7 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB3994268A3900BB3EC0B6E41C8ACEEC /* RSKTouchView.m */; }; - 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C7A25419288AB12A311C9B8590BA7ED /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3FAD6F5216E43A3167EBEBE8B8167B /* RCTKeyCommandsManager.m */; }; - 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AD3109680E3C1C5D2D4F6F6E043B9C7C /* REAModule.m */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 47EEF3AE669D34F0C6B77A1B1C77409D /* UMModuleRegistry.m */; }; + 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = ABB813D04CA9754BAFB8DDFE89FC6AF5 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E3DBB2C5DB68118B145E5FF464CBAF8 /* RCTKeyCommandsManager.m */; }; + 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F895D9B8EF3F616CF5501812A80FF1CF /* REAModule.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 619B139913CB514337EE15652ADE9A53 /* UMModuleRegistry.m */; }; 3D8BE5BF644BE9BB4F41CAB6B7D79A09 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7305392656B07787D0BAA87B5735C4 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = E71363AF216BF6A9FDEDA89C8D14B6A2 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3DA3978096D5C53CBFF6D5DCE1A25655 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 23D5AA523F9126F7D30ECF8AA9BBE433 /* GDTCCTUploader.m */; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D322A8477E1753B864B19AED1740C45E /* NativeExpressComponent.m */; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = DC29ADBFAEABEA5A45B2281F99EDC5D6 /* NativeExpressComponent.m */; }; 3DB6D861B1BED3FE02246D09E892A49B /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 47B052E1FD1233F07E279610681D4C0B /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FCAD5BF02AFE224924B65BD9903055 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AB3E49F970E4FD72D9971F0C86245C4 /* 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 = 82D163B62D58A7DAAC4F67FE5DB44B93 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = B24AA181DDDACF562563B87E0E060460 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CEAC4E463CAC8251214B1C9557FCEAF /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 0722D2EC567F23AE93ADAE6D32994A8C /* 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"; }; }; + 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = DF106BBF9FE17648E03694BDC777C2B2 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAE64465127B18474D8A4EB7CE2D9F11 /* 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 = 0A59B4908C871994AA75E070FB68AA55 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED0AD43CC44C17BB61ECA17CBB20C44 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 6341F132B17A63401DBBD1072F64E34E /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E62426A79E8FEDA73850FDE790D0E6 /* 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"; }; }; 3E7CFC6BBA278D60B2DEF04E96E41275 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 22DA47BB069C91769B82987265E8AA4F /* SDAnimatedImageView.m */; }; - 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C8922FC2D0B6600C814C1B3382B23F /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 771A9D2134AF7B8E015FEBC7B9BF9643 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EC8C2462B60DB403104F22B294A4B24 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C2373D7CD550A7BB6746818ACCFF4A9 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3ECD97BBD34E2AEF1DB283897AEBB626 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B4C2C687BA9A4F482BCC6E3550747BE /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 19F051C398E0E0CF5604A783AA3D061F /* REATransformNode.m */; }; - 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A89F5903324F1CD3F6DF49F596580EE9 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E59F6B883516627C1CC6F8E6563D499 /* REATransformNode.m */; }; + 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D519D0A5561B71619784359CE8D33C6 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CE50447D6089FD034C451BE7675B6D7A /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1A12E7FB760FCD374C12F15429F063 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADB38322F34A3E62427612768AE218F /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = D29CB606B28145D0F34A30E8E92C3AE6 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CE45D203BEB30B53094FFB8F23B2C7 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 31EE95149D57FDB9540F3A45E93F2594 /* UMModuleRegistryHolderReactModule.m */; }; + 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 710493512970091BE2775D6189F63526 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 6764FD88432354A2870D85AB6082200E /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 70A62C01C748F3E2DB2E6771ED0053A0 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE73D22AB98677454C3E05B122591DFC /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0618BB5EC9C7630E6F677980ACC2E9CF /* UMModuleRegistryHolderReactModule.m */; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 535AA0B78CF70BA9675FAEC421BED1E6 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 4708508DB230A1AFFC0276E5EB866F98 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = ED3481D84A5C7BF97684500C45226CFE /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 403E9D49D8232B1F6A6BACED3679104F /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = ECFF7646CDA1C9BC7B92C2364D35EB4F /* SDAnimatedImageRep.m */; }; - 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 45EA2FFCA9384FA8754DA17B8016F72B /* RNFirebaseAdMobNativeExpressManager.m */; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A43FE8F81EC75E4A2CB70BF951286A /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A5DB3B95A61733B29846B836C5FE77A /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0302318BE1A4996F6362DEECA23878B8 /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 710626F89D39387BF706E1AC0839597A /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C8FC56CD5FE60871A148C7D2580D8D2 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = CE263CBE0E4D45E11B34822EEB6F179A /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4F3FD31ED29FABC56321FF1335434E /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = CAC8F0CFB05A73A670C9E3F2D08A0640 /* 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 = BD7860900942ED5179416ACEE2CAC40F /* EXConstants-dummy.m */; }; + 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EFD4D2FFCC87063E06B2705F3CCE19 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 333FEDA807E878FFB2E6CD94C10E6A3B /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD416C72A86D78CC18A296032AA4F28C /* 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 = 7CE58D7FD05607438B54DD5CE666D78A /* EXConstants-dummy.m */; }; 41C778DE498447ED87070B6D37C30A85 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D4389EC289745BCEF60BEA7CDAC784D2 /* GULAppDelegateSwizzler.m */; }; 4200E4BFCB23A3C2905D0525513F68CA /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F12DAF7528A201C09ADE0D2FC9600260 /* GULLogger.m */; }; - 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F0035AD75AF409EED99CE638FCD79F36 /* RNNotifications.m */; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF032A05D37EC27E5991CF4F8AB0560 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = FE682E6879BA8154495887920D01926F /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E0A184E9DA535352EF48AF9C5EBF68 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DE7C7CE72EA26F049CC9690AA75D7F9 /* RNNotifications.m */; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C573A9A7F37E14C79FE83701D61945FE /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A176727CA7B50D4B52C5E33F84CC32 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 676CDD36CA0F04EB6FA88A9298CCDD61 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 431786DF93882E8D7B28D5DAD61598CB /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C8AAC00DA3B23BFCDC15277B87A9557B /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43179FC00D84AEC590B6246AB2749BAA /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B3BDB0DF8A0EE45046BCB479E4B62C /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5DD8E9C4EDFA25C3D2507671F7D2AB /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E2861783182DF21B587C19F09A101D92 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43A35C1D3B3938A25ADA1DAE6C41540A /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = C67A04FD4DB80B332055C981539D61A1 /* cct.nanopb.c */; }; - 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D29D20BFE80E1488AD42B308B8135E12 /* 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 = EF1B8A56E41BE51A02DB11D725652A30 /* BugsnagUser.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5783075A6C9B523DDA3C0B60647B0FD /* RNBootSplash-dummy.m */; }; - 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC3AF692C410BF61B4507625A2481B4 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CC36CEC47C85A96A7807D3215B2C99 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CBF95354230B098AF82F3AFE8D7A231 /* 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 = D96FF5F7DCDD0FE875B16F77DF339559 /* BugsnagUser.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5203B1D6FFE15C94662FE30BC8831B35 /* RNBootSplash-dummy.m */; }; + 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CA4F8830185513E662869F3152024125 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B5ACB57357C10B69BAA3790D0792F8 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4456E28CE66464D55C0363C9BE7A328D /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BAFD858ABCC55478AF6AB0854547DF /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A7A347CA351FBD29C63ECE2C510116 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E795BB03EFA38DE1BDD66FE34A941BC /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC57B938E7CC798B5E793739E46D7DA /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 832001E0A106CE56DB9C536D51013D0E /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44C3BFF27B3A00065E0694106B6BBC65 /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DE2AA756FD1093A58487EEF833F499 /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 2765B792B467115750BCB85AC04C7374 /* RNFirebaseCrashlytics.m */; }; - 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F75CC06C0F97AC2F75B76FDB40EFFA9D /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 38FBBC46C03DC3A0B07ADD4AD0155E2C /* RNFirebaseCrashlytics.m */; }; + 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D37EF96C4EAD8B0212562D1E916839B /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4511E4C8DFD1706C322BEFECAB639B93 /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DE8C91E01DA1613F5EC7CD66F28061 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 680D7CA3D690389D5E2F3571CA82F65D /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6893A7A9B3D5FFC6BCCD9C7FA26417 /* RNFirebaseRemoteConfig.m */; }; + 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 79A8B61565DAA3123B89DD53380D6671 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D552AFF53AA993FAED6F96D1E77886F /* RNFirebaseRemoteConfig.m */; }; 4532353CD119D76BF82B67891C680DD6 /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E05491038895B9B893771A35A083EAA8 /* FirebaseInstanceID-dummy.m */; }; - 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = F1AF26638D4F4A5094918242AACCFA05 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 45458037C6F9DEF62A4FC8C58DCA01CC /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45B509EAE6F30C8FD22CB2AF7B72D785 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3479DAFDB6E7103FA78860240F0C3A7C /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AF4CA0BA956D4476ADBBF1B6E4E78FA /* ARTPattern.m */; }; - 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 058883D577F30E4210855B6DE5283D8B /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E6C2B575F24F9FA7B0F2C3AAEA8577 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF7A5FFD96AE3C7E2610CCA4A7EAB54 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E5A9CBDB11A6C509653B315149A513 /* ARTPattern.m */; }; + 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E69C7745B00C2AE132199BBC552222 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8621F09AEE97454E59022B77E8F3016C /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 0183FFB7633DCD6C33AA182DC359DFFC /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 468D4662C2082CD37B39EE1999FC6DD1 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 583F2384046EE63CCD0360AE527E4565 /* GDTCCTNanopbHelpers.m */; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0630350963F5CC0D94D065864C0C43AF /* RNCSliderManager.m */; }; - 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 87E3B4E6F8DFCC3B1564EE5A6BC8A35E /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = D02ED42A4438E940D0E92D0C69AAD2F9 /* RCTHTTPRequestHandler.mm */; }; - 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = F71EB3ED435BE62A03FB8BE9A69A5F5F /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8211E7D473E95C9621109787540CA25C /* RNCSliderManager.m */; }; + 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB065671A135BC7DD945EA525562EC5 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = D0EDA54D493CBA42BD3AE434726EC00B /* RCTHTTPRequestHandler.mm */; }; + 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = E1CC78D53CE35E1FC139ECEFE7F09D85 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 477A39CF2D9AB86F3DEE6359B97FB9F5 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 28AD1F843F1DFF344E92B8B18AB1A0FB /* SDImageCoderHelper.m */; }; 477E9F458C626A14EA29CADDE3BE895A /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CC36153E97819CC766DFEB874BBF6500 /* FIRInstallationsIIDTokenStore.m */; }; - 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDE3328BA1A8945076556E42D63F101 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FC4864EBFE117618D7662903228B34 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47C1D14CAE63EFC8B07A816499198552 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C331504D9FED2A78645DE10B40A14F /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 480C753D7FA4D8422864286E1DAE61D5 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F2BC055A4813F5A29FBD88A3F3261D /* FBLPromise+Then.m */; }; - 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DDD0DEB64B160EAE167CD2F2BCCDAFF /* RCTConvert+Text.m */; }; + 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 90228C82C5A6499C44F04D0D75058DB7 /* RCTConvert+Text.m */; }; 48363CF916E87324E455BF39CE064DC1 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE11FC733D32808154EE0C7975D70AD /* SDImageCacheDefine.m */; }; 48A597F6B21D3A8BD625F3BCA9DFFBF0 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 63743B445C8FAC8021EC41CC4362CF9F /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F6DD803CEEF3E5ED10A5840760D5E1C5 /* REAValueNode.m */; }; - 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 702CADBFFDC7EF3FBCCA9A11A221319C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F3B97417BD3C97C6BBFD6BDC54FED8 /* BugsnagHandledState.m */; }; - 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = A08C132DEDA462010F5B82CC4EFD99A4 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F063C7CC4BD76F426301C2BBE30E27B /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DCE199F6933D32286C8907127F900B0 /* REAValueNode.m */; }; + 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B51C56BD452024AD1450ED884C3ABA9 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C16A8E7025480A82D0D162884083E91 /* BugsnagHandledState.m */; }; + 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BCF08557DEFF60428792C78FBEE2325 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A10B25979F59F7A8AFBECC802C109EB /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 28360F116ACE0C01D969AB83563A87B3 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 499A78064AD0B576066DF5C4AE420F4B /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = ABFDDF7E2B4A60522C6DC5915D034318 /* FIRInstallationsAuthTokenResult.m */; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C423F0F22D9E644B5F9E5ECA56CBB8D /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7A149307A393ACABD36837C91C2C61 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3761AEACE1DA39F1AD4786BB1D0061FF /* 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 = 15C16410D0D202FC7BEC08F3A5D52800 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C845321768ECE81C715B08799A37C1B9 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = D2F1EF22CDE9B012FC37464BEC211A3F /* 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"; }; }; 49E32996D57F0BE4B4C214A788834B8A /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F4B0846CC9420B2A99D2842B5596A174 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 478F25920DDB277A1F4403B7268C02D9 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 31184F2A33D855B394E7FA887BE6E1C8 /* RNEventEmitter.m */; }; - 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 488480EAD543AFDD806FE0620D2A8B9A /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DB374EFA51479560B62F10435C12AD7C /* UMUtilities.m */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E0BF76806F01A4737F7E7FF400AFF7A /* UMReactFontManager.m */; }; - 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 54AC49AAA4AFD11414A9FAAF69ED9769 /* REAParamNode.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B4A74169F9588A6545B52CDB6A092D /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A58E49BC55FDC1A70920ECFD59D1D06 /* RNEventEmitter.m */; }; + 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F87073BEC133F5FAF36A0C0FF1E27F /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 49CDE45A182450887E0E03DC524E1403 /* UMUtilities.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA5ABB39A77B81C72A91FECE2C1EE4F4 /* UMReactFontManager.m */; }; + 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C336663E9A8F1C74D8FA35657612638 /* REAParamNode.m */; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BCCFC2874599E98F8FAA6BC1E00E59 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B46CA419944F2581E787DEC9E26DF27 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6456BEB6732CB1208721A93717E83ACB /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 64963B0AD90508C9D1DAD41D65CBBC0C /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 52F26A7E8EED47F49C39F9121B4D43F8 /* RCTTextSelection.m */; }; - 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7BC202C24CE9064F5A6E70A82A6B382C /* 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 = A8EF9ADE40BC7719B21F362BA27D0CE6 /* QBAlbumCell.m */; }; - 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E389BD72A1C7A96A96993A4A39B7D055 /* RNAudio-dummy.m */; }; - 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E3E534D5295A28045589D6BEA240E6B /* 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 = 6621CD50302794812AD1F7FF9D0322B6 /* 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 = 0C40BDD85015A36835466F49B0744298 /* RCTTextSelection.m */; }; + 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBF4B442297F465BB78756CC5517CDCA /* 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 = 1033E5A5D0EBB041CD0AE93BE9F76223 /* QBAlbumCell.m */; }; + 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B560123E810CAAB8D32B0FBCE12FD9FB /* RNAudio-dummy.m */; }; + 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = D8C8CA00256CE08EE900DAEACD7EE94A /* 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 = ED6E0DC1D444EC1F52386FCF7ED88421 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4CC8A1271887F77848976D93CA74D44F /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 195034DDBA6E2F083A2BB6F020769C4F /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CCBFEADC3A7B8A5E9B92C290981C41B /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = E82A30AEF74EE71AF0B62661B8B26951 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A23FC1C6EEB4D286D5681F8C73164353 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4AF1BC881ABF078126D2DE6D9EDC0E /* Yoga-dummy.m */; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = D514EDE68ECD59E03F9C6FB34661F168 /* RNFirebaseAuth.m */; }; + 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C88966D6E9E109711830886774417F /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 911D6C6195168846ABAA69CD04FDC12B /* Yoga-dummy.m */; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 873E15B90C90984EC598DAD3E2B3ABA5 /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 0707F165A40293C90DB9DB10B0433839 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 54002BF23C709D0073AEFC546E5E45E9 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = C15DBBB908005ED013E5D85E2446096A /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = ED6418C05DC7F19AB106263F7C32FCC6 /* BSG_KSCrashSentry.c */; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D5586AB0B37084705E75D2C95A97E3C9 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A158B063C3E3B67A0088819EC778AC /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = D75BCFDCE67B8A6966E9BF7495B90390 /* BSG_KSCrashSentry.c */; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 762B0734C882B680C9D971AF79E220CA /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E5A24B2AF227D372E222CC035C1DAA2 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A21588A6554E872D0F5137FF593521A /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = BDBB11DCB79434FB7CF2C3941984DB0E /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 902007CD0430091CA5FFA9F68CD6EE57 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 78E05B5B4544D8C74092E8B0982CF77B /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D333D6C9815B4D7BDE138207450774 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5668891029B9B7D87A4885AE25E331EB /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7FD02188CDAF5EB23CBB76EED51035B /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7E16A5B4856F88F15343D19693C196B5 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ABB251627EA1EA9F5A808A72F87A62A9 /* RCTImageUtils.m */; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B67E23A4D5E5329C0527C804BD3134E /* react-native-appearance-dummy.m */; }; - 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6720C13989FF0300B3BD20734475DF23 /* React-RCTSettings-dummy.m */; }; - 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54DAD86D8E7F2D57156D4FEA78F677AE /* ARTSurfaceView.m */; }; + 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 352AF6D0141F74CA1CDE25B1AE5F1B3B /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F8906958F662D4C75959B7B3FA0106D /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5F5EB7937FDEB0A4C3ED80D8BD56DB /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = DEE3E1E7ED88DBFB409E2ECE39F0AB43 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 599C3A829167F002480731A8F5B63CA4 /* RCTImageUtils.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA72A13A2EE1B277F6AD77CFAD99D4D7 /* react-native-appearance-dummy.m */; }; + 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A74FC8F44C2DA05695B5BF84D7E0D224 /* React-RCTSettings-dummy.m */; }; + 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 85314764861A67068C81FC59C361556E /* ARTSurfaceView.m */; }; 4FF27C416A5E6CF6705EE1732D392D1B /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FAC32E62B1F1A5CF4B7035D16475866 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5005D6761137D55A31755FA8762CCF7B /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FECE8B750D858CB3C6E9F3EC41E9A9F /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 67DBF913CE88380D78DC6C7EA7707F76 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = A40DDBDE75B76EE4C97C4876D85175B1 /* RNLocalize.m */; }; - 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 40DD1EB0A38626D7672CEF0EEFF5C426 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A097391D91E9B6ABA1CECE20676B56E3 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 86991F1C80D850332904ECDDEB7B59B2 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = C1F1B36C00FFB26AEB77DC4D71FE8C8E /* RNLocalize.m */; }; + 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8655F3F8142267D046697618FA4B8C24 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DBEAF4DE71DC0A63CFB9CB0BCCC88284 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C80AE83CCD41943A1509A4518CEF1A /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A8D8AD63970F41D631921F678B5C49 /* RCTErrorInfo.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 = 5739CF4CDC78B4383E371AB297932F20 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 595753034D06481EB8E563E3BE145B52 /* RCTTouchEvent.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 = 9A19FDB2516013B599513E4AAAEA4B4C /* RCTErrorInfo.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 = 84EA0709246AEF731F306EDEDE3D55EF /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A2BFFCC95ABA18117734D6E43F18B3 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5134C7B582F00BAB682F3A69DC3790AA /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B11D5857328B9B8C43CEFE929288EC /* SDMemoryCache.m */; }; 5170CD2D819D39CE643B288F7DA6212A /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C2E718EEB7FC61E0AF4FF7745365F7 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D89E2A740EBF31F6D63E4CD54C4BD4BB /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D1D04F15826580499B17234E3912288 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A184457F8555737983B26A11323CC5 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9613B4E009829F49500D5476BF62A6CA /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A17089A7BFAC8B01B6BFB6ABE2C3001D /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FA445BB37F82D01B52365ECD7D6C52 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52ADAD247D836F3627A7E5CE7744A659 /* FIRSecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3831B2A00965967014DC2303A0B27F59 /* FIRSecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F66E7205BB7E21813556AB6A7D50114 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F17BFC2A2727ED785F3EE65C498A70A /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530798D8A1CF3289921987D9FDC7B884 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EDFE4884DAF3E61B6C33A8BE503617 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F56A0807073424049DE488D5F256EDD /* RNFirebaseFirestoreDocumentReference.m */; }; - 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BEB9E31A700E806EFB7FEC98C34B4E /* ARTBrush.m */; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = AE6C42ED5E899898ADFFA0DB2CF294D2 /* RNFirebaseFirestoreDocumentReference.m */; }; + 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = D0FDB85B13958EE918F65B67360C2A74 /* ARTBrush.m */; }; 532684D939B80EF9527A71AC2082A6E5 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = B2910F746BA799CA787EFCE48845B524 /* SDWebImageError.m */; }; 533F5B5A43499AF92AB8DBF7CC1CF84B /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE13B65AEE9DB27E1676D172D142597 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9973454611F684DDCF713365145BC4F6 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E19F19787661DCFCA60CD07A38A33E /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 53C338E1563591F463193CF3D2327216 /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B78E7E3DBE12168C17E886E24FB2F51 /* FIRInstanceIDTokenFetchOperation.m */; }; - 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E0AF342E91FEF4D7EA5F7325F5828F /* 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 = 43CF00C5BF0D4947F59761AEBD7F68AB /* BugsnagFileStore.m */; }; - 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = DC7A46600FBDC9BC873D1E50C0822400 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF5B2C7483E20A7A39072BA3B0AF5A0 /* ARTTextManager.m */; }; - 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DAAD67DF7974AF97D3B405CB6A2F359 /* RCTPropsAnimatedNode.m */; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 131D3902D9352C048A30423FCBF0B8FA /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6178ED33DD306879DAFA289C279D1721 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = E3DCC62AAF84C99768664D5FCB9581FC /* BSG_KSCrashSentry_NSException.m */; }; - 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B03AEABDDF62B278F296D02437A837D5 /* RCTStyleAnimatedNode.m */; }; + 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = B0C94E1B0AD11B58B92A6DB7F07E5929 /* 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 = C44773251531A45FC64DFA4C79762546 /* BugsnagFileStore.m */; }; + 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 66DBE54FA327076B678F2BAC5A46D929 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 901D3ED8D2BEE4D409C00D645D7DF9B7 /* ARTTextManager.m */; }; + 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E8D9AD27E7F69CCD404ED31159311CC /* RCTPropsAnimatedNode.m */; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F04982FD559057C4B92BCA89A895352 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 283FE1E557C37A7203AD1722FEF8F958 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = C07B5E30004AFF786C8C897FD0E74CCD /* BSG_KSCrashSentry_NSException.m */; }; + 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3595616E90E90D230A4767F66232AF4D /* RCTStyleAnimatedNode.m */; }; 552BF8053A03C10B0A849A781B5D40AB /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DFBAA668DAA11EFFF653C4F4F65920D /* NSError+FIRInstanceID.m */; }; - 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 041AE7063506BA408912E1C0DC8B5B9F /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = E40595242F74B2A1A8BB3DD7F0AA4E7B /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 555AE9BB3A4B4A37116D009489131F89 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 43AAE931318CFC65211035F2E169B081 /* GDTCORRegistrar.m */; }; 556BC4473335922D123C95D9C7A6307F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D63B972B95C4ACEAA36C351BF1B2CDDD /* SDImageCacheConfig.m */; }; - 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 440B6391AA28FA24977CB94B3896EDD0 /* 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 = B99B50260D3C74CC0BE95A439511508F /* RCTConvert+REATransition.m */; }; + 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99700EEEE49AFBF5155726521B378965 /* 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 = D551134E4A8546C869960AE523AD6CF3 /* RCTConvert+REATransition.m */; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = B5C4CF7EEBB56E009C17E4CB2CDCD303 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 87DB8BAA7E0AA6309FC82A17A1670CF0 /* RCTConvert+RNNotifications.m */; }; + 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E050349688D70AD72042D4B52A7967A /* RCTConvert+RNNotifications.m */; }; 5605F99EFA7EB1FC1B0AD035A25608E8 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DEC1E6B4290093E9B0766AC1D19DFF /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F7B2000BE3105D55FDF862386C46774 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E90142F9AF1BCFB7A269255BB8D48330 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5651B7D25B0D4053B7DCBE24594AE5A2 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE39A7B4283BEFE43E66F46862951DC /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 565EF60B5D30D937C88DB733534A746E /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = C99B6ED7E39443CBF47A64AE5D60CD8E /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = FA5F8B27C3393ECAFC57D32F193C67B1 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8A6464E930766407F78C75DF0174F30 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 371C3A9071849B2A8C9AA73083078BAB /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = F330BF2530869556DBD57DDFD63437EE /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF84B708F40CF06069DC272F2FC6223 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 285481B86C63C48528603907702089DB /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA83C66BCE237C477EF7FA53A9A4C4FD /* 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 = 1CCDD0A69E45548748B1FAAF293AADFB /* ObservingInputAccessoryView.m */; }; + 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44C740C76BBD96A20E9011FA1E14F64A /* 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 = FEB5B8E160C5D916CC66A91F2A9469A5 /* ObservingInputAccessoryView.m */; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B18979D7EEF1DB0BD8B390FAE4FA6123 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A9CFC66C39806B6AED10B7D782682F5 /* BSG_KSJSONCodec.c */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D51A791FED6E76B08D4DF61681B7E7 /* EXFileSystem-dummy.m */; }; - 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C0DDAD43DCB0C5B0E28964FBD037BE /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 63B6F4D77CDA75F67BEC9FA9CEC45577 /* BSG_KSJSONCodec.c */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D38DC5C9850947A9A6ADF2CF404A02EC /* EXFileSystem-dummy.m */; }; + 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D1799D95F22B054CE23AC4A4F4A36EF0 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58126EAA5B53B971BB4636C7A244A749 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = F55052F42574B7D52A6BA105DCE2F19E /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D63308F085833F5B80CFD4C19FC1B4DA /* 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 = 86F3BA956CA2FFF9CD02935EAB9D2D39 /* EXHapticsModule.m */; }; + 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8560B8A02F21948E3B4C54CA9FC484F /* 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 = FD3669C6CCD38882387710794F350200 /* EXHapticsModule.m */; }; 589F5BDC2B57CBEAEC6B457450AB3F6B /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3849B9FE871B8A9BFFEA94781CC286 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = EB58C1A1A2B45B20B44F908DC5FFD1D5 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 58D7052A7CCD26DD25B38FAAD2E996F2 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 458BC6D0F0ABCC8D2958F42C9A3F3820 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DFEBD29FC57E8774800E8CBB8128456 /* BSG_KSCrashCallCompletion.m */; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 296ED7582318BBF5FB39B24E3E2A0470 /* UMPermissionsInterface-dummy.m */; }; - 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 379936F1F3A202E81F05EB564A22F2FB /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9616C625D92B8968CC0533A4CA4AE4A6 /* RNFirebaseUtil.m */; }; + 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CE9A72CF6E189AF362512B223B4A3FA /* BSG_KSCrashCallCompletion.m */; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 85F0CDC13F749D8A6463A9A071A40965 /* UMPermissionsInterface-dummy.m */; }; + 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D38D3439400A446FC489F62DD1545AB /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 357DC213D350A3EFDF67D24C886A424D /* RNFirebaseUtil.m */; }; 5A01CF4A9C711B4E767058AC022D8DE5 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DA341D791704280F8256A98FF27460 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B4F0F981C6AD43F5E733E48EBBEC200 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA61C68CFF30E72CC13AE4820139FAB /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A59A50C6C6459D108D357CE53F2156A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F354B2F01F2D88BF64EFB54C7F55D9B /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A95B257013795111CFA1F1AB3E1273 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 525EB8BBFE9CDE17D718698C8776AD64 /* RCTImageViewManager.m */; }; - 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 6600B3ECE4A9A1F4D25396A83C32C3DD /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC23F2A6776968AC25F6B3A06A87CADB /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 466503B6AAEA47B56A7ECA1834A44B75 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA4798A52CA12F26B8E30FEB501FCAC /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B956CEEE85425A03D1A573B50CBCDB7 /* RCTImageViewManager.m */; }; + 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B6D088B721B8F433491C048CCF8AF81 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBFEA19C82D8D712E325597558386F35 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF1C1EB8AA85D45F5E6286CD870DC5D /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B3E2563BD4AC3D5DCEC78F631AC9B40 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EA24205E9A7B87800BCFEEC108BFF33 /* GoogleUtilities-dummy.m */; }; - 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0AB78E30104F0A136DF6B23174E0D0 /* 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 = 2606CCA8EA3FA4E2E33F4F7F9C664DB0 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = BFBD6424DEE4DCF24BE84BE610F65546 /* 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 = 15E54FCADA50EE5D9162CA526A74D397 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B4A397DF3BDA66041BD6CEF2B3EB09C /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4D1271006F3F19FD1F32ED18916996 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = AA9F7478AADD3DD5BF9F700EE0988915 /* 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 = BCEA53C69C3685631F06C2188C4F5F73 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 5551575C22DFECDAF2FC590238BBB242 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A09A3FC6667C5F9782E43A35E3C5BE8 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 516328D76CF735CAAC99DF79EEE52C05 /* RNFirebaseFirestoreCollectionReference.m */; }; - 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0797AE20CA374FA355E5FBE35EF12C88 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 60962EF7F5AA7A9D95F94DCEE66EA7F5 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AADD43B283931056291E3578A535816 /* EXAVPlayerData.m */; }; + 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CCBDBDC29BB7A39B822CA3F8564B7B7 /* 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 = 31CF54D379E1CCF5E3E81CA003713A00 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E2DC5BCB945506579389F0FA0BC002 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF894F780FAEE5B1D80CCD47E9BE2A5 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = EFEA6ABCA5DBE334079B09B6F2488289 /* RNFirebaseFirestoreCollectionReference.m */; }; + 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA5333A327D4FE321C9F504A7B43F88 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = E83E226A670415A6EAD1BF95CAD6515D /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = D99204AD6F09D79FCE4199DAD7A7CDA9 /* EXAVPlayerData.m */; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 507484DC13FF28BFA253C3259BC915AF /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 60978B2DFAAE74E084D487E2882749B4 /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C4C385AF47819B1F9C31E2190B88933 /* RNFirebaseAdMob.m */; }; 5DCA31ED0308779922E83F0F13640E3F /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = A4B5638048C9BE689A53D2981A56EE93 /* FIRInstanceIDAuthService.m */; }; - 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 67840563043AA82F17D29A652FA22AB6 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = DCFDAB5A5BF812BE157F227A44EFBD95 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E0AD81439136001BCF345A7288B768F /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB6851B50895A42D3F7C877300D7C7A /* FIRInstanceIDTokenDeleteOperation.m */; }; - 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = B0211C5BA6C49CB7568A093D135620F4 /* RCTUITextView.m */; }; - 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = A595B6DD138E016E5D80F615167C7FCB /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E41F52520D62AC019BAB1E9EEB0AD7E9 /* EXVideoManager.m */; }; - 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11C69D513A3C6989D4E6AD2745DE7E66 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = B30FEF74567D1734FF4F1D188527AF7A /* RCTUITextView.m */; }; + 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 087F4892C4671C1BB1B026E6C11C0C59 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3470C187730785987000EA696CDA42A6 /* EXVideoManager.m */; }; + 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F1DE52AF140D521507A7FFE64A0D2F7 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5EB1A9BA116DDF6AA30A626D000FF5AF /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EB70BE00723008AAD156EB27A07FE171 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = F50C39B607D9C89E5365FAE973EEFBFB /* RCTSRWebSocket.m */; 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 = 9CEA630F3D539492A2BB797322823EE8 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5F09157C1DF89E099F5994063D10410B /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 188DE396BFE9BACC9E475E966B3ECB4C /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C0358FA438F9178127E0C2BCE503104 /* 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 = 82C2CC4DA2D0A987F666774AAF991E7C /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E78C0DFF4376A743833BE1BE5257A4FD /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B787E74A715316D11B7654CE1F490802 /* 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 = 85EC457C09526CED4653E2E2B12AF25B /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B6362ED0A64743024DD69DFCD53F5D /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F48078C953774E5876EA42742BA186F /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE80A0E5A04BEDCC2FE998068C2E8A5 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F5378B828C8964BCBDD35727B30E2F2 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 760D77A4F668A9C3F29BC76736A73378 /* GULUserDefaults.m */; }; 5F591A05DC74FE96D26FCFCE23162A75 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 445FADAAD22E2C0B298304BB38E55693 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 606CCE606376DD7990442AF23CEE5A3F /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 51E045377B57602000DED486F9BA7183 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FCD67CABEA60260ACB5A3DE0C6E76F4 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = E76502808A9CBAD48934D12CB8CA9BCD /* RCTUIImageViewAnimated.m */; }; - 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = A693AA61E697173D763FB55F9F925A76 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A532F8903DFA43FF342F2EB8E9AF675 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE23C3E92A145C8608B385EAD04D34D /* RNImageCropPicker-dummy.m */; }; + 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2CB9F08639ADA17E02444D67B09671 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B498F582FEB3B9C9EE4FDC74737D545 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A1682606BF0991ADEF47A12A23121916 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = CF9DCA216CCC76332478CD7169F5BBD5 /* RCTUIImageViewAnimated.m */; }; + 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1740959860512594A2F76151CF0BBDA0 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 256F4AF2577D0DDD5133F7A22C6C8850 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 90E547EC0ACF4D5420387F46C0FDBF40 /* RNImageCropPicker-dummy.m */; }; 61076FBB82FF6974FED4A86160D17E5E /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F17947A41DC67706AD2ADAD8C7C559C3 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = C49D225F6CF89085189D3E1775CD8333 /* ARTText.m */; }; + 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 21D6F8E87745A49640668EA07C0197EE /* ARTText.m */; }; 611D02587581D20BABC1EC3962F6262C /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F3CF73401C2A7D1861DD573FA5AAAB /* FIRInstanceIDLogger.m */; }; 61599CF45B061C7D8E678400226A7229 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF98BC6C3F20CCC5179F53F73FF41B6 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B253C49E623F5F56D28B06A728363F23 /* EXPermissions-dummy.m */; }; - 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F94016E68EEB217508CD4C5B2289C21 /* RCTFileReaderModule.m */; }; + 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D20C340B88715C7DAB6F46620313AA76 /* EXPermissions-dummy.m */; }; + 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B290D163F690F2E6EDBFAC0CD0D53F1 /* RCTFileReaderModule.m */; }; 6221A04C1F48445D01F695BD730A01CC /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ABB34BE98015F83F80BC4216458D9FE9 /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 623E4C952DCADDD44F6943CEFDCC21DC /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = D78FEB55F9E2565E62801C68DC429BCE /* FIRInstanceID.m */; }; - 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = E606ACB92B5C3B7E5141D49B128773C1 /* RNFirebaseFirestore.m */; }; - 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C48D6A870D541C9C33E4D3391F7940F /* BSG_KSLogger.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = B27112808C89B6BFC1421CDF58A00489 /* RNFirebaseFirestore.m */; }; + 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F2A26B74F81FEBBD83D944E81B2F1E27 /* BSG_KSLogger.m */; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = FD022A7C3D909D8519F310D4392F2421 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF27FB27F03D0836198D91EAAB34E562 /* REAEventNode.m */; }; - 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 871606E35697C7A214F174393C32C5A3 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F3B8A6101C7D6A4F68E2F87CD815D348 /* REAEventNode.m */; }; + 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A96F65FBBB75E5932155353AA447A23B /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4C051A4E9CF5D93B0327AFF8F51044 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D235412EFE764BFC9DBBEAD567BB29 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = D30CFBB9075AD715CF0814F3C42F20D7 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; 641AB39A00602C3CE7FB1FCD93FCCFF7 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 66228ED45E198EDBDEA21A197E306C7E /* SDWebImageDownloaderResponseModifier.m */; }; - 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18A5FB31561943E51775DF6C2A709D19 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C59C15AEEDA00AA218C77F7B154E57F /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 64554430F1D85E4FC49F1062A6B85E22 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = AAC30C36CEF4ACB54CE1E6E49DCF3E31 /* GULNetwork.m */; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9904960D15504DAC6CCA49A008D712AE /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A89F0F53AF583C4DDF0EA48B180780 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 16146E7458BB27ED2AAAAFE6755DE00B /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 029605E4F75D599083442F50C89433FC /* react-native-keyboard-tracking-view-dummy.m */; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D3B7D85B24ED236034102CCD4AD0E6 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C88481986D8C97632229F613D25D11 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 010B69D1871557FF87BFBCA7299023A1 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA28B39EED69E80E874C348017853C78 /* react-native-keyboard-tracking-view-dummy.m */; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BB117D47D780DC71082229222E18A9BB /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 54AE600BDD27B1D9D24B98E5EA73E2BB /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB041F83DA810ED8C5D4970D923977BE /* RNDateTimePickerManager.m */; }; - 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = DE641A302A8646320DAC48CE6E849B7F /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D910E4F42FE041573767A15964B6A7 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8347D154BA5BF61C554572F3EA4E1F5F /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = BC28432DB28E26600A79158B20F82B6B /* RNNotificationCenter.m */; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C223720610A971E3A68E9DCF8E90D03E /* RNDateTimePickerManager.m */; }; + 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E60DFD263CA56A4A50D0120C86E2E25 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7B13E6692DE8466C4698413277AAEE /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B10BFE8AE9ADF76ACD8FCFD6917854E /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 63A6651632E9893DD2C835F7F40465EB /* RNNotificationCenter.m */; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BDC9CA7E51DCBAD996FE36076C1898E /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C8720FF023E767A3FD73608E6AAFC /* BSG_KSCrashSentry_MachException.c */; }; + 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = E6809FB5792DAEB271400287F2D27AAC /* BSG_KSCrashSentry_MachException.c */; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AB2ABB19DF260BF726A2A7DE50BB0C7 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = D79E6FEE7691DA5E934AADB1851C0232 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C258ACC2E0DC8D657144811C2C0F840 /* RCTUITextField.m */; }; - 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB47831C397F347C7653E5A48316330 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F145E3A0B46968D0904ADDC55641E70 /* FBReactNativeSpec-dummy.m */; }; - 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA72CCD11307A621D3F237636E253F4 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = D21E43780BF3998101CB499FE552EEC7 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F72CFDA1205DF7C793BCAFDC48F55DD /* RCTUITextField.m */; }; + 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 495AE9548E0B2A19CFAD7180BA840700 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EAC7ECF9A844DFCE965CC8DE5E1440B /* FBReactNativeSpec-dummy.m */; }; + 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DC24019D7AC40892C15FA4D8FF0A6C6 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = E70C5431BA2C7BA47F7F1A4C065E8065 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2C19870540C57176CD67F1135A50CA /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 717784DDC0972D374703808D43BE935A /* EXPermissions.m */; }; - 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = CD77225F3389FD634A05B840D1B19DF3 /* BSG_KSDynamicLinker.c */; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DCA471A96EEDC4FF71B04C0B6280E1E /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC92164D6BFC49E2D478426F521D30FE /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E900620FE75CBB1CB75DF8274671C9B /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 96994F4ACDF019E0D9595D3C51B92406 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A81EA97901E6916351212989A5228AB5 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD10F59E4A10D804EB12B741C087F5B /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FAA02D5F6A5047F1C7508C44AB0B027 /* EXPermissions.m */; }; + 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = DC369B712E904236327530F01310C3A0 /* BSG_KSDynamicLinker.c */; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3748541FA350513B9ACA6BE46AFF1276 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE12E44C8191A2E8B1B8EFE32689F728 /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 33DE46464F3B2D67DFA5644EED84E573 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A3796907A5931A4755FD85E37617F75 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF7FAEF97C933110868B7036892054A /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A770DBE9A18F5571FE2132345A60533 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67036BF15E333815981C92DEF30881A0 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = F934561A4844BCB1A5D2C72516F4A72A /* NSData+ImageContentType.m */; }; 67278E9F64F6827638B4D52D8CF71F42 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = A31F188D4B66F6B22F8E86B908FDCAFE /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 893353C22879F217358868739D8C89E9 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 674B78DEE8CC679498E5DE48188B81FA /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 51D0EC206B3FF3FD54D207F3F5C70719 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DC038EAD706B8803534A159BF2D184F0 /* 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 = 18B6C522760E81DDDAD1505DBD7AFF87 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F9BA04E20185B2AE77BF40BA62A7E8 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = A615973B85BA181006E0063EBEE40504 /* EXImageLoader.m */; }; + 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 80899C2F8EEB9AFFD64A2675B5397557 /* 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 = E590CE097E6BEB3846526CE5383091F6 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 970A28468BEE739729C651807974B665 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FC54818204258126681C4022306BDA6 /* EXImageLoader.m */; }; 67F58E27933AE0C15FDA31315B4F0861 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = E9FEBF5B13B80FBCD53AF5D844C38822 /* SDAssociatedObject.m */; }; 67FB60A3B7937AFDCE4D41A927B10F4D /* GDTCORStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B600A9196EDF7F5CE30EAA93665B08F /* GDTCORStorage.m */; }; 680FF7736E95C4F0598D00BE3087C83E /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3905F7E6892A7956DD8078E9E87116 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A01F927DE5F13405330006480C2E10 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1E9A14E80735BFE4C7521D136DC165 /* 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"; }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E52AFA1FA6C1027A76F40FDCC7E87B /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 81156FC61B2407D7FBE118A27C14193E /* 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"; }; }; 685876391AD8815F91ADD8BF5CD5AD96 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = C422929093AA864A077D3201B48F2AD0 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EE0039A619694FF3E16C06F28D8054 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49EE0D4AA6ECCB30D86E884EBB2E7FEA /* 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 = FE5E3DDE6DD52E7DD9A1126EAF36F66E /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD87BD5009369711A2F79C3FE3DAFC6 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD189A000A0EF9993C53FEEE2AF81FD /* RCTBaseTextViewManager.m */; }; - 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8F20CC66C09FA1EA57D7754B739BB3FF /* RCTDevSettings.mm */; 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 = D353D694AB0EA7E09F8EBB7C3EACFFF2 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56407D16F77B1F00CB130D98F2C8AE4A /* 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 = 1CBC1ED4A7FBE216A54CC07F9B320554 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E9692395205DC2821CA5F280F28987F7 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 476F22EF3734CA3C04E87AD8A00D2EA5 /* RCTBaseTextViewManager.m */; }; + 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 744762CA457E16CA86CCBF56BA8139E9 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6954C7E327E3C06A6AA626163C0C4B69 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 017CC1B34A00D5D000439D51172861CF /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C5220ADF71397D5B95AA595F8813FE3 /* REABlockNode.m */; }; - 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 249EA4001666958E10159EC31E37103B /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E93257CABCD50B220319708EBBCA16B5 /* REABlockNode.m */; }; + 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6661B5DF26D3D513147A6BB00CDB9F38 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 698E16574F8BB6B1A4C2B0E81CDBDD30 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2806395B36E55041B47CB2F212D053 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 45224B74709B8DD765226CAF36340E9E /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BCA9CB13EC7AA7313838A2B3F49C7C /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C23762E4D32B627E18AA019E5F8F2B /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C65235A5B4462861F568033127D5801F /* 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 = 2326D21F65C132C6B573D2F986450639 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB5C603ADE91187AB6084A7CEC3E06F /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A6811BCCAFE9B118E3913633F9D1A9D /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 11613175A36C6EBE31343B6BACA3302C /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = E427482FF0816F936F72DF5FD9CAB3BC /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; 6A9BAB8845A46379E69D055193EC5871 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = D8DE3BC13CAB60BD0F12942A7720BC23 /* FIRDiagnosticsData.m */; }; 6ABEAD7FC928CF7779E132A291D0B0D2 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D2435B61807A015F7C86DCAB5E5A19AC /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFECA28172BDE39608A5EF2B76D15B1 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C71A357C4C3990C9352DAA14BD0A62E1 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 37DADD1FD92C1F8887236BEF67D91AAD /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 163849C656D0C2B93BCD6CB128E65F30 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9B862F9313F77A078F0063C59C4F33E /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AD6703F9B23155360E0F4B921E83CB8 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B6CD41EA0E92DE12D6390B15A0C6D74 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 29E2C22FF879C56A44707455873A657F /* firebasecore.nanopb.c */; }; 6B78D71DC954AB01DB63AFEE42B06E7B /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 677829C82932437E90068CC931C2D606 /* FIRInstallationsSingleOperationPromiseCache.m */; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5CA70816F8CA51268D097D84CE8B5B /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E0D984C4268C8982372D81B491862FC /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 61D39CC515F185885887678EAC477089 /* 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 = B8790185D4A434EF840ADA9054BCBD65 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 139E85882E272B8AD1192218C2587F21 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6BEE9EB48AF833CA1A6C58022E2C851E /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 853B2681E8D6B8DC9F55CF27A6E8090C /* GULHeartbeatDateStorage.m */; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B4EE64ED82995E97CA320A712E8CBDE /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 74A8380FADE2FEB9624BE15865A439E1 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 93606334B2DB3E80CC396AEDC2F909F5 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = AD2713659D9174B0454470119CFAA6D8 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 707A93EC8F27AFC053B4DFE9AD3048C5 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E0C7A086DBBA4CB8803CF531C89EEF /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D6D8D4185DD843E13AA076DD463262 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C447F4317536C8BEDDCAE38158898E6 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7647A1716C841E08616F47541DCD7B /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 496CF1E9975B06BA3A0EA5BE8C6FA985 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6C3065708E58CE2686A002AEFF1574 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C8D94790F619755B402629EC3F394BE /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A1C0F847D5B6DD6759E31413551F6F58 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6CBFAABEB470033B6CD1B49891885208 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC3538131FBA43CF7F442029413C750 /* FBLPromise+Recover.m */; }; - 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = DFDC939DDDE5B2F633F78E7D72C17D92 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 62046A26178649AC5D619E9ED83B8CED /* REACallFuncNode.m */; }; - 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7729EE9D32168E2D7F78339279D55710 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 683A649F2756D0CED81BC010AB03DC85 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 155BF30E98B03A0E2C247B5207B08A90 /* REACallFuncNode.m */; }; + 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F805D37D02D124CD2026F62A952EB66 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6CF9B64389DCBE99ED877DA30E3BE3A2 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 92FA3E16143BD843AB82FBE1484C3175 /* GDTCORTransformer.m */; }; - 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C7372FB61DF360A86BD59E40639D4D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B547458839A360641662CF36531F72 /* BSGOutOfMemoryWatchdog.m */; }; + 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0FDDDE6DADDFB9DCE1C1EA37EF3B99 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 36AA594FDBA32E557C49A009C974A67B /* BSGOutOfMemoryWatchdog.m */; }; 6DBD30F941705CABAECEB99911829643 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 587AD88BD32631BB096534980CA556E2 /* SDDiskCache.m */; }; - 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BF447A67C41DB59965B58758672AA97F /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6781874D04D82A9300A2130BD1910F /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = DCABCC9C8001FA20E4E1830A4BE93DA2 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FA897C0F8EC6BD805E0F68B392A931 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 425FCABB9C9CE8B1487E385F1EBD1E2B /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 08A767C7171B7484BC840053A91D0193 /* UMViewManagerAdapterClassesRegistry.m */; }; + 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C04CBCFC6274AF9988CC234819188B /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD06C33C223DAE7A71C13826F70C5F7 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 87021CA2CD7453C4F124F06C43992442 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = DE77279B6D322D56F97E3232C005326C /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FAD7F8DB9E0D5A33F39720D7231BE7C /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = CC039D26CC07B6E394E69C8209323C0B /* UMViewManagerAdapterClassesRegistry.m */; }; 6EC99E9A82F0476FB8A0B4E82330874B /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 289A7FAC33616CEAE154163C9869020A /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD192F604D03272854B5E351BFAC8FD /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC5411ECAAD3F957C8318B46CDAFFB8 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 67CF8038805502BA2D7476EDDED5223B /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 420B086DB3BA0B109F0F62A35FC5D859 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F2DC21E261B5DEF25DADB0E1FE0129F /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = BD7302148CAB101FE972B11E7D6DB858 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 03DEF745B4A8AB46F50B24D0270F4753 /* 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 = 7CDA57B7A037A04CAF162CCF8783CB39 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D131917DF3473FDB6FA934D9DEFEA9F /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA39A846885AEDDA4978D47BBBC488C4 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9ECDA9ED934C3308F87CE97820F9EF /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DEC9A923CC79D8CD146271B6CC8A86 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = A949256D0826A4CB0C7A208C50FFE3E8 /* BugsnagSessionTrackingApiClient.m */; }; + 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 6321847F10A77C1FF0389ED9C0C6B780 /* 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 = 336332861BBE16E791E3BF91B49A90AF /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9773B663DB146257EFBD1E74BE95F85F /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4CB974D84B00371C7D95D20396DD1C /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C2931D3997BF61E3E2E6B1736271F3 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7A512D07E627B025D9CA4F59AAAEA7 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 21CC78350195176B8CAB59745ABF5A3F /* BugsnagSessionTrackingApiClient.m */; }; 6F9A19A47EEE733740327FF7A92428BC /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 505638042E3CDED31ED33340DD6E648E /* FIRInstallationsHTTPError.m */; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C041C1310AE95E7FC32B4BCEF39B5E3 /* EXWebBrowser-dummy.m */; }; - 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EF16EEFB7DEE0F7CD09E9E57683CAEB /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 590F5492B176CBCF053C11FFF0CFC13A /* EXWebBrowser-dummy.m */; }; + 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E288E5D203F6FDE17E47E4F651E8BD4 /* 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 = CF05DD10D852093D157806E5E953BD23 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FCEE2424CB121B6DB9D8E376CF795C1 /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E958E567C22BA0032023C305BEC2AD /* FIRInstallationsItem.m */; }; - 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F3FE84E33655DC802A375A4A3A2F47 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C48544E8F498EEAB08419F5930C80608 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7000B0B67786D5E2CF438B2C6A3E06F0 /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE700AB1A857567583B903EB1F58B73 /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CA21C40AB9E6792C5EB386BCA0C5CF9D /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AA0A3C1FC7159967E28C438FE0FB7 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A0D42512086283A861F8CED0F648A0 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71337D195C7203C40B62109A887445E2 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = D701D1816B81717849B176050ED98E4F /* FBLPromise+Testing.m */; }; - 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AC0C7574DAE4ECE43B4A13EF75AECA8 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C4203FB922C2EAEC70E9EF0E3F2ACA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = EF91A2BB1EDA2CD251578C0B4ABE65DE /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AD56F36405180E5DBE926AB9B315D565 /* RNNativeViewHandler.m */; }; - 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B5FE8F6B235D306BBC8054E5BCA09CDE /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9496F8ADFC18E0AA6076F1A696215AC9 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0E13FC825A0389AFB6D7962502FE1D /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FFA88F32071559CBD53527B42B8AF9 /* RNFlingHandler.m */; }; - 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = F15541AFEE0AAB9CC4B33C8D9ACE40B8 /* BugsnagCollections.m */; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 89FCAA5092C605B11E0AE9CF0E37A25F /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C061B1392DFF91EE6CBE0A4CC35993 /* RCTSubtractionAnimatedNode.m */; }; + 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9F39C239AFE1A8E1197B94A171E0744 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 184DC0D7DE1AE0F20800399CA4E36527 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4C2A8FF4818C982D1AA14F3A16798E /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D67FA50BCB44E3E2A056DB73ECD959E2 /* RNNativeViewHandler.m */; }; + 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = F14C54CC504345EA12F777BB987EB343 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D954903953EE83F65DA07AFE0553C0E /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9F08911747D4CC8EB8C9AC619393D0 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D5A40D8EDB5FFE4A6152623A437B93D /* RNFlingHandler.m */; }; + 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 09D0EA33A1A7DEC68F1EB447B004AE9C /* BugsnagCollections.m */; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF1689796DF0258F63C2C60A4D2FF62 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 211A78C16996FBFD76CEEB864AAF23E5 /* RCTSubtractionAnimatedNode.m */; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B528863F8D26E47DBD2FAA61C3FC4FA /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D79E9727C2F33141B180DBDF92EB47F3 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 4125B11710991F319C4DB376FBE1CA9F /* RNSScreenStack.m */; }; - 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 13FAC8112719E5F8DF48A5580D6146ED /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 98329DCCF0E9C701206E2578C76953D5 /* BSG_KSBacktrace.c */; }; - 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F9A05013AE6BE94D9456BBB14712E2 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DB85AB605D045FAEFF9B0A37979882A1 /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CAAA95AC5A05F3CCD215D95CD66B1CD /* RNSScreenStack.m */; }; + 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3367E71248A5F32DA25F6114C127C578 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = DEE453A55C088BE7915FB3FA91CECD2B /* BSG_KSBacktrace.c */; }; + 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 456BBCAF78BBACAAD7C01BC9E2597F20 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 736C1E17BD05A7026591A32A7F626B7A /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AD246BB1DA917A3E16D3F36B4867501 /* FBLPromise+Reduce.m */; }; 738FD16D3B15E94374A9151BA1B17663 /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 64858CBC195C53A245090C9C8C11D8DB /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 744D36A39C5C7188078F180F8A379A4E /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = FED3E487A355D9CE1B0445AF9E4FA899 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 294B7B117A54E956E4C3C0D7547DCC63 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CF616BF6284E7AACECDBB37FA2512B94 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6548FD636CFDC61BB7F344C247E1C340 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D2041F40CB423E76610B85373D225A /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EFAD701B4A0CCAEE8A3F9DF35E5D4FE /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D33956969D29BEE46BB8FADABFD48697 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 757C477AF763DFCA1BE5A5D78341AFE8 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE40F8A55B4E0868CA1A35733818234B /* FirebaseCoreDiagnostics-dummy.m */; }; - 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A353EBABAB23AF51DD06C780062A0033 /* RCTAdditionAnimatedNode.m */; }; - 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 980FDBA738C683BE41F4E005921CF7B2 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 94F244C33CECD727B977DFD36C60BA95 /* RCTAdditionAnimatedNode.m */; }; + 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 625CF074D1CFC7EF2D456B18DCD83D2E /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 75AF4BFBC99BEFE0356973D015D8F83B /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D213A29F586151F62E7D1190EC36483 /* GDTCORUploadPackage.m */; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 73045376DE6AE9AB27D7A891266C41A8 /* RNUserDefaults.m */; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A86A4A16B1C1402D8BE800134AAB09 /* RNUserDefaults.m */; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E8C6A830011E9B4493E7F2FC363A651 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E8670CCB6423A4F5E3C093AF04252B /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82451E45D911AAD9D3D2D625AD21505B /* RCTRawTextViewManager.m */; }; + 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1213CE24B7A8C686B0CC8F9B08C5BA /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 60361FD7C49A6AD026815EF494CA3B33 /* RCTRawTextViewManager.m */; }; 76D25ED0F70513D59EB42DEDD4030C8C /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E28FEB864CD8E6FC7A5CD387F3CE7FD /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8825B0D3568A19F57CDF00412E9B2DD6 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC6F67C2DD59A6AD926936B059FB771 /* ARTGroup.m */; }; + 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 49D0E27D70268CC4E88BDCEBBDA290C9 /* ARTGroup.m */; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A5D533C41D3DCA0AE4501ABA408A5EF /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA3586451A5731024F262422F2A0E80 /* UMReactLogHandler.m */; }; - 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B1D9D2E4B60BD628785C1C0FD559AF /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37B7696826AB43902263D71479D95B63 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 381832CDC240F6A0687658ACE989D6FE /* UMReactLogHandler.m */; }; + 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D896F137C78EBD13C64502F9AA3008 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81F3CD9170F9CD13EACFDCC36CFD3A20 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 782A7E895D3075095F9AACEBA47584EC /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85F22489B98808C5DA103C7B579C00A3 /* SDImageAssetManager.m */; }; 7858D06DC0B4D4114B09194D2473AF68 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 183A3C0267913A961293F8FCB8FCF81D /* SDWebImageCacheKeyFilter.m */; }; - 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD2A49D0B1F2C6DFB39EC4B6DB2F80B /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 64144AC036A04D59E4B3A858C4007A68 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AACFC75C230014487A026D8216B40F /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9CA38E879CD20E77C3E4C4B0DE0CB9 /* RNDateTimePicker-dummy.m */; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0555768DB0E5A54A2ADB6CC879ED19 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 70088BB7379E97AB2D9E9FF95F92F140 /* RCTResizeMode.m */; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C24DCC43F7BDC47BC5FBA4D59DAD4650 /* UMModuleRegistryProvider.m */; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F21B72296B3BE105A34CCE9096EE22C9 /* EXFilePermissionModule.m */; }; - 798057C43424B8388D37B37C0FF3D516 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; - 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 129CC95C969B20399F41C6937A02D570 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = D10BE9B6DF433AD07B0DDF606D7F2E3F /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A8224B47E4E204C913A8027996EF23 /* RNDateTimePicker-dummy.m */; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = E35E8759D6F54540CDE1ABDA1CF98535 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = EC302DA9C6CDD370EB704F334E10A984 /* RCTResizeMode.m */; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C924DAC40ABF80AFF8DDACA3783BF610 /* UMModuleRegistryProvider.m */; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = ED1EA912E8DC15EEC8D3CCF175A144C4 /* EXFilePermissionModule.m */; }; + 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = C96443A48B38CD90869692B1D9B3B0F5 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B69D2EA711D9DE261BD4F8DE114AAE /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79B0374BFE07F9D6A24D3310F5DB476E /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = E503EE768F7FB7BA45AF2BCAD9C1BFED /* FBLPromise+Delay.m */; }; - 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F96477C90288FED4C886718B8328F74C /* RNCWebViewManager.m */; }; + 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ADE9884FA448BD9B459F272F5B850E1 /* RNCWebViewManager.m */; }; 7A19A0BB7B9140448F7E0498A1C64011 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31AFD104F69CCD2F1C24B01B859DDA5A /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A86CE51E137904ECFC87AD6329D753B /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 014FBCA79FB8FD0C06F5F4EBBC1B6BE8 /* FIRInstanceIDVersionUtilities.m */; }; - 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = ACE6509B53357A0C5DADE6031CB9CCCB /* RCTLocalAssetImageLoader.m */; }; - 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EB94F93D00DB0189F3ED90E4609092F9 /* RCTDivisionAnimatedNode.m */; }; - 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D230A5DC176F0B184A61B8C98B6BEA /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D965544614F05819D78EF98836617D24 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F357FFA83F025CF4B110994FADFE0DB /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F689FE1EE0C527B721E002B987BAD52C /* react-native-cameraroll-dummy.m */; }; - 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 534768FC35D1ACE995311324A92A4BF0 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2877A38389E7D2FC96844CBB9A9706EE /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A43E7DC5723FD9F6489D01E21E04EE0 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 0086AEEAD45DC59D6693CBD261CE72B5 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = F7AEB18271B93ED325AF1F8E5EA32664 /* RCTLocalAssetImageLoader.m */; }; + 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D74F25B5B18ACD7FE4ABEB3B36EEB39 /* RCTDivisionAnimatedNode.m */; }; + 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = F49AC5D6346CE75F7D1FF5E8737B0137 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F60B77B8ECB9832C79FC49536E9187 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EFBBBC05E3C3C332141A5AC62BF6CB /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 58E5110EA87FC2CB75FE09EDC2B796AB /* react-native-cameraroll-dummy.m */; }; + 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ABD8CDAAD0723AA4B20AD59FC2E6501F /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 986824148C5063640EEB369573A7C353 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C1719800CE128E59EE7CB07010B4676 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B6EF411EE2B65DB86109C9B5BB349F /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FC7479F169BDFA83A763E71935B39C0A /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 61FBC6C6160BB2253D991ED26479A5FB /* RCTBackedTextInputDelegateAdapter.m */; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = EE9AA28534499BF21627F666995F05AD /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = D3452C49C169EC34D31E329A2B255A99 /* RCTBackedTextInputDelegateAdapter.m */; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 31696E0031DC0A7348FB5EF6E614B0DA /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7DAFB46E119763177277EC28363FF378 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DB662C3FB633BCCF0EFD8EBAEEF8AF1 /* GDTCORClock.m */; }; - 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B41185A17A123EA4A1F48887C13EF48D /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 290DB13BE039EA3C352747F78BAADE99 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FF47ECA5D929CEE09263D7E7DBA3B3 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B8E2D29E386F5C3FA652AA6D1DD585 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDEC62F4C614B147414320095E07BD1 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA34B065C288E777E0D495594C554C7 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D34461A66E3259AB0C1167A107511FE /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85262D71DBAB951692FBC6B28F927FF6 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFC4C31FA14EA5D1E5B78F7A8DC28E4D /* 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 = E0B1D28C01B0D9FF019BD11F48423BE1 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E47D5D95BAEAF224B1C3E50EB8D703B /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D78442127209831840FF37844DC9BE /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2188FE6A55B64B2F02E879DA1820F9D4 /* 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 = 4EA1758B2AC701677EFDCCEF39CB7602 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 79F7D6AB62949A7B3E94E31B11CA27C6 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7F9C8E377A693E9134461700B17A972C /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FFE67DC13EEC2EBC31ADD1DEBB2A2A /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E0D2157B64854FED419EF02DE3FD1B /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B616B83B7EE2AF882F7BF7E712E89C /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FDA653125CBE9C51664C67E7676A423 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 3762F4EB37B62BDA42A52139A2CE184A /* NSBezierPath+RoundedCorners.m */; }; - 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC91A933451B8E0BD44C846366D89C1 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = C3648A8322404CC8C46A79E0F95A315A /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE00F5B510EE2652825473F9A8E14F2 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 049F9D245A0FB203DB8F2DBF52A82821 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A6D7A6A091B419DF831051E00C4CD8 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = C80098DFF4FC0A0A31DB57B8640F3EAF /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 803DEFC2CCE0AB3F23FEB7BE2E87EBE2 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B3A6A7C3F776BAF61AC51C5A02FBFA0 /* FBLPromise+Timeout.m */; }; 809388545866799ABD28AA5A1D27F9E5 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 54FDDD0372DB70DE5506C1BE95A23BE4 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F2DA6A44AB5BE316DEEBF16FF0B5E96 /* BSGConnectivity.m */; }; + 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 133F91CED2AE71F47C4EE3CBE81C081F /* BSGConnectivity.m */; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 45C98A4D849F92BF74F62E180ABEA4E5 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80F8AC2C5A3783FCA7E33066B501CDB4 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FE7CAD15D46DC8EB22E034ACFB28888 /* FIRInstallationsStoredAuthToken.m */; }; - 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B360C00644E9E808A39C5EB37BB1840 /* READebugNode.m */; }; + 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 01CE63975CB6F456365FF3E39570FE09 /* READebugNode.m */; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 32E8D2B7930D83212864A4ACCE2292BC /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFE1F387E5F04ED134A6A71124C655C /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 830091E9F5DA8AA7DE3E4082877C79B2 /* 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 = 62479198ABD12ABC2AB2CBB922468BF2 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = E3AC30C12EC69BAE7FEB7BEBF749393F /* RCTCustomInputController.m */; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8E71FDFCC3B06D04E7727522B17445 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF24566DF5E1E5D90A0E4E1DEE6C501A /* RNCAsyncStorage-dummy.m */; }; + 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 533EA3923C59C2A738D04531D4A94881 /* 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 = FBDF61950B1DF6964906A8592FCD9B36 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = B63ADF446513C372AA91EA2AEB0CE60A /* RCTCustomInputController.m */; }; 81D4F16B20CB72219D872D8ABFB068F7 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA7BEFCEE456CEE557E176D2373B2AE /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 327D614BA3B1F0B08F1632FD256AEA36 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8208754E5259F6F76445FDE11F5E84F0 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2281519202E71413AA842990FD9E7D77 /* 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 = D27001C0EE49A2C52AB055D6EE0F0F01 /* RCTAnimatedNode.m */; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D88F548D375DB8B478A3622B94B83072 /* ReactNativeShareExtension.m */; }; + 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 121477E3C5C739ABA9355F4412524663 /* RCTAnimatedNode.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C4400A6630481D31011975ECC11D8F /* ReactNativeShareExtension.m */; }; 8234B7822CF1CA1C3DF395FCE35C9178 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 66BB28169F8562B9DE334B74B5B456EB /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C795AC784E91CE7BFFFC7AA57CC3043 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC6719490272E2EB87C07A55669DB19 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1DDE0B9338CE30EFB1968BD0160998 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0D0EF4FA73F307C1E3F62E498F14A4 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8264F64F4D30DEAEA786C1196C93A765 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3DCE3E62D468D58DE3FECB07CFAB5C /* FBLPromise+Race.m */; }; - 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 840D870AFD9819EB4C229B9AA8AD9807 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 52CA71561A2446043A4E25FC55B9D7F4 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = CE5B2A1B6F1EFD38BF8C4D5052784952 /* UMErrorCodes.m */; }; - 82B3F4C318BA4FD63398DE44A20A7367 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; - 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AD90983FA7D465181A1A5CFF499F0DD /* 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 = 15B5BE8D50BAB0134DD382D366567ED6 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CF4757C5B91E322EFA671FFD409EA3DA /* EXFileSystemAssetLibraryHandler.m */; }; - 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FBB2E0D6185552EE63D91A0B3B7AD1F /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 03985525EDA89F3F7A68A80B93EC051C /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F13F85437C08420B2C4D9772A5C0F84 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 938DCBE6FC774E699F3E20271277E1E3 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AF067EE13D82C357CD92364DBFAEAEA /* UMErrorCodes.m */; }; + 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = FCBCD2C615BA0D89D3234B209A073845 /* 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 = F8626A5A17612355C68F8F392AACCFAE /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A3AA3FEA8A53641838369D00C03EEB11 /* EXFileSystemAssetLibraryHandler.m */; }; + 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 717BEEDB30766F863AE9B6C97B2487E5 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = BBAC5AB79CDF7B6C8ABA256E139C50AA /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82E00AB632629A007250F0155CA70AF1 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A16CE135CC71ACDAB57AB9C085A4213 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2CDB4C30DCF3C644EBFB1CB6F8B63C /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83390A67A2F49D02357DF39160B3C87C /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 636D6783185DE1F442D58AEE9C52B4B1 /* GDTCCTCompressionHelper.m */; }; - 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CBBD83E6C1F160B7D5A5719C8DCBEB /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 302A9997905DEDBD4BD5F41E572C5F5A /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F4EB52F7237332185617C32F718E1270 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8383FA5D12B0C3167407B96F2013E9FE /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BC27AD9ED5029E588DEDFB282BC600 /* FIRInstanceIDBackupExcludedPlist.m */; }; - 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4873C107DBE9F26AECC09318A8B12A9A /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D40CFA13FF0F7838C12F25132E746C8 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC84EDC5DAE9647029D17EA4E949065 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C5D33539C2A8FF785C0187DA6093C2C /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83943BFAC59E2196EC1FF4D2E942776B /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F1C5F873FB22C5A73E967F1C3900F05 /* 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 = C644DF549BD49E875B7C6EAADFC9A82A /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5670E1147F9957D8D0E7C4C079DC8DE6 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 842E582DBF635E475E114381AD4F9C93 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1731BEB8C2C3368DB5FDF5403C2F7DF3 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 39AF1DB378623B241A1961DA51117BFE /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A281B418998BA4257474919CBA88225C /* 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 = 8AC291AC8A6255C6CA2555A29AD5470A /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF969E9497D5EEA00712AC408040AF6 /* React-jsiexecutor-dummy.m */; }; - 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 79EF13B1EBA69CD93AC259653E3BFF3E /* BSG_KSCrash.m */; }; - 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 29670EA7212693B9A77B25BCB1B2DE89 /* BSG_KSMach_Arm.c */; }; - 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2A4EB921C09B725F2CB6A24B0429F1 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 90840E4541C9DD475BB36737BCEF0EF0 /* 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 = 8A8190566899CF9ABE25C063278E2F77 /* React-RCTText-dummy.m */; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 747C66EBF0E1D41E0EB7F66EA1494C98 /* RNFirebaseDatabase.m */; }; + 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D0B71757A2D8F63BF8B9AA62C5BE3F /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 395737951C4FF799B8D1EEE29480344B /* 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 = D74359D60258E32C8623C010E77D1BF3 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7172F5248F51BC52D083CD0358E25881 /* React-jsiexecutor-dummy.m */; }; + 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = FF406B5F1741BA6DD87BEC1F1C74251A /* BSG_KSCrash.m */; }; + 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C52513AE7DBCB5987F011FB5DE59BAA /* BSG_KSMach_Arm.c */; }; + 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = E143971B2FAD9D211A5615404D3C641B /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 947156C3718A8BA4D97424E2F46ED875 /* 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 = 6CC0B61C0FF14A37EB6CC7BBFE3E8901 /* React-RCTText-dummy.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 67FC56B3B3AEED7464E5912801435C7B /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C6619CB1C1D1AE75ECCE9C2E6A35A5 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7493D81119BC9FA4036C10337C09BC5A /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 188C9AE6484B0E6EF5C45A6E65126E23 /* RCTMultilineTextInputView.m */; }; - 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F1AD8D4096824219D55A5025F4580AD7 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D59645170D897EA74762E1FCEA7753D2 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A65B9D51FA41BE5D6CE29E02FA8A668 /* RCTMultilineTextInputView.m */; }; + 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B0D5740DA16048DBA67EB3C7383D21 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 857CFD7317D23D33D462842423F50303 /* GDTFLLPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 33446CC862D2173DA53D5E95665C24A8 /* GDTFLLPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 67A1FB9C11FBF93A066ED437E4D975E9 /* BSG_KSCrashType.c */; }; + 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = E94612411B009341CB5E270FF2072BEF /* BSG_KSCrashType.c */; }; 858DF05CB9907C3E2A68BB29C4D60873 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1AB32C49A2A285235B4FDC69A39BAC /* FIRInstallationsStore.m */; }; - 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AAD3F86D1EB9651A77F4480C76E25349 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 547D8A09A994D72FE717196BE4DB1272 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F05DDA788AC42546B5D27BCCA0222EBE /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E29CEFCAF60427BF23BB8173FF0290 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 893F64FC7D8FD759746CEAA5CE615092 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A6201676CD6EB9665D5AB59A3818A189 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0ADB4CAC6CB1449ED944347FAD66A2 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D65140255764E9E242489D4004C7C9D /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8691A04446317D7D3C7D3DC58CFEDF5D /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3787BF1E614D7EEDF5E1142F012247 /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCE5F1C5D4DF02A3D6824D9A0B4347E /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 87148DFF70B1C9617F089F092F86CA90 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86C94F87667167DD05AB086C62038113 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = F7181E6712382186FEFE1FAEE124DC30 /* SDWebImagePrefetcher.m */; }; 86F28EFD2EDCDEEA0133995833BC4BA4 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA42C4E98C13EF33E441FE62148783CB /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8709E4EE5B3FD0A526072D5F1C141722 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = F581E835D4B745A1D287B2D9FAFABD0D /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A5655AC0642AB47E0696586F98F9EB9A /* QBImagePicker.storyboard */; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = F85D6B2F3D53D8555287EE94A251903F /* RNFirebaseFunctions.m */; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3300AF5C29476CE937A000A54DC91A65 /* UMSingletonModule.m */; }; + 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3E5B4D8B287DB1660673843CE794A172 /* QBImagePicker.storyboard */; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 39E77115B17F4922F7FCFD4CDD27B79F /* RNFirebaseFunctions.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E008D2B5EB7D0C472E16FF196068F7A6 /* UMSingletonModule.m */; }; 8793DB9D4BC902335BFA665F3784AD8D /* GDTCORStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6EDA25FA893D1DF91AAEA53BA75B9D /* GDTCORStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA6021FC51B75C6CA372416846B2B09 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D1C195D2008482FA65BF8751D0DDCF /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CBD554C9D80E29A82E56D1B7897C0E38 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 27456DCA1E6F6425090860FC8F695FC0 /* RNNotificationsStore.m */; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 72C42A5379F7678BC2480A469AE85D1A /* RNSScreenStackHeaderConfig.m */; }; + 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EFB1EDDE9BDB5325F76E6053F52E1EF /* RNNotificationsStore.m */; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = FC92A9FDCFA5DF1D1A81BAAB393E0678 /* RNSScreenStackHeaderConfig.m */; }; 87CF39BC0CCA51CAB58590CF9A9B8FA4 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D352643E8BC0C05FAD0BB5404F73E27 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78370509C55CD0F883BD4BEF2A6D6273 /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 291516A2A64F6B8BB33660C84E91573C /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7012687F32F355EC8E14C8C53AAD981D /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B5AD1271E80498E631E7D678848663 /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B79E4CBAEFC8F202562019D7D31FC1E /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 40107C1AC2FC5EDC4845E0926FE4146E /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87ECC4C043286D06A575B38448A0A66F /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D996FB83753842B15AAE13001FED927E /* UIApplication+RSKImageCropper.m */; }; 8809B9F0FAFDCD89CF323E1489AA3660 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 106194880B0291DBB2CB25096A7764E5 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 948E905C7DF7FF829F4AF8B63DA1650A /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = B55CACA6C91A7C67EF1D293C012BE983 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EB20BE3ECCF35EADA103257BA92078B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9AFC587C2D554D3295F5586D669DF8 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C5C7F21ADAFE55C6ED0770ADDEADDE82 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = A96CB40A9755C2F2F94FB73512E96322 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 57D3DD9B591B8A0DEE7CAA25810D6EAC /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A3B2B8451D2E51A7C50DE977B73B0D /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EA3786891CC282557AB2EF14638CDE2D /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88E2D72A67C9FE9C1F481C71F68EEEF8 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB0025F1EC6EF96CB0113EBC33D3711 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88FAD4E57380E26AC7F03BEAD2EAEF88 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = A0EA3217B857F6515E5C3725E793D70A /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7E9AE99C7865CC26536BC2DD0CB0854B /* 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"; }; }; + 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 12F8BF5014271D19B0AFE318F6D11002 /* 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"; }; }; 890F9DF78C90743B0CE5E2CC7E7AC4E6 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6129D17144193C727D68FFB158130674 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 891E992D9EB633B92E3DF27F9B310C23 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F2F55C8488AA7450E778BF58AD47EB /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892CC8F163730004416A9E0EB66454A0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EE96081B960EB5843F26F6558A40730 /* UIView+WebCache.m */; }; - 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCB43D3827AE977D3013BE069F70FCD /* 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 = 50016C1070EA933A214FF69663C622FE /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 407195066338AC41FC1C9733A789B974 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = C612DE22D689950A1B3FE93EF732FCAC /* 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 = 31B989125059D1A30A1915AB163B8157 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6F3F121015DC30BDB69826ADAD9C31 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8950571C071AFC5410328C4CA3D19B5E /* FIRInstallationsKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FEFA98B5E8668AD537CEE144C68D35 /* FIRInstallationsKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8990839281ACA886749C54D8CA07FA88 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 86670E276CC761C5AD9108582C55EDC3 /* FBLPromise+Do.m */; }; 89BD4AA4D3B1EE870D5BC99EDB0FD812 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 65F4CD4AED2AC4EF14B118A58EDEE355 /* UIImage+RSKImageCropper.m */; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BB0CFABA51216D7A7818D5F5D3015E7 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 89CBF65D46171399F0EAF5C79B09E6E6 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B6DAE9177A3C3A2B93422B1382202FF6 /* SDImageGIFCoder.m */; }; - 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2D5D8CC1056BBA90C406A003EF23EE /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 78C07652F1F392820EC279464BE9D615 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89ECCD7C01DDA71BC7FB896BB010E7C7 /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C3136B59B61BB160560C616ED25BC08 /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FE1CC5E059EA91AFC5ABF8BF527E9F10 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A362B80D43E6603CF994D92EB2C52AD /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E818294C08CF5776BB1D71226C8C1B0A /* SDImageCachesManagerOperation.m */; }; - 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC6230FB6919867F9E4FFE36EE66EDB /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B31E1FEB4913F38A62E60358EB9BCE37 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D772327E9F776A78B45D699F8C27C4 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FF091C557CBBC8FF608866AB6D4C58ED /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A9D84B786AB2897A000D05D3AACB59D /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B1151875A2C24A78423CC58505388627 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3961133E9C62549A0F7C125B3EEF7E6 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6DB7394EB220F61EBCBCCC9454CF196 /* 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 = 392B3106DCD1282949C544B07B1586E4 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FEE9E165727EA2834D50BF5CD1A68D /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = A98B8012F144C30D6A38B0B3B345ADF1 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE7FC29097C1A2C7BBAB7252D91C9D5 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 682095DA635CC6AEDBF65261265FE60E /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B43C248A2375B0F2B98B5157B1205DE /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 51087434509AC9D80EDBA3801FBA46D9 /* FIRInstanceIDUtilities.m */; }; 8B461725557EA6544B7B191BFDE8C1D4 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EDA6DF3A3B6AF0071D4A7A9742995B2 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF9ED76541390C66E04D31C29138C06 /* EXDownloadDelegate.m */; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E8EF18128806B5096CE475E08D7DEC9C /* EXDownloadDelegate.m */; }; 8BA04E1FA3708A51146E5A1218DA87B3 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C5912343F09FDEC67C47A7DD500AAF /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE52EB85E8977A12AE544F6B71A771E /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC37764363A76FC196073D8917B4584C /* RNCAppearanceProviderManager.m */; }; - 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 4A3A2F39E1458E815C1C6DDF6D8AC153 /* RCTProfileTrampoline-x86_64.S */; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 996801C699EFFFD25ACFEC41DC4EB4A8 /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A21D2DBEA36CC48A3607825DFED2E85D /* RNCAppearanceProviderManager.m */; }; + 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = A0E2C2A0578FFFBFA58D8D308265FDCB /* RCTProfileTrampoline-x86_64.S */; }; 8C067D43FFE92BEE92DF729871CB6737 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B4CD2BCA1F7FD16045A42310FCE9F0 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0961F4BF06E2D6050B14C3292638B6 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F74600A3F236533A7364611CBCD0A9 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 754C1763718FE74C32CF806FF8384D33 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0C8D915DA3564FD6B5B7B18703D8C2 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = B68868E9598353F7206899DB35AA264C /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 8C1FF88440B33D9481A72C8EB18AFCA5 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 616B59B78E41E0F8743C2A2FDFBA466B /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A40F869B4425DC36B268AAC134C05811 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 420B51DB8652B52DD1B92079DF6EFBB8 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C861E9CF0A5D895DA2E65CC1A3BAB8 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE0D0103FCF7397BFE95BB411148F8A /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C5D5340CC2350C17774207F4AFE339F /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F237C28969479FD39F0D8EB9063B79 /* UIImage+MultiFormat.m */; }; - 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B40BCE5751CB15D9915ED40E54235270 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 87362BE98732F68528D90304A5C4E274 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 1706E659D23E02AB43A00E255ED2B3D0 /* BugsnagKSCrashSysInfoParser.m */; }; + 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3632DFB1D9C0696E71313BCC82D3B30F /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = F655D94492FC6ECBA658C4771954484F /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6873EE637F1FD65CFE77AED846DB38CC /* BugsnagKSCrashSysInfoParser.m */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = AAB27BBE32494400507F8652BE36111F /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 770C7A2EFBD59228C347732E76C01546 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 49777C8BDCF41658EF1462402BDAA962 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B5D7BB5FFA60F01C8E187D6D93E9B1 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E84E6C970C887F862CFF4A74D75AF6C /* React-RCTActionSheet-dummy.m */; }; - 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C1C346A405E291620CD1E83A90BDC2E /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = B48CB7F7996FE3D23C468D39879F5DEA /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 660C1A1152A5277F6D275390ECC7089B /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = AC30C03D01D31FD850CD4F118749E13C /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20D53B1689D26C8BB9510CC4A87E1336 /* React-RCTActionSheet-dummy.m */; }; + 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4237BA3DA5584A32961F36AA1B7F66 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8D751CC4E9101960E0571131E2DEFFEF /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 39D1DB7D0AB5BA90F8138F64EBA4323B /* FIRInstanceIDConstants.m */; }; - 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = F84D927CDF596173B9BCA45A39ABE347 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = C48A8F36129D6901E54E9A08ED6D9BC0 /* REAClockNodes.m */; }; + 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C2C67F45E347638D596266DCB078148 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A3E9181E2D51A42FE4943ED1D9B5535 /* REAClockNodes.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 84EC518D9D034614AA1F401DB6FF9D92 /* UIImage+WebP.m */; }; 8DEFCD08EC9448EA4F746B9134AF4D65 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C40A67EE1D77C8674B2974823212EA0 /* GDTCORReachability.m */; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8BCB824FD16FFB5D40146868CEB425 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4604EB84EA7D173EFB6BF96910AEE699 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3B5DFF6CDCE9E34DCD31DCD94AFC08 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BF2D6E7BE353183521A57A78A49ADA16 /* REATransition.m */; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 687D274BCA24C931D4E2AC530A4BB8C9 /* RNDateTimePicker.m */; }; + 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 561D85765F922638B5B410FD1C0FB705 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6A90739E4D7434B356723994AC0BD9 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F86F1D1029F8C811D125D9BFC90A45C /* REATransition.m */; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = F3EB7483F89D0166947E7B4B6F5063EC /* RNDateTimePicker.m */; }; 8EADE023E455AEC580E9BBF11138B13D /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECEDAD2A838321D345DEE9D05E6BB90 /* glog-dummy.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C64106BB2DF7529C974379A31A7B6EE /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8ECC32BE1D834E064B790DAB6A677280 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E3C8E6D99317CEB9799CEDC4EF10E0 /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4F3FEA4D6EDA37ABD94BCC29214D0E99 /* pl.lproj */; }; + 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B55C64759D4234F5BCD31FC30DB51E88 /* pl.lproj */; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C3170CE50BA839FD7FFABDF189D8F38 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C89D7ED4E2CCB53B6DA2BB7D65A67DD /* react-native-keyboard-input-dummy.m */; }; - 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8B81AE3B3926554D716E80CB3FB004 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5617399E43084D1599B422553239EF32 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BA901DC34FE6CC5679CFCB66E02766D6 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DD296BE09B1F1E8C3FCA8CA4D72826E /* react-native-keyboard-input-dummy.m */; }; + 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9780F189B0F0F286F7FD96944F5439 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A2532A5E6FDB846AF250D4982310444 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B25F2C7F57673EEC44CF50293C20C82 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F67D72452129D5639844135A9C40BAD /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCB16C1702DEA720BC36211E43A6596E /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E91B911130158B9E8F172DC0BBB76C9 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E6CD74ACE700E806D1BC5D367E87DA /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FE0997788C0371B00C8923C3D935168 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C5CB61A36D2F0DDF60097EB08DBD66 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FFCB0876C97E6E6A9BD192A5514E737 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DFCFAD3BB3A6A89D23F127637FA0517 /* SDImageCodersManager.m */; }; - 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FD13DB39CB84687FE2099B379E9042 /* RNCWebView.m */; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C7B6452059258838A037FCED07C385 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CE97A536A1DFA4A7DA3CB55448D804 /* RNCWebView.m */; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C14DB17FC0976634F69EC839ED8CEBF1 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A1F0899513A15CABEC77801711DA43EC /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 15EC4CE1E11E17AC364ECBAC3B513646 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = F8963C48B4C9E71258D0BCE42665AC26 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B52FD2856570BDBFEA5B0A8B5F19E3 /* RNReanimated-dummy.m */; }; - 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0840CE117A17CF8930BBBD11D54CBF22 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B5BA4ABC09603A9AD22A2883EAD20A /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 663579CD0EC0678A648E6960DAB1F54F /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ED0A745E4060ACD91492E573ECC72BC /* RNReanimated-dummy.m */; }; + 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F65734043BD7387F353B6BED3746AED /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 90EEDAB80AD3D2F8B41E0C9F4C40CCF3 /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 905B1BD1CB9FFBC1DD7770F2DBD5FD19 /* FIRInstanceIDCombinedHandler.m */; }; - 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C1CAC2DFEA679A049CF92D108DD7A1 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCE538C486A25F8E214D73571B7BCB5 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 911D35D4C93E94049058BE6695C7FDC7 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 084DF8B81E62B3FA2DD1A9E2620122EC /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9174043F2C5C946E391930C776A8F658 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 192CCAEA3A7BD283727CC8F0076D4F1F /* 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"; }; }; 91BBF552A2FF6BB3042AA2B96075C326 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 514AE00CD420A8229A4F661330A06B47 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CB00B9C1487A989AEB34D4E8BA7371F0 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 13D918F729CF132872915DE76691DF4A /* ARTSolidColor.m */; }; - 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CF3C6C0E55376CABB4BFAC540BCC319 /* REATransitionManager.m */; }; - 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 008EF4A8E637E3AEF9D320EA581F1D58 /* BSG_KSSignalInfo.c */; }; - 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 36756CBFBFF0B3B954AD1B7158A3E6D4 /* RCTInterpolationAnimatedNode.m */; }; + 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 078C04246B9C3A7EA9EF3CDD9744B954 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E2BA298FF1E9167CB35166313B9A7D7 /* ARTSolidColor.m */; }; + 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D4A2E787296829FC87D4002896C4F0 /* REATransitionManager.m */; }; + 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B27122F337731A2A7A618F22CE4D3057 /* BSG_KSSignalInfo.c */; }; + 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 68311F13F12006033BF507D23E722D99 /* RCTInterpolationAnimatedNode.m */; }; 92761B113C01A55F1CEBA2DDD2495446 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F8311DDBE0DBF0536063DB1283834E /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D47D80CBD48D815F683A354FF3FAFF8 /* 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 = 570E8CC0C7BFE3CD3F2F32545D3DB556 /* 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 = 2A2F1FA0788DFD486412DD726FC1C595 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ABB39A02D387C3BEF3101867418B280 /* RCTVirtualTextShadowView.m */; }; + 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F7BFA9868C8B87C1B813014460F1963 /* RCTVirtualTextShadowView.m */; }; 92D334C2D97FB3BF1C809606141C8024 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D457DA870054C0D84E3800FDA55894 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = EED0607F4BFC943666CFC8386F9377F4 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = C434FDCD3B03FA890F45EF6659E2831F /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DCADAF076921DEC4D671151F9E0C9584 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F838A60D7566E3ED6EAAAB29782AD39 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6EB980952287CDFD8FC85276F1077929 /* 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 = 9C48FC3DE43ECB47614C9E744A10EADB /* BSG_KSMach_x86_64.c */; }; - 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 5614982E5BAB6B26628667BE302DB37F /* BSG_KSCrashSentry_User.c */; }; + 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 80D99B4450B57B52BEB0E235151CA894 /* 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 = 58772685D26FA85973A75761AB562C10 /* BSG_KSMach_x86_64.c */; }; + 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 95503B6D18BDAE9F985337F7AA516564 /* BSG_KSCrashSentry_User.c */; }; 9410A9F0FCED080442B9A14D7811805C /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 070C05407939F9DFE5B7ED06A3FE346E /* FBLPromise+Wrap.m */; }; - 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = AF56CD8EA9329F7F34CB313BE34EFE3C /* 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 = D572767A593EDD6E23A9336C6566817A /* REAJSCallNode.m */; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4F2B2382DC297766F83388DBE6A9689 /* react-native-webview-dummy.m */; }; + 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B9EE8D85D2E2B7E5E94B698935D6771 /* 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 = 6787D97354E99D4B6966994AF6A53F8C /* REAJSCallNode.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C0BA0525E7D75D19C72473B76E930A /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8ABBD704A725E7E0D996145CBF6F03A /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DDE0DC4AACDEEC86EF46E256EFBCE1 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE7F2C3E9991FC3578F7E67BE5C9393 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9452FD50EC910E745BFEA70CD7D7DFC5 /* RCTImageShadowView.m */; }; + 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 56B4FBEB509ACAE0C0D3B4DCCDAF3BE5 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C4074D119A25A498EDD31EECB49B6D90 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EA35A0810016924A46CEFF5B1E00807D /* RCTImageShadowView.m */; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 064078AF10DF91404B3DE14C08B4C6D7 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C4FFE3B1606113541FAAA752591E5E7 /* 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 = DD5ECC7C878B88D0C61273EA8B878245 /* 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 = 4C12EFD3064A699FE323604CCC14F491 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F19DB2FC51E9E061AF53B697805F90B2 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D35CE8C23A2ACF2D9D8D4E8E0C72988D /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED9790A219C2DE2D227B3921432CCE5 /* 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 = 1BA22A22703146AC68DCE049822AAB4D /* 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 = 1DDCE8F6B4BC2E63EF5AB635D4E77985 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B67C39A4A02C1D359727F1D6075E019 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 07FA7E11FD3C89C9CE4C33E5BE19092F /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9576BC2AA57D548A446DF12601AC0D7D /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE786E2067197B64CADFCEB08C452C84 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A16BBD093134117D9B4CFDF9359DDF /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1308887462257AEAE38116C2EF6147D7 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A9B116DF69ECF6ACD623B9630FD7F1F /* RNFetchBlobProgress.m */; }; - 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 0381A251667F2E0736F1F8B62BCAA077 /* 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 = A863BA598F51BD9217091846EFC9849D /* RNGestureHandler-dummy.m */; }; - 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = DF92D606E8726EC631EAC028DA7D1669 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A3CCB977E79DD1435691B18805B12834 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FBB0C53766AC1DFF327E9CFCBBD6F98 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 2967D2B704C17E5CEDA9CD96C6AB69BE /* RNFetchBlobProgress.m */; }; + 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F9FB5107FDAA1D9BF1AF83427C734B9 /* 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 = B8AA0AF64FAF56FCFC373135F88A2480 /* RNGestureHandler-dummy.m */; }; + 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5EF498B442839D5C6E22C5C16642FF /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = BC41853A6450E14F865A02ADC3D019D7 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 59BCEC3BB130D851C55FEEC9372580DA /* 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 = 2264278E2488C0928AF8093C1B268458 /* 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 = 726D3479A42B94820104FFB82565ADF8 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 140D85D2FCCE01CFA3794C3526771E62 /* UMPermissionsMethodsDelegate.m */; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1861CB3237A3A379F3104682BEFA38DC /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 669E2D815BA85AA4A6BB99088F534BB0 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5277215B950EB8FB831F92FD56554BE3 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 31D476183BD0305AB8612F3A73A5FABF /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C3D9FC94ABE9264069E1B9AB64DB02 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 49147E609F4F8ACD6F1CCEF995FE3031 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9704F9F1F14DAD1518EDEB3FAB732873 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FDF1E88D043740EACFF1DC73E36B23 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97094C87F27838DB2641D5B3F6F747AB /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52EB1989DFD74CEB5377A42F0481FCAC /* RSKImageCropper-dummy.m */; }; 9723ED2F504638D6345AE9D73E21F620 /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 77028BA581AF00AEF7C147D7449E82B9 /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 058883D577F30E4210855B6DE5283D8B /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E69C7745B00C2AE132199BBC552222 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9736BDADECA441A7D829AB881E1B8B15 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5B8DD3BD08B970140758525F472335 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 979243DB7BF5C1BFB5966534EA7F7651 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ABFB99715FD05FB4DB35E948155D825C /* FirebaseCore-dummy.m */; }; 9796980DC5E2693A40E90235CE55CA24 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB3E1A796EA4028EC6374B3EACD53CE /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B4C27248C45EFA7B1613C6F8F83C79 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF50E5ECFD2E8272C61A10AF4ED50A1 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DCFDBA48F4D45DD625444D5E3836E3EE /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16924B7391DBFE4D0AD6337368F0C5D2 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D6C880CB8C20B4B90D3DE6B2DA8EFC /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87AD05BC9122F8026F225D0CAC65187E /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 980D90F8772164DA4D739F9A2811B7A7 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA1074616EEF1BC09293FE2105C9CFC /* UIView+WebCacheOperation.m */; }; - 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = A6455A15BAAEE82FD4F76D0D75A99C21 /* Color+Interpolation.m */; }; - 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F9BF9B60B65C4862F9EAB875CF41129 /* RCTVideo.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C958BEB0EE0CA981708C7227698F7D9B /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 331AF84BCC2BA7E0A3BE1703F9444B22 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = F5E143192522350A4938231255DAE5BB /* Color+Interpolation.m */; }; + 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E6C2CF91BB9491782F439CF886009D /* RCTVideo.m */; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 705C86F8722E4A66BD4C913451A9B387 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B56B26CA2BC9870ADBBFA20BD83716A /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98BC38F964FA856EBFF4A1910983AD93 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB602E4418A6458062E66FDBE8939FB /* FIRCoreDiagnosticsConnector.m */; }; - 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F2CFFC3F749D96C2A9A33A5F128355F1 /* es.lproj */; }; - 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2915E98F4D3522C540CEB1DAEB4968C /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DB93DC9F12B3F62AEBC135DB6F0CAF30 /* es.lproj */; }; + 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B3B761EE203D75EB7C6E5D53B76A89F /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 991970762AB939C8EF22E39E60BA98A9 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE294EC7F18FA41E37CBBE707B45FEA /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9919A951AA1C3643BC9A0FB4E7B89D34 /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7200E0CD187410B1D095CC51FF6E72 /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B61266CE79A06337D4E2231EBAF1DE /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 76A2215D06FB7C40AB36F197692FA766 /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = DBAA23452718DB4A48F0E2AB76AF770E /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 36F488E2824DFEFCE2DA5121F3EFF1AF /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CDD73571B970B45A486A3B0498F927E /* 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 = 6BFB0D55EFAEBD52BC0FBC03A19D7393 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B095623B50426CB11A2B72D32E2E19 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2D19D654878B82F657E6B3A6BEFFC1 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B43AF60286E224ACFA145A668E0211C9 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC7E2CEC556EE101839CF06B251E1C5A /* 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 = AD09E1D19266513C2C055F5A95ECB63D /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E57F71321C9A7E1254B63DB74F9911 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0802DC2D86396ADF4E54BF982B056302 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 26A3BE22B42273D384E66252BEA79D8B /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F373F964FD76A572A5BB6D473B3233B /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 6229001BE76DEB8679ABD3715883D420 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D1206B27BD5D05C0E23530D64D82FE7 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = AF0ED6FD0E89DAD5362477D5AFF91A2E /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 9AD7C3DFE9A609436008F7DB4E0F1C59 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DAA01CE0749CD75B5D864D9C3DB8B11 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AE2352033C6004C6B82D705161327F /* RNCCameraRollManager.m */; }; - 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6B1E1FA365A5D4A33FF54B14068FCF /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DDE34F065DF5E05D72D5B285F4B2FB3 /* ARTSurfaceViewManager.m */; }; - 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 569DB05BB4E8ADB94613FA5A0E2A3D39 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CB7FD18214C4A9B53A00CB42D763FB9 /* RNCCameraRollManager.m */; }; + 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FD41B7E0C460E3A9A3AEF7B667A018C1 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA3AE73EEEB3C3FFB4C471B1F5565CEC /* ARTSurfaceViewManager.m */; }; + 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 8724B62EA576BB65F2F7EB633220978A /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E10C2950FAF761DCACFC19CB9D52CF9C /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3BFC7884A73E8842C521A4FC73D14C /* EXAudioRecordingPermissionRequester.m */; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FA84340E3EE860FF6AE948F657555C /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD4FA37C4ABD4B22B9675BFD87748D1 /* RCTTransformAnimatedNode.m */; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 7030F60F05871D798FCBAA2CB8433DA1 /* EXAudioRecordingPermissionRequester.m */; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53C0A6586526CD4580623B1AEBA3BC54 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 43FA5B7AC64A73BC3E6F4D60B39BEEB7 /* RCTTransformAnimatedNode.m */; }; 9C616301E3564A11354F44BBC19779DD /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 76870B32976CD2CF19434FE44E4DAB9E /* SDWebImageOptionsProcessor.m */; }; 9C8A0D00A5379B1414E3ECFAB83E213E /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C820FC2BBE1761DA1AA527AA0093BF /* FirebaseInstallations-dummy.m */; }; - 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DF8989F874081F1E477ACCBD40F34C /* RCTSinglelineTextInputViewManager.m */; }; - 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD126C0D073D3C5398EF812500A915B /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25E8877F69574680B9D157D37935E23C /* RCTSinglelineTextInputViewManager.m */; }; + 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2991E1CE83341DB2EC249B05442071 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CE103A0E1FF2B3FAABC3B449BD8D735 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1D65D982EF85292BB9FDEA34BBE516E /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 714A238B856E4054872E1FD400E56ED0 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80126C51BED4E3DCB4CCD333C38DA46B /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0798B90710BEE010D41A8725BE3E757B /* 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 = 48FB58C1E8633B6CA3292D48F848E3F3 /* RNRotationHandler.m */; }; - 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = CE73BF668DDC17C0757CADB4332DB252 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AAF20889079680A79DCBEB09D19E881 /* 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 = EBB697DB9411C56639A4EEA0CD6D9933 /* RCTInputAccessoryViewContent.m */; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = CF81CBD085AB92693642D6E6BC5FD9EE /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 8520D971696FEBF0477BBD6446C4D492 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB715B513540E23DAA9A4BA4892EA4C0 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC1509149AD55868B0A8C7F4BA1936A /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 649344AA8B1C08392740E46567C66E47 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E634AF63D2908380EB08052C6AFB288 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E6CDBB8578B68E4A1806982883F0C6B0 /* 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 = 24D52D084C2DC71EA19CFAADB944B453 /* RNRotationHandler.m */; }; + 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF37906744BE85E468C61D67DF913A6 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = E6B5D917375CC87A748B9721340CBA58 /* 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 = 935838A1A539372D72C09FC3F675BD90 /* RCTInputAccessoryViewContent.m */; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ECFE1DAC69AE2E6C670D1C11DE3614E /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 07EA8F689EEC81C795FB9A12722F49F9 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA1CFD77AFBC867CD247A6781E6F939 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F928327B9C47BB2EDF726C9F16938DBA /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E69C58844ADDABB79A1AF60899FB6AB /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 933895F5689A726BB5DBED7880848CEA /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E74CD4E4333A1722FF7057A7D841D78 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5BBA5FEB96505850A90FBE111B046F /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6248DF6E2A2A11CDEAEB601763176F59 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = BD50BFF576E37A21E3895D00791C062B /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = F072948F3FB48D4D7040B7F5699DDE2B /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE0009AD5A62049E3DBCC72BB4C2C2E /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = BA73AE15A22623217F88D04BA9686F52 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 3110F04116563705A7FEDFADDE265C12 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BD7CF6AE53A96760FA4A0E89B0E935 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 27D46512C14FF5A5EA0B11A1EFED1DC8 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = C6949F425F809E697B92D53324097255 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 5615D378EFA4C2B190803E9A6D8190FD /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9F56E740FDB8B87EE194B5FC6DF23786 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 5469BFF90FA3FA7460B0D79CE5197D1D /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1E6F6BD46D3034BC7755AEA1502E5F /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7332046FA74AE36A09C3F3169C47AEC5 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6638D4A39DF660C0D118FE1FB6420263 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F6B4F752D0316DC0CC2C2E58EC1A546 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 580123A082788AF220ECF528D65896DE /* FIRInstanceIDStringEncoding.m */; }; - 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38A62D77E3510713ED69055527540B0 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3098F19ED0FF9A0D33958CE009076ED2 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 461DED48BAECA2364F51E16C2192B419 /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = BF8953B11CC5C871E31B1265D3E25346 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EED3DB3971808F087853A4962A6A9391 /* react-native-background-timer-dummy.m */; }; - A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CD14069E0DC340CAEA66EBACA998E48 /* EXLocalAuthentication-dummy.m */; }; - A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CDA8FCB4FCCED71D58F8B8D0C98D377 /* 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 = 0C2B5550BAD8A5777A79E8FB7EB4D833 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D0680A4FB4EE6DAC0C2C1E7E07543D /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = F881CC99AF63CFBF850897A4D0123EC2 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB1AE527938831EA5DAB885E86DFFCB2 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 95034913BBC0A86B5FFED29336E7F6AD /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 06FC133F1412911B673B8BE2DCE6F502 /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C653B5EC454F8282D5EB437253590AF /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E459F3A71DD1AD78439B5520C6F5F9E /* react-native-background-timer-dummy.m */; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 123652BFB7980D6B22F23CE30BF983DB /* EXLocalAuthentication-dummy.m */; }; + A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6174D48143BD0DF94D073485BBC23699 /* 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 = C0653AE93FB3AC2AB6D24D08E9683105 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 279F84CE98B0C3F73635D61DB1FCF01A /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9E37BFCAA912825F204AA2FDE2431C /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DB78DEEF52E22B2342A2386609DAF80 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A11DF1263B7EBD23B3D95FF9A3F68E8E /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA5FDE5D455838C40D597792B73FDCC /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D53A23815D628A7C3EFFC59488C8EA44 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 915F0FFDA3662093AEC20E034BDB87FC /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BD3211CD9FF53D4057B638702C250219 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1A7D185D68859C10D0EE1DE4E8063B2 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1959F3ECFABC8A4D200C1715ED0696A0 /* FBLPromise+Validate.m */; }; A1A8801E913E5175E5ECF693F318AA79 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BC4224F66908DB532F9B44C792439A /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1FA306C12F8FDC6C3E22551518871CC /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0383EBC057B08B3B4D8E2D06F7D33F38 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E263FF05F0C40822398FCD1BA2930346 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7338C1843FE0B7ED556C5763FD46A84F /* RCTConvert+FFFastImage.m */; }; + A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 146C58D18BBDA5F818E141414F4E9AB1 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DBB8BA0CF8D842984247D297D6F54F7 /* RCTConvert+FFFastImage.m */; }; A21ED806195A73620CB21657E05C7188 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5372D71E7AAFE0D044943DB958C2F428 /* FIRInstanceIDTokenInfo.m */; }; A25FFD696888820B56D9C79F5B2EAEC3 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 336D56D9272DA9C7A6F5356D0DB9B248 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EFA3A284870757064A62A77CA020A25 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 78DCB97C2C0B300A6C7FAEE9170F900E /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = BC53B760117C17C307A13435465215B7 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6146538D9EC08C954D0E457725B2A9 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = FF59E5D2F03A32E8718194E6C178F2C0 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 16CCDEE69411B61699DA424C248762F5 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D807D4A13E5300E114B3CBDB8163FE14 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 31DA3E058E22523E63E46E6DAE2686DF /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 872F0037F0BE0480407ABDF7F96FBAF6 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B98CFF2D3F49F6DFED56367DEDF379 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD2A23277F30FEB5D8CC12D42BFE63D /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 31456AED676E5858FD1BAEBDA8A1BD56 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FFEE62DEF357EE410424399F93BD39 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; A361C7D8C652CE224BA016F8E6DD7432 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C0A683D9914E0CCC77E6DCABB2816C /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; A381D018508DD7639E2FE4C1A93036BC /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 951EA411C3609031BB767BB3EC28580E /* 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 = 21798EFB64E95ED60C19806C91FC71F0 /* RCTSpringAnimation.m */; }; - A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2B5550BAD8A5777A79E8FB7EB4D833 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F9AD33270B26611BCAC001F0B32C8C0 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C22B7A513CC428E42255314BBA5921B6 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6CE05E2A41411E77ECBEE029D33795 /* RCTSpringAnimation.m */; }; + A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C0653AE93FB3AC2AB6D24D08E9683105 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 33BA8FB7DB870B1E4B61D70DC960EB2B /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = E59495A31CA334CC38024FCD0ED489EA /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4093BFD98499872C36D61188865A000 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 877F0D1D9A0A956008B6F07FD23EC8B1 /* SDImageCoder.m */; }; - A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 74258F81D8E9A10E7FFF59588C4A3450 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 39837F87108DB198E2A017AA1BB8D992 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B9BD3B6B09CD5A1C2631CF99883907E /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 574C5FDCBE394444827C0B4B3C7DE9A5 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42EF8F9C3AFFECF5B7DFEADA68539A4 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5EDA23D6D2D1ACE2F5DFFCB0B53C29 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = EE56065787BBC3451B22B3A0C59BC47D /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D072AAF75155CF22E0B841DC87AA1FCF /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C5DCBD8CFEB2613D8E43206E263F1B /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4157C2FAA19B37B490BC14D91400ED /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2910D26607637BF64B2E89CA8B50BC0B /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1733B22FC843BF3F521D0E68073441D4 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6480EA26EDF295AF13EEE512A75A7031 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 33286A92BBA775A209FCB1713DBD0249 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA8213009E70849199210857BCA10EB /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B70C662CA07E449FA6228A3FBAC4EB9 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4DF3AB01471BD888F4FD4EC2E9A21BE /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 73DF275591A289869A037B732ACCE445 /* FIRComponent.m */; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D591C821A51F0825209BC1C05DFFB03 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DE1E6EB37A7568CECB81081794A3F18 /* 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 = 72B02B27678B51B83704A4BE3DFEF191 /* 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"; }; }; - A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = CFB77E55364F07756874798EC9AC40C5 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C564A2EAAA42E538E570410F078D09 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 247EB6446686C8DE976B71F8E7151AB5 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2202930C762AADFF58306B8133BC2621 /* 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 = 326FC3B5BBC66068A1CF02825EEF414B /* 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"; }; }; + A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = A08280F279B7913E31A0AA152FCB670D /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABF5B669E0A008FEB83AA8AE729103B /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 306ABE44DCE2212928B2FC946062B7AE /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A5F411136D291A38CCB996E7E68DE213 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4A1A447F74EECB8C2AC14492FA6CA0 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B5609AB6E46F0A418839F14921E70AE4 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3163268C537ADBAD8FD410E13BD2103 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E41897D7B8A9E05D048F023965765EE /* UMReactNativeAdapter.m */; }; + A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8759E2B890E867234F438F380CE3FF61 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9002723A97E6B9C1D70CE43DECB62A2D /* UMReactNativeAdapter.m */; }; A702694C291529C5D08B2DCFB39628F3 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C02C313B7B5553296D2F7158CBE25081 /* GDTCOREvent.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 387FDB6229B2B5EDABF7EAFC7EB23979 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 39440C29EF6281814EEBA71F12BF027E /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 559BE7FB81AFF08D3690E3B14F07E8B0 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A7097DEC97FC9C5A3B3379CFE4E8D2DE /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C499F171AA5C6CE2B613EF6A9CFEE13C /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 160856CCFCFA358DCF2AAC3EFA195712 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF3804F6E5B0A5D91DBA8A993D10FB6A /* 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 = 863DB1AE51C0BA4A1D3DF938568E6C9C /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 705CCE9E05509627FF89A09250AE4165 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = D8172C4E7C03C8B5A091A935064E8E27 /* 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 = E93796ED010DBD1A73E529E0DD9FE38D /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C821F0EA2DD176D9BE4559FDAA64B9E /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A86F7C0A488320ED06BFA2B846DA26FA /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C78B03E18C3C58965E80B1E11C3CAC7 /* RSKInternalUtility.m */; }; - A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA178F75745CEEA3494C31D038EC7FE /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CCABB48D087659B9F3108DC2B38CC33D /* RCTBaseTextInputShadowView.m */; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0781D6B8B1537F22692ACCB7E783DB /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B64314C69A8832898BAE08194AC9B9 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11918BF00AEACDEB104E48AC350AF3D8 /* React-RCTImage-dummy.m */; }; - A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 447FFC16368F27E9F314B1280981547C /* 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 = A8602FC077BA48E60F4F61D2627E4B0F /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A59767FF3F8EBC30C89F5828D15A70F /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 7CB8C0DB6EEE6CC67BAC49EE564D190E /* RCTProfileTrampoline-arm64.S */; }; - A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E50CD8A90BE20BC826BEC95C64F9915 /* 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 = 4E2743AAAF9A4FC35706F52E73C11C62 /* QBAlbumsViewController.m */; }; - AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 783B518DD2B125FC0E464EEDAA73E812 /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDB866E2441C8D4C615934AE96E2B37 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FFF4386C7B0F3D13728EEF0B16D8810 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E8E545A44AAADCA5A45F824468D70C8 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4714246033FBA0CC9D06257D64561A80 /* RCTBaseTextInputShadowView.m */; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CCF890C7F636CF9828954DD4839ECF /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3463795B2C1200775014C3B70EF3544E /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D8D71B2A92B7BD8FF02CF68A82BC0550 /* React-RCTImage-dummy.m */; }; + A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F99FAC3E8C63124B24B80600D32D597 /* 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 = 037EFC5DDB95C8DF260510470A69CC8C /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B48572E35EE480C6E262B529189C902 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 6CF4A79DB7790017739EE53E0138B48C /* RCTProfileTrampoline-arm64.S */; }; + A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = EC2FB715FA49FFF3B3138A1BF8247C2A /* 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 = B1254E43650605D4E990EF16DDC5DEE1 /* QBAlbumsViewController.m */; }; + AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE88AB462586372BF9B4290971ABDEF /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF8B04B50B641E32DF509D0625C6EE7 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B59C34D69CC54D82CD7FF24983792CB /* 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 = B0C730BFACECB7606E3E03C1D15A4BA2 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 809C97FBE2B7346EB069300DC64893C5 /* RNFetchBlobNetwork.m */; }; - AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA63B128144C476191A9774005959AD /* RCTTextView.m */; }; - AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B625DEEE974C099FC67FA0558BC026 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1676151C97B015033F319C3C82EDD2 /* RNFetchBlobNetwork.m */; }; + AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = B598FD18D2FE66054599D8AD914686DD /* RCTTextView.m */; }; + AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 83267670680BCF7A389A2881E287D144 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAE02A17D7A26ACCDA5DBF6A441CFE98 /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = D9C3D3CC551D9381EB6D1805585CF24D /* FIRInstanceIDAuthKeyChain.m */; }; - AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19A6DAA1635F9B631B3EAA16F81907F9 /* EXReactNativeUserNotificationCenterProxy.m */; }; + AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 521A5AA4A893656801E1A13C626B13B9 /* EXReactNativeUserNotificationCenterProxy.m */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F2BEB3203326DA9994D2329F5515A34 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 61AF1837C4C82F78744ED30517A5031F /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E76F3759E8407C982EDBF7A405F370E /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 018DA950D2BC6582FBF0875EF15BE036 /* RCTImageCache.m */; }; + AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 143ADFC0FA4DEE2451160EB9A906B4E8 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B31723DA3775B81672B99CA2A5ECF84B /* RCTImageCache.m */; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 96BA55D82ECFF1108092369C40805752 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FCC93B91F207812C7C1D44FB69C95083 /* EXImageLoader-dummy.m */; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 743F5E07CF92C6F606DD48A3BCCA1B27 /* RNFirebaseDatabaseReference.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F08C8E9ABDB624DB4767FBBFB966F840 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 9608D8A2D0AEE0A6A888D2E2C7E4342D /* BugsnagSession.m */; }; - ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 290DB13BE039EA3C352747F78BAADE99 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F878A57E2BD422441DA596CE98AC330 /* RCTFrameAnimation.m */; }; - ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 624FC0F34AA0E8556C317C42E134D426 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D3289502FF1A6E7C33A98A37059E697 /* EXImageLoader-dummy.m */; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 9850C16F99A808CA2DFADA2ADA3BA284 /* RNFirebaseDatabaseReference.m */; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1765BB61EEF89E3A759977FA7F298E3F /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = F498795E45FAC28F8509E32F3CE3340F /* BugsnagSession.m */; }; + ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDEC62F4C614B147414320095E07BD1 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AA219B73C9530F7BDE4DFABCE95FA91 /* RCTFrameAnimation.m */; }; + ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9235594FC4FDFB8D5E20A23495F53B47 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E59C34733EDDB63352F51EA330CB81 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 415459B9DCB71DFC1B666BBDBF009DC0 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99ABF097F32CAD0D4ABD0A1474EA0E89 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2691CB449C5A42D1964D19F13F61C0B7 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AC54FD31827C5BDB2AD22BD2F275CB07 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 66EF89ABD7B5DBBB462B12529A796D9B /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC7FAE73363B58CEA4FEC4E8471E4C9C /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F672D173395EBA22AF0884C6C8915F /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 602A3122C7F22DFAAB9B83821759D99D /* 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"; }; }; - ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5795E5FB84901A09682C23201BD21518 /* REANode.m */; }; + AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A11C44D39427C26147B8402A7BB452 /* 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"; }; }; + ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = F8463E5D03066C23953904688BB5DC93 /* REANode.m */; }; AD2F0348979F6DEC73E66C0634B8D89F /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A3EF6DDC9ECF54BEBC12FEF5478C225C /* FIRInstanceIDCheckinStore.m */; }; - AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F9BCF129B5681ADA1FABF4465D5F7084 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F46EFF2F933B33E980B2267CBE5B126 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AD7C3D9EC21B3A100F2D50A4D7158DAF /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2728A14783AB5E811E5251887AADACAF /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 379936F1F3A202E81F05EB564A22F2FB /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 110F5F208B1277BEBFCEDFFA467DE235 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C977153EE830FF4DF8C2637EB155FC4 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 95EF3AD0840BFDDC76F676455E7154DD /* RNNotificationEventHandler.m */; }; - AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF4278534C114B75848F65D72660EB2 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 1199498CED9F8347974A740A839A1121 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = E22F88CAA43045F32AF78CAF32BD7AF4 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1D0FEDBCF1E8FB20711DA061393254 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E9B9CADDD9A79257A18CB6FF68785E0 /* RCTBaseTextShadowView.m */; }; + AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D38D3439400A446FC489F62DD1545AB /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D3E6EE2A73727B4AA55ED53C51C165 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEF8C45EBA9D2DD1B198142DD7873D6 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3416025EF40E33E53FF91B69F942E11A /* RNNotificationEventHandler.m */; }; + AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A4DF667BC7852DA1E97CD42B3B7714A /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 48329096C1351B1DD5AE929CC0D9D4AE /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECC69B60832FACB53B1C4F37A693D81 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0562A4A95BE95F30A64305FF55ED04C /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BDF4D001E9025103893D210B0C3371B8 /* RCTBaseTextShadowView.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A4FFD0829F895C7CB4CE1DADA8C124 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = FBBA4243BD0169C8F395341965625008 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2978BA2DEBC49B6BF77A935822359DBF /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 09066CC5070831A0DA2CF08AF4A289DA /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = CA21A655E870EF2FE2ACEB23F2E3989B /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF783557C42133FF18F4E366E28EF300 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A4D3B3B310D9827F2482B1F3DE8CC69 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 933526594E2B49970B93C4331D304EB4 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 03821E9789C99F03ECBC35AD7E836D22 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AFA5B2D16D48229861E4E5620792A094 /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BA97DE2A8EF2E1432F205EFE746D7873 /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C7649AFE69309F676CF78B232B1D1A /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F64B8AA477693BD691861C5CB28A033 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF11E75FB7A03AA103FC9080F6C0EA6 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 64CAE0B65E655BC13E5D037EAF53663D /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B03C42B044033F100A1E04809ED61FD2 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C75A86B18664AF17C832083530EBC07C /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 233FECEF1AAAE50F2AE5315510F92514 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D2769D9DB4B1CBD4E7DB9C6999667E1 /* REANodesManager.m */; }; - B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4321BC4A132B3112F042E5A4BEB420 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 502610B461EA2D1A026F2B01243AC74D /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB94CD950E302FB8DA62A3929C37289 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6917495D07CEEDCDA6CC40941E5A562 /* REANodesManager.m */; }; + B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F5332C686F42E1962E0CD6C38D204DF2 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9E60A0C7C3435CF0DCC1C4FD2B98DE /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0A3C69022AD615CB02C44BEF92F0456 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BD2D19249B0E5F20B228D7924697E712 /* FIRInstanceIDTokenManager.m */; }; B0D9EA67A437C2D4F14606D128C1A666 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C61133E42FEBE0031138AEB2C96709 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 502EC837155ED714DF23FB05FBC35B3B /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DD3CB396B1E0BC01001BDFCBB89C6BD /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D12E6FAB1395300CA923309E382CC4F /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AE26F08EC086EE5D016420F222DBEF1A /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19E284EEDADC2AAEB838E15A544C93A /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 001B7F2F6A312651D3606F252836C2F5 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = B209B9F601D63E666CAD8C90CAC0B43E /* BSG_KSObjC.c */; }; + B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = FF3FD6E6CF315CE9FA69B74EF332B1CA /* BSG_KSObjC.c */; }; B20F5C555A167E5A8977D22CD4C73279 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 81CE6C1BD2CD84627ACB2375ECEDDBF0 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 515A22978278B8552B18FDDF1FBA5AF8 /* 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 = B7502A35843D4D02AE02AA4D6FCBEC4D /* RNFetchBlobRequest.m */; }; - B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D0F0CB7563A5D8E055CE05B4F8A3A2 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AEBEE1806E267C24A8A7B68D7637068A /* 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 = 040FE697406A3ACFF0FD6E51860D00B3 /* RNFetchBlobRequest.m */; }; + B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FF3B13F3C07DA68782FA821CDD28A0 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2698816BE03D78D782DF5520083AA26 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1E98A139B0A1E84E12ACFECE2DCC7BC /* 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 = 16F343A73D8A9CB64F3C45BCDBA495FC /* REAConcatNode.m */; }; - B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DBF282DA8760EFB4100EDA72085C8D0 /* RCTAnimatedImage.m */; }; + B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B0B3A12B91A8A500C5F71541AAAC6765 /* REAConcatNode.m */; }; + B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C26607E9E8ABBED4A67805CC67CA70 /* RCTAnimatedImage.m */; }; B2ADBA919A83F3489D1643A24A241C8B /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = A85363A0C59C12E9ABF0D991127F666D /* FIRConfiguration.m */; }; - B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FE792892A7EBA79A71E33AA48E556F /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC314D558F5DF672D18C790519C8D94 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B1E741B4EACFD774A03A37A918DDCB7 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A423C70BD0655107C91DA23F04FACFB /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B35D3DBB0E94D8ACB23B7012751A55A6 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E73C501A0EB747305BB4AAD7978E3E0E /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; B36EBDF74E3D52A6C4D123C1561A79A8 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EE8ED7B82F5E3A7EF109FDD2E17A97F /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A9B7A30D4D872C8EC76F32B87D2FD1 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 058D28B4A68C709F7AA6A06D8A25D3F3 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CFEB1123E4C2DC0FD95B915DA542C72 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 555CC7304619A95B56B13EE3EFAD8414 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3B8A27F13994D822A962EAD1C8EA1F2 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DF066F20D14665E0A04D678CAD81F85 /* FIRInstanceIDCheckinService.m */; }; - B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = C452BF0E9DD1DEB06C0598D01E65657B /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 577AA797596CCD537BBB28A012B318A1 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3DA463FE22DD22C783EA37F931CEFC9 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A38D33F827E62F685D432C9A01C918E6 /* FIRLogger.m */; }; B41645C71E5790030A867FFC4BC9BB6A /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = B7619685EB70998E0F7EC8865DDD7D94 /* SDInternalMacros.m */; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = FA31E7A7AB0C7A25E10AC0266F01FFDF /* EXAV.m */; }; - B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA3E3F6E87FB7BCB39803BEBA093109 /* React-Core-dummy.m */; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = FC7349EEC7FB241A0DBF3CD9AA3FE736 /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = CBC8978F7A2DBF3D6A595470001EB888 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 74FA0DFB857F49DD1B0057076D9CE528 /* DeviceUID.m */; }; - B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0D335F37A02AAF91899A2D661D3AFA /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 1633223EA7070D4AA9E8C1DA21D1E050 /* EXAV.m */; }; + B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 721AE8AE7F5A350C60272E1396DF83CA /* React-Core-dummy.m */; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 8002C53A9AB7D33BF5434B76158A02DC /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 49267174E3D8CE90A23C692B8943907E /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = F6645BA2C8A3C858416E79070CCE2F07 /* DeviceUID.m */; }; + B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B1A80F2753CDE6FA1B820D38B17152 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; B4BCAA9AED1573D9C7E81E425A8973F9 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB686584E542E1751A41715CD307E524 /* SDWebImageManager.m */; }; - B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B6A35BC8425A69E745CA3D09657EF2EA /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = B32D5B813D502A8FD58C0B0A8966E345 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7664C51B71C4030F277918AB13606AED /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DDE38DBD2FEC56DA009FF4C62EA5E86 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; B50CA038F8C99B2EBF848F62A29A94B3 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 63B31FE76518F6AD1B9C7FC4FC3BE0FD /* SDWebImageIndicator.m */; }; - B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 955D77FB666FAF9BE8FE7B657B256897 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4B987455E55D6782BEC5EE482153D4 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5491FA6F24FB43A5BE1DADD8C492452 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 3912963231AA3AA7436B53843E64EE76 /* SDWebImageDownloaderRequestModifier.m */; }; B54FD5F975C9E75EA67F9D0E1939C9B5 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 34ACC90522BF9626ADB3630C6DD72733 /* UIImageView+HighlightedWebCache.m */; }; - B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = FA31819E9AE01BFDEA17BCABC8327379 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF5624ED36A75321F4F24EAED7A7AF33 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C5B26C28B103E702171182A08E4EDE /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C2497B03EB62600C3D899A10DBD8B2FA /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5BD49BAFD353D954E0840F64E4A2821 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F78C3AEA250BDD82BE7FE666904B87A3 /* DoubleConversion-dummy.m */; }; - B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A4F5A1E99FA7D42C489D0381E573C849 /* RNBridgeModule.m */; }; - B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CEEA07457F9F80108524E600457D4058 /* ARTNodeManager.m */; }; - B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 834EB2958566569C54BB3BDFDCF112CD /* RCTImageView.m */; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D4F0910997F8C5C7D9B5773979738D /* RCTConvert+UIBackgroundFetchResult.m */; }; + B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = ADAD173A3CB6D574EFB67D63D7DF5223 /* RNBridgeModule.m */; }; + B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A4771DEA3075824D380A39D09D3E07E /* ARTNodeManager.m */; }; + B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = CAC68C9044E051BF80290FF7367230D0 /* RCTImageView.m */; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = CE3E5D846DF4977383B523054BEEA239 /* RCTConvert+UIBackgroundFetchResult.m */; }; B65ABCAEC3B324AFF74CFC314E05D488 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2804B1DCF18B3386453877783E3BBC /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEC8F33025EEFC8AD46D997458C4839 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5BC578C3620AFCB6479350298FFB0F /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6C5B18E7D63F47D4127BEFAEB0E082E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F62D04DF20EF8EB64F38D9EEEE02A9 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = B26961AB7152E0E74BAD19380C69E867 /* RCTInputAccessoryView.m */; }; - B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FB5163CC84095AD8ACF8C608B1977B90 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = E89F22711BE751D2479326A62844034B /* RCTInputAccessoryView.m */; }; + B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A269D8FE51AEEFAC281A7D418C975799 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 27DCBA8B031ECFD777996CDBB53368B9 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A05659F0F906E80F05804D2793FA971 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = CB92E887D5F8CDB36C7CAA9B1D752F2E /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79E683059398347D30F641EB0D6D947 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C28AD783EE3A1E4AB2B1A936CBEC0A /* FIROptions.m */; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0605FB329064F4B740AB3DA84343A94A /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = FE024E817AC1A13A002CF2102FBF3444 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = C3893067B4ECFFA8C4C9CC8A8D5966EE /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 644EF624B21614E883715488CDB1713E /* REATransitionAnimation.m */; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = B8913B693F912E6D545EDCBEB75161E5 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C599217575C480C784DC563066D782 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = FA75329560DE85B2864E81DE0D4CB271 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = FBC3F683E31CB35E256D3B126D215643 /* REATransitionAnimation.m */; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB4076029771C2FC98E33FE2F8145A0 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB62C963029E8092CA65348E89AD1C6 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B857674D187E7ABB87D048F32DE47BC6 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E3B9B644AA67562AB8AF3F6ADB7F0C /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F3A429601F66AEEBF3B565EEDF1F41 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = EF2C901FE1223174D8B3A6746858D656 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49081BDA96EB16FA72B9EF7FA37F10AF /* RCTBlobCollector.mm */; }; + B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E5DBFCFF8181CC81F2203B4C9A28A123 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4280EDF91E5FB5C9D72FFAC569B1BDCB /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 54D7B076263393E87D9ECEC6D3886CC3 /* RCTBlobCollector.mm */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7290A8B4E4F31EF8E2A4BB18F88F59D6 /* libwebp-dummy.m */; }; - B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E8CD09B1F03524B84AE162118F5DD20C /* RCTVideoManager.m */; }; - B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4650D690BA6630C497BA5400ED547938 /* RCTNativeAnimatedModule.m */; }; - B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 493FAAFD3937E8A839C0988482F7CEB9 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7550E92A5666A5FC9463EE29F908187 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1D215EB5CC4FA8B549778DCF215A5C /* RNFirebase-dummy.m */; }; + B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83935506FE6CA3D043C47B66AA1DCE69 /* RCTVideoManager.m */; }; + B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AAA59CC783933EF25B63E4551597526 /* RCTNativeAnimatedModule.m */; }; + B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E09C6C043E69EF1D303B9D0A9555B27 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E20252175BAA5AB658B3988B28E463BE /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C08EADA257AA9BE55496E9A991CEC7BB /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B59C6445493BACD5876AA3D8176366EB /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 03C581B5EAD8C9A859EE4A56D56414BA /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 60163513AA98DAFFBB8096351DCE81C1 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 5461767FC7476889BD889DFDA137CE90 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = EB1CF25664AAA7FF8B5FF7770D436D7D /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AECEE6AC0671E260C2B1BE9B3738AD /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA5E0CA71A36D82490FA1A0B3127E89D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = FD463EFB922CF38263587F78A3E403E1 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8089F7AB55E384041ACDDF19E78F1B60 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 19FB76F75E765847C76B32E82B7FD006 /* BSG_KSMach.c */; }; - BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4265EE4EF3E088E3BB46CCEEF6C01DD7 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A26988C43DEAD2433F7FDAF9DAE8BF2 /* ARTShapeManager.m */; }; + BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = FF68D0F31AA6AC72471400C95CCDAE70 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = D1C8A6A31D8D94AF5F8B8C7651E1663D /* BSG_KSMach.c */; }; + BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4B253A5A4ED1E275303D37A74FDA91 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BC8B5DBD9164D488591D0C5959E7BB4 /* ARTShapeManager.m */; }; BAEEE054038206EBD438E6D6B42BF6A9 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 264FC1F2B694A07F9E99ECECA1434258 /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F98E9A2244FBE47544AD9A5D8A263A1D /* BSG_RFC3339DateTool.m */; }; + BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 85DEA271F2AAD5B0744DE2100E84E7C0 /* BSG_RFC3339DateTool.m */; }; BB02801B51A949379B60DD90295B9ECE /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = CDAD3963A0F8EA40EAE6B916D5AA0A1F /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB0C45D3B6615D75A9A0E3E3B31D5F63 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C366C49F593DF61C1B36CA3537E513C /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = B9DEA0BF498BD7640F87AD72AD51B60C /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD7E07A5E8B9738C7EA621CA6BEA4D2 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = D91483DC2ACFBE14D934FB42131A0745 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBB9BBD85FD78B7232142ADE3AD15BD0 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4539E3108AC9825410E6FE95CBEB6EA7 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BF6358AB6D9E2F28FC1C6424EDB2840A /* RCTMultilineTextInputViewManager.m */; }; - BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8F05191A1FFA378F8D0BEFACAF94CF16 /* 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 = 56C15EA31F9B05D94E53D1B6454A351F /* RCTMultilineTextInputViewManager.m */; }; + BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5B032FB34BB4F3680105324F10FBC098 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC383056F1DB2F7478B30CCF6FFE5F60 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1999800C3B5B4E5C0A32818F3D47D45A /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBFB7DF029570D3DA89F4EA8867EED8 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FC5E2D8319B283B8962747D1ED57C037 /* en.lproj */; }; + BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E2F7DBB70EDF5186DBD518669E8A13 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9E44C2C9A3309DBA3282A63D18C9D052 /* en.lproj */; }; BCED26E631DA2A5593A277A7D1E02963 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D9558B896F99A90A93DC099BD7C8D88 /* UIButton+WebCache.m */; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = B298AD16DF9C7781D252AE8F6F69B0B4 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3147B54DEFE43FB858A7D64F5171C34 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BA33E546CC64E70F3001F24607E3DC /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD5367AA54AEAA782DE3C4CA57CFECD7 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = A2894FAA81841C7DE26398644B1F3ACD /* GULReachabilityChecker.m */; }; - BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F900E624E4F67AFB7FA81DF7F85E61 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A67CFD126B01032A4BB740C95C4F1A0 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = F061C6D214A0820BF89E8CC5B4440E27 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C397D3AB31FF2B0214E95BEE43F7F9 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDCAFF93C7C58C8AD26A612B7F4D8512 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A5E4508694C25663685CE163B7A18D /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE1ABF05189FFE8D346CC00A9F85EAEF /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ECC10905A36138211973FA8BFF62640 /* UIImage+Metadata.m */; }; - BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D89E2A740EBF31F6D63E4CD54C4BD4BB /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C12EFD3064A699FE323604CCC14F491 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9613B4E009829F49500D5476BF62A6CA /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DDCE8F6B4BC2E63EF5AB635D4E77985 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B491F35981D199A9F597FA6ADB1CDADD /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 93CCBDDABEAE5942230CF0E025336E1E /* RCTModuloAnimatedNode.m */; }; - BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEDC37F633DC4E7C3D71348613CEFDA /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA408E66225BA119EC89A929EDF6156 /* RCTModuloAnimatedNode.m */; }; + BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A4C429F395B8492D7483B61D6C6AFD /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE904FB7BF17A7C1AED62EE3079A1950 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E395510D11DCC7395A036D8E1F57BA3 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DDF0744665656F4901AF9C85D660756 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 66028ECC3209639BD89AA0238CF8886F /* 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 = 476178CDB7F6A524306920EEDD3D60DC /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEEB788D1743D4D1D9AA52C31C528B19 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = BD58A224BC63CD1E1BB8C5E6A0AC8AD7 /* FBLPromise+Any.m */; }; - BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F4538B9A5DD66CFB3917610C824941C /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 164EBE67EF41CFFDC479317A8B9631B2 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF23FDD138C85BBD370A5B2154CEA590 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 55172F9BCA61ED8903813A0BE84F0A81 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 27641C724056FF0B81D6FAE31F26009B /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B78963249C137BBDE8342DEA6F1B9C /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF3A2F2133AD7A3B2ACE6D1E132BAEDE /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8611F8EC76BA0AD83706FBD552AEFF /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A4F18BCCD035A3DB966FB44364322BC /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = EC00180B78B1F10FA9BAA45677C192B6 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 553244C5D8BAF7E5DE26EC41D16D370E /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = F2ECE75752AF10AA2FF8406535FB24F3 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A33B1F40333CFD389EB9C71DFAE35EA6 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A76115031FB58D04F933C1B30D9F376 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF6C73488638D5E9B195DC5890E36369 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BDA968F3FED747EC612A14381CAFCB /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF91C4FB47A214A702EF83BCCEA1FCEA /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E711CC040CB2C9B6660541E7C73B310 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06E0853195162D78F258D0F541B2CAD /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 068267BE04ED7FFA08E2A827F9406A85 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = FAEB584D2FCC43846A157044BC9D5E46 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 7667B53E10D068E0BFA32C6B17ECCEBA /* RNFirebaseLinks.m */; }; - C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E5C2F8D2DDCE00D1854B6E7130E97D6 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76092B968AAC9C724EC9667F654AC5B4 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9C9112F2E8C6E60647D2E2E444624B85 /* 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 = A826F40E441D4412E32324F91F36CDBC /* RNVectorIcons-dummy.m */; }; - C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2930A500E273DC05E1A45287FE4CA79F /* 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 = 3C0F9B2DA9AFD56D2F2E9B9C75991BF6 /* RNPanHandler.m */; }; - C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76092B968AAC9C724EC9667F654AC5B4 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F00D3D631186E5C30E5082F7B76425 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B98CFF2D3F49F6DFED56367DEDF379 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = A0C2CBE489F6BE8623AF5ED5DC1FB0B1 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE425CCA9AB4117146451CCF94F2C89 /* 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 = A79E5957E608E87CB9A07FB2D9B74357 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7AEBA9C7FF343E5421EF7F9BFCC694 /* JSDeltaBundleClient.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 = 630934A42CE715B3E03D88D2901ACCFB /* BSG_KSCrashSentry_CPPException.mm */; }; - C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = BC4ECBA43FFB94EB36805D34F4A53EF5 /* RCTNetInfo.m */; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D950339BF5D6D4AA8B33AA2AB010E45 /* RNFirebaseLinks.m */; }; + C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E3B5DB235E15B5E7DBCF624DA846158F /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4151BE02E30868B45332A3685EE9B1AA /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = BEA9743250D2FCCDB6ADFCAD245245DE /* 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 = 1FE30ED494D29C7F4C4CC97D2247C47E /* RNVectorIcons-dummy.m */; }; + C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 911A353AE3EB253ABBBD5DC16D898B25 /* 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 = 301703B0ECF438819C86F852A1FD1852 /* RNPanHandler.m */; }; + C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4151BE02E30868B45332A3685EE9B1AA /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE8292748F382CBD51314B67374C69E /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 31456AED676E5858FD1BAEBDA8A1BD56 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC1B721213D9E1AC29EB6BBC10461EC /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 86C8391910D9B2640BB9EB8E938003CE /* 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 = C57E8E463DD8F570C213A0D241DD8440 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B254483D4A57A067F0A2FCF47386DCBF /* JSDeltaBundleClient.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 = 97C5EB41C0561EA9AEE0F1DA5C8C8360 /* BSG_KSCrashSentry_CPPException.mm */; }; + C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E080C5EA8A25D4DF742479B33DBFAB /* RCTNetInfo.m */; }; C26A8A38E4FCFA0A1C3BE2AFC067F378 /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B9283887252C3A5BFACBC794BD9596 /* FIRInstallationsVersion.m */; }; C271EC3CEE125456B9023EF221D3BDF2 /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = D00145960C57E93C0FE7769437FEFA04 /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; C286C22537607F78CDEA71274AFEA354 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F19DADEA197E3EB0A522E8E1D520775 /* SDDisplayLink.m */; }; - C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D52B9F53E90E46BB7BC2868DCD0ED49 /* 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 = B1817447D08BB116B2B09ECD993E1770 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F11B9FBA50006F16241B643CC14A271 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 17B6F54E970F5217C2857A8F50A3591C /* 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 = 96493B2AA0B5B4EE195370CCC403C476 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B08F92BDD499DC6E327479ECB6552FB /* 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 = E154067690FE650334C7C3D34DA323A1 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FCB8B8C78B3CC67C0B2905CCC4AAD7 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F4A0B9270881945BD1496745EA97B4 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C376B5C079A3D667D292AFCE36995859 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = BE710B81BB8CB34A3D44E178C59ED0D3 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3A358A8B68EB87FA331A54416E3E092 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F09D66808FCE05691A438366BC25B746 /* SDWebImage-dummy.m */; }; - C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A2B19434A72F254FE6595D38FB8712 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D1A4AD2BE6B55C9529F2FC6474C850EA /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8525930F3F8CD3EBD6DA4389DD5C0EF7 /* QBSlomoIconView.m */; }; - C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D419A92B054E897166C3CEFC94079EF0 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D9E1D0C746C2FFBD68E1A7367EC6B7 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1370AC119D7C23E09EB076FAA7008596 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D4129EAA408A10CF04AD75D38966D6 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3982047C78EF60BB286752A5684BE770 /* QBSlomoIconView.m */; }; + C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F477107A2B803038ED4C0CE752003155 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B1B54EB3C6036147B4373EC7915E77 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4EBF0D56475CB1644E5164352A24BD5 /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 36585169EB94500CF044692BF107C3A0 /* FIRInstanceID+Private.m */; }; C5114FB6C46BCF309214DF7E7D17C471 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DBFEEEE8490B0AEC5A93E092F2857A5 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = B72D2A1AFE5D8CB8AE76AADD8B87B42B /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = E0BC4658ED68247F4D86F89624EC6C18 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 363F1EF00EC3F453493AAD41BD955E61 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A23A775D0C745D7DE8C3DDEC5797F7 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = D049295C0B025177328BD15AD63BBC01 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A12B459471E0A29EFFFF6351E9649B3D /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = EEAA3F245E67D67CA5BA643D7AE193F8 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5A7EA3714C687D6888782149F9AD31F /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = C06F60B264CEB19482C4DFD3476D64D2 /* FBLPromise+Always.m */; }; - C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 315204E8FD52FE3A3515BE4EE234DEA1 /* 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 = 632B2A5DCD9ADC33532198F54AC838AE /* 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"; }; }; C5D9146DE660B22941C6086F34A47E37 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6AE09786B2423B11C27D00079FCE17 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D8806E6C372CF900927E6CE9A7101DAB /* BugsnagReactNative-dummy.m */; }; - C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92AAE233471128F7AB697528E5779C4F /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = D69E6F757132D77434CCCF83F16CEB51 /* BugsnagSessionTrackingPayload.m */; }; + C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A61DB22D4ED374945643AA50231FD3FB /* BugsnagReactNative-dummy.m */; }; + C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 26CF9F46F4DAE142363F418BAF47E969 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 15B2D4AE4D73A5011178364790F19F71 /* BugsnagSessionTrackingPayload.m */; }; C65E95799529526B6E7D878BE5A8C15A /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE7EDE32D47E34C402A333EA97DECAB /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8ECEB4113FAE0A630DB0A48789C04434 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = A601EFDD2541CB929B3B74CA94D92DAC /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; C6D0C80B1F5469299A9914D27C84BD2C /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = D53CE5F9F1B3C1396FB3444A3DC670B0 /* FIRInstanceIDURLQueryItem.m */; }; - C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = EF70D54EF4C3182ABD88763F3D049CE7 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = DDDC95FFE0C6C7B2851FD524684F54B0 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAAD27A524D6E425C12216C7F486100 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = BAACD298105D4CC21AAB8D4431E9FD87 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBCC216BB9AFD66A64CC1F5C84B6884 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8DC2A217B85BB9D423A9AF7F4B4E /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; C742507D7BE5A255918244DACF09664B /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 459EF69C87F0423DE3DAFA049CEC05EC /* FBLPromise+Await.m */; }; - C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A20CC0982D78D08FA3BD84F1E518DA51 /* RCTNativeAnimatedNodesManager.m */; }; - C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04B0350A98F7FD6735CBAA7A93BD01B1 /* RCTLinkingManager.m */; }; - C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CE1B26244BAE7DEC268FC99D1DB1116 /* 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 = 1511DFEB994E187AFF9521845948D37C /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3048046DC7897AAB75AF6BF02C67B3 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = D11A35222301EF61F70E1A10283069EB /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = B227F9FBEF5FCD2024E1ED599955D36D /* BugsnagBreadcrumb.m */; }; + C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1681EFF77C91B2EBAADBBCFDE5AB3D82 /* RCTNativeAnimatedNodesManager.m */; }; + C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B6F4F7A1E522E464AD977A65D47474B1 /* RCTLinkingManager.m */; }; + C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DD40E1C6D697D823E20C70F0A188C3F6 /* 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 = A05437ECADA33B2E1D9515C59BA539A9 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = F5494133D52BD624EC64308919BEEDE4 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 185F51EBD371C55922DC95F9F91B1EC8 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 785381399382075F3D4973B67A3CBC8D /* BugsnagBreadcrumb.m */; }; C856EFB68D99D6BCB7520D35888D15A3 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = FE99DA2A671583AFDB9A25490E656721 /* FBLPromiseError.m */; }; C8A1E2B5B461F13C1F45D6B15FFD6DE8 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5844E9E8BBD906339EA96EF1BD79326F /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F4E632D2E19B3B79DF2C310705D42BA /* RCTMultiplicationAnimatedNode.m */; }; + C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 959D3F686247ADFDB8FD8CD7550AB964 /* RCTMultiplicationAnimatedNode.m */; }; C8E92C9357E3EC80CA4AA1FE9C8A3E35 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B8C2145C378EBCD15C3B414625FD2D0 /* NSButton+WebCache.m */; }; - C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4BB4E7E0A00A40A77D9D5C97FE5D0F /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = C29FD71196E223C3E2239356CC16DD9D /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = C59A44A3836E48A3D9E63963E2681D6D /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 13F2CD272CBA0C054B3D23053F74F0C0 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 77060C09E6D87AD7316709FF3E32F992 /* UMViewManagerAdapter.m */; }; - C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = C95C4506AB6B5CFC28D1AEDBD48CAF91 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 375E3F922217B20721576A0AC235351F /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F031A2F61456BB1EB892DA1FED39B97 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE5C9777A56A93325E584E96329994B /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 78481B9CC4D7B4B7475909834BEB3932 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = AB811BB172E5C47A41E719448B6F3709 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = D8469837AD5A35B13B6080B1C82DCA9E /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 447377E7699F4E8CB22E9247DA5F775D /* UMViewManagerAdapter.m */; }; + C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B5A84B6B74F56B539C09088C1C0BBE /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB27FF64B6A9BA9A085B210AC20AD1F /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C5387AD6CB51F99D7C94D5A2CDEFF68 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; CA19A520589C9D812CE9D3F6369629FF /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = A05BCBED3EF0DF896274C0F7F49E194B /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA1E3C6D7EF76F233CB84BE0B847FE55 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = E843DB2D9152A6891CEC690C8919CC3A /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE63674E150D51CE53B28AEFA23359C /* RNFirebase.m */; }; - CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E013C3BD3D8B32F02469CCBECB38B281 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF2B8515953DCD57957BA8EFD20ACFF /* Orientation.m */; }; + CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = D861B08940AC3607865C3A60E48580AC /* RNFirebase.m */; }; + CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CCDE638E28EF8965A0ABF0BB3989C85 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A78E75F58C4D4838FB6EEFE907BC2B6 /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 9602665ED7A4FCF32AFDE7F8439C8C55 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5FE450AAB53AADE884BA269A897227 /* ARTRenderable.m */; }; - CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = B98282A370896C9527343A2802D27930 /* BugsnagNotifier.m */; }; + CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FAFE744B6BBF60E5CABA41A796A4068 /* ARTRenderable.m */; }; + CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5C92F507018A463BD5D1B450DAF7E7 /* BugsnagNotifier.m */; }; CADE8DAB6C036105B2CDB8BB6E0718F6 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D7273241DE97D0F9D835E4AFD14299 /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FE36AD354A26A507F517A0A4F4B1692A /* UMExportedModule.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DC9D466362320D9D82C2ABE0FFAA0D /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1804310A894359659E84418A06AF5AE6 /* UMExportedModule.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 45AC1E8B6ED87517CAC078CC7094D1DE /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB600AAB35D900E3F6F6E38BD6D90D47 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4ECAC99B83A66CECD026177446CB77 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D08DF9539848E8CAC7915FCD30C16E7 /* 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 = 82675BE62C3ACFEE49CA5D268C891DB4 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8916CA19D423F5B524882A6E43E80129 /* 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 = 6F249257BAC55088E6F3BF269F0DC57A /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB97955D7E935F4B372A7198701979E0 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5A82E2D83D68A798CF22B1F77829FC /* GoogleDataTransportCCTSupport-dummy.m */; }; - CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E6A1475FA0286C2069129BE72401FE /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 43471D841BB5055A3A2C97042BD45621 /* BSG_KSSystemInfo.m */; }; - CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 668A06AC4FD01113F3AD768199562A4D /* React-jsi-dummy.m */; }; + CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B76A58A3D96C19CF6901FE310CE5EB2 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 885D812687E2B07C8F02B276D002BD93 /* BSG_KSSystemInfo.m */; }; + CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36C394F0D29C2ACD1E2C90C0DA9A1B26 /* React-jsi-dummy.m */; }; CC22415C6197490967F46F17797B9AF2 /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 340F8DC0B45AE963FE9FEB6290B2F0BA /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 339D47919E93B2CAED01DCEFD6253C17 /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C759BECA96DBE8903C63C266DAEE490D /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D68D7349299EDC71DB05EB4EB4E8C029 /* 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 = 4BE8E6275C59B97B8ABD3F43F99AF6C8 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 63353C2356F59EA4911AFF9892841E20 /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AA0CB3C0EAC3E7176B612CB6B6B5FFE /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F146966A7449FF40F47586F70C258E0C /* 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 = 6A2280D74CFA75E6466F93795D6F7DFD /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CCAE7BA7471BB1DF772B3E823C61E0A4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 975D51C22494655692ADF60A40FC9F94 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C5D630EAB7ED6E3B3B8A2DA57CE8B0C /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; CCC12688626556FC8D8945D5A6922E8C /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 608E4B0589801079221FEB94B6D394AC /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCDD9B74F7A6299EF3EE5DFB9338D5D9 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 31D19F7F78897D1BC258DE9692B90D33 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 04AC24105BA7DC4445C81E39B4B8D8BE /* React-RCTNetwork-dummy.m */; }; + CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E95A3CE98CB4A9EB2A7472A669722D3A /* React-RCTNetwork-dummy.m */; }; CDBD7932A97BB1C7CC97098EBFE7355A /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = EEC39363574592DDD2C4DE7211730B12 /* SDImageFrame.m */; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 274F543867C64B9A619D27C4513014D2 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8242280BF25BF44F38A27AD11233F4 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDD692D5774C8B76FF85B8E5A7750AFE /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D2339AD0FFA27A5E25CA38B3E89E724E /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDDC70305F86BE613774D29DC70EE791 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C90CBA13EADC2DE8CBA3C3E38DBAD8D /* GDTCCTPrioritizer.m */; }; - CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = BD8C80B573BB1C2651C058B996D5A569 /* Compression.m */; }; - CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B140EBBBDF37F8A960B5827F2CB7B09E /* React-CoreModules-dummy.m */; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D1B26716E0444055D19F8BE193F51AD /* RootView.m */; }; + CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C56D930DA5EA4FDB0046D8B563CFD3B /* Compression.m */; }; + CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A508781313B2CC5E0CF3FD634BB448A /* React-CoreModules-dummy.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = E7493201B3715A9F4B6B7F80ECB1CE7B /* RootView.m */; }; CE287884CA61A8B9A4C533CB271E2A24 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 545D3B715E5AF6AFEC5AE16325F9E898 /* GULMutableDictionary.m */; }; CE31B8148A79CC3614A539EE1BD61A0F /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = E97C6B62E60E3076A98791068DE7D7C1 /* FIRInstanceIDKeychain.m */; }; - CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 76FE63E3F928B76B0B0BAE72B3D43FF7 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF6EEDD41B74C067D234D6C305BFF65 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = BC105F2C6B905F9DB86038886D5EFD53 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = EE36ED074E387BBA3ABAA7B5CC062A9C /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE8852AFA15D70A5DE566026EFDFC2F3 /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B76FA92742AFE4EC1B07FB04CDCEFE /* FIRInstanceIDAPNSInfo.m */; }; - CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 832862A31898A88E781D6B4F7FECCF18 /* RNPushKitEventListener.m */; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C969BCCC29425F18EE53652B5D8706F /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D8C7D8FB7C108D54D1F81B72FF7C277 /* RNPushKitEventListener.m */; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E969B6A3CD84F66DCB50063BE0B4244 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEDCA25A4B55E64D9A49FDE6D20C638E /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D66719B7E0573E532519532723F67812 /* 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"; }; }; CEDDF9FB89DDC0ED7701D06BB578CAEC /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1246B4FC24C785047CD95D5E8BB7AE12 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC949A6CDC9FAD791701093030E2C19 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B48EC1054F17F4B28C2DA20FE8DF6D50 /* EXAV-dummy.m */; }; + CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5118406AC1ABF777B7F030A5382C37 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6400DBDF40FAD6814982111D2EC1D6B /* EXAV-dummy.m */; }; CF2DBEFC8F676A6C89BCFA1DCBC02491 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 15762D6096B65B02F92828DF3C3101E4 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF36B5C643DE055F1F75230AC8915277 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF6CDD59A57C47D27B4C64E3C83F6EB /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF76AB411D4BD02C37E3BC20848E9E28 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = DD709B78F7B831FDC9366D13746333E0 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 907943E2FBD3DB953B4FBA9071E2CB0C /* 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 = 6FF692CFDF8EFD2AEDB97B1CE9CF0F75 /* 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 = 7E1CF3BEFF840D7071D158D044A4E745 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; CFFF4D24501DD722D267B98FC18CC4FD /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = BCDC1F0FF0B1E2E4C213D78D24F0F9CD /* GDTCORPlatform.m */; }; D047DEFE3ACFD17E4D2C74AE4C477949 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 06E1729FCDB517FF8E598520953361E3 /* SDImageCache.m */; }; - D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = FDB6F03379BB5DCC38B9907F97598F3E /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D06D7D56F20F828FAB576DD995736F4 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 600667F42973CEECCEE935951B13F5DD /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FDAF171CD6AD6E3563BCE2211C0F9FA2 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DB5839020C0E34BAE29908EAF69DADB /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A3AA235F991FED94A3DB1DE6C17954E /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE59F23A4785078B898F9922FDAE818 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F62909EFABD0D64D478AC8A5C9BF8E8 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0D43A09965B7EEC94C970B16EE208B7 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D7591D0402DD814820F0F732E55134A /* FBLPromise+All.m */; }; - D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 07FC8D474C39CCD1546659DCEB345DF7 /* BSG_KSFileUtils.c */; }; - D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = E57C813DDCCB3010D420482801376EB7 /* BSG_KSCrashIdentifier.m */; }; - D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C1F97DF376D9798299710820D5A07C9 /* React-RCTLinking-dummy.m */; }; - D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B8F563DDF42E97813ADA94A44D41DAB /* 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 = C9D0647297B92E80FC92B2CA069FAB5F /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 98C0FD50BB1EFA8154BB3B773C058ACB /* BSG_KSFileUtils.c */; }; + D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C097BB027F3EF153DA2C0DC6B926B16 /* BSG_KSCrashIdentifier.m */; }; + D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA7DA10346399ECC0A8D2F74D4EABA83 /* React-RCTLinking-dummy.m */; }; + D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 65FEE83F67CE8425B6DB921B10F69298 /* 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 = 875CD72E0979C3A6AF5527EF392697C0 /* 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 = 36437C1B03AC2005FE5AE9B6ABB4A399 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFDC5015B07AF6726D48629172EF01E0 /* 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 = 8BAF5B2F52394878A35B02A802913F95 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5625497BBC55C69000B1915CCD5624 /* 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 = 2512BAF6895E8C85D9135652CD0E7335 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 82C307D1CC81EE4425E3DE4DFA23E2F3 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B5C9F26FED4E0761F637BAC9D86AD38 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F0337242837C1D7E4670132D6F493B4 /* REAOperatorNode.m */; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A1AD0ABD4B51F526A2B68A27A82E6E /* RNLongPressHandler.m */; }; + D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 998FDEA6919DD3D06C5FFEE1BF48CD22 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9840C1D5092D09CF7DE8F2F8EB6153D2 /* REAOperatorNode.m */; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BCCB9EEF32E8B1D1E8EB6DACF48525 /* RNLongPressHandler.m */; }; D2BE8317E9EBBE5FD4ED18BA5C53794A /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6279E1E2E3335F1103BFA5A97B32CAA /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D469EED379CDAF76B456D41CE1D789E /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D4ECAB3FBF1E5C23384E87E852D246E1 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0018DB3096F92D334478C93DC9F0224C /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D6A2821B92ECF1D2A3A9433DA3E3B2 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4314A41F00C374FD70071D7D67FA6C /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D35CFE42161E05CBCCA4AA4C32CF3661 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BEAA4F63A52753F14D4888D08369618E /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DE35A2679D9ED09F78CC7F60A228D8 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E7612E96088646591DE8A684016131 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; D37BA13E56AB4047C4D544DC931A7111 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = C33B5059A86C095F0D92336CBCB1F51B /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 8816AC006C3D22F054F7BAB4EA2511ED /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3967559F2F789C16C8ECC9F64D330D0F /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 81D1EF2629F8267469FF9635CA325509 /* UMLogManager.m */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 754672E23890332E320247B27CC283D7 /* UMLogManager.m */; }; D3E2973E1A77B52217E5151ACC4C40F9 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47667B177B8F7040093014A945593A04 /* 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 = AD4C01981405A7597CB80DEE9DAF3C4E /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E3D4FBAD25B67DE005C06028EFEED9D /* 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 = 513C3F34D99097335FA72E9F425B9845 /* REAStyleNode.m */; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83801A2B1087F85FCBCEE0AAD6F633BA /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D28C3C37EFCF29A4649B7A20E82CBEDC /* RNCWKProcessPoolManager.m */; }; + D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = F132C06BC669E7AEF7C49683C9FE16C0 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9024ED3FEA023FBCE5FC297B08442458 /* 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 = C371044B89982798C6F26ACB9B59D7CF /* REAStyleNode.m */; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A97918CD6FC52BCD868EB3CACD045B2 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A4F19AC9C2ECE5C5D4C90DC22494F353 /* RNCWKProcessPoolManager.m */; }; D548578B0B4BAB40AA2F67986DD948C2 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 73D1E0BDB42EE2F595BCB0C3E231490F /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 43757FFCC4023081D0E0FA820FE32047 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2417D733FCFBBA6DE5A653206FC6DBC2 /* 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 = 672097DF8942995581CE2F38215EB2A5 /* RNGestureHandlerModule.m */; }; + D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F5866834C180937CCDCBE599C854CC1 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 995E47FECAE1580AC1EFB9BECD361BB6 /* 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 = 0F0CB13F8583CB0A1B8976EB9C5F9676 /* RNGestureHandlerModule.m */; }; D5F006702C228499C976E45954BA7142 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A54A0AB081F02B68C732C27229CC546A /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6570BEC05AF52AE575BFE1F10E1D6275 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C67C6007DB25FCE8F7CF321593645822 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D60E40B4C45EE0ABDDDB310B1906F067 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = B49950F25B4587A0F1428A0FF4D062F1 /* SDWebImageDownloaderDecryptor.m */; }; - D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = A400C135266E951FFAF31B82700341CC /* BSG_KSCrashSentry_Signal.c */; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = B163ED9C4BB7942553E67152AD19FC89 /* UMModuleRegistryAdapter.m */; }; - D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A5C5801730B079C30BC743C5E2977DD /* React-RCTBlob-dummy.m */; }; + D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = F7AC3A140635256A5ACE73CEE11782C9 /* BSG_KSCrashSentry_Signal.c */; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B7E6D3698A2D6F4705657F0FD89151 /* UMModuleRegistryAdapter.m */; }; + D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 394DC43CF3BA3EAD34232339A9192442 /* React-RCTBlob-dummy.m */; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F2B281A5C5A6DA83EEDED90A470812A /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B5C6560ABB8384D4E8AABCC6938572 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B452019B4BC48CFCA2CEA795EAAF8A4 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6B1A1D99FDE6C30C456AA3E8AEB99CD /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E146C49FCEE4ED98740C53D8AF16B54A /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6F319CF127DCB6034758EBB926BB032 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA2FA4336B15BA4DCCD78A997AEC892 /* FIRInstanceIDTokenStore.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = D27F6811C1E80C2F86BCD041DE4269D2 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8EB435630157EE4BD45C80FF974327 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D763A2B754500831DDFCD0B3155211C3 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 67495001F5CD5835C2BB0CC49D35E686 /* GULNetworkConstants.m */; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B1481C8FC99F5FE787F9FBBE96DD5E9F /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D79CB08B6BF6AE52B703A14D2E5EC289 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B75AFFDAD90901B97B9F59583DB4E96 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7C9818EF31B52BF15F5A3DAD128D970 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 360D859E4F26E0D45AC34F09DA57FE65 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 73A8489BE4513CBADC8D8802AF64A207 /* BSG_KSString.c */; }; - D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 549DD35AF50F448D6C868B08063F11D4 /* ImageCropPicker.m */; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B59B706804D65D8A250DA137FCC9B138 /* RNCAssetsLibraryRequestHandler.m */; }; - D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F98D42B9567C6BAFED9D04BBDAD278 /* REAFunctionNode.m */; }; + D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 779D34B3BA6422B7922802CA251B5BD1 /* BSG_KSString.c */; }; + D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 67411C8E45837F1C1D7F37E72C5D3B24 /* ImageCropPicker.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DD47CA8D146027D7F34C7E8E805EEA44 /* RNCAssetsLibraryRequestHandler.m */; }; + D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1A9983F5C76F1C89627688BE1BEEC1 /* REAFunctionNode.m */; }; D84EB10E3D309D71F1E4D8230535B1F4 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0695A738C7F41C79A285AD67DCD00EE2 /* SDAnimatedImageView+WebCache.m */; }; D8518E5BF3021B461942AA4A1DF9896C /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 435C84BA7D4AB3EB7649F9B26277DA8E /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; D86384B27334C1246523F688494DE7DD /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = EF173724C22DB7D2C3F88CAA10675F80 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8657431950ACD09CD921390BC208E99 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = C75F6B7CCC80F365375AE3D64978BE9F /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; D8923CC2D680348D04C0B5B01CF695A7 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 899A689BA65BA61151C1DDFB19F5BE93 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D52E6CD1695F8CFA8572D11EB15479C /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A03F3B74F4B37CA6245315F4B8E7EF /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = AE6B1F1AD28E8D530D6CBDBA8C225943 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A952D980D462BEF87C23A88A472DC5C8 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; D917491E5DD9992DFF39CCF944C2D549 /* GDTCORStoredEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = E06128CB543E05DF7D4F8B8A3EF8EEF2 /* GDTCORStoredEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FA29A58A8091571DFBDADD8EF21000 /* RNJitsiMeetView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AE263565EA9A6623E8098BDDC664794C /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = B7339489EE324E550C089F6B24D990FD /* BugsnagSink.m */; }; - D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E5C868AF0D7E96D4BD8511C1A6D078 /* React-RCTVibration-dummy.m */; }; - D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = C01FB8A779A3445EFD23654B3630937D /* BugsnagMetaData.m */; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CBCC7E011F6EF7E978AC965DE289A43 /* EXHaptics-dummy.m */; }; - D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = C29F91CE67C0C0BD5E497A29A8AF5C6E /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD6A7ABC10F5FA23F4E3ECE3CA6B42A4 /* RNJitsiMeetView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 898188593FA1F50CCBE83173BFD842C2 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A4121E2D7C242F0D2B67476FEAA958C /* BugsnagSink.m */; }; + D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD12019D6D4F6503DAFC2ED496997F8 /* React-RCTVibration-dummy.m */; }; + D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = ADEEA9EAB573D09073DB5F5CA007CB57 /* BugsnagMetaData.m */; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27640CE393B8EBFD0720FE1F5FF97478 /* EXHaptics-dummy.m */; }; + D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 482DEC5EF620887E6614CCA174DA5861 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9FBFE38219EEA722C7D011D1F510DCD /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C1424961A6648F4F404DB4D5B51284 /* PromisesObjC-dummy.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 352467F523D37BA242FF792076C4BBA2 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = C13C31ECD854DA37DE88AE1C00078DA8 /* RNSScreen.m */; }; - DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78B21926C799D90FF38F3C01B49421DC /* React-RCTAnimation-dummy.m */; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D68A6D7E67D45B0196E2F6716B6A190 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 4083DC5D6BEC378CED9B623819ED172A /* RNFetchBlobFS.m */; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = A35488CA38548E124B5E9B984D505508 /* RNSScreen.m */; }; + DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E763F629910487B9E9170C3ED4F841B0 /* React-RCTAnimation-dummy.m */; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 462B73DA088CF00C86CD51B0EEF20ED2 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F982A3920E7648B0FAB4A6A4678FA4C /* RNFetchBlobFS.m */; }; DAC13692DC590E6044ED75FE6C7A2D99 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC55014AFA153FD4E3CBC4A4A6CEF69 /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9775310D6981341505F105C9568C5E45 /* RCTAnimationUtils.m */; }; + DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CD548AE735110B7E4E65FEFF1BA2BDF3 /* RCTAnimationUtils.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 645432A1DF9B3036F4D66BBB89CBAA89 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2DB4C4BAA0A3E960224AD870D1692FE5 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF9D31DCBD08184757F0729FA3C8ED4D /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DB5A7C7920EAF6928FBD7479829670B3 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CCEDC883A767472D9DE6E98B55225A /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 56FD6071C9093AABD262B1CDC9FBF442 /* RNGestureHandler.m */; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 663974728DFA3DEA57E22F6040CE836C /* RNGestureHandler.m */; }; DB7DE91DCA6700F151D98F200ED5D276 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB0FF969520EECB0B36AF7E6D88CD2D /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B0DF453C24E692E4F8226C5A42A08FB /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9901BACE3A1530200B9D29B6C2010ED3 /* rn-fetch-blob-dummy.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3EB0C538A74A00277C1B7D5275BA45 /* RNGestureHandlerButton.m */; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 400A33EAC15BABDBC9CFAAD979540190 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A6A4F24729B892F09EEE969DB9C3100 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 57AE6597B0DA09C3F20E1BAA5AD99DD9 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EB6554B672F31C9843AD1842DA000C /* rn-fetch-blob-dummy.m */; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A29B303BFAAB7E10AD4468D033EAC3 /* RNGestureHandlerButton.m */; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1354B90BC556B36106C15B58AA62A05F /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F7F117EBD7C909A9728EF18CE943C88 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = AB976C1FBBC26BF65B263E79ED2A0E2D /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F015CD4C3AD382FF8AB6E95C5C94F7 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = E8AEA7B9442431BEAC08800C2EBDF01E /* RNBackgroundTimer.m */; }; + DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DBAC94257DF0DE9986805B9FFAA1448 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A47127F267588640A0B0D7D74911177 /* RNBackgroundTimer.m */; }; DC96C9309C507BC3469D0CF4CC8D702E /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = F603F708AE1BF751B3ACE89E154E4673 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AF7C72C8D1321A79EFD6250A8453EB /* QBVideoIndicatorView.m */; }; - DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 865875386FB2559918C6689786CF4307 /* BugsnagConfiguration.m */; }; - DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 771101BC66D624FBFA77FBF11A3232C2 /* REAPropsNode.m */; }; - DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DF5D0FBF5908E9568AE95C94B45CF8C /* RCTVideoPlayerViewController.m */; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = C45E958F1FD041D1C66D329032EC24E0 /* RNFirebaseInstanceId.m */; }; - DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = C972750A84A0F589238CF3C40CA01ACC /* LNInterpolable.m */; }; + DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E9076B1C8F5C974E510E834014F681 /* QBVideoIndicatorView.m */; }; + DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 00D2750981CB3BA9B0E6DEA98E7ED45F /* BugsnagConfiguration.m */; }; + DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7194487BFF3965B1C033076603CF428D /* REAPropsNode.m */; }; + DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F83567E7F6D1EC1547C35B12A585367 /* RCTVideoPlayerViewController.m */; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ABC6CDE9EB6CD6F3DD6793BAB8A17A5 /* RNFirebaseInstanceId.m */; }; + DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = C61B8BE8188041C07C6E0B4B48E0E9F6 /* LNInterpolable.m */; }; DDBB5BC0602A84CE59DC6778A632ED69 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = ED5D4ABF81DB0F6F91E1A25F93EE1DEB /* SDWebImageDownloader.m */; }; DDC299E5753D48F2A7081D27F73ACFAF /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BE8D11D0BE425A162D262300BF5D5 /* FBLPromise+Async.m */; }; - DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D85FDDE6F7D1E0584936A5EC114653D0 /* ReactNativeART-dummy.m */; }; - DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E6B3F72D28DBBEB7379B5DBECA7B3B2 /* RCTBaseTextInputViewManager.m */; }; + DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DAAF08BD348AE3065A24572A308E5AB /* ReactNativeART-dummy.m */; }; + DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F5374647C5382656DBDE995FE843997C /* RCTBaseTextInputViewManager.m */; }; DE124FC4A0EC768A4686D70F6B4BFA58 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8C019C75FF4F789E40C8784D2EEB25 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE4FD7EF6E7A5FDEC42D181E800ADA04 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE78D699DF0963CA715538E756C4EE2 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF145921DE85DB434850DC4736F5445 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 82F7F16CE0883730CD67D3C8EAE7BB61 /* RNFirebasePerformance.m */; }; - DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 32220994394A40DE7B9D36CAE714B59A /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 89744B170298F75C90CAC39E6808A498 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 65DF2D38D025F5920C9A118C22152FC2 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = FA39F010CFC82380C04E0F3BCAC9D17D /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 829A3EB9FA3CD3A0078F3AFE01CB5D76 /* RNFirebasePerformance.m */; }; + DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0D73E30911FD6FC36A4864DE2F0A7D /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 694A203704E75A8F8243758600129A26 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FFB615E00F80058067B4367CFF4B854 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E03B2983E6A3780B1E33F86C0B6727E8 /* GDTCORStoredEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 00A08DD362055E20F1FB0559D19644E4 /* GDTCORStoredEvent.m */; }; - E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = F3CCB24FC34E85BE20A08461CEAC5964 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = BA6C1AFD59E48EA0E8D3DEE5C8314A44 /* 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 = C9C21A13DD4599456884602B0D4C6757 /* RSKImageScrollView.m */; }; E092937984315305C4F482FDC1AB25EE /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A63FCD6FAFEE69391E5C3FC275512F /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C9EE23420BFAC48413A4637E84819DC1 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 45DCCF91BE6331A403D82963970FFDFE /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5160329ADA5B68E17C053672412941D6 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C4A0223F6AD0C87E435E09D27EB998 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5B938D3541A5B6610D7044F0B2B802 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F44254CDC9D17AB06A9E33787E57F9F /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0F9AB2F0F827441784FE65F9DEA24FC /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7F7DEEE1B431B212DE4B6E85BFD120 /* SDImageTransformer.m */; }; - E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79C1357F2591BBF578F21D97ECF2B59E /* 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 = E6FEC01938E6E2881B3F79CA8423559A /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 963529313674244E03C747A4948AE491 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7AE37CC8ABEF1469F1B8301C5FB9894 /* 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 = 2B3D314EFFE2819869E5A8F627761719 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCBEE5C8D08250D44D7238E3A4BCF1C /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; E19F094AEE34A8B92913D6BDD5E9A718 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 464C3A02594F9D69187EC87E695B4726 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E1C350EB67C41B14911972FCE699FCA5 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE6009DB9E0286F743D5CFA5415F06EF /* 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"; }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D1ADC607BB15353F965858ABCFB3CC56 /* UMAppLoaderProvider.m */; }; - E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A16DEFAB0875333C26E3139CE5310E82 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 77258C342D4729EE4CF05D804A6056E8 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E686C3BE8C18BEA7F33C8E9CDE322F /* UMAppLoaderProvider.m */; }; + E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A4CC60E4F4C039837A5B2BE263639E /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 08973732DE9BD3F907E0D41E5B0088AF /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E27FEF47747D16413DA5F5E3DB760E17 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E5CFD24886A762C411A37478D6B0296 /* UIImage+MemoryCacheCost.m */; }; - E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E822F4CDCF4DB122075F36B3348CB32 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8A795D79440FA00273CD98F065B963 /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A75A67682FD28D02E198C5940C1521C6 /* RNDeviceInfo-dummy.m */; }; + E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 175935B114BDB3CA3CA45084FC6E089D /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 84B6BA8026C191439E6A8DBFDAC36C7F /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B37FF6213B5C53AAD606CFED6D52F6 /* RNDeviceInfo-dummy.m */; }; E2EE20BD16B60C9E9C8F5745895E4CEB /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 481BAF2737C4B9EED2882A2C4CB20C17 /* RSKImageCropViewController.m */; }; - E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C7372FB61DF360A86BD59E40639D4D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0FDDDE6DADDFB9DCE1C1EA37EF3B99 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E32C9EE312F7082CA358C8DA02112A8E /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E17F86AEE63B4E96B07B6417885A38 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; E366DD0852E04C44719F436504C65C5F /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A65228A597C9CDF1630D3E33E79C2E7 /* SDWeakProxy.m */; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 636F31DA774BEA7BE943A8E6CCC0CFF0 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 089E361FA9F6CCDEF000FDACC54CBDEF /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7CFD05C691F6924977123D6341303E /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58CE965B2A850BF72367F02050183E01 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 338F84E87C6E68BB0DADBBB5CDED7DFB /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9F7B76B1974AAA9B7CEEF163314335 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DA0536FD69192110548E00EF3BE7FC /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F2F1E1CB7222FA2BE64E89BC0A68 /* GULNetworkURLSession.m */; }; - E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 90790859284BE76172F93E9F7813BB5D /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E73D0D712ABA9F6DEED0F86AF52EF7 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 215284327ECF7BC0EC9C01C23DA52960 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F1DD820E50ED7683D2682FC978902760 /* BSG_KSCrashReportStore.m */; }; + E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = C664861DC8FF3CDA2F1CFCD17592A1F6 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 19259273260165E6F2BF2B18A958BC15 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DB67B66D070132A40C0DE8F074C38DA8 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 02267800B3684D4BA125373674B5638C /* BSG_KSCrashReportStore.m */; }; E448F434853BB876889DEDECD8355860 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 147CFFA41FD70FB3BEA2696A188FD294 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49C99B16AE53555FE7A7CB8A8BE5382 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBAB6A3B14167BE15806D2D4C391430 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4DF0038F580620277B1D09CFAEA7194 /* GDTFLLUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D6E08DDF45483F5A4732B16AF971B03 /* GDTFLLUploader.m */; }; E4F2A48E51116B466E81C84FFB3C33B5 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = F08B0F9A4D8A738B0F5EF58D5545D0A9 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BA51F00ECD12529E58CF5FCF1BDD822 /* 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 = F16B41A3F0930FB8BF3A64E14311AC3E /* 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 = 2FA8915E0D8D275C898AC3CC45B0C183 /* Folly-dummy.m */; }; - E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C775F0A3839BF88C0D89C889B59B26C /* RNPushKit.m */; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F75B10ADD795D175038A5C942CC2F902 /* RNScreens-dummy.m */; }; - E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 28200B7B2826E413420961FA86E7E2E9 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B4F7D426EAAE7CE894F7DE82EE19BFA8 /* RNPushKit.m */; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF8D409E21046D82CC1AFDBFBC03C909 /* RNScreens-dummy.m */; }; + E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 07DE25B05DC5C580B5AC78CF05DD8812 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F15A1B308313E7B51B2753B9D83EDFA5 /* SDImageWebPCoder.m */; }; E5CAC048154072FBC7D33C3C690D1666 /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = E728B448CD6DE78410A3FA3D7DFFAF58 /* FIRInstanceIDCheckinPreferences.m */; }; - E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F9E7EF7E62D98E528212D0D273427AD /* React-jsinspector-dummy.m */; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EDFD91143B580A2011219BF543907D2 /* RNGestureHandlerManager.m */; }; - E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 82B7FDA33841430FAECFEB78091A9B83 /* BugsnagSessionFileStore.m */; }; + E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A3ACFAC389C1C0E967F0B246CAFED2B8 /* React-jsinspector-dummy.m */; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AF2BF216C235DF5D4CC4F20A7B38DC7A /* RNGestureHandlerManager.m */; }; + E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 3195A51A28D91E9C303A8551A1698000 /* BugsnagSessionFileStore.m */; }; E64DF891F62A7CC6064235FD1A9DCF5D /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A50C6F190916F34A6C994F0FA9A369F /* SDImageLoadersManager.m */; }; - E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF6A5BBC472C7054D73C96893FD931C /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = A8B5C306DE7AF28132B3BAD6F0B04749 /* ARTLinearGradient.m */; }; - E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CEDF8BB61428E7B1CA483A5342D87C7 /* 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 = 923936132C5FF045A354B7B75A74E01D /* RNFastImage-dummy.m */; }; + E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F898066136E87F7FB718CFFE3C0C28 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F186FA6D54A1335A867B7ABC0D90EE5 /* ARTLinearGradient.m */; }; + E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = E4273CAEA810F3D1D6483CD510A30A05 /* 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 = 80B6C2D5DA23C5D1F8DB2EB628BEDA3B /* RNFastImage-dummy.m */; }; E6C3AC1533E09AB22822D392C9B9CFCC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = C460DA70768C93ED1BE2D6D8F8EB4963 /* FIRDependency.m */; }; - E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E5FD1C5B9357E739C64C0EAC4F8290 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 490B8C7C98FC25E75F19D4B8B135D6F5 /* RCTGIFImageDecoder.m */; }; + E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = AEED18321B7E44F51D597640F8EFFC06 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A51D984AEC516EF9A97414A6E079B9 /* RCTGIFImageDecoder.m */; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DF0BD63D7D4CFDCC663E62D0F856294 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF03D4A1089DE603CBFFF9D9D52203D /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D252E3C100FD303C25081AFE1229E84 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; E77893AECA58C42BEFB11A9F3D0F0E89 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 378C25F0844A70F6AF0AD604D5B04960 /* SDAnimatedImagePlayer.m */; }; - E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87250954950E13682D9F5CD7F3A6BA91 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0449471EF3A5708C2759E98F99644180 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E7A53AFEB6F93AA9F66679AFBF68CA43 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 88FB1508A1C9E9DF1C4FCF0644BFB25D /* SDFileAttributeHelper.m */; }; E7C43AA674EF98DB10295D5A0FDEF294 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 631C18F49615412D4C905B1C37D9ADA9 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C75434D5A226A79016D53B6234AA57 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 33AFE038D4008021778FB31EC6A6EFA1 /* RCTTextShadowView.m */; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = D3B3453CE4DE764804926152E606A99A /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 926CDAEA097EE2BC56E2824EFF0F6C88 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 645A862D5112A87C605FB8F8957D4188 /* RCTTextShadowView.m */; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = BAAAA6477211F706849A47DAFBFE31D4 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; E85404923CD3A01CF558D3850CFE3679 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FB6D1CB6C00FD26DF39F79C94A3B7C /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 674FA7B59F6E13FCB007AF7757327943 /* RNCAppearance.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B316EE8749A03932D358C95F9114570E /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 35E783664B9DA2FD5368F65EB428A4E5 /* RNCAppearance.m */; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1468B84A4E74547E95D132496B5D7812 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8E1EDE9F3E6489979B88DD4A1772C5A /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A09F908C75D99E518BBF382A235C2DB /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EF788968BF757270E8F0956A01A609CE /* 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 = D48621AC50DC4D30040BB50CD2442F17 /* ARTNode.m */; }; + E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6D86055425CB1521259B1763499D0B /* 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 = B79D9FA11E8E7E0D0504869C62DEA932 /* ARTNode.m */; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 369513EEA056867CD6A5F02835B302FE /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E98CCDCFD26438DD750B626B558080DB /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 55331CDCA3E4E9F322A2CA7CE5915A6A /* SDWebImageDefine.m */; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA81729A1DB43571D35E2E7A19E1345 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D3A2C71CB1459A2CE0C33710DEA4CD /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A0D5D7EC9E2BBCD81F172570CC5836 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A65CFE271F520EF3B7787FBE7E15D58 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9BEC3539C84BEBAE9C56DD82FE4AE08 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC1353AA6CA2364871614AD5734013C /* GDTCORConsoleLogger.m */; }; EA92BC0787BF825827888594F2AEBA4E /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7480B7F4FAB96A496173DE0E7C617B9C /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE510F89D067BBF690E179DBFE1E75D /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = BB2398BE031D52DFDEFD4D59EED50148 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EEA86F54F9A79A0F564822480831C7A /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B29D5785455CAC0AA2DDA47131CB341 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E30B8CCF8842538B301F60452DFD5E4 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C8A918CFE8CFB9403313034C194463 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BE1D6CA0CD9241EB81A4AB5F3C45A9 /* RNGestureHandlerEvents.m */; }; + EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B4908159FDD0846F3B8CD2995E5006B /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0A583E0A8EDD71C80C4A02E6FF9925 /* RNGestureHandlerEvents.m */; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9D30B663A082E804F4CAA873DD3822 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDBD1952FFD5475618E10B078F85101C /* RNFirebaseAdMobBannerManager.m */; }; - EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = EACBACF9153DD3E5D782F861B1761ED0 /* RCTBlobManager.mm */; }; - EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DAE96F078224826317C344961328901 /* RCTBaseTextInputView.m */; }; - EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B04B8589E68E2687A1D94C462182AD /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 627C072D1242A8741EB84490641B4EEE /* RCTTextViewManager.m */; }; - ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 31238A8B7C9D38F8ABB58C56ED0A8793 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8613FAA45E29C8B63DCDA4AB27153A5 /* RNFirebaseAdMobBannerManager.m */; }; + EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = B5CE325D00481D90D6CB6429E245ADE8 /* RCTBlobManager.mm */; }; + EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = AA64ACB0759A7D98739D6CAFCA4DD08C /* RCTBaseTextInputView.m */; }; + EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 57E60159AB87F8DA8AFEB39C37E2FA8A /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 14160F8013A4CD22C4A8618227453F7F /* RCTTextViewManager.m */; }; + ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = B7DAED777744B2FCD4740F52DB5A8D47 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; ECB28850CF749899A41813E488AE29E7 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F15669F5B860FA4E51821B5C31DD25 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; ECF5EE9A8CBB6789B7B126A9A26A5F1F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C4479616B9A8800084821451D7E8362A /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D71A2300D1F1BA16C41BEDF99A0397F /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B4F5AFA0939AEA94E82B4624F51059 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DFC6BCB3B33D02DBB888628D1E52A351 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED6F8B6CE9CEFC1D4CD6E21DF8103BCD /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 436BEED2A30591A8D4E5DB90E45FC2FA /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDA6631D3EB50C35BD2E88DEAEECA297 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 668DB3196C8AC5E9F322863CBC018C56 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE273A1922351D221CFDAFFC3FC1BEEE /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AD925B23A79ECA6E6EBDF8DB7412D2 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 878DA4DA1965E991360A0B90C6221A8F /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2A90292EAD4E4B3D95515EA21628B634 /* de.lproj */; }; + EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA23425B285C80307FDA26B981501FE /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 45B9748EFB1BCBED7A3E4462EF963B01 /* de.lproj */; }; EEBF8313CA8F65F42F85E698A4170BB3 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 63FC874B85C176CC532B90BB75E6546F /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE2F8856949DC3AD8768907BC1155B /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 812DCB2F8F49903836E6EBBDD65655F2 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E97258EDDE1B0FF09F0FC66346AD27A /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F1B903AFBB12AAE3480AA42378C8726 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B9ECAC6246431F48C0854FF2D09FD29A /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF627458DF9DF92352237F2364F8D8B7 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = BE9A40D3A7B0498886FB7048EF92990B /* FIRCoreDiagnostics.m */; }; - EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A871FA84A52BD22BB179B42C1F44F20 /* RCTSettingsManager.m */; }; + EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C23552EA58AFFAD374A981EA603F638 /* RCTSettingsManager.m */; }; EF6ED61C297982CF31DF19548C24548C /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E9D8CDCDCDC635008003D55AC6728F /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7037E56436AE0964F96889FED26B9D /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 228767EBE8FAD2D16DB5C6004E53044F /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BB4E471066205C1B9F8413CE80BAB3E /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 51E045377B57602000DED486F9BA7183 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B498F582FEB3B9C9EE4FDC74737D545 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C4BE532E284D6FC858B445EBCE54BE5 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B7DC0C36E8788004AC04F6BE858392 /* RNPinchHandler.m */; }; - F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E847FBA812E94CC9BCCD9EE428CC1966 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DA0A8202EC997D35289AC5368B166D7B /* RNPinchHandler.m */; }; + F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18456EB17AA72EEA954B8A7D4D78AE22 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F0B46213F4296B9F86E89D13B3812DA4 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 395775162350335AB985C2E53A0F2AFA /* UIImage+ExtendedCacheData.m */; }; F0DDCA31D954C30755FAAFC075C96D5C /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = CE71CD3D3C773A121030FB81AB751D1A /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C36A46BD905DCD5C55106653B5BB691C /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = DF33E3CF7D684DB98F89BAEB8F8E2E65 /* RNNotificationParser.m */; }; + F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C942A2F3F9E0A46A739B2017654295 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C31C67BD65922F0BF947B14AFBA4703C /* RNNotificationParser.m */; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FC5C1273D1024C325327DCD080C4650 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F15DE35EBA4CB4B476438C0692A0950A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FFE34689D2E3DE37AC652BA9C6743AD3 /* FIRHeartbeatInfo.m */; }; F19BF0C7860B5391D62C5E675AB146B4 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0E8DD8BC7FDA879032926A40B37AA3 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C42D1AEB2EA0DD81E36AE847D421E47 /* BSG_KSMach_Arm64.c */; }; + F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 78536689423EDC8F3F92362B7E3F4B5F /* BSG_KSMach_Arm64.c */; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D7F4389F6E6CC404907A69EE8797DE /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 78AE025AF94C2093809106A016A35345 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F168BF5FD0754BFE7FF0FDA8265702 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D83205141BB4700BA0E51149AE2E7E /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = B0BA8E4C23DCFBE19DAB6C5BD97B5706 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F253676650181C9AB4472384CDCFE3B9 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = A1EC5104042BAFCD052B353B775968D7 /* CGGeometry+RSKImageCropper.m */; }; - F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C388D8B8AF0927DDBF721CD4F0BAC23B /* RCTInputAccessoryShadowView.m */; }; + F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 02C132C8D0C8747978D7A4F4A8F15219 /* RCTInputAccessoryShadowView.m */; }; F2826D6E1658277DA089B70D6A8EE819 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D64694CDD23D5AA5D2926DA6659EED /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BDD5D8C1862DCB74794EE23E2C9D4D0 /* RNTapHandler.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EFEFC829BBF0C3247A3E986500E9F29 /* RNTapHandler.m */; }; F2E8A9FD857BB35C68640079AC2A68AB /* FIRInstanceIDAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7121DEBABF2BDFF8481B59788B8C759F /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = D96E9F96EC89E9F9284338352C43C102 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B321CCACE72FDC621355E383F7664018 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5530190986E93D6ED287CED2C9B4DACA /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AD1F642840E1CBEA926B77D869EF354D /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F34C639FB1271BA9041CE7D33BBB6859 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1351AE14BC4DCE7B93E301AA99026B /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 538BC0B0037435C15B566E75E8D2C7FC /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = B13741C7CBF2BA4D62AC11EFC7DD42B9 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 66BE2E56E1110F499C048713FEB1CE2A /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C8CDF7DDF4D4317E4FB9A090B13B2A /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB63F685143CFE850F245E806125F4AE /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B28DB24E2FB40CCC1E4B88DD6A56F8 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DB2F461C5ED332B4E19865257F5FCD /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40EA7396762A710141555DE1EF792D0 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE4C4F557F4921C9D27A6E75DDB9A1A /* 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 = 54D0A0D72E5409D9555B3AB6C444425A /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F4604D394027188B0F18448BA46914DF /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 999C11E9F0B6529BC62034D8CCC9BC0B /* FIRInstallationsLogger.m */; }; - F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FB321404EF961390E06B73C021A358C /* BSGSerialization.m */; }; - F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8F38AFD3B266BA2D4AEBDA526734BCC /* 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 = 1BE0B9F81DF9BB4C8F1DB0B3F7892950 /* BSGSerialization.m */; }; + F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E3D3A38329A7C0EFA19CB9C4C6E39DE /* 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 = 8D7029D8FB8076E86500FDD8484FDDD4 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4059D2FB364A28E6585D247CD47FBA /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 33E42C181DD42D9C5AB95F31B1DF9AC0 /* 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 = 3868C09A16BB72A9B708B4819E23937A /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C1DB3872977A9B38AA80081DB9F0D90 /* REABezierNode.m */; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EB5842AB2F72FCE3166D064FA10F10 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = B27A0752AE9DCA39573FBA927B8F70D1 /* 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 = FB902AEE13313EE4E1BBE0238013A3AD /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FB0FD0914EC038D592EC73415840B17E /* REABezierNode.m */; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 4607DA090D7B0CDD1029EDE16C03922E /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F526E360D7A60F00F7F67F7885804263 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = B101A21C2A5287012254B056CFA7D4FC /* UIImage+ForceDecode.m */; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 21BBC4149E367B15994D55B0BE6395A3 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = FD6A7F7AF7A06D9D2D5EBC4E87A4E5DB /* QBImagePickerController.m */; }; + F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6D05B3EF87F292D6BCE0B83F626EC6 /* QBImagePickerController.m */; }; F56B25509F8FD04924C91D993984B005 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54EB650E96F37C37F0F35851F8C12BA6 /* 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 = A37B85ACEC04F42234F39F36922AF4DF /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = C6CB42DCB25CE96E7B610081A0C9032A /* ARTShape.m */; }; + F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C552E45409E4551E99829B400674D835 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D7A6FAEC9BDA81893914FE2A34F74C3 /* ARTShape.m */; }; F59622D0F09DEF59155C8969D1B74946 /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC3251FDA9E9F879B68C261CF445809 /* FIRInstanceIDCheckinPreferences+Internal.m */; }; F5D27F49E8DEC09ED4DF62A5F2975463 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 842C1C29367F774BD441F53EB6BD4437 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = E99246ECA2FF3A52EF5E264B6D7ABC84 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09FEF9981606134C65ADBEB0FB57B17E /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = CE9E07113CDAACEFCB9A57CA00A06E8E /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917C2BFBDD722F33A15A69113BDCD537 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F678D6DF5474A127E8A5C548654BDE5C /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 108BA2E99330882B915006784045B5A9 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6835F579A7F608E9D9DF7936BD0B6E5 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE448D03DC1030CB1623347E60A913A /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = B4C688ACFAAB5C8C2F3F7922A721D3C3 /* 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 = 226179432C6080ECA229D01D76926AFC /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD0AEBB89BB36C053458AF452310619 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C735F56B38F7BD8ADD354A681E7609C /* 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 = 6E332A0B6AD930A1A05393F5F9162296 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 00AA2794A63D47A505005F5D362E2881 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 102D559173B1A82E75F05608FC7771F9 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D814C2EE03734CB4327B241BBB99174D /* react-native-slider-dummy.m */; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7FA09B51BC675A9057DB49E34E0DEE5 /* react-native-slider-dummy.m */; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E5BFD2113CD9F64E3ED9DA735B433731 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C12D553C2C6EBEDD958013FD380CD3 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B2C8C639E7ECC87392A3A0BDF586A6 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7B8AA8AD5C283D228877B2FC07E7E98 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = CAB97B058E412E0CFCBF16E6AD07DCA2 /* SDDeviceHelper.m */; }; - F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E755321532787F7DB40AC844B2A0AE0 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0E13FC825A0389AFB6D7962502FE1D /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FBE28ACFF451E8AC265AEE68702C39 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC23F2A6776968AC25F6B3A06A87CADB /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7AD59F4DD120C3E7EF9749301C907C /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9F08911747D4CC8EB8C9AC619393D0 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89398DB31D2B090D296B4E56FB6830CE /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBFEA19C82D8D712E325597558386F35 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FF92B16CAA4A7AFB4FC58207B113E26A /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BD2DF60DA184804CFE750C979ACC465 /* 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 = 4575FF1293FEB3125B895E2A0DA0FD7B /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 052C34FCF8FC8205C631C9C1B77BC2B9 /* 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 = B6512EA37FC09D00212925C2A6A42AE4 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8F23B650278EC92BD4E1D20F5F3084F /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = CF993D633A32BC1ADCF4B996EA47AB13 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 3A9A28B444753B9F9526CD5412636FE0 /* RCTProfileTrampoline-arm.S */; }; - F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 82DE597588FF763411D2654522BE7936 /* 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 = 54DCCA8CF849B2B71253E54894E70343 /* react-native-jitsi-meet-dummy.m */; }; + F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = DFD824F7CE10BB3B9A00CD916F5EF67E /* RCTProfileTrampoline-arm.S */; }; + F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5E8055564328A3C168B7560C176F18EE /* 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 = 5BDE4A0FA8F642EBB817B2D8CB95696F /* react-native-jitsi-meet-dummy.m */; }; FA0980CF93ACFCE4817D2934112E098E /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3FBA3E5B2AE0036A215BD1C8E37D31 /* 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 = 782DC576EA301487BA3AFF6CDF22C7F0 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA5EC5DA0AC2A640AD55520734F6D8F /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6838A85B8F9A94BEA6F282886E2B333E /* BannerComponent.m */; }; - FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0142AF2AC764160F5E7DDCFAC7A40FC4 /* 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 = 0B3E5DD41E0FA57BBB1449FE2675DE59 /* RNVectorIconsManager.m */; }; - FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 148A1C8D6353A1FF05E6C4F40DF9FE8A /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DE35A2679D9ED09F78CC7F60A228D8 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 61935962D316655D08F4C0C658529A2B /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D61BB0381EAD01963E36420B7FE6991 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = FB4AA734209C3742815772E890AE7C5C /* BannerComponent.m */; }; + FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9878464D997BC5F4110F8D0763686CC1 /* 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 = 467359208C028140699A9312DCFD1E88 /* RNVectorIconsManager.m */; }; + FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = B42BBE16C17A2C50D57313F1880C87E5 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E7612E96088646591DE8A684016131 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = B711EFEC9FD65D1F7E499E8117FFFF87 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB622B6F25A8FB70B8156427BB2963BB /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D68CBDDD5A7D610F9E436686A07B74A /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE510633AEDC567A5FC1865B344C48C /* 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 = EAC3D0BCF30C8AE869CCC160C96A4108 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E637E78DD99F45D9C9882E5AB714206 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 32535E19DA9B81F52BD854BC718FE596 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DA749E8E918B0DA470C0E5430B0A0B /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A6268F447B9C8E786F8672ABBEDE0B33 /* 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 = B8A4DA9E969B5E253D2C069CEE6863BC /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E080A395CA90341C7DE1F26F70B08C9 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 51261E7F928A4468C08D31F03437F546 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBBA7842602DADBDAE57A0FC05A97B85 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B019F88D183D8F0E9D8BF083F3699B1 /* FIRInstallationsAPIService.m */; }; FBED05764440E7FEF17C007B2437FB0D /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = FA6C315437C3214205593E74AB412E48 /* FIRVersion.m */; }; - FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 15CFC51C2159AED55EF822EE01AA5DFD /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 577553B429DDED8615E5E164CB183A63 /* RCTImageBlurUtils.m */; }; + FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C00F33CB462AED809B0A19BB3F9EEB14 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FF29F881AA0F7272BECFB2257110210 /* RCTImageBlurUtils.m */; }; FC775095597914294ABF7C56BF70052A /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0723D9254A0FF8AAD5189C6A5CDB013B /* FIRComponentContainer.m */; }; FC8EB7790089B59A9534F58C07FCF438 /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = EB3D678D3F78C857A36FCEE91C3A72E5 /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BC942CF16AC147CAD7D1217158C055 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07E5DA47E4212DB768DB092C518399AD /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 01B218C01075CC627D6CD84828172CB7 /* RNDeviceInfo.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD8F67FB9E5FE3748111AE45CC00A67 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C21746FD7CA8F9DF919C16A4CF86FA15 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 345D90C813B8770C526A48EF328A395C /* RNDeviceInfo.m */; }; FCFBF36506CE48E9AD3D878FCD18ED4F /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA675DA25C52E2FD5633ACE43240432 /* UIImage+GIF.m */; }; - FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E6670F2D0C21AAC77816339E4F162C86 /* EXUserNotificationPermissionRequester.m */; }; - FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 648EFD12C8881B842B22AA55F3DC4FE9 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46B486541A6AA377CDD781BA73395D1C /* 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 = C80725470BFDE1260F794A5179DD62A2 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 25191E329C06BBA423BA3E0E2439889C /* EXUserNotificationPermissionRequester.m */; }; + FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = F4F0207C48E67A868E63FFD34AC6C944 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D08522C833A9FA9AF9397A725E582BC /* 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 = 44E9C10025A0D8378158D0BDD21D270E /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDC1636FB7D672F02CDD074DD9B040E9 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ACF31EDEFE1E569CF6189573939269F /* SDWebImageDownloaderOperation.m */; }; FDD1A736761E6777D1D9DD0B5685900A /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 65985823BA9E59CD5D699B8553FBFC7A /* SDWebImageCompat.m */; }; - FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA513D0B104EF704EEBE81CD19D01108 /* 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 = 1FC04104E47C544DB34F84830707AAC2 /* 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 = F790E8CC5AC5310B53CA380DA817176B /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6123B2A15408A70B76B79C57A175C786 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E2BF8E4BE4C32B9113556EDECA42ED /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A30600C0DFDF4A55322D34986130AE /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7EC923E376F0FDA4523E2FB34689FCC /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEACA20561A5919D3F143BC299FE7D8D /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F2659EE472B6D6569574FAB9D3BCFB98 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEE81DDBC8EE950322B4DFBC3C91A8F5 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F7DAA1BD0C331F0062BBC640DBC35E /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEEE952E4702DBF6900E7A327CF08AE9 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = BA065BF226D7D8BE5F672D1B12FD2519 /* FBLPromise+Retry.m */; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8097A444830D3C6CCE125A1719EBE321 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = BD03A4720E8C57AC0FAB9BBAB8BEB17B /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = D74BB20E1BC0B778FF8CFFA36C0840CF /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 312EAC12211C21781B4792A8CEB9CF55 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C0237864402485714C0421AC8F8AADA /* EXFileSystemLocalFileHandler.m */; }; - FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D8915AB6846EAFEF97610B429FEE5D2 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 79264A81150031ACCF915DC657D669AE /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 633F3053CA8B414B51F0D77B7B9B9E2F /* EXFileSystemLocalFileHandler.m */; }; + FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F1B5BBFE8385257047303B04335AC90 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF825C5AA742FABD882CD741329E55CF /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = FC39B30F26E84F6B31EE5DC99AA7A735 /* FIRInstallationsErrorUtil.m */; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = C9483040D5F6D422F682396B87AF87D3 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF863C6208094AACCEA61A2F59700AB /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 010F36F2347E5BDCBC4E6E49710D2278 /* PBXContainerItemProxy */ = { + 0050D36EFD60409D250AE6344CCC7546 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + 00DEB2BB9439B7EA673008CBF0893F1F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + 00F11D8D56A7D1F208BFF9F9A2315440 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 01005DE34676C721CC34940404977FEC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2120,33 +2145,12 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 013EDC54FCA487BBAA6C48CDC97113A2 /* PBXContainerItemProxy */ = { + 016B4611B955592B6A380C4638439B73 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 01FFD3CB91B418CC5113D5E39E3FF816 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; - }; - 02525C2141BB9A4A01F1E0FA5C519889 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - 026F5244571FA414E08736B1E2149CA1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2155,19 +2159,26 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 037069A333838AB146D7F63FFFE3951D /* PBXContainerItemProxy */ = { + 028ABCBE645B3B53FC5A26BA02CEDBBC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; + }; + 02CB4B4F7A13A42556E5EEBD0FB739E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; remoteInfo = "rn-extensions-share"; }; - 03F91BE40E4BA9EF5AEC14AE2493E3C6 /* PBXContainerItemProxy */ = { + 02FB2BE82F3FC085481C4EA9A96E5F4A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2183,6 +2194,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 0567A84C8292C4E4178DB8DFF710D9C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; 05C70C130BBF2D57D3A41CA7A93B606B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2190,40 +2208,12 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - 05F3296DC7B71257BAB4E7EA20B49B5C /* PBXContainerItemProxy */ = { + 09F6E81B94C122A41FF41720813257DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 065BFE3FBC016DE8B3F82D6E861F4425 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - 067E5D93DB083FB51E091E438339E7F1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - 079575269BF1C202F91689D97EB0CB8C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 089558083C37398D29C4A58DC2A7459D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; 0A0B4D127A91E77DB469579CC4FF0F57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2232,19 +2222,40 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 0C1F6CC4A277B307210A9116412BCF88 /* PBXContainerItemProxy */ = { + 0AE0AD74441235EC05DDE72238C3DCE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; }; - 0D54CC8FA15B8E03ED01ED73B9D48C5F /* PBXContainerItemProxy */ = { + 0BB38221B6ADAB230825F30049057BF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 0D78D3AAD7B2009964060A8D32981754 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + 0E1F52E2EB19AA19090383FCAE10654F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + 0E781E90FC692F1025C68E2F9BF4EE08 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2267,19 +2278,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 10B716BE952DF4ACDC263269B6902701 /* PBXContainerItemProxy */ = { + 10190C716661132D95C4B23F3C52F0AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - 10EEA2C29319093946EC6A3B886E46CC /* PBXContainerItemProxy */ = { + 106F20B8AA93493B2A6D1F5B1E4635BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2288,12 +2299,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 11D6BA14BE41FE745D7D6A4967351B99 /* PBXContainerItemProxy */ = { + 12195A157C608BEB4F8D549CB50EE4FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2302,13 +2313,6 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 13AC1F43D30AB26B7E2C8CF0E0C7AF85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2316,26 +2320,19 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 14B666024CA64597B43CE38F6D7DDE09 /* PBXContainerItemProxy */ = { + 13F113F0B322642CE52B1BA1ABD2FF2C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - 1681F444A2C51CE79C7CBC093E01B2B3 /* PBXContainerItemProxy */ = { + 1743924C8D91985530852AC44F7B98BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - 182481D8C5E337F94FA9D3653C09772D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; 185B11EB8A27612A9B75BAA1ACDFBF0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2344,33 +2341,40 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 1973D2AB91A1181FC1F0BCCCE2121517 /* PBXContainerItemProxy */ = { + 187E0D0ABD0C9C723CC49CCB89113169 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 1A6CA696B572F159D2EE37ABDDCD59DF /* PBXContainerItemProxy */ = { + 1B0AB76C8AF2BAEEF1661FD6DEAEC614 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; + remoteInfo = "react-native-video"; }; - 1AEF2AE5DA4BA57F6D0DD29D48C9BBB4 /* PBXContainerItemProxy */ = { + 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 1B0B63EFB5EDF8CAF404F6A7CA74FBED /* PBXContainerItemProxy */ = { + 1BE83BAA40647BF43154CB42978D9EF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; + remoteInfo = "react-native-video"; + }; + 1C19AB26752E282389E09285E2389E97 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; 1C84D35F43BF9C71C2EEE3812CDC5C8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2379,19 +2383,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 1EB1D3D9073FEC354A84EF669DD545EB /* PBXContainerItemProxy */ = { + 1EF30FD97FA557B7C3CE5383A10031EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 1FE0D22DE8F2CC26E4B8CDC4387197BD /* PBXContainerItemProxy */ = { + 1F7A79282B1F65150410EFACE23DA9A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2400,6 +2404,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 206D37C097BEC158030105970950F7C7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2414,12 +2425,26 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 241B0C0FBFB4AB65D5322D5FF2360773 /* PBXContainerItemProxy */ = { + 22FCE46CBB11D57446BEEECADFFD7A6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + 232F1447DAA64985AA7A4B207C2C4BF1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; + remoteInfo = "react-native-keyboard-input"; + }; + 235645E7A547F3F6020B18379680CD6A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2428,12 +2453,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 24E824196205BBC567A456AAE112E95F /* PBXContainerItemProxy */ = { + 252E089DF8D74DA74E597D6AB7BE2185 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2449,26 +2474,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 25911D74E71C182E5A343DC800E7A898 /* PBXContainerItemProxy */ = { + 258310BC70980B69C0F38FF4A81C053D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 260FF0C211C41ACD759800FFA5607DA5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; - }; - 26354B7FDB6A56A235F8E0C3C3F671DD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; 273EEB006344CBC3B742234147B60471 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2477,26 +2488,33 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 27A25526B87AA7A8A1D634F37B5D6D92 /* PBXContainerItemProxy */ = { + 276D437DA14F9AB8A5DAC833872DA3DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 2805E98090370AB565058323100E30E1 /* PBXContainerItemProxy */ = { + 27BEEDA5741A10C1238046480D30F064 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; - 2A905BCFAF16D3E950B9D2A951CD7B8E /* PBXContainerItemProxy */ = { + 286FC26273C18481A55192FC59D2D297 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + 2A38498FD161D1A49F332F81339610A9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2505,20 +2523,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2AF0B10DBE76D0FEE52E5C20C9D9D14E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 2AF3E62F6A3C8DFFC033624C8B125A17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; 2BA87C80F636B0480FC09D41CB82927A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2526,13 +2530,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2C18553D873449FD7C3173E75DF691C9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; - }; 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2540,40 +2537,26 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 2CD0E8A1AA347D1C3EDBCE86CCD40E82 /* PBXContainerItemProxy */ = { + 2C99D0EFA82D2A2AE838FA4AC67F66CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 2E86699B107E612C4D1692104AA502A8 /* PBXContainerItemProxy */ = { + 2DC34E8093A7DF95C2E019F90012C279 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - 3003CE0CFABA4E201818060DE26E35D6 /* PBXContainerItemProxy */ = { + 31691CD4E7F2785A8A7A91BC5EA84DD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; - 30D7589FC8A6B5E61EACF670AD7DE482 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - 311444313BA6A2014AF61E6FFCF67BB4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; 32EDED458FEDBDD31B9D588BD688E1DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2582,12 +2565,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 33023E1C4E6C76195C27F42572686F64 /* PBXContainerItemProxy */ = { + 3313ADD6A7DC42FE7EF1CCA50CFEDBAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 3321E7CA5934D08327E2DB37FC547256 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 33EF101A1E52213A7EB51BD07F67A9DC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; + }; + 33F0510F75CA866A0A03AEBF5EE4AE67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2596,6 +2600,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 352B97DC4EEC22E737487EEDA2212F27 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2610,12 +2621,40 @@ remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; remoteInfo = UMImageLoaderInterface; }; - 37562607B50897FB3AAA234B8CC037CC /* PBXContainerItemProxy */ = { + 36C6831B53D697B61F77A8EFA6C23220 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; + 37A017E4076008C86BCB9CD225FEAE86 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + 37E97E8A92730240DFCE7CFCCA210F90 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 380F14BF3D7EE48CC456102540E8C895 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 38484BA9E70219CF25EAEAD72C2BCDC6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2624,40 +2663,33 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 3A87B12C316BC1DE6A35D15571BD605F /* PBXContainerItemProxy */ = { + 392BB1735E9813327A0EB7333A2B4E94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - 3B1E2FFD930C86F3A634F797B87CDDE6 /* PBXContainerItemProxy */ = { + 39323F4B84435CF2307A40F4D5993C96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 3C6AAF9121D88F931A8C5859842DAD29 /* PBXContainerItemProxy */ = { + 3C521BE18F8AC26B1510B7E9A782C33A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 3D02FF26ACBED825F851904ABFF34A97 /* PBXContainerItemProxy */ = { + 3D6F5F66692A6EABA7090A443FB328C4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - 3D45E3DCD38109B38F5BA73AFDB65794 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2673,13 +2705,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 3E67D0361165AA4BE02DBF5A3BD9A612 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; - }; 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2687,13 +2712,6 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 4112A28F2A24F4716BA9B280425C93C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; - }; 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2701,33 +2719,26 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 428AE3E3B0C434B2BE72A0E6DC13CFAA /* PBXContainerItemProxy */ = { + 42480C403B26B0DF65ACF1032A1EE421 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 431A487526903183015DF762ADFE9D43 /* PBXContainerItemProxy */ = { + 4249B8F1AD28A15C4FFD89D83029E544 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 443A841EF4596E3CCD4E5368DB1090E2 /* PBXContainerItemProxy */ = { + 43D3BA0270A7B7E8B1A9F5ABAED1A06F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 449A7602971F7F4AD6E8484B88342D55 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2743,6 +2754,13 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; + 45F841CE92F82C11E1CC799B2777DA23 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2750,6 +2768,13 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; + 463C3F313A65566C398D9B97DC7A166D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; 46C8DE13FECE137E1DF29D2657A15C93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2757,6 +2782,48 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; + 46EBA33EF66A3653124275BC88E5DD5B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + 46EF0E8A566C8AFE3169D50A00203FC8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + 4755D1EE192D023E728CD5417D6159E5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; + 47A25B4923DEBFB6F157ADFF5C3C85B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 47A7BD0B5AB1FD2EC9B2452DDF38E5B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 480D090BF9357EBB54BD50CC054B006D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2764,40 +2831,40 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 49132977A4DA3680C1269CBAB66DEFE5 /* PBXContainerItemProxy */ = { + 4A882638CE98EDB10A9449CBA4216384 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 4AAD8356AB559C18D4616CBF8EDFF5C1 /* PBXContainerItemProxy */ = { + 4AA398C21A1F71E7166B00823A5E314F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 4E10E94546B9897329BB7132343AC50E /* PBXContainerItemProxy */ = { + 4D7C1EAE1FBA47006E06EEA3152DB4F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 4E1A7F06A2ADFDF1CD0745680382112F /* PBXContainerItemProxy */ = { + 4DB553BA91EB321E16E02F459A8CD268 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 4F327B4F5B04100E23934DEAE1F1ADF9 /* PBXContainerItemProxy */ = { + 4DEB5EE86CA2452A6041DA38C5C8E8F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2806,13 +2873,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 4F9FAD4B19C28355027266679630E3C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; 4FF10556B9B41D07EFAC6AA420559421 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2820,19 +2880,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 5062F87E3425DACD2975174B3E87F828 /* PBXContainerItemProxy */ = { + 5114A9DB91CD9DB47B6122293B8BC197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - 509A25B05A998CAB3B86A6C80C7B78C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2841,13 +2894,6 @@ remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; remoteInfo = JitsiMeetSDK; }; - 5395F90884A47A1667129CA57D99C81B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2855,13 +2901,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 53FC24855C50722674F55D40910C81FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; 54A7BA384E80D5DB0269C827877FE175 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2883,33 +2922,12 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 571319F08F76CC193EBD50B6E656DB59 /* PBXContainerItemProxy */ = { + 56668102C01DCC60C707BCFA6FA6493A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; - 5723BD8BC9FC87052D11640A573EA5A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; - 57EAE39E918ED16C96A59433DEDBE065 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; - }; - 590A41B12D8E65F97795BD838AF35F3E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2925,12 +2943,12 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 5B947975706BA7F74B186549D744C4F8 /* PBXContainerItemProxy */ = { + 5ACF316D30AB49FCB47A5140919D5A26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2939,12 +2957,12 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 5DDF9A546640B539CD3819B6E7B9C201 /* PBXContainerItemProxy */ = { + 5C83B6A1379D3FB304E7AA980FA7AB01 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2953,19 +2971,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5FF29D64C467F8686429C38FCC131E61 /* PBXContainerItemProxy */ = { + 5F1939F0560722E1A64C4CA1CC7A52C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - 60630CC2B00EAB9D8A1BC762FFB41D39 /* PBXContainerItemProxy */ = { + 5FE0A1A7CDD3F949A1A487BBA78285BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 6039590220CE7E16E89CAD6713CCAF3B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; 61101C6B91C9ABBD9763AA3B33D38B1C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2974,6 +2999,48 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; + 617E54A9F8AEA743D190CAAE0001224D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; + }; + 621CFAC4BFF216843BAB3EE331A0924F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 62B38692516D6A5E78428F1EC039B546 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 635399205230BDF31D4408A3C7AC6CA6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; + }; + 635696EDBBFB83361E798F16BCA8EC73 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + 635D11F50EACCDD5F8F3DE4940E7DA1E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; + }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2981,13 +3048,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 646FD43A8C1D0BF61EA88C3762BB9EF7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; - }; 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2995,40 +3055,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 664EF26E9FE25B5113E4BA5E3DF75A7C /* PBXContainerItemProxy */ = { + 69B0C1C02A0DB7E2FC09E0D5FC7F11AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; - 66882DD906C9CBF33A822B0F489B5493 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; - remoteInfo = "react-native-video"; - }; - 66CA566BF093B4FA85B1B5D4D953BBDA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 679C5C413972E4C8C96CE0EDE50D9F82 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; - 67DBA14725D781CE21CD917340667E43 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; }; 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3044,6 +3076,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 6A07148151B5775B3B994F1E21A8ECE3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3051,47 +3090,33 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 6B407D74ACD4C0726B90F63D35661B74 /* PBXContainerItemProxy */ = { + 6AACC31E19431CEF6E27441FC1D65554 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 6BA468018F66C1D47DAEA3ECC88158D1 /* PBXContainerItemProxy */ = { + 6ADA5E64C851DED1DC66DF8FAF637149 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 6D065445C5F828CD139CE00E33ABA0A9 /* PBXContainerItemProxy */ = { + 6C297928E18D44F5953BAF8CE0EF981D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 6D3BF89DF4987F4669AD095F4AB5877B /* PBXContainerItemProxy */ = { + 6C6460CB4726372CA6AB1695009DD37D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 6D40AA86B2E2885EA4685884E1B247A7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - 6DBD6F286817EB85A8F0BB2E8D08F4D9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; }; 70056FCB7FB870FB7D91F161A3B6F84F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3100,40 +3125,26 @@ remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - 702C6F3D5E323B675431CD28EE281130 /* PBXContainerItemProxy */ = { + 7146592A72F6D0AF3256BD66850CE712 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; - 704327F4FCF1D8A6879F755448C69B26 /* PBXContainerItemProxy */ = { + 71CF03C3857D948CBE37630D03870F8B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 70C8D8D121922CA292DF26257F5999A6 /* PBXContainerItemProxy */ = { + 724607A9D5852D97C492E60AC3E4739B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; - 70FAF6A591BC2B09C3E9689203FA3205 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; - 720CC6AB7ACA5F827E8E8393EBC84D85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3156,12 +3167,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 7479C9A02CE9BD8D4DD262E3491EA1C7 /* PBXContainerItemProxy */ = { + 73E477F51EE138B389381278AA54C965 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3170,12 +3181,40 @@ remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - 76EEA5F62CC441995D555175CAB0A477 /* PBXContainerItemProxy */ = { + 74D8B64863EF2D0678DF3DA83B0C2861 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; + 74F240E627632A2E194D41F12BA3D4C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 753607300D6D5D24E790F6C94A029667 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; + remoteInfo = "react-native-keyboard-input"; + }; + 764710586272888D7D0CC28AF871973B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 76F19E87573B2D0D6B17E607E35825ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3184,19 +3223,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 78960F097FC7A2E31B0C67A8BF19D7C0 /* PBXContainerItemProxy */ = { + 78402DB0832AA9FF8FD2C9058B512FDA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 7A9D426F64FA97581C779ECB7FA9F4E1 /* PBXContainerItemProxy */ = { + 7939FF264391697DD8ADD14707580AA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 7948D6EDC8DA1D44C406BF7B01328FD9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; 7AEA5761B26CAEF1A0C0E82599059DA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3205,13 +3251,6 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 7C0EFBC3DA1A8FEEE7CCF50505737ECA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; 7C309567C8843AC36F40EF4B09960A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3226,6 +3265,13 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + 7CAC44D21086830CDDE7232A4A1C3CD3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; 7DFBE4295EB2D14288E99BCD22619405 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3233,34 +3279,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 7E6AE3A663516C885BEC6831BB93EA13 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - 7ED2152CB8618F6EE3F905D50E567C27 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 802EFC4137516115D17EF457E62E586F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; - 803F096642966EB8F55A6272ACDE03AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3282,13 +3300,6 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 81B4FA49E72F5B07122014F9148A9903 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3296,26 +3307,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 832315DA7CF7E5E93C27A1A2AC92539D /* PBXContainerItemProxy */ = { + 81F7166461A4877994A00F77C9788AB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; - 857F47971C60AB633BBCA1479AD1A1F9 /* PBXContainerItemProxy */ = { + 86544B6DDDC0A5144B7D5DEE3C6B2E0D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 861146BBBDF6493BE7981140D74FCF30 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; 876F633EF64F3B86DDACB4D9765F88C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3324,13 +3328,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 878C9C18439BE6DA5F4652C3D8CC13AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3338,12 +3335,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 8B7A5156DF566192088634AF35396110 /* PBXContainerItemProxy */ = { + 8917B426201A3AC18DBFF5504314D3ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 89F74E8C510C7DC69AD71D7C3302C6CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3359,19 +3363,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 8E2912F692FBDA68360FBA733E4BD06E /* PBXContainerItemProxy */ = { + 8F7452E295C1C8A7F5ABE5727C93BA70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - 8F2CFEAA002887A4B7BB9024FB93494D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3380,12 +3377,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 90490396F7C1E940A6B8AD3BB303EFAD /* PBXContainerItemProxy */ = { + 906184BDB3BC56B1AC9CE2D4B6D63263 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + 9082D18F52A98E978D910A8BE49D455B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3394,13 +3398,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 91BEA0F05746420FDC0C50149AEC23BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3408,12 +3405,19 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 94B3FE0841D5771605B743B9D9C34B0F /* PBXContainerItemProxy */ = { + 93542BAE65FD8D678AEF4A127BF57FD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + 9541E5A3CCD444A0BFEBBA45B1168043 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3422,12 +3426,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 965AB3845BF6C37B9A2E428591D1EE93 /* PBXContainerItemProxy */ = { + 967EC7AF152BB7F9CEA8D6B0BC9F1AC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3450,13 +3454,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 98DC88E4F289D79EC718F92BFAEEA55A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; 9999A457A3E364808C9E122EC64D955D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3464,12 +3461,12 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 99F60170E12FF8170CD126673B97BE8D /* PBXContainerItemProxy */ = { + 99C6558D36DCBD91A1CF0C2D7C047987 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3492,6 +3489,27 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; + 9C08D46660FD261E8683F83DFF68F1E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 9D9A012F4F08A007DCC4AE97EA7A418F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + 9EE5A06C460B97C9E84351FE4782EF3F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; 9EEE23D6519FCEE6884F6DF117317D7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3499,19 +3517,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 9F4E2440EF4574322286CDA4DA94C082 /* PBXContainerItemProxy */ = { + A143A1558C2499B34419E3ABEE01D5C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - A1CACC0574AB439458D00BDADA747D2B /* PBXContainerItemProxy */ = { + A1DB956420BEA733DDBE486C5530707F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3534,20 +3552,6 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - A5C032CADFDD5FF9425906A35EEF7600 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - A5E93EA8063D382962CD625FB871E75A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; - remoteInfo = "react-native-video"; - }; A6C96CD915FAFFA438FE9774216C27FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3576,6 +3580,13 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; + A8E2CA4ABFC3545B4F5302D2E1D8EB8C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; A93E606DCB9E6493FE4333269FB7DB4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3583,6 +3594,13 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; + A9655AA41F689086680FD6CB95DB2A66 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; A9D92F68FAFAEBBE26C78B0172ED347C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3590,6 +3608,20 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + AA09C6696ADEE54F579515F039A69A89 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + AA2D3B487B5D1AFCEDC703AEB2A911CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3597,19 +3629,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - ACE9683B43AB87C56DB560A905FE8BA5 /* PBXContainerItemProxy */ = { + AC2B5404C97BAA0B445F050DCC7DBBC7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - AD880691E573EBE9FCDF6F2A893C48CE /* PBXContainerItemProxy */ = { + ACDFB288EB2025F231779DEBA1EBDF0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + AD140A60D36A529ADEC6439C4599C003 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3618,19 +3657,19 @@ remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; remoteInfo = RSKImageCropper; }; - AEC90D7C236E9F9A844FCDAEAFFB250F /* PBXContainerItemProxy */ = { + B032F24D0330F08B94B5512AAF57BA7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - AF3BD2E560D9BCB5EB0470EC5E3F3D6A /* PBXContainerItemProxy */ = { + B0E35110CB44111FD4A2609A54FE9FC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3639,27 +3678,27 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - B12303CADAB09821A27E506ABCC2BF15 /* PBXContainerItemProxy */ = { + B152A07862B10DD05A320C6612ABEF0C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + B1D14CFA50279E3692EF8A81B85926DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; + B35E699392FD5F908293904DAE116FA5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - B18F531D8621BA8DA9400B26175750BE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - B23F32F8A9D5B42A97CA1716E450157C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3674,6 +3713,20 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + B4C36762CB8BEBF177C049BB4DB7DD13 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + B4D22105647F677A4F1F0A7ACEA65A57 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; B59CFF3791DD86ED3E948C16CAA52C6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3681,6 +3734,13 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; + B64978B459671D9BAC98857D2805206F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3688,13 +3748,20 @@ remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; - B7282A609EFDBCCF6DFE5923B1E9396A /* PBXContainerItemProxy */ = { + B6FAF51BF8E439B34505FAD42F89B7E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; + B72650848D062ABA87D2A79D79DD616F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3709,6 +3776,13 @@ remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; + B892459032A2C1FE708215C34A92B57C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; + }; B8E5BD7E0904D95225F1C6CC70ADE8CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3716,13 +3790,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - B9FDCA5AC3313C8525A813F6509EA979 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; - }; BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3737,26 +3804,12 @@ remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - BC406AA3DA99669F34D95FC9E8727CCE /* PBXContainerItemProxy */ = { + BE538079A83FE9F0F88873B6425EDE84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - BD32043515F4B199AB0E22406C68A35D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - BE30554915EAC89D8ABF9586ADFB7195 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3779,47 +3832,47 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - C10C10F78B02C8C76D9682A59B3593F3 /* PBXContainerItemProxy */ = { + C184E539E7DEF8D34A2AEBBF4EE8ED8F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - C17763A82AC031E86E43BE4FA0F3FC4F /* PBXContainerItemProxy */ = { + C230682E49F1FC017A4D98AEF4D496D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - C1BB201CBC816A7930A924C64808A024 /* PBXContainerItemProxy */ = { + C2627F9875A9BD6C1CDDA66E7C98D53D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - C25EC963308C8AD23F2EAEE4190FBF7F /* PBXContainerItemProxy */ = { + C2C17B885DB3B3B251FEBDE7CD5EBDD1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; - C295506CE457FFFFB2D724BE5655F8B0 /* PBXContainerItemProxy */ = { + C2D55249DEC8CD1281E03744E6B47B2C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - C505646291F935A38C2D95467150C6BF /* PBXContainerItemProxy */ = { + C55193773EDC605C1B1DABFC3393812E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; C583A5691E3DAE99E4675FD1989CDA14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3842,13 +3895,6 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - C6344B644685ABDE6E42DAE49708EB83 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; - }; C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3870,55 +3916,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - C833FE201BE782A869104308A103F20A /* PBXContainerItemProxy */ = { + C7F2D2FCA3028EC7122DAB9F705B78A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - C88F1C5A940B23F4CC7C8E730D593988 /* PBXContainerItemProxy */ = { + C96582E4537C6F4AA13CBD325ADC7BA9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - C8C199D46FD3DD67148F0D47BF9A2023 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - C920F0CCDE6B125D03C36F35E1B070B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - C978E2B36D38968087242ADBB0DE8929 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - C9BE69FB541275F9EC7555AE25270410 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - C9C235729131851E3935743551F6290B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3933,27 +3944,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - CB066F03A91730AB0A64FB00C885A955 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; - }; - CB8A7E990CD7E856B8CADD28DC191F90 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - CCFD53E94AFA8D4B32BA9AA6DA6A23FB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3961,13 +3951,6 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - CE4ABC821438FE01620EA075157CDAD2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; - }; CEEAB0ABDC6919813DC4584C776CA72F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3975,6 +3958,13 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; + CF7585903ACB4C56902E2BDF5071EFC3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; CF87F655D13B486B7A39F4A5166807A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3982,6 +3972,13 @@ remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; remoteInfo = "RNImageCropPicker-QBImagePicker"; }; + D021960456FAD3D239C3CDD1E5087022 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3989,6 +3986,27 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; + D0835FB563F6338ABFE6FED8C0AFE443 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + D08B040994AA76EC8F0C35519BB43D86 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + D1777774E119C077FD0C86D751AE35EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4003,13 +4021,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - D224D3EBA87061A216C2971F45AA7EBD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; D30AD787E43DE3AC8E24B315F185B31F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4017,13 +4028,6 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - D34E826E72AAC6075591C569DE222FC3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; - }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4038,12 +4042,12 @@ remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; - D4CAA9CA7C8E69C0DC481167E31BE48B /* PBXContainerItemProxy */ = { + D578EC5B4CDC1944BCB41833960AF363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; }; D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4059,12 +4063,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D681F2B0538A69821F2C0FD7218C3B49 /* PBXContainerItemProxy */ = { + D7FFAF193B7B9FCC9135B1FC6DE7C474 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; D88726238C500FF73BA8C26C24D566C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4073,12 +4077,12 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - D9200E48A5A008F3A8BDECD7D97CD249 /* PBXContainerItemProxy */ = { + D9DA3FD6DD928FE41EE74E475DF2A313 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; D9E3EDC835FCF7086651DEA02BD80CC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4087,13 +4091,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - DA35838819017E5F13ACCA694A4E876D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; DA72BD0D2ED3CB12079CDD61E7D8396D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4101,6 +4098,20 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; + DAF630019E088E9D17DD36947FF74B59 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + DCBCB40C70BFE88D82F98F15AA2DF49C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4108,13 +4119,6 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - DDEC6C04AA59AC1B97F3C2BB108C4518 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4136,12 +4140,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - DE9AC43A73900857969F0FAA687D7E50 /* PBXContainerItemProxy */ = { + DEEFF9810E8129DDCAA838FEB9EF108A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4157,26 +4161,33 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - DFCEEA3FA40436CB4AA040326D6F8E6D /* PBXContainerItemProxy */ = { + E2109AF5673C73E5FB35B314E7C70EED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - DFEA33431E17294C1ED8951538F844D0 /* PBXContainerItemProxy */ = { + E2180C4235F7A779475D025F5C18BC58 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - E3055A8F01220FCFBA2C6E15CEAAA9B4 /* PBXContainerItemProxy */ = { + E23BCB1A15010122E0A39ECA7740FCD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + E294F385D1E71B88EEB2BDB8C08C43E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4185,6 +4196,27 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + E51563EB23F14E835005282A9A52036F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; + E6FD3A9A715191123C78658EAFD9BC1D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; + E7077A3CE305DA43BD5D0315DBC847CF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; E7713748923D5218C5086559D4632CF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4206,13 +4238,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - E8E93431DE5B9EDBC4D3B99AA008285F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4220,33 +4245,40 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - E9C75B361059AEFF9DABA06F2AB989EA /* PBXContainerItemProxy */ = { + EB895E94AFCD1E6E4BE7D7CB7FDD71B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; }; - EA5E346BB2401BCD34D7C25846427199 /* PBXContainerItemProxy */ = { + ED13635DAE227B0989ADCFBA8F7D4312 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - EA7D3C9BF70768251AC619FFF3DC5BAD /* PBXContainerItemProxy */ = { + EDE273110A403C66740514ECF77419B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - ECB0846A8D8B0BEE23EE31A925213C3A /* PBXContainerItemProxy */ = { + EDF75265390BF1433C61420DD800DE17 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + EE7EB3F54734952B59F60AE0B92BCB63 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4255,27 +4287,6 @@ remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; }; - EEE33F6558983BA2DF282DB4EE7B037C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - EEF09367EDBBB6D281BF444445784F90 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; - }; - EF1EEBC25EEF9243F1A601C1A96218C2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4311,13 +4322,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F2DC85F54A13CF837109A697617C4E93 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4325,12 +4329,19 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - F41400F9BEE622517440881C0BD1FD56 /* PBXContainerItemProxy */ = { + F3DFCF646979763A17BB4C410D5D721B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + F53BB23CD9D485EFB612FF7031750C2D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4339,20 +4350,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F5A9D915D6C8FD061CB4DB0667D354C8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - F5F7CB4B73527CAE5938631602CC182F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; F60823557509BCBAD04769F2DE3B592E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4360,6 +4357,13 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + F61D86FA957632698000312EEB02CD98 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4367,19 +4371,26 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - F7418F0EFC7ADFE136104192A9809D6A /* PBXContainerItemProxy */ = { + F90756FAAEA013079D7A4BF64DAFCB6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - F7C50B898D179D7DFE35ECD39EC435E5 /* PBXContainerItemProxy */ = { + F95786102559F7E9D1591508CE25FA7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + F9A7717997BE1D110236DFAB193D3E34 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4388,12 +4399,33 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F9D5F40BCFDFFDC398817338196D7F89 /* PBXContainerItemProxy */ = { + FA221DBCA2BA9ECF0CEC392CD412E7DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + FA629105F21A1F6A1BA4D3FB07B7C42A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + FAC32A41C3B9C520D6EA096FD0BA91A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; + FAE86DC1927A5D32793F94ACF9EA117B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4409,2342 +4441,2345 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - FD2DF1CD4E96EAAF9AA56671852F345E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0018DB3096F92D334478C93DC9F0224C /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 001B7F2F6A312651D3606F252836C2F5 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 003F77A050EC3E8996B044A5976155EA /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + 00719456C3F689CCFCCAAAB3F5A25AD2 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; 0078CF9DAC8CC4187F6E291B8F51727E /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 0086AEEAD45DC59D6693CBD261CE72B5 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; - 008EF4A8E637E3AEF9D320EA581F1D58 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; 00A08DD362055E20F1FB0559D19644E4 /* GDTCORStoredEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStoredEvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStoredEvent.m; sourceTree = ""; }; + 00AA2794A63D47A505005F5D362E2881 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 00BCA9CB13EC7AA7313838A2B3F49C7C /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 00D2750981CB3BA9B0E6DEA98E7ED45F /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 010B69D1871557FF87BFBCA7299023A1 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.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; }; - 0142AF2AC764160F5E7DDCFAC7A40FC4 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 014EF95AAC4DFB40DC1F1AFC58414C97 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; 014FBCA79FB8FD0C06F5F4EBBC1B6BE8 /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; 0162C892BDD766E04E2714F47090AB60 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; 017CC1B34A00D5D000439D51172861CF /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; - 018DA950D2BC6582FBF0875EF15BE036 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - 01B218C01075CC627D6CD84828172CB7 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - 01FB45C7FD3C9C71EE2326C6D2C35FB0 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + 0183FFB7633DCD6C33AA182DC359DFFC /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 01B7E4E7FFDD320A23093917FF0FDEED /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + 01CE63975CB6F456365FF3E39570FE09 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; 01FEFA98B5E8668AD537CEE144C68D35 /* FIRInstallationsKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsKeychainUtils.h; path = FirebaseInstallations/Source/Library/SecureStorage/FIRInstallationsKeychainUtils.h; sourceTree = ""; }; - 0200BF5B53B1EAE97CEA1BBB0277DC76 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; - 024606C24DFB6DFF07FD9F7FC9556B48 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 029605E4F75D599083442F50C89433FC /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + 02267800B3684D4BA125373674B5638C /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + 02A0D42512086283A861F8CED0F648A0 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 02B303D0F808EE6B7EE020A45013A5BF /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; 02B92AD44CE84D68E6DC4BD460DA089D /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; - 0302318BE1A4996F6362DEECA23878B8 /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + 02C132C8D0C8747978D7A4F4A8F15219 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 036AED2BD0B30C1F52511426C3181A14 /* 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; }; 037048A23ACDD15887BD75AFB6F14662 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; + 037EFC5DDB95C8DF260510470A69CC8C /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; 037F5EC90407C5CE3418149B6C7A824B /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - 0381A251667F2E0736F1F8B62BCAA077 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 03821E9789C99F03ECBC35AD7E836D22 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; 0383EBC057B08B3B4D8E2D06F7D33F38 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - 03985525EDA89F3F7A68A80B93EC051C /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 03C581B5EAD8C9A859EE4A56D56414BA /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; - 03D230A5DC176F0B184A61B8C98B6BEA /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 03C7DA0666463BBB30798D4A412E3911 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 03D64694CDD23D5AA5D2926DA6659EED /* 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 = ""; }; - 03DEF745B4A8AB46F50B24D0270F4753 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 03E428AC1A9B8C1B06A9AE52D832972D /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; - 041AE7063506BA408912E1C0DC8B5B9F /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 0498B64643BBE06318BD049DCBD0A9E6 /* 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; }; - 04AC24105BA7DC4445C81E39B4B8D8BE /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - 04B0350A98F7FD6735CBAA7A93BD01B1 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; - 04BE1D6CA0CD9241EB81A4AB5F3C45A9 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - 04ED4DEE7B509B2575509E63CEB2B1AD /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 03D89AB99DEF1387573A1FAFA09D0003 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 03E686C3BE8C18BEA7F33C8E9CDE322F /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + 040FE697406A3ACFF0FD6E51860D00B3 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + 0437B4865CB76197F5EF62FBF87D233A /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 0449471EF3A5708C2759E98F99644180 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 0473101A50080CC5249620DC9C016303 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; + 049F9D245A0FB203DB8F2DBF52A82821 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + 04A51D984AEC516EF9A97414A6E079B9 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; + 04D0EE4DFCE7A182884E0B2303237CB8 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; 0500B10E6BA68DF16917B05F920FA4CE /* 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 = ""; }; - 058883D577F30E4210855B6DE5283D8B /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 058D28B4A68C709F7AA6A06D8A25D3F3 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 05B625DEEE974C099FC67FA0558BC026 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 0522CE2CF3EDD15A3BEA023C78D8A508 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 052C34FCF8FC8205C631C9C1B77BC2B9 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 05B5A84B6B74F56B539C09088C1C0BBE /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + 05C163815BC1046143216F9E3AB57D3A /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; 05D21B2E62B525961EA9BE1309FB1D32 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 05DE3B152B393181033A3529CEC2B6BE /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + 05D6D8D4185DD843E13AA076DD463262 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 05F2BC055A4813F5A29FBD88A3F3261D /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; - 05FCAD5BF02AFE224924B65BD9903055 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; 0605FB329064F4B740AB3DA84343A94A /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 06277AF1991D365E5B1E771917DD49D7 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; - 0630350963F5CC0D94D065864C0C43AF /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + 0608A5DA379D828EF5B610EAC15926F2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0618BB5EC9C7630E6F677980ACC2E9CF /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; 064078AF10DF91404B3DE14C08B4C6D7 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; + 064168F3E6D4B3220633AFA8BC13A274 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; 06736283C77882D931377C3AF94D64FD /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; 068267BE04ED7FFA08E2A827F9406A85 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; 0695A738C7F41C79A285AD67DCD00EE2 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 06A23A775D0C745D7DE8C3DDEC5797F7 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; - 06AF9DEAB18ECA63C1C7E00A032CB825 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; - 06B0D6A47C619AD6632A50690B027C2D /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; - 06B5C6560ABB8384D4E8AABCC6938572 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 06CBBD83E6C1F160B7D5A5719C8DCBEB /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 06A4C429F395B8492D7483B61D6C6AFD /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 06B1A80F2753CDE6FA1B820D38B17152 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 06DEF412E3A91B874C1B22F5C9332C65 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; 06E1729FCDB517FF8E598520953361E3 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; 06F15669F5B860FA4E51821B5C31DD25 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; + 06FC133F1412911B673B8BE2DCE6F502 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; 0707F165A40293C90DB9DB10B0433839 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; 070C05407939F9DFE5B7ED06A3FE346E /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 071D90A52285C5F4B905B6DD3028570D /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - 0722D2EC567F23AE93ADAE6D32994A8C /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 07112190785FAFD6F42C3C1D0E8AA9D1 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 071F966DAFF92AC7DA35FDA7C4C26DA0 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; 0723D9254A0FF8AAD5189C6A5CDB013B /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; + 072BE4DF7B3DC0B23063AB83D4F52F43 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; 0752B852E884FC47B65B0C2D2105EE8E /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; + 078C04246B9C3A7EA9EF3CDD9744B954 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; 079482D8D03370ABEA3B4293E9E0F902 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - 0797AE20CA374FA355E5FBE35EF12C88 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 0798B90710BEE010D41A8725BE3E757B /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - 07E5DA47E4212DB768DB092C518399AD /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - 07FC8D474C39CCD1546659DCEB345DF7 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - 0840CE117A17CF8930BBBD11D54CBF22 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 07DE25B05DC5C580B5AC78CF05DD8812 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 07EA8F689EEC81C795FB9A12722F49F9 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + 07FA7E11FD3C89C9CE4C33E5BE19092F /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 0802DC2D86396ADF4E54BF982B056302 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 083DEECF25FCD1C719EFD6E0670572EE /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; 08419E1C07242E0A29A26A675DC67E63 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; 084DF8B81E62B3FA2DD1A9E2620122EC /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 089E361FA9F6CCDEF000FDACC54CBDEF /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - 08A767C7171B7484BC840053A91D0193 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - 08AC8CB8E44B9D7D19D80AA1B56368B0 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + 087F4892C4671C1BB1B026E6C11C0C59 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 08973732DE9BD3F907E0D41E5B0088AF /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.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; }; - 08D8CE592E3E6D38A9ADF97B640DA0CB /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; 08ECB6371492FBD46314AE3703CD8DAF /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; + 09066CC5070831A0DA2CF08AF4A289DA /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 091A574479E27D1661DB903AF31B83AF /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; 099A43376A0723FBD49B492ED1DA139D /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; 09A8F5B7DA6974622D6C9A6189F7FAEE /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - 09B04B8589E68E2687A1D94C462182AD /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 09B7E6D3698A2D6F4705657F0FD89151 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 09D0EA33A1A7DEC68F1EB447B004AE9C /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; 09F74600A3F236533A7364611CBCD0A9 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - 09FEF9981606134C65ADBEB0FB57B17E /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 0A05659F0F906E80F05804D2793FA971 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 0A2A0BA4AF08430D48A45519F923A40F /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 0A3AA235F991FED94A3DB1DE6C17954E /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 0A47127F267588640A0B0D7D74911177 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; 0A50C6F190916F34A6C994F0FA9A369F /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 0A517D02219DB5640240657199D64B29 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 0A59B4908C871994AA75E070FB68AA55 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 0AA219B73C9530F7BDE4DFABCE95FA91 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 0ACF31EDEFE1E569CF6189573939269F /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - 0AD90983FA7D465181A1A5CFF499F0DD /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 0AEC25EAAA5E51A74B9582B5EDA35EC3 /* 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; }; - 0AF4CA0BA956D4476ADBBF1B6E4E78FA /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; + 0ADE9884FA448BD9B459F272F5B850E1 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; 0AF863C6208094AACCEA61A2F59700AB /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; + 0AFD8C63F5BDD5245AAD45063214DA1F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0B119CD86443D85E00D8782B268F50FA /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; 0B1BB1A3C8627427538472C2BEF119CE /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; + 0B29D5785455CAC0AA2DDA47131CB341 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 0B2C19870540C57176CD67F1135A50CA /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 0B3E5DD41E0FA57BBB1449FE2675DE59 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 0B5EF498B442839D5C6E22C5C16642FF /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; 0B600A9196EDF7F5CE30EAA93665B08F /* GDTCORStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorage.m; sourceTree = ""; }; - 0B67E23A4D5E5329C0527C804BD3134E /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - 0B824D421BC9F1ACD7F0FB4708517650 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 0B8C2145C378EBCD15C3B414625FD2D0 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; 0B9BD3B6B09CD5A1C2631CF99883907E /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + 0BA94DB98B2B42BD865EE3F7D55B9D7D /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; 0BB0025F1EC6EF96CB0113EBC33D3711 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 0BD10F59E4A10D804EB12B741C087F5B /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - 0BD8D43D83B7997FCC63F1C3E83C6F1B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 0C041C1310AE95E7FC32B4BCEF39B5E3 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - 0C2B5550BAD8A5777A79E8FB7EB4D833 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 0C2DF73102D11D25584EE0473C499831 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 0BC57B938E7CC798B5E793739E46D7DA /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 0C097BB027F3EF153DA2C0DC6B926B16 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + 0C1719800CE128E59EE7CB07010B4676 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 0C3136B59B61BB160560C616ED25BC08 /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+RoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.h"; sourceTree = ""; }; - 0C4157C2FAA19B37B490BC14D91400ED /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - 0CBCC7E011F6EF7E978AC965DE289A43 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - 0CC59D489EF2C068C5C82032B002449B /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - 0CDA8FCB4FCCED71D58F8B8D0C98D377 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 0CE1B26244BAE7DEC268FC99D1DB1116 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 0CF4A6E68D0685DE586ED50622C61AB0 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 0D3425F077BBD8F4E0203BAAC9D87879 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - 0D9715EB95C9838A87A58AD5F196C593 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0C40BDD85015A36835466F49B0744298 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 0C4BCF079199D3E37AEFC84C99381150 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 0C5724DAAE7D734D7FA73C871851EB0D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0C735F56B38F7BD8ADD354A681E7609C /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 0CB7FD18214C4A9B53A00CB42D763FB9 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + 0CFEB1123E4C2DC0FD95B915DA542C72 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 0D186F30E27BF37E5746C70ABCD2BB61 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + 0D252E3C100FD303C25081AFE1229E84 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 0D63FA32B0624F29F46C66B41C5731CA /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 0D954903953EE83F65DA07AFE0553C0E /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 0DA50D661A9B86529C8E9289A8C5F35A /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; 0DB662C3FB633BCCF0EFD8EBAEEF8AF1 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - 0DDE34F065DF5E05D72D5B285F4B2FB3 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; - 0DECC37F011305E4F8D5201A3D90010D /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 0DCE199F6933D32286C8907127F900B0 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + 0DDB55323D859401B115652E78293B63 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; 0DFCFAD3BB3A6A89D23F127637FA0517 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + 0E0D0EF4FA73F307C1E3F62E498F14A4 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; 0E28FEB864CD8E6FC7A5CD387F3CE7FD /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; - 0E407BF44DCAC2F5C9171F6175AD699F /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + 0E59F6B883516627C1CC6F8E6563D499 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; 0E711CC040CB2C9B6660541E7C73B310 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; - 0E76F3759E8407C982EDBF7A405F370E /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 0E84E6C970C887F862CFF4A74D75AF6C /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - 0E91B911130158B9E8F172DC0BBB76C9 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - 0E93ECCDA1756C61A19DA411120DAAB7 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; - 0EB20BE3ECCF35EADA103257BA92078B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 0ED91A38D50BB121286DD13CE08A30CF /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - 0EDFD91143B580A2011219BF543907D2 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - 0EF13686829746A2F67F9C4179C93609 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - 0F218E27E1059AFDA5D2F6B49784ED27 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 0EC895162175286C34EEAA273FB70393 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + 0ED9790A219C2DE2D227B3921432CCE5 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 0F0CB13F8583CB0A1B8976EB9C5F9676 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; 0F2BEB3203326DA9994D2329F5515A34 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; 0F354B2F01F2D88BF64EFB54C7F55D9B /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 0F7B2000BE3105D55FDF862386C46774 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 0F5F96EEB39BE4E9A73688C25B3C7174 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 0F62909EFABD0D64D478AC8A5C9BF8E8 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 0F7BFA9868C8B87C1B813014460F1963 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 0F805D37D02D124CD2026F62A952EB66 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; 0F838A60D7566E3ED6EAAAB29782AD39 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - 0FA81729A1DB43571D35E2E7A19E1345 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; - 0FB14AEB040EF55E079AD9DF8E45383B /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 0FD67A5A0A0E791A241650D09B2C852B /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + 0F99FAC3E8C63124B24B80600D32D597 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 0FA4798A52CA12F26B8E30FEB501FCAC /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; 102D559173B1A82E75F05608FC7771F9 /* 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 = ""; }; + 1033E5A5D0EBB041CD0AE93BE9F76223 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; 10518D1EE8B03DD5443764694A2E2192 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; + 105D069F6277F8F1CBF414D734064D70 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; 106194880B0291DBB2CB25096A7764E5 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; 108BA2E99330882B915006784045B5A9 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; 108CB420FAB407BE3178EAEC6141D97E /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 10A3D7035CD7D2F0C8454D9EDC73BA99 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 10B4D2544463909549F12C7F692223DB /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 110F5F208B1277BEBFCEDFFA467DE235 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 10DD403D876812A2CFA647D3AF09EF39 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + 1122716D821F5E98F684F6C17A79B568 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; 112CFA9961DCCEA1D55E037EE24E1C38 /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; + 115FB30A05D62E6D247256833E9795D9 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; 11613175A36C6EBE31343B6BACA3302C /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; - 11918BF00AEACDEB104E48AC350AF3D8 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - 1199498CED9F8347974A740A839A1121 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 1183FA05965CCBD6EBE508B2B4A4C168 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; 11C0A683D9914E0CCC77E6DCABB2816C /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; 11C183F4C4B1F1E989B5028A735C3B2A /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - 11C69D513A3C6989D4E6AD2745DE7E66 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - 11C8A67A523D91820F05E1E75A938EB7 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 11DDABF4BC9E23F1781EAEB5854D4E98 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 121477E3C5C739ABA9355F4412524663 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 123652BFB7980D6B22F23CE30BF983DB /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; + 124015FC0C273293187C1E07EA396EB2 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 1246B4FC24C785047CD95D5E8BB7AE12 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - 124B50748AC829D4F462CD6D1806C564 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 129CC95C969B20399F41C6937A02D570 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - 12A16BBD093134117D9B4CFDF9359DDF /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 12B539A266AA947F50A5C2AA6BD5C8AA /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - 12D0680A4FB4EE6DAC0C2C1E7E07543D /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - 1308887462257AEAE38116C2EF6147D7 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 131D3902D9352C048A30423FCBF0B8FA /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - 13B3D5DF0D3F1C1EDF9FBF32FB4D10A8 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 1289A4493D8132E1701E662DCF2C1B23 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 12F8BF5014271D19B0AFE318F6D11002 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 133F91CED2AE71F47C4EE3CBE81C081F /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + 1354B90BC556B36106C15B58AA62A05F /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 1370AC119D7C23E09EB076FAA7008596 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 139E85882E272B8AD1192218C2587F21 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 13BC4224F66908DB532F9B44C792439A /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 13D918F729CF132872915DE76691DF4A /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; - 13F2CD272CBA0C054B3D23053F74F0C0 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; - 13FAC8112719E5F8DF48A5580D6146ED /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 140D85D2FCCE01CFA3794C3526771E62 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; - 14227FAAE815AD5DE3A7008DC8C3F31E /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; - 14485ECF294113273CEEB34F289F0D57 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + 1407C31D488B436CE7D25ABA3655F8AF /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 14160F8013A4CD22C4A8618227453F7F /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 143ADFC0FA4DEE2451160EB9A906B4E8 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 1468B84A4E74547E95D132496B5D7812 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 146C58D18BBDA5F818E141414F4E9AB1 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; 147CFFA41FD70FB3BEA2696A188FD294 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; 1488EEFA6E3BB4A30E0FA6D3CAB794CC /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - 148A1C8D6353A1FF05E6C4F40DF9FE8A /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - 14A1909E30018152870D41BE4CF7E326 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 14A8661687FD61C71A893E1752F079E7 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - 14E28936216B895E1CA952A7599FACA1 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; 14E9D8CDCDCDC635008003D55AC6728F /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 14F9A05013AE6BE94D9456BBB14712E2 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 1511DFEB994E187AFF9521845948D37C /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 152883F696C0BA3782146C4A42FF82F9 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + 151737EFF230255E4628BAB2FF738C95 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + 155BF30E98B03A0E2C247B5207B08A90 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; 15762D6096B65B02F92828DF3C3101E4 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 159D3A6C5F3D43C874A28A3600AC9AE6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 15B1B18F7BCA23D317AEB00634D5E7E0 /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; - 15B5BE8D50BAB0134DD382D366567ED6 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 15B2D4AE4D73A5011178364790F19F71 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; 15B61266CE79A06337D4E2231EBAF1DE /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 15CFC51C2159AED55EF822EE01AA5DFD /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 15EC4CE1E11E17AC364ECBAC3B513646 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + 15C16410D0D202FC7BEC08F3A5D52800 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 15E54FCADA50EE5D9162CA526A74D397 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; 160856CCFCFA358DCF2AAC3EFA195712 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - 16146E7458BB27ED2AAAAFE6755DE00B /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 16924B7391DBFE4D0AD6337368F0C5D2 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 16D47CF049BA220DD66912A75430CD4A /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 16DC5622C62C49184B49E9D362BB3A3E /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - 16F343A73D8A9CB64F3C45BCDBA495FC /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + 161A3A675C9DDF5C3BFBF2EE94C0BCEA /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 1633223EA7070D4AA9E8C1DA21D1E050 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + 163849C656D0C2B93BCD6CB128E65F30 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 164EBE67EF41CFFDC479317A8B9631B2 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 167F5F38A1E01066FC901783E7A68521 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; + 1681EFF77C91B2EBAADBBCFDE5AB3D82 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 16CCDEE69411B61699DA424C248762F5 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + 16E7612E96088646591DE8A684016131 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 16FB6D1CB6C00FD26DF39F79C94A3B7C /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 1706E659D23E02AB43A00E255ED2B3D0 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; 1731BEB8C2C3368DB5FDF5403C2F7DF3 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; + 1733B22FC843BF3F521D0E68073441D4 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 1740959860512594A2F76151CF0BBDA0 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 175935B114BDB3CA3CA45084FC6E089D /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + 1765BB61EEF89E3A759977FA7F298E3F /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; 176DC1CC909FEC82CDF5716487143CF4 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 17D5A84F8747106DDCA033C31C5D274F /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; - 182ED7904C3796A73CE77AB1D6112A6C /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 17B0741E5EE7768D82809C35EA236F63 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + 17B6F54E970F5217C2857A8F50A3591C /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 17CBE5BB0564D33E9DB99AFC3AAD3747 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 1804310A894359659E84418A06AF5AE6 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 183A3C0267913A961293F8FCB8FCF81D /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + 18456EB17AA72EEA954B8A7D4D78AE22 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 184DC0D7DE1AE0F20800399CA4E36527 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 185F51EBD371C55922DC95F9F91B1EC8 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + 1861CB3237A3A379F3104682BEFA38DC /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; 1876F2F1E1CB7222FA2BE64E89BC0A68 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 1879999503453BFC58A6601D7FAA72B5 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - 188C9AE6484B0E6EF5C45A6E65126E23 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; 188DE396BFE9BACC9E475E966B3ECB4C /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 189247C2BB52027FFA0C7C6710FE6764 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; - 18A5FB31561943E51775DF6C2A709D19 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; - 18B6C522760E81DDDAD1505DBD7AFF87 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + 18E53BF9EB73E8659D3501206E81D6C8 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; + 19259273260165E6F2BF2B18A958BC15 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; 192CCAEA3A7BD283727CC8F0076D4F1F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; + 192E9DD5E2EA46CE683DB11AC148E676 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; + 19471965D85F9339403EA0E725249FA0 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; 195034DDBA6E2F083A2BB6F020769C4F /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; 1959F3ECFABC8A4D200C1715ED0696A0 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; + 19746B11A9FC85796D2E4D76B1E48390 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + 198682BD604D26EF9517EDA29B3BFE13 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 198EAA62B8F64DF0D48E66C6E43F8CDE /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; 1999800C3B5B4E5C0A32818F3D47D45A /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; - 19A6DAA1635F9B631B3EAA16F81907F9 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; 19B4CD2BCA1F7FD16045A42310FCE9F0 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 19B7DC0C36E8788004AC04F6BE858392 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; 19C61133E42FEBE0031138AEB2C96709 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 19F051C398E0E0CF5604A783AA3D061F /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + 19D1803C6121DCE9578856E116F5AB61 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 19D4129EAA408A10CF04AD75D38966D6 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 19D4A2E787296829FC87D4002896C4F0 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; 19F7DAA1BD0C331F0062BBC640DBC35E /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - 19FB76F75E765847C76B32E82B7FD006 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + 1A2365F988FC03687C90A9E78C2FCCDA /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 1A449D837847AC63A97AEEDA827DF369 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + 1A4B1EE2AA797F0D3A28D9CBF4822DA5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1A5B8DD3BD08B970140758525F472335 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; - 1A6893A7A9B3D5FFC6BCCD9C7FA26417 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; - 1A7BDFA4779468035CA517CC2B92B606 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 1A9CFC66C39806B6AED10B7D782682F5 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; - 1AADD43B283931056291E3578A535816 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + 1A65CFE271F520EF3B7787FBE7E15D58 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 1A6D05B3EF87F292D6BCE0B83F626EC6 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + 1A821AB27C747D3E025FAC0AA6808FC2 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + 1A87A6311133BA73A8410C2973AC9530 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; 1B0188F1CFA087DDC5889F8B0B0301C3 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 1B286F654B59426930A49C1708B01F8A /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 1B231F67D19304F03E128D2CAE829C69 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 1B25F2C7F57673EEC44CF50293C20C82 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; + 1B290D163F690F2E6EDBFAC0CD0D53F1 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + 1B36C277A662045D089C5D30EDF92C38 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 1B408AE390C2CD577F7EF23E9F2D97CA /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 1BCE5F1C5D4DF02A3D6824D9A0B4347E /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; - 1BDD5D8C1862DCB74794EE23E2C9D4D0 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 1BE510633AEDC567A5FC1865B344C48C /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 1C055DB23C96B16780E4FB84A89F34E2 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 1C1DB3872977A9B38AA80081DB9F0D90 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 1B6D088B721B8F433491C048CCF8AF81 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; + 1BA22A22703146AC68DCE049822AAB4D /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 1BE0B9F81DF9BB4C8F1DB0B3F7892950 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + 1C05FF26C5630868689698A6EBA0C723 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1C2373D7CD550A7BB6746818ACCFF4A9 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; - 1C258ACC2E0DC8D657144811C2C0F840 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 1C2907EF1D5D9BB543C0FAE2A712EA22 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1C3ED6965B82BADCF0791CEFA64C3BD4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1C4857A0842D2EBB815D30CCE3A20B92 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - 1C4FFE3B1606113541FAAA752591E5E7 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 1C9D9B0AD38BEEFDC45CED6AF59EA439 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 1C4C385AF47819B1F9C31E2190B88933 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + 1C5D33539C2A8FF785C0187DA6093C2C /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; 1CA3042722DE6BE862DDD182F6A65072 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 1CCDD0A69E45548748B1FAAF293AADFB /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; - 1CDD73571B970B45A486A3B0498F927E /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 1CEAC4E463CAC8251214B1C9557FCEAF /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 1D0AB78E30104F0A136DF6B23174E0D0 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 1D131917DF3473FDB6FA934D9DEFEA9F /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + 1CA757878A561781EABB9BD65C7DFCBE /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 1CAAA95AC5A05F3CCD215D95CD66B1CD /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + 1CBC1ED4A7FBE216A54CC07F9B320554 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 1CD7E07A5E8B9738C7EA621CA6BEA4D2 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; 1D31DB622D9EBAA4FBD560D40618BCBA /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; + 1D37EF96C4EAD8B0212562D1E916839B /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; 1D432FED92D53468BB148EBC674FF927 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; + 1D4B987455E55D6782BEC5EE482153D4 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + 1D519D0A5561B71619784359CE8D33C6 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; 1D6EDA25FA893D1DF91AAEA53BA75B9D /* GDTCORStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorage.h; sourceTree = ""; }; - 1DAE96F078224826317C344961328901 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 1D8C7D8FB7C108D54D1F81B72FF7C277 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + 1D9F7B76B1974AAA9B7CEEF163314335 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + 1DA5026704DCB4C74D10E8EC1EB8F7AF /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1DAAF08BD348AE3065A24572A308E5AB /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; 1DCB7B74B4C2EC6C5BAFC108D409C754 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 1DD923C6F64649147DDB235950480E46 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + 1DDCE8F6B4BC2E63EF5AB635D4E77985 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 1DE736777B95922CA3250DE0A9F4C6D2 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + 1DE7C7CE72EA26F049CC9690AA75D7F9 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; 1DF066F20D14665E0A04D678CAD81F85 /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - 1DF145921DE85DB434850DC4736F5445 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 1E1021A0C3C509D48D905BADBFF434A1 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 1E5C2F8D2DDCE00D1854B6E7130E97D6 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; 1E5CFD24886A762C411A37478D6B0296 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 1E67697363D6ACE2401338E16B3C4BD3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1F0555768DB0E5A54A2ADB6CC879ED19 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - 1F2DA6A44AB5BE316DEEBF16FF0B5E96 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - 1F94016E68EEB217508CD4C5B2289C21 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; - 1F9BF9B60B65C4862F9EAB875CF41129 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; - 1FA178F75745CEEA3494C31D038EC7FE /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 1FB321404EF961390E06B73C021A358C /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + 1E7AD59F4DD120C3E7EF9749301C907C /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 1E8E545A44AAADCA5A45F824468D70C8 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 1EAC7ECF9A844DFCE965CC8DE5E1440B /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 1ECFE1DAC69AE2E6C670D1C11DE3614E /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + 1F0D73E30911FD6FC36A4864DE2F0A7D /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 1F46EFF2F933B33E980B2267CBE5B126 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 1F64DF05D56CE84DDB7050420502C6CE /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + 1F86F1D1029F8C811D125D9BFC90A45C /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 1F9B63FF63976FAB9F6FA8373A3AB9FB /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 1FB8931872750EEBDFC73441A3C16D7F /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1FBB0C53766AC1DFF327E9CFCBBD6F98 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 1FC04104E47C544DB34F84830707AAC2 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; 1FC1353AA6CA2364871614AD5734013C /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - 1FC6230FB6919867F9E4FFE36EE66EDB /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - 1FE28A98EA9AA962C02DDA276010F12A /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1FE30ED494D29C7F4C4CC97D2247C47E /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; 1FF50E5ECFD2E8272C61A10AF4ED50A1 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - 1FF59804677A068BCFC8092661D8A2E5 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; - 1FFF4386C7B0F3D13728EEF0B16D8810 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 205E767FB5F6715EED16BB215A7201AC /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - 20C369594F3002EE0F7D495BDFC51219 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + 20D53B1689D26C8BB9510CC4A87E1336 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 20F168BF5FD0754BFE7FF0FDA8265702 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; 210731369AB3AD93BEB294C250CD20AA /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 215284327ECF7BC0EC9C01C23DA52960 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 21798EFB64E95ED60C19806C91FC71F0 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 211A78C16996FBFD76CEEB864AAF23E5 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 2188FE6A55B64B2F02E879DA1820F9D4 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; 21A7E3A6A97682E28E064E912B3B4371 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - 21AC208C4538DED1D54AB4C102653BF0 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; 21BBC4149E367B15994D55B0BE6395A3 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; 21BCCE9D22EB85259CE081E0A923EDB6 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 21DE35A2679D9ED09F78CC7F60A228D8 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 21CC78350195176B8CAB59745ABF5A3F /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + 21D6F8E87745A49640668EA07C0197EE /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + 21F0DD6BAD51D53515A94CB550952BD0 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + 2202930C762AADFF58306B8133BC2621 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 226179432C6080ECA229D01D76926AFC /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 221D2BD011CFCB20913B91E68A690619 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; + 2264278E2488C0928AF8093C1B268458 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; 226470D5AC918D710F1EE1BDBAADC256 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; 2281519202E71413AA842990FD9E7D77 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; + 228767EBE8FAD2D16DB5C6004E53044F /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 228CFB3390CC7D9CA85CADC0DDF34E83 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + 22A523DBB13395236C8C7484BEDB8CE8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 22CCF3D85DBB99BE5FD42C85E781F4DC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 22DA47BB069C91769B82987265E8AA4F /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 22E29CEFCAF60427BF23BB8173FF0290 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - 2323F367B32053EA27F9D766634A5DDB /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 2326D21F65C132C6B573D2F986450639 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - 233FECEF1AAAE50F2AE5315510F92514 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 2387E27F30CD5DA048E9DDE6C997A061 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; 238912792225FCFD2816B4E4CF1D3D79 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; + 239D2BF5AFCF790EB88B94220067AE36 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; 23AF27BB8FC1D90102AF761B02C48033 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; 23D5AA523F9126F7D30ECF8AA9BBE433 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - 2417D733FCFBBA6DE5A653206FC6DBC2 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 23E42333DCFA1C476A29DC9D8EF88F28 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; + 241A07C0E3A25843A3AEC03817BD5953 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.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; }; - 247EB6446686C8DE976B71F8E7151AB5 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 249EA4001666958E10159EC31E37103B /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 24A687B750C85CF34EF2CD2D32ED597E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 244891F0BB936D5801B43A6B34617BD6 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 24B28DB24E2FB40CCC1E4B88DD6A56F8 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 24B86369C499373261B640769283284B /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 24ED047780F990FDE45C495CB8C81BE3 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 2506D056FF1B5F554E6B1F7F8CA98110 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + 24D34F9D57102D6CE933D7AD85DE4B34 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + 24D52D084C2DC71EA19CFAADB944B453 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 24F565E98A92800CA20A2D83A3233196 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 2512BAF6895E8C85D9135652CD0E7335 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 25191E329C06BBA423BA3E0E2439889C /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; 2536DE7D124E9784E2285002DB68F17A /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - 2545EB3FFD648DE0B0840C756FDED923 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - 25657EDE3FE1FA2CCBB881EC2F327BAA /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; - 2569FFED30094AFFDBA2FF03A9982DC1 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 256F4AF2577D0DDD5133F7A22C6C8850 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 25A03F3B74F4B37CA6245315F4B8E7EF /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - 25B095623B50426CB11A2B72D32E2E19 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; - 25B52FD2856570BDBFEA5B0A8B5F19E3 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - 2606CCA8EA3FA4E2E33F4F7F9C664DB0 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; - 2615D87890C398C541274B84091F4118 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + 25B2209C1F1BF2F8C8DE3EB64622583B /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + 25E8877F69574680B9D157D37935E23C /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; 264FC1F2B694A07F9E99ECECA1434258 /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; - 26680BCBEBAA3226DB090A99D25A5A7D /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + 2658AA021E09980DCEF810707F664D3D /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 267A348BBE5CCBB5F7CFDE697641641B /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; 2691CB449C5A42D1964D19F13F61C0B7 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 26A3BE22B42273D384E66252BEA79D8B /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 26B6EF411EE2B65DB86109C9B5BB349F /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; 26C5912343F09FDEC67C47A7DD500AAF /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; - 26D64362C346777E7673F5F179426F93 /* 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; }; - 26E43B346470D073A3946E6E3CE86745 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 26F384A95B89DD4DEE81C0AF3AEA0503 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + 26CF9F46F4DAE142363F418BAF47E969 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 2721C756756313C51B1F5700544D62D9 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 2725B22B46C9C68AE4F25521DFD55CD3 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; 2728A14783AB5E811E5251887AADACAF /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 274083A057DB57EAE21BA7522994583D /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; - 27456DCA1E6F6425090860FC8F695FC0 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - 274F543867C64B9A619D27C4513014D2 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - 27641C724056FF0B81D6FAE31F26009B /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - 2765B792B467115750BCB85AC04C7374 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + 27640CE393B8EBFD0720FE1F5FF97478 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 279F84CE98B0C3F73635D61DB1FCF01A /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 27A2BFFCC95ABA18117734D6E43F18B3 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 27AACFC75C230014487A026D8216B40F /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; + 27D46512C14FF5A5EA0B11A1EFED1DC8 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; 27DCBA8B031ECFD777996CDBB53368B9 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - 280D196B50B06623BAC88F7C17580D75 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 28200B7B2826E413420961FA86E7E2E9 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; 28360F116ACE0C01D969AB83563A87B3 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - 2842B5FFC5432783179FF44CD633B830 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + 283FE1E557C37A7203AD1722FEF8F958 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; 285481B86C63C48528603907702089DB /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - 286E26A6C91BBC63A1A66EDCFE83188E /* 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; }; - 2877A38389E7D2FC96844CBB9A9706EE /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 285DAF02097EA6B348CD8E9E35BD4C8B /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 288041C435661B627CC75525B30A3690 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 288A04E110ADC224733012DC1B6EE38A /* 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; }; + 288A5207816312BA56B03B2711BDEF23 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; 288BE286F03060115DD9AF8F02177A9A /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; + 289932562F1B89DB736FD7AA184F039B /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 289A7FAC33616CEAE154163C9869020A /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 289C498A8DF4EC279311FDCAD80D1986 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; 28AD1F843F1DFF344E92B8B18AB1A0FB /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - 28D8934171C9DF01D91B4902E9616958 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 28E31A5195F966E49BB86E25398B2B4E /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; 28FAFC7FE3AEBCDC53B7E984681EB602 /* FIRInstanceID_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID_Private.h; path = Firebase/InstanceID/Private/FIRInstanceID_Private.h; sourceTree = ""; }; - 290DB13BE039EA3C352747F78BAADE99 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 290E8035DD3CE29392F2FF8F1F3E0AA9 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - 2910D26607637BF64B2E89CA8B50BC0B /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 291516A2A64F6B8BB33660C84E91573C /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - 2930A500E273DC05E1A45287FE4CA79F /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - 294B7B117A54E956E4C3C0D7547DCC63 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - 29670EA7212693B9A77B25BCB1B2DE89 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; - 296ED7582318BBF5FB39B24E3E2A0470 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; - 2978BA2DEBC49B6BF77A935822359DBF /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 29106485A61AF3F64187F3E882181CEA /* 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; }; + 292FAA83F77871CA7125AB3C6D336C5A /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 2967D2B704C17E5CEDA9CD96C6AB69BE /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; 297C759A2A6FB64610A331F75C41FC8D /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; 2987EA104168329CA646DE0B0609C594 /* FIRSecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureStorage.m; path = FirebaseInstallations/Source/Library/SecureStorage/FIRSecureStorage.m; sourceTree = ""; }; + 29B5AD1271E80498E631E7D678848663 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; 29BA4E5D5665A96984B0753F69FC38F7 /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; + 29C336D9226520891234B03D031FA7D9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 29E2C22FF879C56A44707455873A657F /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; + 2A0765A6FB118B90DCAF3098ED4AD508 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; 2A2F1FA0788DFD486412DD726FC1C595 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 2A3048046DC7897AAB75AF6BF02C67B3 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; - 2A41668B7A227780F09DE51D11387E2B /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - 2A59767FF3F8EBC30C89F5828D15A70F /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - 2A871FA84A52BD22BB179B42C1F44F20 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; - 2A90292EAD4E4B3D95515EA21628B634 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; 2AA5FDE5D455838C40D597792B73FDCC /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 2AB47831C397F347C7653E5A48316330 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - 2AC9B5128EFD1963AE00DB8143F10906 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2AF2154BB868D31113AA5DBFC0490F1B /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 2B0F6F88BD766B40D9610A5374CC36B9 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + 2B043F46160EE045D242B24C8F178B55 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; 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; }; + 2B2BC3743749E4723E1B0BBB8F1076E2 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 2B3BA221965BAED23220AA0DA98B8D1C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2B3D314EFFE2819869E5A8F627761719 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; 2B5CA70816F8CA51268D097D84CE8B5B /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; 2B60F0B412AB14099AD2E2BCB853B9F5 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 2B8E9C9831ED2F1A5721DC2FE887D0BE /* 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; }; + 2B7C9EBBAFDBB553C6D8A0E385B323AF /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; + 2B880E649943BF83C8628F37DBA3029C /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; 2BA675DA25C52E2FD5633ACE43240432 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; 2BB0CFABA51216D7A7818D5F5D3015E7 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; + 2BC6AA78756D6DF73200165D5BCEC7A4 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 2BD3A5828B798419E6D0005418AA7D8C /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; 2BD8EAE53B4A1B7062C4C439BA87951A /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; 2BDC9CA7E51DCBAD996FE36076C1898E /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - 2BEA966F870B42067C20AF302F59BCAD /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 2BE06E60A7CD7CD2F3CCFA917985403B /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 2BE5C9777A56A93325E584E96329994B /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + 2BF7FAEF97C933110868B7036892054A /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; 2C015C102D6AB79D534F16ADF531CE8A /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 2C33912CA546600E42493C322862CA45 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 2C4321BC4A132B3112F042E5A4BEB420 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - 2C907D36037903303ECD9829DB8495BC /* 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; }; - 2C969BCCC29425F18EE53652B5D8706F /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 2CAD3E89099CF2EC94DA2040159C4FB1 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - 2CB56EB5913B806DD6E096F58F4D9FF3 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; + 2C52513AE7DBCB5987F011FB5DE59BAA /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 2CCDE638E28EF8965A0ABF0BB3989C85 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + 2D0FDDDE6DADDFB9DCE1C1EA37EF3B99 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 2D1206B27BD5D05C0E23530D64D82FE7 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; 2D2804B1DCF18B3386453877783E3BBC /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 2D2B51DD4DF417B10B71E8B822A93A9B /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - 2D34EDB4F334F9A61289CC7A8CE81336 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 2D3B5DFF6CDCE9E34DCD31DCD94AFC08 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + 2D47C18B1A38566DDA509463846D5D40 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 2D4B253A5A4ED1E275303D37A74FDA91 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; 2D591C821A51F0825209BC1C05DFFB03 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - 2D6463879DFA88F1524A53FDFB525074 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2D5A40D8EDB5FFE4A6152623A437B93D /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; 2D6E08DDF45483F5A4732B16AF971B03 /* GDTFLLUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTFLLUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTFLLUploader.m; sourceTree = ""; }; + 2D78E1AB2CAABE25DB0CB1CD9AFC1ED2 /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2D950339BF5D6D4AA8B33AA2AB010E45 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2DAA01CE0749CD75B5D864D9C3DB8B11 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 2DB4C4BAA0A3E960224AD870D1692FE5 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 2DF80B83CB74EB8528D11F700867D9EC /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - 2E0781D6B8B1537F22692ACCB7E783DB /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - 2E20522CFC3FF714F71215AB5DDB9A15 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - 2E900620FE75CBB1CB75DF8274671C9B /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 2DBAC94257DF0DE9986805B9FFAA1448 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 2DC260A4CDB82C85CF4135AC1F2CB495 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + 2DDECE251E6973D501126445BA43F194 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 2DE1ABA6B10284D4EDC7655A5CB20176 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 2DF73263658389F8568E38761A19E8DF /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + 2E080A395CA90341C7DE1F26F70B08C9 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 2E0BE30EA5CDEF65AD3914F98064A278 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 2E123B890BCEED2C16B71A12D95505F5 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 2E4C2A8FF4818C982D1AA14F3A16798E /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 2E6A90739E4D7434B356723994AC0BD9 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + 2E6D706B80A509660C8D48471972DE63 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; 2EA1D92B58046A683FB99792F54C738E /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - 2EC3AF692C410BF61B4507625A2481B4 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 2EAD353FE1795896B59DAE1DD2E5265E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2EB94CD950E302FB8DA62A3929C37289 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 2EE0A3B1E2E891EB4A57FC5CA50CF611 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; 2EE8ED7B82F5E3A7EF109FDD2E17A97F /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; 2EE96081B960EB5843F26F6558A40730 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; 2F107D99DE30C03FC83538F1745C81DE /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; + 2F186FA6D54A1335A867B7ABC0D90EE5 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; 2F373F964FD76A572A5BB6D473B3233B /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 2F56A0807073424049DE488D5F256EDD /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + 2F72CFDA1205DF7C793BCAFDC48F55DD /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; 2F7C021AFD37BBD8879F4CED45D3CBB6 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 2F878A57E2BD422441DA596CE98AC330 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 2F9FF75DBA3C633DA045206F6C039C91 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; 2FA8915E0D8D275C898AC3CC45B0C183 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - 2FBD67DD275E4D2357C19CDB02960A2E /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 2FBC1B863BDBA06A826657CB1B9544D6 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + 2FC54818204258126681C4022306BDA6 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; 2FC5C1273D1024C325327DCD080C4650 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 2FFCB9D89EDE35F822F28CD3B3532E08 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - 30327B3BBCCCAE76BB48273350864929 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 3098F19ED0FF9A0D33958CE009076ED2 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - 30B150C99EB1AAE67D345BC94069538D /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 3002A02AB1AB90B04317A376EB7DC832 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 301703B0ECF438819C86F852A1FD1852 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 302A9997905DEDBD4BD5F41E572C5F5A /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 306ABE44DCE2212928B2FC946062B7AE /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; 30B2778F70E9E7B0D2AE6C69B7F5FA18 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; 30B6C6D8A65E6CF1025DC7B7A6DEE0CD /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - 30C43C73342C9D6D4D64749F10018473 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - 30E4DFFD382FF53419B8D93D49256970 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 30E517EE6A81BC1E2A5ABBEB29553B67 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 3100F37554E286058370BD062FAC1D47 /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; - 31184F2A33D855B394E7FA887BE6E1C8 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; - 31238A8B7C9D38F8ABB58C56ED0A8793 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; - 312EAC12211C21781B4792A8CEB9CF55 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 315204E8FD52FE3A3515BE4EE234DEA1 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 316CE9524A5CBC00F625F390AF349412 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 30F25864884382DA06BD43BCAD840404 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 3110F04116563705A7FEDFADDE265C12 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + 31456AED676E5858FD1BAEBDA8A1BD56 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 31696E0031DC0A7348FB5EF6E614B0DA /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 316DA94486647DDBD25D3AF4DE336C44 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; 3185ACD9193E4C2844B2A264ECC81F13 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; + 318DE043ACE2FBC20320DCC121426903 /* 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; }; + 3195A51A28D91E9C303A8551A1698000 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 31A45DE33FD3776BCE1655FB290D81D6 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; 31AFD104F69CCD2F1C24B01B859DDA5A /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; - 31C12D553C2C6EBEDD958013FD380CD3 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + 31B989125059D1A30A1915AB163B8157 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + 31BFF5E1B9772471B3EE81AC70EB6B60 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; 31CCEDC883A767472D9DE6E98B55225A /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; + 31CF54D379E1CCF5E3E81CA003713A00 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; 31D19F7F78897D1BC258DE9692B90D33 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 31D476183BD0305AB8612F3A73A5FABF /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - 31EE95149D57FDB9540F3A45E93F2594 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; - 32220994394A40DE7B9D36CAE714B59A /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; - 32535E19DA9B81F52BD854BC718FE596 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 31DA3E058E22523E63E46E6DAE2686DF /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; + 31E67ADA86F84C29CFD8C1E191495AB4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 320290B06306F025CDEA0C68A80C2483 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; 325556A95664EB529C31870C6A52D5D8 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; 325C4D831CC5588DA91A39FF53FA5BB0 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; - 325E1317AEFB463846E7C2AE2C8706D0 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 325E42DDCF9C6C3954ED8A465D38C362 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + 326A14F8992345AEEFF8DC48325E2CE2 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + 326FC3B5BBC66068A1CF02825EEF414B /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 327D614BA3B1F0B08F1632FD256AEA36 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; 32964D290663FAA0AEFD17DAEBD90947 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - 32AAFADD3DD8438F7CBA97F98D670481 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - 32E8670CCB6423A4F5E3C093AF04252B /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 32A71A392990AA38DA83502C56103130 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 32AD7270A69F58601E058EE708DFC3C0 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + 32B344D3B5E4407C916A2D2B6D94C19C /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 32E8D2B7930D83212864A4ACCE2292BC /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 3300AF5C29476CE937A000A54DC91A65 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - 331AF84BCC2BA7E0A3BE1703F9444B22 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 332A3997F34D8535DA1FD468B7773195 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 33286A92BBA775A209FCB1713DBD0249 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 333FEDA807E878FFB2E6CD94C10E6A3B /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 33446CC862D2173DA53D5E95665C24A8 /* GDTFLLPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTFLLPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTFLLPrioritizer.h; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 335EF82435CC8BD6A223C7100692BCA9 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 336332861BBE16E791E3BF91B49A90AF /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 3367E71248A5F32DA25F6114C127C578 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; 336D56D9272DA9C7A6F5356D0DB9B248 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 337AE88C9B8A03E812F00B5F40AA869E /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 339D47919E93B2CAED01DCEFD6253C17 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - 33AFE038D4008021778FB31EC6A6EFA1 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - 33C061B1392DFF91EE6CBE0A4CC35993 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - 33DE8D9A5ACCF2548B1090773EC7AC38 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - 33E42C181DD42D9C5AB95F31B1DF9AC0 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - 33FF8C6ED70EDD30BE81B4D019D5D7C2 /* 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; }; - 3405BF8C28915A35FDCF0DC28DD6C452 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + 338F84E87C6E68BB0DADBBB5CDED7DFB /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + 33BA8FB7DB870B1E4B61D70DC960EB2B /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; + 33DE46464F3B2D67DFA5644EED84E573 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 33E1326F0400249FA1E8797B6955A612 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 340F8DC0B45AE963FE9FEB6290B2F0BA /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - 34390AC1C4436AA28EA4274C83B23674 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 3416025EF40E33E53FF91B69F942E11A /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; 343CB5CAE5DB1DC31FE3E8AA6F13485D /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; 34576144E62481590800B259D7FB76E9 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 3461E0B242016ACE7B2764548891EC32 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 345D90C813B8770C526A48EF328A395C /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 3463795B2C1200775014C3B70EF3544E /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 3468185C6A123C9B0B267B1785EB1175 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + 3470C187730785987000EA696CDA42A6 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + 3472377E14C6E55BB9E78FA7B1D6477C /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; 3479DAFDB6E7103FA78860240F0C3A7C /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + 3491BE4807C4316DDBC7B66FA56EAC35 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 34ACC90522BF9626ADB3630C6DD72733 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 34CC6521D5F9809960F39C9D570662BF /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; - 34D25768B4EDCBE8AD32CF4F46796704 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 34B616B83B7EE2AF882F7BF7E712E89C /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + 34D319A9E5D7C7F7DD6499CE677EBA06 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 351BC2A0F9190241EC059BE6CF0C2659 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 352467F523D37BA242FF792076C4BBA2 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 356A307C6ABF12EF11CA33E44EACF4E6 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 357FF7EA38456A76C452E63689055EDB /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 352AF6D0141F74CA1CDE25B1AE5F1B3B /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 352CE27332BC9A1B0396A41302F73937 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + 357DC213D350A3EFDF67D24C886A424D /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + 3595616E90E90D230A4767F66232AF4D /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; 35C331504D9FED2A78645DE10B40A14F /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 35F0BA05BEECBF2107FEA371E9D74683 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + 35E783664B9DA2FD5368F65EB428A4E5 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 35F74D3BB4ECD5E8E0DC2EE188EB3045 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 360D859E4F26E0D45AC34F09DA57FE65 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 363F1EF00EC3F453493AAD41BD955E61 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 3632DFB1D9C0696E71313BCC82D3B30F /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; 36437C1B03AC2005FE5AE9B6ABB4A399 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; 36585169EB94500CF044692BF107C3A0 /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; - 36756CBFBFF0B3B954AD1B7158A3E6D4 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; 369513EEA056867CD6A5F02835B302FE /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 36A03901B4DC6ECFD9F75A20F0D222A6 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - 36D4A571E35EBFD16999ABF5BBDF5F4A /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 36AA594FDBA32E557C49A009C974A67B /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + 36C394F0D29C2ACD1E2C90C0DA9A1B26 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 36F488E2824DFEFCE2DA5121F3EFF1AF /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; + 36FC38F4BACD984E4837C57543196DF0 /* 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; }; 3705D82A3DC4CA7F5EDBE3BE24EB6EE3 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; 371C3A9071849B2A8C9AA73083078BAB /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; + 3748541FA350513B9ACA6BE46AFF1276 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 375E3F922217B20721576A0AC235351F /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 3761AEACE1DA39F1AD4786BB1D0061FF /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; 3762F4EB37B62BDA42A52139A2CE184A /* NSBezierPath+RoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+RoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.m"; sourceTree = ""; }; 378C25F0844A70F6AF0AD604D5B04960 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 379936F1F3A202E81F05EB564A22F2FB /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; 37AECEE6AC0671E260C2B1BE9B3738AD /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - 37B7696826AB43902263D71479D95B63 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 37DADD1FD92C1F8887236BEF67D91AAD /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; - 3820F806CA630ADD7988BD05E3E98001 /* 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; }; + 37DA2A66F28FA804CDDF289CB656BD88 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 381832CDC240F6A0687658ACE989D6FE /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; 3831B2A00965967014DC2303A0B27F59 /* FIRSecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureStorage.h; path = FirebaseInstallations/Source/Library/SecureStorage/FIRSecureStorage.h; sourceTree = ""; }; 383A35C11C4C2DD2BADC793667564783 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 3868C09A16BB72A9B708B4819E23937A /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 38494B8B4ECF453F4E64964A02EFAC18 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 387FDB6229B2B5EDABF7EAFC7EB23979 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 388E38F332625087DCF2599BD7A2301D /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 3895BD717303A11880A4CFEA5CAB0690 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 38A30600C0DFDF4A55322D34986130AE /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 38CB235F9B094ECF8F8B1B1C082AB298 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - 390A59F129F705D241B9686AA66E2D7A /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; + 38FBBC46C03DC3A0B07ADD4AD0155E2C /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; 3912963231AA3AA7436B53843E64EE76 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 392498665B438714F134FCBC21214666 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + 391377710ACDD32AD3E3AC9573D5E890 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; 392B3106DCD1282949C544B07B1586E4 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 39440C29EF6281814EEBA71F12BF027E /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + 394DC43CF3BA3EAD34232339A9192442 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 395737951C4FF799B8D1EEE29480344B /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; 395775162350335AB985C2E53A0F2AFA /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; 3967559F2F789C16C8ECC9F64D330D0F /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; + 3982047C78EF60BB286752A5684BE770 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + 39837F87108DB198E2A017AA1BB8D992 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; 3995372A68A43A67B051244F80037938 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - 39AF1DB378623B241A1961DA51117BFE /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - 39C1FDADC71496F9DD3313658F36CD5F /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; 39D1DB7D0AB5BA90F8138F64EBA4323B /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - 39E2BF8E4BE4C32B9113556EDECA42ED /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; - 3A26988C43DEAD2433F7FDAF9DAE8BF2 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; - 3A5C5801730B079C30BC743C5E2977DD /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 3A9A28B444753B9F9526CD5412636FE0 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - 3A9B6A3890CAB5814678E26BA5596F52 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3AAF20889079680A79DCBEB09D19E881 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 3ABA252CBB6E3B2F8D94515CDAFF5ED8 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 3ABB39A02D387C3BEF3101867418B280 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 39E77115B17F4922F7FCFD4CDD27B79F /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; + 3A249E8D9CE12DDEED3AF4DB691C25AB /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 3A42DCF044AEF80953597F845058F38C /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 3A508781313B2CC5E0CF3FD634BB448A /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 3A58E49BC55FDC1A70920ECFD59D1D06 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + 3A65B9D51FA41BE5D6CE29E02FA8A668 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 3A76115031FB58D04F933C1B30D9F376 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 3A7E15E440FFF061B2A37C5E65D3B6B9 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3AF7A5FFD96AE3C7E2610CCA4A7EAB54 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - 3B598E756408A131151E0D606053991B /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 3B5C9F26FED4E0761F637BAC9D86AD38 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 3B45A0A58D7CECB9873348CECF626107 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + 3B5290A65C40648D797A811AB24661CF /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; 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; }; - 3BA923BAE3DF1C7582F9AEDBA2BD7679 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; - 3BB8D1658E6620DC5BD8F056364B9CAD /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - 3C0358FA438F9178127E0C2BCE503104 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 3C0D335F37A02AAF91899A2D661D3AFA /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 3C0F9B2DA9AFD56D2F2E9B9C75991BF6 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 3BCE538C486A25F8E214D73571B7BCB5 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 3BF84B708F40CF06069DC272F2FC6223 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 3C2C67F45E347638D596266DCB078148 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; 3C3849B9FE871B8A9BFFEA94781CC286 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; 3C4BE532E284D6FC858B445EBCE54BE5 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; 3C4C051A4E9CF5D93B0327AFF8F51044 /* 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 = ""; }; 3C5D630EAB7ED6E3B3B8A2DA57CE8B0C /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - 3C7A25419288AB12A311C9B8590BA7ED /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + 3C653B5EC454F8282D5EB437253590AF /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + 3C6AE66229EC35112181E20DD1AF9DB7 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; 3CA2FA4336B15BA4DCCD78A997AEC892 /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CACEDF0FB91B2EE5BC301A94357EC00 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - 3CBDD5CDE2AA4C6B4D0C14D5948DCDCB /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; - 3CDB31921DA1C96EA73DF664B097FDE4 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3CF969E9497D5EEA00712AC408040AF6 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - 3D20059EEE08E4D54BE32164C0A68AE0 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3CE8DB135BD84815A56BD056D34BD742 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; 3D213A29F586151F62E7D1190EC36483 /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; - 3D3EB0C538A74A00277C1B7D5275BA45 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - 3D40CFA13FF0F7838C12F25132E746C8 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; 3D469EED379CDAF76B456D41CE1D789E /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 3D52B9F53E90E46BB7BC2868DCD0ED49 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - 3D67570D241C8BD96DF9CB19D2E70141 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; - 3D71A2300D1F1BA16C41BEDF99A0397F /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 3DB5C006FFFD6248BB1DE2BD1FDAA845 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 3D5625497BBC55C69000B1915CCD5624 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 3D5C92F507018A463BD5D1B450DAF7E7 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + 3DA408E66225BA119EC89A929EDF6156 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DDD0DEB64B160EAE167CD2F2BCCDAFF /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - 3DE1E6EB37A7568CECB81081794A3F18 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 3DF5B2C7483E20A7A39072BA3B0AF5A0 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 3DF2E5E1E45E6388EE28BE396E7D7C5D /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3DF98BC6C3F20CCC5179F53F73FF41B6 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - 3DF9ED76541390C66E04D31C29138C06 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; - 3E0BF76806F01A4737F7E7FF400AFF7A /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + 3E19D483A425A5566F05812F8AF6A440 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 3E30B8CCF8842538B301F60452DFD5E4 /* 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 = ""; }; 3E41B296571AC95DE177C8BDD92082EE /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; - 3E95DBCAC6C998F70DC53712A6BECC62 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 3E4B99868B700BE2A8F0F98FA4F55F7B /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 3E5B4D8B287DB1660673843CE794A172 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; + 3ED0A745E4060ACD91492E573ECC72BC /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 3EE0D0103FCF7397BFE95BB411148F8A /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; 3EE448D03DC1030CB1623347E60A913A /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; + 3EEA86F54F9A79A0F564822480831C7A /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3EF16EEFB7DEE0F7CD09E9E57683CAEB /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 3F0E13FC825A0389AFB6D7962502FE1D /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; 3F19DADEA197E3EB0A522E8E1D520775 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 3F1B5BBFE8385257047303B04335AC90 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; + 3F2162624F2E523C80249E74C2A34F59 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; 3F3CB5FABF8ADED7650DF34AE8C9567D /* FirebaseInstallations.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.xcconfig; sourceTree = ""; }; - 3F7EFB01B72D715F81A11B15CC580F24 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3F91D027E837C20A326639C1BDCE6567 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - 3FD7FB0A67FFB3A6571000B0F9EF4FC2 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 3FD87BD5009369711A2F79C3FE3DAFC6 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 3F83567E7F6D1EC1547C35B12A585367 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + 3F8906958F662D4C75959B7B3FA0106D /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; + 3FA565A0D93E8F950877B47493C4AFF3 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 3FAFE744B6BBF60E5CABA41A796A4068 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + 3FBCE7F506D6F5BE5BAC86815AD17870 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; + 3FDF18BE60DB983D9CC91AC0B7E3FB99 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; 3FECE8B750D858CB3C6E9F3EC41E9A9F /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 3FF032A05D37EC27E5991CF4F8AB0560 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; - 400A33EAC15BABDBC9CFAAD979540190 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 4024F08ED7141F641C6D0F5B1CC7C75D /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4042FFD2C9AADFCAF567C3972EF9939A /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; - 4057007FFCC1F9167336EA33D4D3F28E /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - 407195066338AC41FC1C9733A789B974 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 4083DC5D6BEC378CED9B623819ED172A /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; + 40107C1AC2FC5EDC4845E0926FE4146E /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 40A60FEF8FA0A9AE1FF033396FE7AE5A /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + 40A74BF78D0680470F541F8C8CAC047A /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; + 40ADCED911CCA78FD27A1A816B6F454B /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; 40C0ACE417B604A869EFEBF0F8727F90 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - 40C8CDF7DDF4D4317E4FB9A090B13B2A /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 40DD1EB0A38626D7672CEF0EEFF5C426 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 40E6B5A6BDDAA03117709635756F3EF8 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; - 4125B11710991F319C4DB376FBE1CA9F /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 4142246BA1B8EF4A323159B74E1878C0 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - 415459B9DCB71DFC1B666BBDBF009DC0 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - 41C564A2EAAA42E538E570410F078D09 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 40D78442127209831840FF37844DC9BE /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 40E5E57FECB4E9C66ACEB82B8B5AC7A6 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 4151BE02E30868B45332A3685EE9B1AA /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 41C300FFABD69FB816837192A0079DA0 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 41F4A0B9270881945BD1496745EA97B4 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; 41F62D04DF20EF8EB64F38D9EEEE02A9 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; - 420B51DB8652B52DD1B92079DF6EFBB8 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 4255DDF37217B80A6FC1AA87E7D961BB /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; - 425FCABB9C9CE8B1487E385F1EBD1E2B /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 4265EE4EF3E088E3BB46CCEEF6C01DD7 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 42DA57592399439652D812EB26D67263 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 42E0AF342E91FEF4D7EA5F7325F5828F /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - 42E629407F5F9986664769B85BDE758C /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; - 430AB1CF43FF88FADBEFA7054F43AD7C /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 41FC7D8A1386B7220C9D6CD996A9D6DF /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; + 41FFEE62DEF357EE410424399F93BD39 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 420B086DB3BA0B109F0F62A35FC5D859 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 4280EDF91E5FB5C9D72FFAC569B1BDCB /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 42ECEB00E825E8458427D31E33D602D4 /* 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; }; + 433D8D0C7022405DB54D273A5D2D01CD /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; 4341798946137AA9F80EA098E35B9931 /* FIRInstallationsKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsKeychainUtils.m; path = FirebaseInstallations/Source/Library/SecureStorage/FIRInstallationsKeychainUtils.m; sourceTree = ""; }; - 43471D841BB5055A3A2C97042BD45621 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; 435C84BA7D4AB3EB7649F9B26277DA8E /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; 43670C6003CB892BF4EEBCCCCF5B1628 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; 436BEED2A30591A8D4E5DB90E45FC2FA /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 43757FFCC4023081D0E0FA820FE32047 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - 43815A8525F773276C57D3783821EC68 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + 436C1371FC8E6E933E1C7D4FFDD8B7F4 /* 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; }; 438B0AFC915C650C7DD6BBD7E1482856 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; 43AAE931318CFC65211035F2E169B081 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; - 43CF00C5BF0D4947F59761AEBD7F68AB /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - 43D89E7B92F1FB75487CC4507EFEDE97 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; - 43DAA5C77986E68FEF3383BADC08E3AE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 43E5FD1C5B9357E739C64C0EAC4F8290 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 43DD593587BFC92CB829D1FE1F07614D /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + 43E2DC5BCB945506579389F0FA0BC002 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; 43E958E567C22BA0032023C305BEC2AD /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 440B6391AA28FA24977CB94B3896EDD0 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 443E3FEB5021F5AE568876B2ECE7DAEE /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 43FA5B7AC64A73BC3E6F4D60B39BEEB7 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 440EDB384D2390C01E177C6F0DCD8F34 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 4435CF706E37C458DBCE4442B262FDB2 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 445FADAAD22E2C0B298304BB38E55693 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - 447FFC16368F27E9F314B1280981547C /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 44EABB9CB5B9D0D74454496877665506 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - 450A06AFE47875867D6D007603239D97 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - 45224B74709B8DD765226CAF36340E9E /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; - 4526C8074EFC911D4391FC14652BABCD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 447377E7699F4E8CB22E9247DA5F775D /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 44C740C76BBD96A20E9011FA1E14F64A /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 44E9076B1C8F5C974E510E834014F681 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + 44E9C10025A0D8378158D0BDD21D270E /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; 4539E3108AC9825410E6FE95CBEB6EA7 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 4546767F3188A259899C9560A580DFDE /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - 4565A49262584DD8D25283A67864D489 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - 4575FF1293FEB3125B895E2A0DA0FD7B /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 4544721082FD092C71131EAF10C9B613 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 45458037C6F9DEF62A4FC8C58DCA01CC /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + 4564C1279658F975D4C6F3EF65B16195 /* 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; }; + 456BBCAF78BBACAAD7C01BC9E2597F20 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 458B1BF17FD2B5C712BE6ADEC78775C2 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; 458BC6D0F0ABCC8D2958F42C9A3F3820 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; 459EF69C87F0423DE3DAFA049CEC05EC /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - 45A7EA6D4B7C0B57FE1F1B0AE74005CE /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 45AC1E8B6ED87517CAC078CC7094D1DE /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + 45B9748EFB1BCBED7A3E4462EF963B01 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; 45C98A4D849F92BF74F62E180ABEA4E5 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 45DCCF91BE6331A403D82963970FFDFE /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 45EA2FFCA9384FA8754DA17B8016F72B /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - 4604EB84EA7D173EFB6BF96910AEE699 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - 461DED48BAECA2364F51E16C2192B419 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + 45CDC5952DE2A914698B3DA075934A2C /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; + 4607DA090D7B0CDD1029EDE16C03922E /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + 462B73DA088CF00C86CD51B0EEF20ED2 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + 463B204C86AACC29735430F6A73D2AE6 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; + 46410397E3023D5F484AA3CE02FA2C3E /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 464A14CCAF7979464730EA6D35647487 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; 464C3A02594F9D69187EC87E695B4726 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - 4650D690BA6630C497BA5400ED547938 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; - 466503B6AAEA47B56A7ECA1834A44B75 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; - 46B486541A6AA377CDD781BA73395D1C /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 4708508DB230A1AFFC0276E5EB866F98 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - 4755639FE46A04DEDDB05CF7A694FE83 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 467359208C028140699A9312DCFD1E88 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 46A304D8C30ADD3DA05AC4E5FEB84EC2 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 46ABA70351A5C18D9CB0F6EC8417D2F9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4714246033FBA0CC9D06257D64561A80 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; 476178CDB7F6A524306920EEDD3D60DC /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; 47667B177B8F7040093014A945593A04 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 4772B7623E21753987A7130E8621862E /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + 476F22EF3734CA3C04E87AD8A00D2EA5 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 47803AB4E5A16F1D5FF72ADE12B60FBC /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; 47848D888973B34379A73A1129C8E494 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; + 4784C313A5BC5D65FD1C450D307A9C9F /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 478F25920DDB277A1F4403B7268C02D9 /* 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 = ""; }; 47B052E1FD1233F07E279610681D4C0B /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; 47BAFD858ABCC55478AF6AB0854547DF /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 47EEF3AE669D34F0C6B77A1B1C77409D /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 47F3DD333F04504A9B36039EB3EBC91E /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 481BAF2737C4B9EED2882A2C4CB20C17 /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; + 482DEC5EF620887E6614CCA174DA5861 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 48329096C1351B1DD5AE929CC0D9D4AE /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 483EEC35D537E0F0FABC6348F3B4860C /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; 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; }; - 4873C107DBE9F26AECC09318A8B12A9A /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 488480EAD543AFDD806FE0620D2A8B9A /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 48AAA8346CB5AF2DFBF2FAE3648FBE8B /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - 48FB58C1E8633B6CA3292D48F848E3F3 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - 48FD13DB39CB84687FE2099B379E9042 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; - 49081BDA96EB16FA72B9EF7FA37F10AF /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; - 490B8C7C98FC25E75F19D4B8B135D6F5 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; - 492AF4B3182C3F6AB2718B67D8E997FB /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 493FAAFD3937E8A839C0988482F7CEB9 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 4945B18C03894AB79864057EDD45BE41 /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; + 484FC0BF8917204AD3A0FF0D7B057B08 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + 488A442FC5F3D5C01FF614989EA8CFE6 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 4897B093E0D46D5F4CFD99DC3EBE98E8 /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; + 48B5ACB57357C10B69BAA3790D0792F8 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 48F2F26EDC7DC5233B445FE1398D661C /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 48FF887AA9B708C2A8F14280655A0000 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 49147E609F4F8ACD6F1CCEF995FE3031 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 49267174E3D8CE90A23C692B8943907E /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 49450186F5B9E86D18208D07FBF9EF01 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 496CF1E9975B06BA3A0EA5BE8C6FA985 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - 49777C8BDCF41658EF1462402BDAA962 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 495AE9548E0B2A19CFAD7180BA840700 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 49EE0D4AA6ECCB30D86E884EBB2E7FEA /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 4A3108E867C080F1BF3DD43EBB8CC6D7 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; - 4A3A2F39E1458E815C1C6DDF6D8AC153 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 4A71F41A03D4C4E9AEB5A2AF289501D8 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + 49C8C50270229A19B70BEC8DA6A20D2D /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 49CDE45A182450887E0E03DC524E1403 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + 49D0E27D70268CC4E88BDCEBBDA290C9 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + 49E08BE2FC87EC1981FC005AA338EF58 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + 49ED2021122767026E806F8E11F95C51 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + 4A1DDE0B9338CE30EFB1968BD0160998 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + 4A4DF667BC7852DA1E97CD42B3B7714A /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + 4A5BC578C3620AFCB6479350298FFB0F /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; 4A7647A1716C841E08616F47541DCD7B /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; - 4AB3E49F970E4FD72D9971F0C86245C4 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - 4AC0C7574DAE4ECE43B4A13EF75AECA8 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 4AE4B069B3436F7C889EFE20F0684128 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; - 4AFDF3F710E8303C27FA938F68F10F93 /* 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; }; + 4AC4C89FAD105455A930AC5CCB3C974A /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4AD863146F6A048F2CB31FC7ECEB172B /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; 4B019F88D183D8F0E9D8BF083F3699B1 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - 4B3C709C93E8DB059EB220F922F47E3F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4B4F0F981C6AD43F5E733E48EBBEC200 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + 4B10BFE8AE9ADF76ACD8FCFD6917854E /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 4B2AD9370C384FA38E08963F526E83E5 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + 4B617EB978015DFC4BBD89BF8E682072 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; 4B78E7E3DBE12168C17E886E24FB2F51 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; + 4B7CBDDA1F832CA3C18F8B562FF74637 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 4B9414D353B3774B94F6BC07EDA11C7C /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 4B9CA38E879CD20E77C3E4C4B0DE0CB9 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; - 4BA98710C34DBCE9064FE58C234DF6F4 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 4BB3E1A796EA4028EC6374B3EACD53CE /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/Private/FIRConfigurationInternal.h; sourceTree = ""; }; 4BE1EB0C0D097F1CEF044EABD60FA2B0 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 4BE8E6275C59B97B8ABD3F43F99AF6C8 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - 4BF3A95DB37F815FF43D7EF1E503E1E5 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 4C12EFD3064A699FE323604CCC14F491 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 4C7C0723CA0A08AEB0B8C8161A0459C3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4C16A8E7025480A82D0D162884083E91 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; + 4C4314A41F00C374FD70071D7D67FA6C /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 4C70CB9E6970624EB3B72F779BF84F4B /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; 4C90CBA13EADC2DE8CBA3C3E38DBAD8D /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; 4C94E6DDA61D0E2F0939457B8941960B /* PromisesObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.xcconfig; sourceTree = ""; }; + 4CBCC216BB9AFD66A64CC1F5C84B6884 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; 4CC3251FDA9E9F879B68C261CF445809 /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - 4CCD21308C37AE02C506AEEA3FDC135A /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4CEDF8BB61428E7B1CA483A5342D87C7 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 4CD06C33C223DAE7A71C13826F70C5F7 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 4D29F42E1A369E44DBBA2DBBDF8F4E81 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; 4D352643E8BC0C05FAD0BB5404F73E27 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; + 4D38D3439400A446FC489F62DD1545AB /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; 4D68CBDDD5A7D610F9E436686A07B74A /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; 4D7305392656B07787D0BAA87B5735C4 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; + 4D74F25B5B18ACD7FE4ABEB3B36EEB39 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 4D7A4F8652C719FD780B45A40A0104C1 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; 4D7BE8D11D0BE425A162D262300BF5D5 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; 4D7F7DEEE1B431B212DE4B6E85BFD120 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 4D871EA5370D99BCBA2545E46BA94F97 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - 4D8915AB6846EAFEF97610B429FEE5D2 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 4DAAD67DF7974AF97D3B405CB6A2F359 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 4DBF282DA8760EFB4100EDA72085C8D0 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 4DA2B1DE3A0F37A02BF1C003EFB97553 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4DBB8BA0CF8D842984247D297D6F54F7 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 4DC24019D7AC40892C15FA4D8FF0A6C6 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; 4DF0BD63D7D4CFDCC663E62D0F856294 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 4E2743AAAF9A4FC35706F52E73C11C62 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - 4E3D4FBAD25B67DE005C06028EFEED9D /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 4E5A3FB0E0F5259719BE815748EA69DC /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 4E050349688D70AD72042D4B52A7967A /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 4E13F96763B04252674051C00483AFAC /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 4E459F3A71DD1AD78439B5520C6F5F9E /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; 4E5A82E2D83D68A798CF22B1F77829FC /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 4E637E78DD99F45D9C9882E5AB714206 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - 4E74D502DF45C3DB6C2002E30237D083 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - 4E755321532787F7DB40AC844B2A0AE0 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 4E60DFD263CA56A4A50D0120C86E2E25 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + 4E7A512D07E627B025D9CA4F59AAAEA7 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; 4E9D30B663A082E804F4CAA873DD3822 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 4EA63B128144C476191A9774005959AD /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 4E9F08911747D4CC8EB8C9AC619393D0 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 4EA1758B2AC701677EFDCCEF39CB7602 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4ECC8DCC2ABEC6C02D9002EA8DB15B51 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - 4F145E3A0B46968D0904ADDC55641E70 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - 4F1B903AFBB12AAE3480AA42378C8726 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 4F385180DE11379132F14DAA02D3F24F /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 4F3FEA4D6EDA37ABD94BCC29214D0E99 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; - 4F4538B9A5DD66CFB3917610C824941C /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; - 4F4E632D2E19B3B79DF2C310705D42BA /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 4F9AD33270B26611BCAC001F0B32C8C0 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; + 4EDEC62F4C614B147414320095E07BD1 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 4EF7EAB0D045ED8B13AB60C53B7C2041 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 4EFAD701B4A0CCAEE8A3F9DF35E5D4FE /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 4F296D64BCEFAB4B7FFE87B7F792CD19 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4F5866834C180937CCDCBE599C854CC1 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 4F65734043BD7387F353B6BED3746AED /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 4F8ACEA925EDDC058C2DE518185D420D /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 4F9FB5107FDAA1D9BF1AF83427C734B9 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 4FAA02D5F6A5047F1C7508C44AB0B027 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; 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; }; - 4FFECA28172BDE39608A5EF2B76D15B1 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 50016C1070EA933A214FF69663C622FE /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + 4FED50463E0B54348966E42852210BD8 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; 500E76CDFB8113AFD9AC1DB0CB454843 /* GDTFLLPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTFLLPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTFLLPrioritizer.m; sourceTree = ""; }; - 50134151E35E1B96FD28AC7ED0800892 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - 50237226CD6FFA21014E95BA780DACE0 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 502610B461EA2D1A026F2B01243AC74D /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - 502EC837155ED714DF23FB05FBC35B3B /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; 505638042E3CDED31ED33340DD6E648E /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; - 505D956DD6CAAC97A19BD66A10131789 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; 507484DC13FF28BFA253C3259BC915AF /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 50B1336BF0B799990F11A2C6C846FEC9 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50D140D10C5D3ADF647AD0DAE5449594 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; 50D7273241DE97D0F9D835E4AFD14299 /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; 50E82E5A5409C6B9B611DFB5A5C88A38 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; 51087434509AC9D80EDBA3801FBA46D9 /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - 5128E229E8F893C5DA5F50997F12F2E0 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - 513C3F34D99097335FA72E9F425B9845 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; - 514A7FC352EF592241BFCAFC228C1B14 /* 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; }; + 51261E7F928A4468C08D31F03437F546 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 513597538F028FA79DDB70C44A32E1EA /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; 514AE00CD420A8229A4F661330A06B47 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - 515A22978278B8552B18FDDF1FBA5AF8 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 5160329ADA5B68E17C053672412941D6 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 516328D76CF735CAAC99DF79EEE52C05 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + 51A15D13EA2B61352F6B848E9BFB5E59 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + 51B0AB5ECB35C326646ADFA831203F54 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 51C861E9CF0A5D895DA2E65CC1A3BAB8 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; 51D0EC206B3FF3FD54D207F3F5C70719 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - 51E045377B57602000DED486F9BA7183 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; 51EE49DA7F1EB208F9461CB6483D55F0 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 525EB8BBFE9CDE17D718698C8776AD64 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; - 5277215B950EB8FB831F92FD56554BE3 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 5203B1D6FFE15C94662FE30BC8831B35 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 521A5AA4A893656801E1A13C626B13B9 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 523200F618E483B56631A61C76CD23B5 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 52516C4A5BE8EA216C181F32B49DC43F /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - 528A2DCAEECDC9D47C40F034BBBEB915 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - 528CEBD803180BFA178C982103478889 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; 52C28AD783EE3A1E4AB2B1A936CBEC0A /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - 52CA71561A2446043A4E25FC55B9D7F4 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; 52CDBAFD1C6554282FCD586FFBA8FFFD /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 52D6A118E3DC3F00CB5F5FC58C208510 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; - 52D8B368C340C9FE894310C8E9484B1A /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 52EB1989DFD74CEB5377A42F0481FCAC /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - 52F26A7E8EED47F49C39F9121B4D43F8 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - 52F5092222245D907FA715A5E5B4B37D /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - 534768FC35D1ACE995311324A92A4BF0 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 533EA3923C59C2A738D04531D4A94881 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; 535AA0B78CF70BA9675FAEC421BED1E6 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; 5372D71E7AAFE0D044943DB958C2F428 /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; - 538BC0B0037435C15B566E75E8D2C7FC /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; - 53C280A64E948F7D1D9A89778F9B910D /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 54002BF23C709D0073AEFC546E5E45E9 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; - 54008DE5511230DD7D05049D49C3B1B3 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 54352B464F96C6F36A4E3BF21A0AAF4C /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + 53C0A6586526CD4580623B1AEBA3BC54 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + 53CE97A536A1DFA4A7DA3CB55448D804 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; + 542CBA029E6ED75F27E2435B3DC6DCF5 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; + 545678591396C5A080742B559C528EF5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 545D3B715E5AF6AFEC5AE16325F9E898 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; + 5461767FC7476889BD889DFDA137CE90 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; 5469BFF90FA3FA7460B0D79CE5197D1D /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - 547D8A09A994D72FE717196BE4DB1272 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; - 549DD35AF50F448D6C868B08063F11D4 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - 54AC49AAA4AFD11414A9FAAF69ED9769 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 5470308F14447616497C1800B29BC25B /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 5473E304A18535EF8AF54295529408CF /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; 54AE600BDD27B1D9D24B98E5EA73E2BB /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; + 54B60F0DE0518D91AF7A28A40AA23BF4 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + 54C0BA0525E7D75D19C72473B76E930A /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; 54C80AE83CCD41943A1509A4518CEF1A /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; 54D0A0D72E5409D9555B3AB6C444425A /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 54DAD86D8E7F2D57156D4FEA78F677AE /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; - 54DCCA8CF849B2B71253E54894E70343 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; - 54E3C1C3BCCE56C706BFA114BE0B4287 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; - 54E5BFB8C428641CEB02F8AEB19B9EFF /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + 54D7B076263393E87D9ECEC6D3886CC3 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 54EB650E96F37C37F0F35851F8C12BA6 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 54FA29A58A8091571DFBDADD8EF21000 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; 54FDDD0372DB70DE5506C1BE95A23BE4 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; 55172F9BCA61ED8903813A0BE84F0A81 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 553244C5D8BAF7E5DE26EC41D16D370E /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 5530190986E93D6ED287CED2C9B4DACA /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; 55331CDCA3E4E9F322A2CA7CE5915A6A /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - 5551575C22DFECDAF2FC590238BBB242 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - 5567F41097BA02556E86FC147A5DA435 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 559BE7FB81AFF08D3690E3B14F07E8B0 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 555CC7304619A95B56B13EE3EFAD8414 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 5574642EED822E9625FF87BCA481BC9F /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; 55ABCD868D69EBB8B226D955E9B65C94 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; - 55D3CD657EE4B6F69D3372EF182FD636 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; 55DEC1E6B4290093E9B0766AC1D19DFF /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 55ED733271DE2C63203BF1F6FCEF76F7 /* 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; }; - 55F88757732E7FE74C9DB1339A410111 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; - 5614982E5BAB6B26628667BE302DB37F /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - 5617399E43084D1599B422553239EF32 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 564AC08059D7AA58D39DD0DF9EAAB6A9 /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; - 5668891029B9B7D87A4885AE25E331EB /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; - 56768CE84A6E4F7706E8349354FD227B /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; - 569B6F1D87183821E96F79C08CFAA86F /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; - 569BB4CE80475699AABC611932B19F3B /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - 569DB05BB4E8ADB94613FA5A0E2A3D39 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 56C4203FB922C2EAEC70E9EF0E3F2ACA /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 55E6CD74ACE700E806D1BC5D367E87DA /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 560407F98C516AE202EC044E7543C5E4 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; + 5615D378EFA4C2B190803E9A6D8190FD /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 561D85765F922638B5B410FD1C0FB705 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + 56407D16F77B1F00CB130D98F2C8AE4A /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 5670E1147F9957D8D0E7C4C079DC8DE6 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 5678EF0A836474ADB5E6BDD0DEC4C1D8 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + 5683BF5F00D3AD794CFB35F8C653915D /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; + 56ABC1C2FF746AF53777F8E930FD8CDC /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 56B4FBEB509ACAE0C0D3B4DCCDAF3BE5 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 56B58B9551FA51A9CDCC4FB372283DD3 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 56C15EA31F9B05D94E53D1B6454A351F /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; 56E78EE0CF3ED46276B3F9962DBC7817 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; - 56FD6071C9093AABD262B1CDC9FBF442 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 5739CF4CDC78B4383E371AB297932F20 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 570E8CC0C7BFE3CD3F2F32545D3DB556 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 5715BD267CD51A2802F146EED5BB28C8 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; 574C5FDCBE394444827C0B4B3C7DE9A5 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 577553B429DDED8615E5E164CB183A63 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - 5780B4F8BC5641AAB90E5090C945C115 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; - 57857F67A76F4D48311B6EA82F721D4B /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 57959E3B04D0C0BDA52EA22A356E8DC2 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5795E5FB84901A09682C23201BD21518 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; - 579DCA16DBC6E517F256C8FCF62D5C1A /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 577AA797596CCD537BBB28A012B318A1 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 57AE6597B0DA09C3F20E1BAA5AD99DD9 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 57D3DD9B591B8A0DEE7CAA25810D6EAC /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + 57E60159AB87F8DA8AFEB39C37E2FA8A /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; 57F3CF73401C2A7D1861DD573FA5AAAB /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; + 57FA445BB37F82D01B52365ECD7D6C52 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; 580123A082788AF220ECF528D65896DE /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5810B799297AAF7BE8E41C230D48EDE1 /* 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; }; - 58334587D7722A791F7FA79F25270C03 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + 58209E5FA35C4B702B45D48090F98C11 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + 583EA6C96DC1C7FBFA45E759D9499070 /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; 583F2384046EE63CCD0360AE527E4565 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; 5844E9E8BBD906339EA96EF1BD79326F /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; 5847FD2633BC9047F028FE38A7084AD7 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; + 58545F9A302A7EB660BC7C141F030537 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 58772685D26FA85973A75761AB562C10 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; 587AD88BD32631BB096534980CA556E2 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; 5890F013C17AD08F673E9838E1CBC85D /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - 58C75434D5A226A79016D53B6234AA57 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 58DC1810B6C7CB4BD28689381462F2AE /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - 595753034D06481EB8E563E3BE145B52 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 596088C6B3860AEE5A266E2190E854F0 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - 597D35020229D35A237C0209B93C47B7 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - 59A2B19434A72F254FE6595D38FB8712 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 59B44F2096A5FF0B60BDF62BAD0EB766 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 5890F6284FF3A60CE3CFADC549951C33 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 58CE965B2A850BF72367F02050183E01 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; + 58E5110EA87FC2CB75FE09EDC2B796AB /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + 590F5492B176CBCF053C11FFF0CFC13A /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 592D062BBE4E8BEE4FD8119CA38B65EE /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 597B45ACDEEE83E10C7BD66FEC256031 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; + 599C3A829167F002480731A8F5B63CA4 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + 599F059051EB27007371CB7C5B060254 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 59B76FA92742AFE4EC1B07FB04CDCEFE /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; - 59BCEC3BB130D851C55FEEC9372580DA /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 59E60AC24994CA2199780D8345644734 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 59EDFE4884DAF3E61B6C33A8BE503617 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 59F015CD4C3AD382FF8AB6E95C5C94F7 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 5A09A3FC6667C5F9782E43A35E3C5BE8 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; 5A09F908C75D99E518BBF382A235C2DB /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; 5A16CE135CC71ACDAB57AB9C085A4213 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 5A67CFD126B01032A4BB740C95C4F1A0 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; - 5A6A4F24729B892F09EEE969DB9C3100 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; - 5AA3E3F6E87FB7BCB39803BEBA093109 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 5A2CF824EAE883BCE28B7B0C05AED5AA /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 5A3796907A5931A4755FD85E37617F75 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 5A3E9181E2D51A42FE4943ED1D9B5535 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 5A770DBE9A18F5571FE2132345A60533 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 5A97918CD6FC52BCD868EB3CACD045B2 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + 5AA0CB3C0EAC3E7176B612CB6B6B5FFE /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 5AD246BB1DA917A3E16D3F36B4867501 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 5AE52EB85E8977A12AE544F6B71A771E /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 5B02742925AD767AC05634CD404FA3E3 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + 5B032FB34BB4F3680105324F10FBC098 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 5B1BD0571CE680D83AA4EE422605FC2D /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; 5B3A6A7C3F776BAF61AC51C5A02FBFA0 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; + 5B3B761EE203D75EB7C6E5D53B76A89F /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 5B452019B4BC48CFCA2CEA795EAAF8A4 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 5B4908159FDD0846F3B8CD2995E5006B /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; 5B528863F8D26E47DBD2FAA61C3FC4FA /* 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 = ""; }; - 5C0237864402485714C0421AC8F8AADA /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - 5C236F69F20B76124FCDF88A46243966 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + 5B9A882997DDE98C9C6B984CCC630E7E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5BA23425B285C80307FDA26B981501FE /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 5BCF08557DEFF60428792C78FBEE2325 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 5BDE4A0FA8F642EBB817B2D8CB95696F /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 5BE49F3803081E3A668CDC23A9FCE3AF /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; 5C3170CE50BA839FD7FFABDF189D8F38 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; + 5C336663E9A8F1C74D8FA35657612638 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; 5C366C49F593DF61C1B36CA3537E513C /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 5C423F0F22D9E644B5F9E5ECA56CBB8D /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - 5C5220ADF71397D5B95AA595F8813FE3 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - 5C89D7ED4E2CCB53B6DA2BB7D65A67DD /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; - 5C9ED86974837919A203C890E1B9D52A /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 5C5387AD6CB51F99D7C94D5A2CDEFF68 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 5C6C3065708E58CE2686A002AEFF1574 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 5C74E0C3EB66731AE1A1A83CA0EFEFA6 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.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; }; - 5CC1C8636F6E342DC363373509099EC9 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - 5CE7F2C3E9991FC3578F7E67BE5C9393 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 5CF1689796DF0258F63C2C60A4D2FF62 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; 5CFEB116ECB9A495D54B314D795B805B /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 5D06D7D56F20F828FAB576DD995736F4 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 5D2769D9DB4B1CBD4E7DB9C6999667E1 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - 5D3CEA80B14F24C4D770A2E19D7204DB /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; - 5D4F3FD31ED29FABC56321FF1335434E /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 5D0BF129CF28904AB15544DA075BD487 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5D1213CE24B7A8C686B0CC8F9B08C5BA /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 5D65140255764E9E242489D4004C7C9D /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 5D7200E0CD187410B1D095CC51FF6E72 /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - 5D72A991A8C2F34EA384AC14E7066DB1 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5D86346C2AE41566D1B246082A4B399A /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 5DB602E4418A6458062E66FDBE8939FB /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - 5DD3CB396B1E0BC01001BDFCBB89C6BD /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; - 5DE3D54D2AA53A71F3B57D92ACDD7671 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 5DBE73CF85E0FBD14FC9326FAE9707CE /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + 5E2CB9F08639ADA17E02444D67B09671 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; 5E395510D11DCC7395A036D8E1F57BA3 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 5E3E534D5295A28045589D6BEA240E6B /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 5E3AEBD740EE480800AE98528B440E01 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + 5E3DBB2C5DB68118B145E5FF464CBAF8 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5E5CC8F6A5743198CEE068F4A629834B /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - 5E6658E4489794B6871AB115234109D0 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; 5E6CBF3BA9FA871AD606BAA54F66FC97 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 5E9B9CADDD9A79257A18CB6FF68785E0 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 5ECEE9B7AB6E325C452EC27C706345B5 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; - 5EDBA507EA30949A1594DB294BB7731A /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 5E775340B23487736098232DCDC40408 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 5E8055564328A3C168B7560C176F18EE /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 5EA5333A327D4FE321C9F504A7B43F88 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 5ECC69B60832FACB53B1C4F37A693D81 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; 5EE39A7B4283BEFE43E66F46862951DC /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; 5EE46B386E95AC9FBBEE856CF2383198 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; - 5EF03D4A1089DE603CBFFF9D9D52203D /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 5F0337242837C1D7E4670132D6F493B4 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 5EE8292748F382CBD51314B67374C69E /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + 5EFB1EDDE9BDB5325F76E6053F52E1EF /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; 5F1C5F873FB22C5A73E967F1C3900F05 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; + 5F475DE779C2DB820421A516021A7048 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 5F72874EDFE50D6E56444F9CFB997E0D /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; 5FA7BEFCEE456CEE557E176D2373B2AE /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 5FBB2E0D6185552EE63D91A0B3B7AD1F /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 5FF6EEDD41B74C067D234D6C305BFF65 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 5FF709631B88B27D8DC8102633CDC321 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; - 600667F42973CEECCEE935951B13F5DD /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - 600BF46675EC37CC1E4EB9CAEEF7BCDA /* 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; }; - 60163513AA98DAFFBB8096351DCE81C1 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; - 602A3122C7F22DFAAB9B83821759D99D /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 604580A241970FCE2252B38D3AD2EB26 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; - 606CCE606376DD7990442AF23CEE5A3F /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 5FA891486436E268DD612FFBFFDE6BC8 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + 5FAEEC58ED20FCF61DE82741DD5D8BFB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 5FFB615E00F80058067B4367CFF4B854 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 6023C618CFE4FF97CD04AF8685E051D4 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 60361FD7C49A6AD026815EF494CA3B33 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 6041E844744D7775DB92A58CA9C7D1B2 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; 608E4B0589801079221FEB94B6D394AC /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; - 60962EF7F5AA7A9D95F94DCEE66EA7F5 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 60978B2DFAAE74E084D487E2882749B4 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; 60BC27AD9ED5029E588DEDFB282BC600 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; - 60EBB00780FF2A181C094F49615EB38C /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - 6123B2A15408A70B76B79C57A175C786 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 6129D17144193C727D68FFB158130674 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; + 614C632A125345307D7C19F68F26D2C3 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; 616B59B78E41E0F8743C2A2FDFBA466B /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - 6178BBA9B9B9A78E0C232275C315D603 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; - 6178ED33DD306879DAFA289C279D1721 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 61935962D316655D08F4C0C658529A2B /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; - 61ACE6EF73A38A8530394E258344A58E /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; + 6174D48143BD0DF94D073485BBC23699 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 6196C1CFA713FD4566F941812157485B /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 619B139913CB514337EE15652ADE9A53 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; 61AF1837C4C82F78744ED30517A5031F /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - 61D39CC515F185885887678EAC477089 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - 61FBC6C6160BB2253D991ED26479A5FB /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 62046A26178649AC5D619E9ED83B8CED /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; - 6229001BE76DEB8679ABD3715883D420 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; - 62479198ABD12ABC2AB2CBB922468BF2 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; - 6248DF6E2A2A11CDEAEB601763176F59 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - 624FC0F34AA0E8556C317C42E134D426 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - 627B45BC8931FFF3C3C6BE50940ACACE /* 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; }; - 627C072D1242A8741EB84490641B4EEE /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 62D1CDB94E5DC720C62258096FB8F188 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + 61B0D3F0603D57AAF3CC0C0C9DFC12F1 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + 61BFFF666044707645A41CE5B3984727 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 625CF074D1CFC7EF2D456B18DCD83D2E /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 62829234738E6F5FFE3884757E2A1565 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 62A80A601B408A4CB5F883AA9B664B5A /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + 62D83205141BB4700BA0E51149AE2E7E /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 62DCD8FC43D8554520EF5C154FB8D476 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; 62E764263319E7C9A53A9AF39D7723E5 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/Private/FIRInstanceID+Private.h"; sourceTree = ""; }; - 630934A42CE715B3E03D88D2901ACCFB /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 6307F3286D96C57A78B3915CDA5896C9 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; 631C18F49615412D4C905B1C37D9ADA9 /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; + 6321847F10A77C1FF0389ED9C0C6B780 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 632B2A5DCD9ADC33532198F54AC838AE /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 63353C2356F59EA4911AFF9892841E20 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 633F3053CA8B414B51F0D77B7B9B9E2F /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 6341F132B17A63401DBBD1072F64E34E /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; 636D6783185DE1F442D58AEE9C52B4B1 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; - 636F31DA774BEA7BE943A8E6CCC0CFF0 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; 63743B445C8FAC8021EC41CC4362CF9F /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - 639DAC10EE5EA1A619AB562FD75ED18C /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 63A6651632E9893DD2C835F7F40465EB /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; 63B31FE76518F6AD1B9C7FC4FC3BE0FD /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 63DDE0DC4AACDEEC86EF46E256EFBCE1 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 63B6F4D77CDA75F67BEC9FA9CEC45577 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 63ED932836B562304FC500EA790B3543 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; 63F237C28969479FD39F0D8EB9063B79 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 63F98D42B9567C6BAFED9D04BBDAD278 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; 63FC874B85C176CC532B90BB75E6546F /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 6400266D477D2FA1A5BD7E46E08C1FC8 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - 644EF624B21614E883715488CDB1713E /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 64144AC036A04D59E4B3A858C4007A68 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 643B77F3614352E821DA708CEFB5DB41 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 645432A1DF9B3036F4D66BBB89CBAA89 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; 6456BEB6732CB1208721A93717E83ACB /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + 645A862D5112A87C605FB8F8957D4188 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 6480EA26EDF295AF13EEE512A75A7031 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 64858CBC195C53A245090C9C8C11D8DB /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; - 648EFD12C8881B842B22AA55F3DC4FE9 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 649344AA8B1C08392740E46567C66E47 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; 64963B0AD90508C9D1DAD41D65CBBC0C /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - 64B5D7BB5FFA60F01C8E187D6D93E9B1 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; - 64C7B6452059258838A037FCED07C385 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - 6538AEC00D420A68AEE31EED4F6580C8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 6548FD636CFDC61BB7F344C247E1C340 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - 656E117710D129BCC5F46D0693DF9AB1 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 6570BEC05AF52AE575BFE1F10E1D6275 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 6595FE78E81599C216E59270F714BC82 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 64CAE0B65E655BC13E5D037EAF53663D /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 64FBE1B7E4D6F9888572C871259C50B8 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + 65343CE5E18AC74ACF73D009DBBCB881 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + 6543F5BC0CC8D7366DA0145987DDED39 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; 65985823BA9E59CD5D699B8553FBFC7A /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 65CB6926EE4164B88B485A0EB2C889B8 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - 65CE45D203BEB30B53094FFB8F23B2C7 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 65B11B27A782BB624E88CD3043455C40 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.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; }; - 65DF2D38D025F5920C9A118C22152FC2 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - 65E0D2157B64854FED419EF02DE3FD1B /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + 65DE0AA70E51996A19EB85C49F0D3F32 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 65F4CD4AED2AC4EF14B118A58EDEE355 /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - 6600B3ECE4A9A1F4D25396A83C32C3DD /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; - 6621CD50302794812AD1F7FF9D0322B6 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 65FEE83F67CE8425B6DB921B10F69298 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 66028ECC3209639BD89AA0238CF8886F /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 660C1A1152A5277F6D275390ECC7089B /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 66225A64B113B885CB93457885C99D2E /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; 66228ED45E198EDBDEA21A197E306C7E /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 663579CD0EC0678A648E6960DAB1F54F /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; 6638D4A39DF660C0D118FE1FB6420263 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; + 663974728DFA3DEA57E22F6040CE836C /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 6661B5DF26D3D513147A6BB00CDB9F38 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 666797620E5FD08F857BB55E0970ADC2 /* 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; }; 6689EFD327C141249C36F84B370FCC15 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 668A06AC4FD01113F3AD768199562A4D /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 668DB3196C8AC5E9F322863CBC018C56 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; 669E2D815BA85AA4A6BB99088F534BB0 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 66BB28169F8562B9DE334B74B5B456EB /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; 66BE2E56E1110F499C048713FEB1CE2A /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; + 66D1C195D2008482FA65BF8751D0DDCF /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 66DBE54FA327076B678F2BAC5A46D929 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; 66EF89ABD7B5DBBB462B12529A796D9B /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; - 66FE792892A7EBA79A71E33AA48E556F /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 66F8A1BDE9059C47BF37B284B544DC34 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + 670E38A691D7C5017C913049C87439DC /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; 67126F01CF3D1827B3B8FF2A8F677A2F /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 672097DF8942995581CE2F38215EB2A5 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - 6720C13989FF0300B3BD20734475DF23 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - 6721B45513882BF506BDB6A743EF761F /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 672A3A7FA491AC6968E21C58EC21FD21 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + 67411C8E45837F1C1D7F37E72C5D3B24 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; 67495001F5CD5835C2BB0CC49D35E686 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 674FA7B59F6E13FCB007AF7757327943 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 6764FD88432354A2870D85AB6082200E /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + 676CDD36CA0F04EB6FA88A9298CCDD61 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.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; }; 677829C82932437E90068CC931C2D606 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 67840563043AA82F17D29A652FA22AB6 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; - 67A1FB9C11FBF93A066ED437E4D975E9 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; - 67DBF913CE88380D78DC6C7EA7707F76 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 6787D97354E99D4B6966994AF6A53F8C /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + 67A506193749BDD1D0C7A91BD4539316 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 67CF8038805502BA2D7476EDDED5223B /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + 67E19F19787661DCFCA60CD07A38A33E /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; + 67F159A66A2D17CAB3A4277FB3AF6A58 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 67FC56B3B3AEED7464E5912801435C7B /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; + 680146476F1308B7B2D95FCB50802BA2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 68041748F69925013F2E5E2E941E5D0B /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - 680D7CA3D690389D5E2F3571CA82F65D /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - 683256651E619B3F182E3AB4CCA4744F /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 6838A85B8F9A94BEA6F282886E2B333E /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + 682095DA635CC6AEDBF65261265FE60E /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 68311F13F12006033BF507D23E722D99 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 683A649F2756D0CED81BC010AB03DC85 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; 6853D0C0275C488A7AFF75D5BF9ACC72 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; 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; }; - 687D274BCA24C931D4E2AC530A4BB8C9 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + 6873EE637F1FD65CFE77AED846DB38CC /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + 6907504E90C00A4008814AE843E60B4B /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6976F471728D539A443214A0E81DB102 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - 69852DDB634F936AD67EF4AFEEC06D8D /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - 69E73D0D712ABA9F6DEED0F86AF52EF7 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 694A203704E75A8F8243758600129A26 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 6963CE9D04E17D9D800781536E876D59 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + 6A0081E92C4286A22421D3C0C73B0BA4 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; 6A21588A6554E872D0F5137FF593521A /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - 6A43E7DC5723FD9F6489D01E21E04EE0 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 6A2280D74CFA75E6466F93795D6F7DFD /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 6A419EAE6646DDE68BCC3B1A4DD9C1F5 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + 6A423C70BD0655107C91DA23F04FACFB /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; 6A5DB3B95A61733B29846B836C5FE77A /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 6A9B116DF69ECF6ACD623B9630FD7F1F /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + 6A78E75F58C4D4838FB6EEFE907BC2B6 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; 6A9B97E8CE94081CD64AB0B4FC540CC4 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; 6A9DF5E9B3012A39ED9F672E0C8D62E4 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; - 6AA5EC5DA0AC2A640AD55520734F6D8F /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - 6AE78AC48248757E5F4481B82B2EB069 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; - 6B07E156D4BC56BAF650BF430017ADA8 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; - 6B0DF453C24E692E4F8226C5A42A08FB /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 6AF067EE13D82C357CD92364DBFAEAEA /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; 6B3000A1D45E185CABEFD0B060F04FC4 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 6B360C00644E9E808A39C5EB37BB1840 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; 6B3DCE3E62D468D58DE3FECB07CFAB5C /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 6B6F4AC2C5C639CD50BF159830CC8CFA /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; - 6B8F563DDF42E97813ADA94A44D41DAB /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 6B498F582FEB3B9C9EE4FDC74737D545 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 6B67C39A4A02C1D359727F1D6075E019 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 6B765C7001344ADD30A7B09D7B18DC16 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; 6B8FEC8581AD19DDD78ABBB18ECE2F22 /* GDTFLLUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTFLLUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTFLLUploader.h; sourceTree = ""; }; - 6BA51F00ECD12529E58CF5FCF1BDD822 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 6BAD5AF74326E84903632846E3148523 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + 6BB03E3659B261F8957825BA15C0C820 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 6BB4E471066205C1B9F8413CE80BAB3E /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 6BFB0D55EFAEBD52BC0FBC03A19D7393 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; - 6C42D1AEB2EA0DD81E36AE847D421E47 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; - 6C795AC784E91CE7BFFFC7AA57CC3043 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + 6BC8B5DBD9164D488591D0C5959E7BB4 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + 6C0ADB4CAC6CB1449ED944347FAD66A2 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; 6C8B9AF946127A4CCC12F6DA5E9EFD4E /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; 6C8FC56CD5FE60871A148C7D2580D8D2 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - 6C977153EE830FF4DF8C2637EB155FC4 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; - 6CF3C6C0E55376CABB4BFAC540BCC319 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; - 6D1B26716E0444055D19F8BE193F51AD /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - 6D47D80CBD48D815F683A354FF3FAFF8 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 6D52E6CD1695F8CFA8572D11EB15479C /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 6C9799B9B74DD9892CE1F538E16C6DFD /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6C9E60A0C7C3435CF0DCC1C4FD2B98DE /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 6CC0B61C0FF14A37EB6CC7BBFE3E8901 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 6CCBDBDC29BB7A39B822CA3F8564B7B7 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 6CF4A79DB7790017739EE53E0138B48C /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 6D3289502FF1A6E7C33A98A37059E697 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; + 6D552AFF53AA993FAED6F96D1E77886F /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + 6D5B06C8471EC60B0EFED96C02942CD0 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 6D6DF6A4DE770B1B4D1ABA4D14041655 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; 6D7591D0402DD814820F0F732E55134A /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; 6D8BCB824FD16FFB5D40146868CEB425 /* 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 = ""; }; 6D9558B896F99A90A93DC099BD7C8D88 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + 6DB27FF64B6A9BA9A085B210AC20AD1F /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 6DBFEEEE8490B0AEC5A93E092F2857A5 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; - 6DE8A4F7C409117A3DC6A2E37ED2DF60 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + 6DCE41CF26187E79129BAC59D68A588B /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 6DD296BE09B1F1E8C3FCA8CA4D72826E /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; + 6DE0681EDF0E0211D456C5E8D32BDC14 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 6E0A583E0A8EDD71C80C4A02E6FF9925 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; 6E1351AE14BC4DCE7B93E301AA99026B /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + 6E21147B8CEFAEE7BD94E8E368D13EC7 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; 6E2CDB4C30DCF3C644EBFB1CB6F8B63C /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - 6E2D19D654878B82F657E6B3A6BEFFC1 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 6E47D5D95BAEAF224B1C3E50EB8D703B /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 6E5DD8E9C4EDFA25C3D2507671F7D2AB /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; - 6E6B3F72D28DBBEB7379B5DBECA7B3B2 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 6EB980952287CDFD8FC85276F1077929 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 6E332A0B6AD930A1A05393F5F9162296 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 6E3D3A38329A7C0EFA19CB9C4C6E39DE /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 6E634AF63D2908380EB08052C6AFB288 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 6E8D9AD27E7F69CCD404ED31159311CC /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 6E9D774887725A4ECCE32F017053F4DE /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; 6ECC10905A36138211973FA8BFF62640 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 6EDE0A2FEAF794C4A3B1D117283ED8B9 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - 6EFA3A284870757064A62A77CA020A25 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 6F063C7CC4BD76F426301C2BBE30E27B /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; - 6F0C2E0E933DF322244E10D335D3AA3B /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 6ECDDA9E133901E9658E457AE4A90AC3 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 6EE27F3B9676864953CC3577E98902BE /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + 6F0B38542FF2B64E7EA95F3112638ABE /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + 6F17BFC2A2727ED785F3EE65C498A70A /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 6F1DE52AF140D521507A7FFE64A0D2F7 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 6F249257BAC55088E6F3BF269F0DC57A /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; 6F2B281A5C5A6DA83EEDED90A470812A /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; + 6F5E079B861FCA508F242744A7864093 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; 6F8611F8EC76BA0AD83706FBD552AEFF /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - 6F87B8345A7593294B6A9E132EB575AC /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; - 6F9E7EF7E62D98E528212D0D273427AD /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - 6FA43C006EA2B6CF298FE00569849C4E /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; 6FAC32E62B1F1A5CF4B7035D16475866 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 6FE00F5B510EE2652825473F9A8E14F2 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 6FE23694EA167907586135DDAE4DE7EC /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + 6FAD7F8DB9E0D5A33F39720D7231BE7C /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 6FF51CE73264ED07FDDD86A04DC0D3F9 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 6FF675B67F064CC12B6573CA90ED3D3F /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + 6FF692CFDF8EFD2AEDB97B1CE9CF0F75 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + 6FFA89B48855AD591D0E0686DAB4388A /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6FFD07CA8CC396C11428C8593FC6E959 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - 70088BB7379E97AB2D9E9FF95F92F140 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 7012687F32F355EC8E14C8C53AAD981D /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 702CADBFFDC7EF3FBCCA9A11A221319C /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 705CCE9E05509627FF89A09250AE4165 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 707A93EC8F27AFC053B4DFE9AD3048C5 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + 70269DBC38F10E5E180E949FC1068CFF /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + 7030F60F05871D798FCBAA2CB8433DA1 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 705C86F8722E4A66BD4C913451A9B387 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; + 70A62C01C748F3E2DB2E6771ED0053A0 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; 70BF969C7EE75D6BABCC43461AAEF644 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 70D235412EFE764BFC9DBBEAD567BB29 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 70C04CBCFC6274AF9988CC234819188B /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 710493512970091BE2775D6189F63526 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + 710626F89D39387BF706E1AC0839597A /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; 7121DEBABF2BDFF8481B59788B8C759F /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 714A238B856E4054872E1FD400E56ED0 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 715DE3D61DB2B9F0C8ED94D9195A2359 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - 717784DDC0972D374703808D43BE935A /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 717E9E9B93F6F630140F1EA916BF74D5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 71A8D8AD63970F41D631921F678B5C49 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 71BEB9E31A700E806EFB7FEC98C34B4E /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; - 71D333D6C9815B4D7BDE138207450774 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 7172F5248F51BC52D083CD0358E25881 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 717BEEDB30766F863AE9B6C97B2487E5 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 7194487BFF3965B1C033076603CF428D /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 71D2CD37131FEAF7D4F26098B157E68F /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + 71D772327E9F776A78B45D699F8C27C4 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + 721543AF1BC1CB9481E7631289E7E765 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + 721AE8AE7F5A350C60272E1396DF83CA /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; 726CEC5D657E14C2D28E2608DB007104 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; 726D3479A42B94820104FFB82565ADF8 /* 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 = ""; }; + 7281B2FF997C0B0469201D429C8ECB8B /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + 728D87445140199E9D4E88EE3CC4E9BF /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; 7290A8B4E4F31EF8E2A4BB18F88F59D6 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - 72B02B27678B51B83704A4BE3DFEF191 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; - 72C42A5379F7678BC2480A469AE85D1A /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - 72C7372FB61DF360A86BD59E40639D4D /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 72A4CB03D5319F58E9F1B5E0AFABF94F /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 72A4CC60E4F4C039837A5B2BE263639E /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 72D896F137C78EBD13C64502F9AA3008 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.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; }; 72F2F55C8488AA7450E778BF58AD47EB /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 72F3A429601F66AEEBF3B565EEDF1F41 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 73045376DE6AE9AB27D7A891266C41A8 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; - 7338C1843FE0B7ED556C5763FD46A84F /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - 734CF0DF7D6A8D1307EF38D0E62DFFDC /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - 73A8489BE4513CBADC8D8802AF64A207 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 732ACB9F5D35FADAB6B9F56F140F9A4C /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 7332046FA74AE36A09C3F3169C47AEC5 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 734C07C36A7F791888477C0D23601C11 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 73710B05B84EC076CC86DAA47036C5B4 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 73BE64D94A0851F0978E49B13D8A5B6F /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + 73C2931D3997BF61E3E2E6B1736271F3 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; 73D1E0BDB42EE2F595BCB0C3E231490F /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; + 73D3B7D85B24ED236034102CCD4AD0E6 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 73DF275591A289869A037B732ACCE445 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.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; }; - 74258F81D8E9A10E7FFF59588C4A3450 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; 742DA574AD9989337C7A051B2C2DC52F /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - 743F5E07CF92C6F606DD48A3BCCA1B27 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 744762CA457E16CA86CCBF56BA8139E9 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; 746D3D964458B43BFFB90666578396AE /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; - 747A249486EDA716D7B8D233052E91EE /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 747C66EBF0E1D41E0EB7F66EA1494C98 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; 7480B7F4FAB96A496173DE0E7C617B9C /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 7493D81119BC9FA4036C10337C09BC5A /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - 74FA0DFB857F49DD1B0057076D9CE528 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - 74FD8392A11AE2E8B81DD131A4011952 /* 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; }; + 74A8380FADE2FEB9624BE15865A439E1 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 753777D1486081C047A17939026DF097 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; + 7543543D9993C20E6F8CE3657C8DDA30 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 754672E23890332E320247B27CC283D7 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; 754C1763718FE74C32CF806FF8384D33 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 7582E14963B13D27AE0CFC384CE026F9 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 759973C61B3A8903A686499A76905E4C /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 759D90D1019D505AD70BE871F8950D2B /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - 75B4456387FD1F49F14C09F38D397A6E /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 75DB16D82F7593F2F8F2D87BDDC52B4E /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 75DB9753B851A6352F359AD77132937B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 75E365638CA123FC673096D535EC8E84 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + 75A5644C499AFBCAF3340D3F8E088FD8 /* 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; }; + 75B0D5740DA16048DBA67EB3C7383D21 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; 75E84073A3FF1C0075C2A143F4BBA591 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 76092B968AAC9C724EC9667F654AC5B4 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 75F898066136E87F7FB718CFFE3C0C28 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; 760D77A4F668A9C3F29BC76736A73378 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; 7612B1F9763549EA1DC383D43FC8950C /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; 76248F9402D4DD786D6A8E7AA04A7A4C /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; 762B0734C882B680C9D971AF79E220CA /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - 763B918D7D01DFE0779F8B2CEEB1F46A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 7667B53E10D068E0BFA32C6B17ECCEBA /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; + 7664C51B71C4030F277918AB13606AED /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; 76870B32976CD2CF19434FE44E4DAB9E /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 76A01F927DE5F13405330006480C2E10 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 76A2215D06FB7C40AB36F197692FA766 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 768D65199A038233AD69D44C5B5D03E9 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; 76B1D8152D1957AC23B75A79D58FDEB3 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 76E8F7051C8AE4EB9A276F0FA68D5A5C /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; - 76FE63E3F928B76B0B0BAE72B3D43FF7 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 76F17F993FDA2F75B204D361ED77A590 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; 77028BA581AF00AEF7C147D7449E82B9 /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 77060C09E6D87AD7316709FF3E32F992 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - 770C7A2EFBD59228C347732E76C01546 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 771101BC66D624FBFA77FBF11A3232C2 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 77258C342D4729EE4CF05D804A6056E8 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; - 7729EE9D32168E2D7F78339279D55710 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 7789EFA9B0EDD2CF26FC3B1BD82EC15E /* 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; }; - 77B1EBB82F5E7296CDCBF6DECA8539D9 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - 77B65A07E70545FED8EB9F3870F539D4 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 771A9D2134AF7B8E015FEBC7B9BF9643 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 77324D29D0D2C15F63207EF6C3E5C932 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 77889E1ADBAD703C2F09E1802502CFBD /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 779D34B3BA6422B7922802CA251B5BD1 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 77D6A2821B92ECF1D2A3A9433DA3E3B2 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 77D8824C3FADE1C9A14B0237B22A40C2 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; + 781F1C4AE7307355643F18D9C711807A /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; 782DC576EA301487BA3AFF6CDF22C7F0 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 78370509C55CD0F883BD4BEF2A6D6273 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - 783B518DD2B125FC0E464EEDAA73E812 /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; - 78444D9D4D9D3C0917B8998976E40C70 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - 78A184457F8555737983B26A11323CC5 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 7838ACD9046536BF03DC225DBCC3676C /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; + 78481B9CC4D7B4B7475909834BEB3932 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + 78536689423EDC8F3F92362B7E3F4B5F /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + 785381399382075F3D4973B67A3CBC8D /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + 78A3B2B8451D2E51A7C50DE977B73B0D /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; 78A5E4508694C25663685CE163B7A18D /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability.h; sourceTree = ""; }; - 78AE025AF94C2093809106A016A35345 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 78B21926C799D90FF38F3C01B49421DC /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 78C07652F1F392820EC279464BE9D615 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; 78D16CA96B3633E9D5C63D2D8DEB3AFD /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; - 78DCB97C2C0B300A6C7FAEE9170F900E /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 78E05B5B4544D8C74092E8B0982CF77B /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; - 797BF8D47C6BF3255EE647CCA8E6D2EA /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; - 79C1357F2591BBF578F21D97ECF2B59E /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 79EF13B1EBA69CD93AC259653E3BFF3E /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; - 7A4F18BCCD035A3DB966FB44364322BC /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 78E9A448E060A9F0046C27D9089DA693 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 79264A81150031ACCF915DC657D669AE /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 7937088C88E781D69DB63BCBFE2F399F /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + 799240BCD9030357F96AC6E79354A19B /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + 79A8B61565DAA3123B89DD53380D6671 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 79AE51DE109D3E965D8E3B7F09CE3EDE /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; + 79ECC4A13537CF3F08E9F680F3A34F0E /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; + 79F7D6AB62949A7B3E94E31B11CA27C6 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + 7A0EC15C85E305B97646DE0BDBA48E82 /* 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; }; + 7A3682B74576D9FEA4B36935562AA4CC /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 7A40288D82A3F1706752546010B05892 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 7A4121E2D7C242F0D2B67476FEAA958C /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 7AA61C68CFF30E72CC13AE4820139FAB /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + 7AAA59CC783933EF25B63E4551597526 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; 7AB2ABB19DF260BF726A2A7DE50BB0C7 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - 7AC949A6CDC9FAD791701093030E2C19 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + 7AC84EDC5DAE9647029D17EA4E949065 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; 7AE11FC733D32808154EE0C7975D70AD /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 7AF6A5BBC472C7054D73C96893FD931C /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - 7B1E97A9F2C1BC67CEFC4ED914700AD2 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; - 7B39C5E381ACE6F64E9BB458AE03BD63 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 7B4AF1BC881ABF078126D2DE6D9EDC0E /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - 7B4CE24F6E1081A73953291129C65004 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; + 7B59C34D69CC54D82CD7FF24983792CB /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 7B70C662CA07E449FA6228A3FBAC4EB9 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 7B75AFFDAD90901B97B9F59583DB4E96 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 7BC202C24CE9064F5A6E70A82A6B382C /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + 7B76A58A3D96C19CF6901FE310CE5EB2 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; 7BC2EF7B3BFD238AB12617D31274CEF8 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 7BE0009AD5A62049E3DBCC72BB4C2C2E /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 7BEC8F33025EEFC8AD46D997458C4839 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; - 7BF2B8515953DCD57957BA8EFD20ACFF /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 7C07F9EEC2DBABECAACCAC8A87228BBF /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 7BE0FBF7C339D8B1B66F05D3E8F7ABE4 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 7C23552EA58AFFAD374A981EA603F638 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + 7C3525D56BB5275A1C28B0CF573B0C86 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + 7C59C15AEEDA00AA218C77F7B154E57F /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 7C6AAB1C0DD54AD4F964138F0AFDB78F /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; 7C78B03E18C3C58965E80B1E11C3CAC7 /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; - 7CA72CCD11307A621D3F237636E253F4 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 7CB8C0DB6EEE6CC67BAC49EE564D190E /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - 7CD14069E0DC340CAEA66EBACA998E48 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; - 7CDA57B7A037A04CAF162CCF8783CB39 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; - 7D08DF9539848E8CAC7915FCD30C16E7 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + 7CB065671A135BC7DD945EA525562EC5 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; + 7CCC06E985E7494119EA13D35C583044 /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; + 7CD82D355AE84EB76613C789BC327F21 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7CE58D7FD05607438B54DD5CE666D78A /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; 7D0B134B634581BF0AB4FFB905334766 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; - 7D10630D29AFCDED6505AC01F612060B /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - 7D7213217E40522F94758DC70EE7305B /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 7D9CF80F3F009E6064C67C573894F6D9 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 7D1D277C7F462961CB68E7F43331AB64 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + 7D61BB0381EAD01963E36420B7FE6991 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; 7DA120FFE328161A90702286BAB6CDA6 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; - 7DA61CD0F80A05EAE58026DA7C88C082 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - 7DAA2E69EEF67212019EA6FF8CD3E96E /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - 7DBF90403D226FD4BA9D802C0772DC56 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; - 7DDF0744665656F4901AF9C85D660756 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 7E02B942ACBEE1C0746FCBD61B1B0D35 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - 7E0D984C4268C8982372D81B491862FC /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 7E16A5B4856F88F15343D19693C196B5 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 7DB5839020C0E34BAE29908EAF69DADB /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 7DB78DEEF52E22B2342A2386609DAF80 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + 7DC8DF73BDA9A60C4CD8B8BF89E8F5C8 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 7DCBEE5C8D08250D44D7238E3A4BCF1C /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 7E09C6C043E69EF1D303B9D0A9555B27 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 7E1CF3BEFF840D7071D158D044A4E745 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - 7E31A6B449E57AABC9237A24B247CB6A /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; - 7E50CD8A90BE20BC826BEC95C64F9915 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - 7E7037E56436AE0964F96889FED26B9D /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 7E288E5D203F6FDE17E47E4F651E8BD4 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 7E2BA298FF1E9167CB35166313B9A7D7 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + 7E5F6A9175C2C2E8BC1900ED908EB292 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 7E7D8C6F45F44A274AFAEBAADCD82DD4 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; 7E8C6A830011E9B4493E7F2FC363A651 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - 7E9AE99C7865CC26536BC2DD0CB0854B /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 7E969B6A3CD84F66DCB50063BE0B4244 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; 7EA24205E9A7B87800BCFEEC108BFF33 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; 7EAF77B51624F49BDB16C3865BA59750 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 7EE23C3E92A145C8608B385EAD04D34D /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 7F031A2F61456BB1EB892DA1FED39B97 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - 7F2DF0505AC6DD488E90BAA79F1E6DB9 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 7EF7D3F8EAE56AEC4BB585166C4985C5 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + 7F04982FD559057C4B92BCA89A895352 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 7F13F85437C08420B2C4D9772A5C0F84 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 7F1D0C34940E160A98208A9A359E78C4 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 7F2E9864BB593868E295DDB617F1F2D0 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; 7F5EDA23D6D2D1ACE2F5DFFCB0B53C29 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 7F64B8AA477693BD691861C5CB28A033 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 7FA6021FC51B75C6CA372416846B2B09 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 7FD4FA37C4ABD4B22B9675BFD87748D1 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; 7FE52EC86FAD6477499E13343ED2C1DF /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; + 7FE59F23A4785078B898F9922FDAE818 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 7FE80A0E5A04BEDCC2FE998068C2E8A5 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 80126C51BED4E3DCB4CCD333C38DA46B /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 8002C53A9AB7D33BF5434B76158A02DC /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + 802049199BC49D6DE72DD947DF0F8EC2 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8047865EF52BDB8F74E450253525FD98 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 8071F3140C83C329B87D89F7F76D7B0A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; 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; }; - 807E1456005CC3EAD5A089FFF018EF8F /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - 8089F7AB55E384041ACDDF19E78F1B60 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 8097A444830D3C6CCE125A1719EBE321 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - 809C97FBE2B7346EB069300DC64893C5 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 80899C2F8EEB9AFFD64A2675B5397557 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80D020E86A3DB547A971CA1B20F7E6C7 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; - 81143DA51A172C18B1CD38A0FD36407D /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 8120E4F98D1D00F4339976D8EDC1057F /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; - 812B0BB7777DCECA0F21F0A430AE6208 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 80B6C2D5DA23C5D1F8DB2EB628BEDA3B /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 80D0B71757A2D8F63BF8B9AA62C5BE3F /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 80D99B4450B57B52BEB0E235151CA894 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 81156FC61B2407D7FBE118A27C14193E /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 81267A7E1E30585F28BFA81015BF7DB8 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 812DCB2F8F49903836E6EBBDD65655F2 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; 8174EE8838427BE46A0885CA8539CA9D /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; - 81919368713931AEDC52362FE4CFCE27 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; - 81921FD5D77C8DB55740FF060603D686 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 81AF7C72C8D1321A79EFD6250A8453EB /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; 81B9283887252C3A5BFACBC794BD9596 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; + 81C07706C138A072DE46E36D91745D08 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 81CE6C1BD2CD84627ACB2375ECEDDBF0 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - 81D1EF2629F8267469FF9635CA325509 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + 81D90D5B806AD98FBA979448235E5A18 /* 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; }; 81DA341D791704280F8256A98FF27460 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; - 81EE0039A619694FF3E16C06F28D8054 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 82451E45D911AAD9D3D2D625AD21505B /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - 82675BE62C3ACFEE49CA5D268C891DB4 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + 81F3CA61C02CBE816B72BFF19462871E /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 81F3CD9170F9CD13EACFDCC36CFD3A20 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 8211E7D473E95C9621109787540CA25C /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + 823F9CF65AEC7B3D92926179830B4649 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; 8282D52E552AB2125F97A62608C8C38B /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - 82B7FDA33841430FAECFEB78091A9B83 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 829A3EB9FA3CD3A0078F3AFE01CB5D76 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; 82BA2E6A5BD7AF8E90A46BA46468DB13 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 82C2CC4DA2D0A987F666774AAF991E7C /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; 82C307D1CC81EE4425E3DE4DFA23E2F3 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; 82C5CB61A36D2F0DDF60097EB08DBD66 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 82D163B62D58A7DAAC4F67FE5DB44B93 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - 82DE597588FF763411D2654522BE7936 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 82DA8005621A1BA989561187D8DC15D8 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; 82F6DE05F32E14B763473B91688324E1 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 82F7F16CE0883730CD67D3C8EAE7BB61 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; - 830091E9F5DA8AA7DE3E4082877C79B2 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - 832862A31898A88E781D6B4F7FECCF18 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - 8335606D26A6EE76EF0923DFA2748421 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 83448ADF44CF1911CCE4D8AAB2164880 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - 8347D154BA5BF61C554572F3EA4E1F5F /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 834EB2958566569C54BB3BDFDCF112CD /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; - 83669ADFC2BA035A11A398BCCDFB4819 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 83801A2B1087F85FCBCEE0AAD6F633BA /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - 83A89F0F53AF583C4DDF0EA48B180780 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 83B8DD6EDF80109F4E5C34CA5722D5F2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 83DE6C3F3438F8E994848E8EFA9A1D28 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; - 83E049A998106BC1D48E224B840B4E17 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - 83E5C868AF0D7E96D4BD8511C1A6D078 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - 83EE8080CE4DB87300106A0DD3EEFEA0 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 83FA84340E3EE860FF6AE948F657555C /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - 840D870AFD9819EB4C229B9AA8AD9807 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 832001E0A106CE56DB9C536D51013D0E /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 83267670680BCF7A389A2881E287D144 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 83935506FE6CA3D043C47B66AA1DCE69 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; + 83BE6018B6A96DAAC1671C04AADF96DA /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 83E6C2CF91BB9491782F439CF886009D /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; + 841BCF1E63876D4B6FB1CF5353FB7A5A /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; 842C1C29367F774BD441F53EB6BD4437 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 846B0207BB73770B89FFDAC9557E3E7A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8480EABCD5953D075B72DDA610CCB1C3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8480EE856E141386167B4E150CB46136 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 84D49A7A06647CABE0B3ED5B1854533F /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; + 84B6BA8026C191439E6A8DBFDAC36C7F /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + 84EA0709246AEF731F306EDEDE3D55EF /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; 84EC518D9D034614AA1F401DB6FF9D92 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - 852065F2CC1E88EB2D6A90A39EFBFCEE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8520D971696FEBF0477BBD6446C4D492 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; - 8525930F3F8CD3EBD6DA4389DD5C0EF7 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 85262D71DBAB951692FBC6B28F927FF6 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 85314764861A67068C81FC59C361556E /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; 853B2681E8D6B8DC9F55CF27A6E8090C /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - 8564C07F57E37E38D43687431A38E465 /* 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; }; + 856096519116E9F83726C5B56485242F /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 8567F4BE66BF18CCF6FD545F52D8F6CC /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 856E1B287658CC783C39D96BB611437E /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; + 856E1CF8B4C250D2E8D7613E69E069A0 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; 85852013697E914BA35F277826FB9CEE /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; 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; }; + 85DEA271F2AAD5B0744DE2100E84E7C0 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + 85E61EF1CAA7BC61A21C0B1E6B0A2C99 /* 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; }; + 85EC457C09526CED4653E2E2B12AF25B /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + 85F0CDC13F749D8A6463A9A071A40965 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; 85F22489B98808C5DA103C7B579C00A3 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 85FF47ECA5D929CEE09263D7E7DBA3B3 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 863DB1AE51C0BA4A1D3DF938568E6C9C /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - 8655DCC2849051DFAD85B0C211E8A423 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 865875386FB2559918C6689786CF4307 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 85FF3B13F3C07DA68782FA821CDD28A0 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 861DA14224575858F5F466924A6755AB /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + 8621F09AEE97454E59022B77E8F3016C /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 8652B79418E870A7D1FAB5BB20823FEB /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 8655F3F8142267D046697618FA4B8C24 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; 86670E276CC761C5AD9108582C55EDC3 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - 86990969EC135D10A5E2D91C04647541 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 86CD56D84B97BE4DB81C5DBAC8C0B8BB /* 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; }; - 86F3BA956CA2FFF9CD02935EAB9D2D39 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - 86F87738549F13FD7A93B2D9A9E7AE3E /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - 871606E35697C7A214F174393C32C5A3 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - 87250954950E13682D9F5CD7F3A6BA91 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 86991F1C80D850332904ECDDEB7B59B2 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 86C8391910D9B2640BB9EB8E938003CE /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 87021CA2CD7453C4F124F06C43992442 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + 870B74D93D63ABE3FF6D58FD8AB6C1C1 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 87148DFF70B1C9617F089F092F86CA90 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 8724B62EA576BB65F2F7EB633220978A /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; 872F0037F0BE0480407ABDF7F96FBAF6 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 87362BE98732F68528D90304A5C4E274 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 873E15B90C90984EC598DAD3E2B3ABA5 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; + 875877D1A40F35C209C73A4FBC9D9777 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8759E2B890E867234F438F380CE3FF61 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + 875CD72E0979C3A6AF5527EF392697C0 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; 877F0D1D9A0A956008B6F07FD23EC8B1 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 878DA4DA1965E991360A0B90C6221A8F /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 87CC336CAC5653A542412393A4F8F4AB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 87D2BC77CB55F4F29196EF2403D8C31A /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 87DB8BAA7E0AA6309FC82A17A1670CF0 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - 87E3B4E6F8DFCC3B1564EE5A6BC8A35E /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; - 87F1FB06E4034624ADF89C7264155A30 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 87AD05BC9122F8026F225D0CAC65187E /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 87C599217575C480C784DC563066D782 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; 8816AC006C3D22F054F7BAB4EA2511ED /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; 8825B0D3568A19F57CDF00412E9B2DD6 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 885AA0A3C1FC7159967E28C438FE0FB7 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 88648F732932432F6DAC9EBED580C353 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 88DF8989F874081F1E477ACCBD40F34C /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 88429A773B0AB71900406A45870F1475 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 885D812687E2B07C8F02B276D002BD93 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 88B8A999A9E3B56BAC3E1105CF17726F /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + 88D1CD0C6DDF4DACD9F837C739A63831 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; 88FB1508A1C9E9DF1C4FCF0644BFB25D /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + 8905F3B270F1935A9E279AA5CDCD42DC /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8916CA19D423F5B524882A6E43E80129 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; 893353C22879F217358868739D8C89E9 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 894F1ED2B6368487AF330CAA982A116A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - 89744B170298F75C90CAC39E6808A498 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 89398DB31D2B090D296B4E56FB6830CE /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 893F64FC7D8FD759746CEAA5CE615092 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 8961A029D89CE834643D0AC9728755D7 /* 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; }; + 898188593FA1F50CCBE83173BFD842C2 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; 899A689BA65BA61151C1DDFB19F5BE93 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; + 89B28C405A0AB9F9086B93A87FC74CF4 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 89B7EC9FA29DDB2180DE4F6B55D1499D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 89C6619CB1C1D1AE75ECCE9C2E6A35A5 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 89D910E4F42FE041573767A15964B6A7 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - 89FCAA5092C605B11E0AE9CF0E37A25F /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - 8A2DBC6972F10CB3F42935FAA3D7FEA6 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + 8A03405C284F8E43AA5A271489DB8DE3 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 8A10B25979F59F7A8AFBECC802C109EB /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 8A4771DEA3075824D380A39D09D3E07E /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; 8A4DD3054BCAAC1DD111B122592F96DD /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 8A532F8903DFA43FF342F2EB8E9AF675 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; - 8A8190566899CF9ABE25C063278E2F77 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - 8AC291AC8A6255C6CA2555A29AD5470A /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; - 8AEEFA27BA1AF4F108E5CAD8B09C5DD8 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - 8AFC3FDE725E9FAA7A4B64F82BF4B32A /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - 8B139C6C451896FB33A71909257B218F /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; + 8ABC6CDE9EB6CD6F3DD6793BAB8A17A5 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; + 8ABCAECA41A28982B4031CBF172B04E5 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 8AD6703F9B23155360E0F4B921E83CB8 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 8AE43FC6E58A976B3C6D2570091904CB /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 8B08F92BDD499DC6E327479ECB6552FB /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 8B0953F1B9DB2AC74DF16269D5829B7D /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 8B4C2C687BA9A4F482BCC6E3550747BE /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 8B4EE64ED82995E97CA320A712E8CBDE /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; - 8BAF5B2F52394878A35B02A802913F95 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; - 8BD2A23277F30FEB5D8CC12D42BFE63D /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 8C1C346A405E291620CD1E83A90BDC2E /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 8C1F97DF376D9798299710820D5A07C9 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 8B51C56BD452024AD1450ED884C3ABA9 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 8B8EB435630157EE4BD45C80FF974327 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + 8B956CEEE85425A03D1A573B50CBCDB7 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; + 8B9E8D6054BABEC13C9BA516388D9104 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8B9EE8D85D2E2B7E5E94B698935D6771 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 8C1C0DF6325073D049977F086DE518CB /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.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; }; 8C40A67EE1D77C8674B2974823212EA0 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; - 8C48D6A870D541C9C33E4D3391F7940F /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; 8C64106BB2DF7529C974379A31A7B6EE /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 8C775F0A3839BF88C0D89C889B59B26C /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + 8C821F0EA2DD176D9BE4559FDAA64B9E /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 8C8418AB580C156B5BD73C410B46E363 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8CE510F89D067BBF690E179DBFE1E75D /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + 8D08522C833A9FA9AF9397A725E582BC /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; 8D34461A66E3259AB0C1167A107511FE /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; 8D7029D8FB8076E86500FDD8484FDDD4 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - 8D8B9F732954D86D82A441E9B1D642CD /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - 8DBF610409B21DC9EF67D81A4DBDBC6A /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - 8DCA471A96EEDC4FF71B04C0B6280E1E /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 8DD126C0D073D3C5398EF812500A915B /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 8DF5D0FBF5908E9568AE95C94B45CF8C /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + 8D7A6FAEC9BDA81893914FE2A34F74C3 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + 8DCCD7ED568883191E1AD19331D3D2DB /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + 8DDE38DBD2FEC56DA009FF4C62EA5E86 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 8DE88AB462586372BF9B4290971ABDEF /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; 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; }; 8DFBAA668DAA11EFFF653C4F4F65920D /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; + 8E09B78FB6C90B1B7261FDFC164B3D76 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; 8E103C191260FD8059A70EBEAD980250 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - 8E18A88BAD923B062DD7A8FDDE0FC019 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 8E41897D7B8A9E05D048F023965765EE /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; - 8E63DE5FDC61C58B3447DB0396BC3C73 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 8E2AAF41E6FC1BB9857221966A40B6A9 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 8E669CFAF682DD22415996B5FA21EBFD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 8E8C019C75FF4F789E40C8784D2EEB25 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 8EB4958C1AAE02BF779DE65F281D502C /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - 8ECEB4113FAE0A630DB0A48789C04434 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 8ECD48DF4DA4FE387EECA42C6D3D9E75 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; 8ECEDAD2A838321D345DEE9D05E6BB90 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; 8EDA6DF3A3B6AF0071D4A7A9742995B2 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 8EE70BC3A8197176114E7EABB6218665 /* 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; }; - 8EF4278534C114B75848F65D72660EB2 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - 8F05191A1FFA378F8D0BEFACAF94CF16 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 8F0E564DE338119666276106356B8119 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - 8F20CC66C09FA1EA57D7754B739BB3FF /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 8F2A4EB921C09B725F2CB6A24B0429F1 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - 8F373EF97D2F667F5BA156702ACBEE0F /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 8EEC5E012EF08FE0EE7652064E65C5CF /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 8EFEFC829BBF0C3247A3E986500E9F29 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 8F44254CDC9D17AB06A9E33787E57F9F /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F66E7205BB7E21813556AB6A7D50114 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 8F9250A90777B0FF446D2599F1718133 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - 8FCD67CABEA60260ACB5A3DE0C6E76F4 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; + 8F97BD07FC5F5BBD6274EACF7A33930B /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8FE78D699DF0963CA715538E756C4EE2 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; + 8FE9B7E792A4563346F03D5F9DB4D050 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8FF29F881AA0F7272BECFB2257110210 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 8FF894F780FAEE5B1D80CCD47E9BE2A5 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + 9002723A97E6B9C1D70CE43DECB62A2D /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 901D3ED8D2BEE4D409C00D645D7DF9B7 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 902007CD0430091CA5FFA9F68CD6EE57 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 90228C82C5A6499C44F04D0D75058DB7 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 9024ED3FEA023FBCE5FC297B08442458 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; 905B1BD1CB9FFBC1DD7770F2DBD5FD19 /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; - 90790859284BE76172F93E9F7813BB5D /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - 907943E2FBD3DB953B4FBA9071E2CB0C /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 90840E4541C9DD475BB36737BCEF0EF0 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 90C5B26C28B103E702171182A08E4EDE /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 90C8F2A291F4C215285BB4BCAEEF3023 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 90CC2265CE93E0224E5485B17D2FE529 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + 90E547EC0ACF4D5420387F46C0FDBF40 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 911A353AE3EB253ABBBD5DC16D898B25 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; + 911D6C6195168846ABAA69CD04FDC12B /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; 91359A1A9D71282B8617D5BF30B86B04 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - 915F0FFDA3662093AEC20E034BDB87FC /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 917C2BFBDD722F33A15A69113BDCD537 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; 919435F4CD2ADBE3C210FD10F56B568A /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - 91A9B7A30D4D872C8EC76F32B87D2FD1 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 91BC942CF16AC147CAD7D1217158C055 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 91CBE1B1C314D1D24C75150A144A3BE1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 91962A61FF181A9A85B005F9D7F8F8FD /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + 91C3D9FC94ABE9264069E1B9AB64DB02 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; 91CF14832C73F2B333714483F06B3C9A /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 91D1EFE5F226BBD145CE95DAC5EA45FA /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 91D9E1D0C746C2FFBD68E1A7367EC6B7 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; - 91DEC9A923CC79D8CD146271B6CC8A86 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - 91EAA0DE0CBBA7A05103808C326CDA3E /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; 921B01A30EBFEA00540CF83973A575F9 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; 921C25810B4533D9E001D73370A577B6 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 923936132C5FF045A354B7B75A74E01D /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - 924751E7D1039F4FB0EDC9094378B4BF /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 9235594FC4FDFB8D5E20A23495F53B47 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; 9266B058E00473F5A3D7D31E6AFE30EA /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; + 926CDAEA097EE2BC56E2824EFF0F6C88 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 92761219FB30D2337C4A78AE4C28F897 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; 92839ECA01AD51593C6AC08DBD9EBCC2 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 929ADB4BD381ED2AA60F8FF8E7317730 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - 92AAE233471128F7AB697528E5779C4F /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - 92D3A2C71CB1459A2CE0C33710DEA4CD /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 92B37FF6213B5C53AAD606CFED6D52F6 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 92D37DCEA5F912CD83F2BF86201FBCB5 /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; 92FA3E16143BD843AB82FBE1484C3175 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 933526594E2B49970B93C4331D304EB4 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + 9304E2B15D0A3123635F0438820C85A6 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 933711BDDE0493B6FDCADCFC4EEDAC67 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; 933895F5689A726BB5DBED7880848CEA /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; 9338EA7FE417C2BDF76DEEE30198B2B8 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - 93397AD379506B0DFA85AB22E1858FC5 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + 935838A1A539372D72C09FC3F675BD90 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; 93606334B2DB3E80CC396AEDC2F909F5 /* 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 = ""; }; - 93ADFE4CAD9451B1B196CECC916633D8 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 938DCBE6FC774E699F3E20271277E1E3 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; 93B11D5857328B9B8C43CEFE929288EC /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; 93B448CC3FB8A5E0A529641BC3F578C2 /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; 93C7F9D33807C629347B5CC327303501 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - 93CCBDDABEAE5942230CF0E025336E1E /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 93E0A184E9DA535352EF48AF9C5EBF68 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; 93F8311DDBE0DBF0536063DB1283834E /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 93FAB1745DC86F18A7B2CF702DE72503 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; 93FD2FCA283A90F02414FA05025F9086 /* UIColor+HexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+HexString.h"; path = "SDWebImage/Private/UIColor+HexString.h"; sourceTree = ""; }; - 943E9B246FD22B5A90F44E9DEE7538D3 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; - 9452FD50EC910E745BFEA70CD7D7DFC5 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - 948E905C7DF7FF829F4AF8B63DA1650A /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; - 9496F8ADFC18E0AA6076F1A696215AC9 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - 94C76B3BA4849C297A83C046F72B0584 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - 9501CFD3C936BC73BFADBCEFE40AEB0A /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + 942CD3A4F0F42CAC8EFA1EDAD1D0C74D /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 944DBF7D354C42710E3FC54F3497286B /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 947156C3718A8BA4D97424E2F46ED875 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 94F244C33CECD727B977DFD36C60BA95 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 94F462DE1645CA25C763B1B3941BE7AC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 95034913BBC0A86B5FFED29336E7F6AD /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; 951060CAC29689856FF5CE28D672D5F9 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; 951EA411C3609031BB767BB3EC28580E /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 955D77FB666FAF9BE8FE7B657B256897 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; - 9584BF8B7116E9533B527075D84FC6E2 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - 95EF3AD0840BFDDC76F676455E7154DD /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + 95503B6D18BDAE9F985337F7AA516564 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; + 956861CF893663DCF60E9E263F20A1FB /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 95877CAF9D423EEAA4F19FC53BB2C7F2 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 959D3F686247ADFDB8FD8CD7550AB964 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 95BCCFC2874599E98F8FAA6BC1E00E59 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; 95F672D173395EBA22AF0884C6C8915F /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; 9602665ED7A4FCF32AFDE7F8439C8C55 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - 9608D8A2D0AEE0A6A888D2E2C7E4342D /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; - 9616C625D92B8968CC0533A4CA4AE4A6 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; - 963529313674244E03C747A4948AE491 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 9613B4E009829F49500D5476BF62A6CA /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 963BA59445DE7391A6E43D344A3C12DD /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 96493B2AA0B5B4EE195370CCC403C476 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 964A39EC5E9D150BCF41C17268D74A89 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; 965EC53F67148F2FB7C1C52C636A654B /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 96994F4ACDF019E0D9595D3C51B92406 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; 96BA55D82ECFF1108092369C40805752 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; + 96C8E9B45F1A4403E312C5D174F9759F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 96F73718ADFED1B74565DF96A3AB58D3 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 96FA878DF202E84B0A40E85B64A69C70 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 970A28468BEE739729C651807974B665 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + 975D48CA41FBA3A5B3CADFAF11755D02 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 975D51C22494655692ADF60A40FC9F94 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 975ECB2D29AFDE497BDE8DA25F81351C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9766B809AC1E5C70E1EF8A7B6FB8914A /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - 9775310D6981341505F105C9568C5E45 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 978DA240A5DA324CB45468880D17880F /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 9773B663DB146257EFBD1E74BE95F85F /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; 979A76AD19363B9D26207764CC5EE2C2 /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; - 97BE7BFFF182E661D432FFE8E3898511 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 980334210A70EC8FFACDA9AE9DECBEE1 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - 980FDBA738C683BE41F4E005921CF7B2 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 97C5EB41C0561EA9AEE0F1DA5C8C8360 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 97CF8C7EB68FF0F389F6748D4B9CC38A /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + 97DA749E8E918B0DA470C0E5430B0A0B /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; 9823CB2C7479BFFC9C9AA170BD0CBB10 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 98329DCCF0E9C701206E2578C76953D5 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; - 9838DD02C421D6A67A4DABE8E5BBD4DE /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; - 98A7A347CA351FBD29C63ECE2C510116 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - 98CA230ACBC6FAFCFD4918557133F565 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; - 9901BACE3A1530200B9D29B6C2010ED3 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - 9904960D15504DAC6CCA49A008D712AE /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 9840C1D5092D09CF7DE8F2F8EB6153D2 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 9850C16F99A808CA2DFADA2ADA3BA284 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 986824148C5063640EEB369573A7C353 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 986CD91741357115E3FE5B8C88A11BCA /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 9878464D997BC5F4110F8D0763686CC1 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 98A0B3AAC61084682CA26ACD65313B0A /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + 98C0FD50BB1EFA8154BB3B773C058ACB /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 98D3E6EE2A73727B4AA55ED53C51C165 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 98EC86A0F6320DFCACE00FD5D9A48933 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; 993AC02EC1C111E4334D17D3E0BBE05E /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 9973454611F684DDCF713365145BC4F6 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; + 995E47FECAE1580AC1EFB9BECD361BB6 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 996801C699EFFFD25ACFEC41DC4EB4A8 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 99700EEEE49AFBF5155726521B378965 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 998FDEA6919DD3D06C5FFEE1BF48CD22 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; 999C11E9F0B6529BC62034D8CCC9BC0B /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - 99AC0483E6DC8F46D5EF5A81815C0919 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - 99FBE28ACFF451E8AC265AEE68702C39 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 99ABF097F32CAD0D4ABD0A1474EA0E89 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 99BFEDDC6C2FFD1C5A6D1F2B31078E32 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 99C4A0223F6AD0C87E435E09D27EB998 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + 99E5A9CBDB11A6C509653B315149A513 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 9A1D215EB5CC4FA8B549778DCF215A5C /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 9A19FDB2516013B599513E4AAAEA4B4C /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 9A2532A5E6FDB846AF250D4982310444 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; 9A4D3B3B310D9827F2482B1F3DE8CC69 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 9A5ABF6A709F9F8B7344A710779D51D8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9A556282A3B0F6806B50B9D64B56A8D4 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; 9A5D533C41D3DCA0AE4501ABA408A5EF /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; 9A65228A597C9CDF1630D3E33E79C2E7 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 9A7AEBA9C7FF343E5421EF7F9BFCC694 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; - 9AA5BE73650483C36940FEB822F5FEFF /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + 9A88FC47B886B41C804AA7C878EC4544 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 9A96EA257B059165E5B142D858245E34 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; 9AB0FF969520EECB0B36AF7E6D88CD2D /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; - 9ADB38322F34A3E62427612768AE218F /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + 9ABF5B669E0A008FEB83AA8AE729103B /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; 9AE4C4F557F4921C9D27A6E75DDB9A1A /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; + 9AE7FC29097C1A2C7BBAB7252D91C9D5 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 9B1E741B4EACFD774A03A37A918DDCB7 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 9B48572E35EE480C6E262B529189C902 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 9B56B26CA2BC9870ADBBFA20BD83716A /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; 9B6AE09786B2423B11C27D00079FCE17 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; - 9B7CFD05C691F6924977123D6341303E /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; - 9BAD19431865B16792B25375CC234813 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; - 9BBFB7DF029570D3DA89F4EA8867EED8 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 9BD2DF60DA184804CFE750C979ACC465 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - 9BD8E89DC6D0FE7D0F3D4AFAA6584194 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 9B79E4CBAEFC8F202562019D7D31FC1E /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 9BC50ED1928A5BBAA7711561105E11E6 /* 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; }; 9BE700AB1A857567583B903EB1F58B73 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; - 9C4240233ECFEFFB1E31A2BDB0900128 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 9C48FC3DE43ECB47614C9E744A10EADB /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + 9C17060AC692446E4620A3A371BB4D00 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 9C43639720E4EB981C2E4FAC9E81DBD1 /* 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; }; + 9C56D930DA5EA4FDB0046D8B563CFD3B /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 9C6750D1449BBDDD153063D5BC8E25D0 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 9C8B81AE3B3926554D716E80CB3FB004 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 9C9112F2E8C6E60647D2E2E444624B85 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 9CA9957D79864D494BA9E6E5BCF4E3A3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 9CB6851B50895A42D3F7C877300D7C7A /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; + 9CBE9CC10DDA7BD6F80C4B15E26A0A04 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 9CBF95354230B098AF82F3AFE8D7A231 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; 9CC2E2273ED5FE89DBB756223A07E524 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; 9CE153AFAE2F96D0F934D1BAF6939CCD /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - 9CEA49036BD452BE4A76DB445E83A381 /* 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; }; - 9CF3786EE8000A20DFDD143520027865 /* 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; }; - 9D1D04F15826580499B17234E3912288 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; - 9D4106ED572E83D913CD2439E1370845 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - 9D68A6D7E67D45B0196E2F6716B6A190 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + 9CE9A72CF6E189AF362512B223B4A3FA /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + 9CEA630F3D539492A2BB797322823EE8 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 9D12E6FAB1395300CA923309E382CC4F /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9DB4076029771C2FC98E33FE2F8145A0 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + 9DC0D8F3A5C0E21CEF2648F8925E6512 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; 9DC3538131FBA43CF7F442029413C750 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; 9DC55014AFA153FD4E3CBC4A4A6CEF69 /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - 9DFEBD29FC57E8774800E8CBB8128456 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; - 9E795BB03EFA38DE1BDD66FE34A941BC /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 9DD9065C7F3C523F31488A9D30FF9159 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9E2057DF80BA5D1A31D4F523D7DBA016 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; + 9E44C2C9A3309DBA3282A63D18C9D052 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; 9E799F0463BF1E9CB29AB2DD41EB7846 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 9E7A149307A393ACABD36837C91C2C61 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - 9E822F4CDCF4DB122075F36B3348CB32 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; 9E97258EDDE1B0FF09F0FC66346AD27A /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 9EBE1FD358D5DB444D1994A23AF5B744 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 9EC6719490272E2EB87C07A55669DB19 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 9F11B9FBA50006F16241B643CC14A271 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 9F357FFA83F025CF4B110994FADFE0DB /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; - 9F56933F51654EE11046716D6A9D893E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9F8A795D79440FA00273CD98F065B963 /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; - 9FCD890FE514033649939E23DF34FCFD /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 9E9780F189B0F0F286F7FD96944F5439 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 9EA34B065C288E777E0D495594C554C7 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 9ED0AD43CC44C17BB61ECA17CBB20C44 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 9F0BD0D28FCC49E8B60D24B8C342481D /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 9F6F76C75DF2E4CDD2B9E6C2B261C387 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 9F7A90FFED7376A4D31F6DEF4729CCAD /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 9F7F117EBD7C909A9728EF18CE943C88 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 9F982A3920E7648B0FAB4A6A4678FA4C /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; 9FE7CAD15D46DC8EB22E034ACFB28888 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; + 9FEDE31EF7A464473C511A99EF5AFC39 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A00E1B4663CB53D2F2081C13D502043F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A05437ECADA33B2E1D9515C59BA539A9 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; A05BCBED3EF0DF896274C0F7F49E194B /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - A060D275F6FB2202E39824FE20772A14 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; - A08C132DEDA462010F5B82CC4EFD99A4 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; - A090DCBB0F337EA42C4E3977A9F0B1B0 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; - A097391D91E9B6ABA1CECE20676B56E3 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; - A0B4A06232EC276DAB783F7F1D6C5866 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; - A0BD5F45347AF241ACD522068EE2A13F /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; - A0C2CBE489F6BE8623AF5ED5DC1FB0B1 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + A06761A7F4506AB0BBCEEE8415D74071 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + A08280F279B7913E31A0AA152FCB670D /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + A0B78963249C137BBDE8342DEA6F1B9C /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; A0DE2AA756FD1093A58487EEF833F499 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; + A0E2C2A0578FFFBFA58D8D308265FDCB /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; A0EA3217B857F6515E5C3725E793D70A /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - A10936A5CFE73F4649919F750A19356F /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; - A13C6946B33C455B359738BA52FB0A4A /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - A152BFA1C5A859956B6D2415A42FDCA6 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + A12B459471E0A29EFFFF6351E9649B3D /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; A15D9453B10C17715504A05E32605847 /* 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 = ""; }; - A16DEFAB0875333C26E3139CE5310E82 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - A1836297279046CF93D2133080C76D41 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; + A1682606BF0991ADEF47A12A23121916 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; + A17089A7BFAC8B01B6BFB6ABE2C3001D /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + A1B4F5AFA0939AEA94E82B4624F51059 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; A1C0F847D5B6DD6759E31413551F6F58 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; A1EC5104042BAFCD052B353B775968D7 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; A1F0899513A15CABEC77801711DA43EC /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - A1F900E624E4F67AFB7FA81DF7F85E61 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - A20CC0982D78D08FA3BD84F1E518DA51 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - A22F94C05440702EAEA8551097983106 /* 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; }; - A23FC1C6EEB4D286D5681F8C73164353 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - A281B418998BA4257474919CBA88225C /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + A21D2DBEA36CC48A3607825DFED2E85D /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + A2582CB0B2FC461BFE6ADC4CBF2E1F9C /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; + A269D8FE51AEEFAC281A7D418C975799 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; A2894FAA81841C7DE26398644B1F3ACD /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - A2A0865FC59C46533EFBE99829F2C6E2 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - A2A6138081D3600CEEF94F4879B26747 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - A2BB4A0544ACABAB39F55C9B4DC418F1 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; A2CB7B6EE46AF3166A4B3053A322A61C /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - A2F288C170B5F2132D63BEBBA3CDC0C7 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A2F98D797C5A100E3115EA3505C1DA82 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; + A31CB50833B37420416341B344B5ACDA /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + A31E5566AAD517FCD773D6C2F9361629 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; A31F188D4B66F6B22F8E86B908FDCAFE /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - A353EBABAB23AF51DD06C780062A0033 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - A37B85ACEC04F42234F39F36922AF4DF /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - A37F85EC0C192B825ED43BA595184762 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A324ED0233FEFAB5BE61641A9FF75356 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A33B1F40333CFD389EB9C71DFAE35EA6 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + A35488CA38548E124B5E9B984D505508 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; A38CE196FAF4456B06F77B5B9E0CFDBE /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; A38D33F827E62F685D432C9A01C918E6 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - A3D30A327658332768723A3C7A5AD074 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + A3AA3FEA8A53641838369D00C03EEB11 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + A3ACFAC389C1C0E967F0B246CAFED2B8 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + A3B8E2D29E386F5C3FA652AA6D1DD585 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + A3C60B66DDBFDADC9C0A1A137713DC42 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; + A3CCB977E79DD1435691B18805B12834 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; A3EF6DDC9ECF54BEBC12FEF5478C225C /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - A400C135266E951FFAF31B82700341CC /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - A40DDBDE75B76EE4C97C4876D85175B1 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; - A40F869B4425DC36B268AAC134C05811 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - A45F0030699924CE63A3BE1A1E04032C /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - A472B29A06F533DC8055155CB0C7DA06 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - A47DC66E549832DB7131B4082C3744CD /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; + A497F8793AE52968911B2A7A1FAB1CA2 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; A4B5638048C9BE689A53D2981A56EE93 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; A4CCD66701BA3DC52D7F6038E6A0FE21 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - A4F5A1E99FA7D42C489D0381E573C849 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + A4F19AC9C2ECE5C5D4C90DC22494F353 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; A5018CAA450033C9F40CBBDC23FA4A74 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; A504DDAED24ACC8CF4D4D4E69E078BAA /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; A54A0AB081F02B68C732C27229CC546A /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - A5655AC0642AB47E0696586F98F9EB9A /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - A5783075A6C9B523DDA3C0B60647B0FD /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; - A595B6DD138E016E5D80F615167C7FCB /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - A5F862DE55B8DAE16E05BE2AD7B275CE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A615973B85BA181006E0063EBEE40504 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; + A5594BC570DC751C1CB2233CB64B1A9A /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + A562A94B65346969B4C06803CB06F5E0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A601EFDD2541CB929B3B74CA94D92DAC /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + A6085EF77FB9A7F1116F1851BD1AACDB /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + A61DB22D4ED374945643AA50231FD3FB /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + A6201676CD6EB9665D5AB59A3818A189 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + A6268F447B9C8E786F8672ABBEDE0B33 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; A6279E1E2E3335F1103BFA5A97B32CAA /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - A6455A15BAAEE82FD4F76D0D75A99C21 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; - A685EB89558965F941A405C3FAA82EB3 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + A66779B86941EC3E046DA5518C56E4F5 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.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; }; - A693AA61E697173D763FB55F9F925A76 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - A6B3BE6B96843EC4E2C030914285AAE3 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + A6953958EF90871F4E7B254C85375FD3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; A6C7344EA1DD6836B5D82E682D0A59D7 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - A6F8C6869B72004BE90924A432D55046 /* 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; }; - A6FDFA32B8295040197988E798C0AB0D /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - A7046377F97424F11727A7BA72F8F52E /* 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; }; - A728F9090C0195D0BF044B3BC36C5CAC /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - A75A67682FD28D02E198C5940C1521C6 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - A79E5957E608E87CB9A07FB2D9B74357 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - A81EA97901E6916351212989A5228AB5 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - A826F40E441D4412E32324F91F36CDBC /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + A6DB7394EB220F61EBCBCCC9454CF196 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + A705E458746FB937D5E970232BB2724A /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + A7097DEC97FC9C5A3B3379CFE4E8D2DE /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + A728E17DC0071BDB92B0B0AC4FCCBC9C /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + A74FC8F44C2DA05695B5BF84D7E0D224 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + A77B4DF8755277B47E0F43375B019207 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + A7E830046FD5260CAA2B1AA7B0EECA00 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + A7F1DC1FC84C2B818AC73674E6A0C94B /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A81FBC14386ACA80016032DD21117D08 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; A85363A0C59C12E9ABF0D991127F666D /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - A8602FC077BA48E60F4F61D2627E4B0F /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - A863BA598F51BD9217091846EFC9849D /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; A88DF20441288B71F15D147211C1C64B /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - A89F5903324F1CD3F6DF49F596580EE9 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - A8B5C306DE7AF28132B3BAD6F0B04749 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + A8A6D7A6A091B419DF831051E00C4CD8 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; A8C2E718EEB7FC61E0AF4FF7745365F7 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - A8EF9ADE40BC7719B21F362BA27D0CE6 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - A8FEE9E165727EA2834D50BF5CD1A68D /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - A949256D0826A4CB0C7A208C50FFE3E8 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - A94EF12DA4840DCF1D416FD566715F02 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - A9503EF536E523F96203052014C6BAF4 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - A98B8012F144C30D6A38B0B3B345ADF1 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + A8D6C880CB8C20B4B90D3DE6B2DA8EFC /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + A8DB2F461C5ED332B4E19865257F5FCD /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + A91AA40E3B64474267A1DA7F46B616AD /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + A952D980D462BEF87C23A88A472DC5C8 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + A96CB40A9755C2F2F94FB73512E96322 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + A96F65FBBB75E5932155353AA447A23B /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + A98830A6AA4F5203B9ED5BEBD927446F /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; A99DA828BE8FDFE29CCA18FF1A666E27 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - A9A1808533E8B43C330738D66896F12F /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - AA0C881E8B3849CF7F576CD086990F1B /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; - AA0F80AA3E4AA05D56513CF3F9689879 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + A9E69C7745B00C2AE132199BBC552222 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + A9F440F61A7A540D6C743513425E6070 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; AA42C4E98C13EF33E441FE62148783CB /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; AA4F5619775B05EAF3BD82EDACD91B98 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - AA513D0B104EF704EEBE81CD19D01108 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - AA6B1E1FA365A5D4A33FF54B14068FCF /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - AA7A8DA70DD67769DD72D97B9581CC98 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - AA83C66BCE237C477EF7FA53A9A4C4FD /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - AA9F7478AADD3DD5BF9F700EE0988915 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + AA64ACB0759A7D98739D6CAFCA4DD08C /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; AAB27BBE32494400507F8652BE36111F /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; AAC30C36CEF4ACB54CE1E6E49DCF3E31 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - AAD3F86D1EB9651A77F4480C76E25349 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - AAE04C89918794FD8CEB73ED15E0C056 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - AB041F83DA810ED8C5D4970D923977BE /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + AAEF8C45EBA9D2DD1B198142DD7873D6 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + AB28407587558555967015E8CB7A76D8 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + AB5F5EB7937FDEB0A4C3ED80D8BD56DB /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; AB686584E542E1751A41715CD307E524 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + AB6B81B047AD90F64FC95C8C72264EDF /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + AB7B13E6692DE8466C4698413277AAEE /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + AB811BB172E5C47A41E719448B6F3709 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; AB976C1FBBC26BF65B263E79ED2A0E2D /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - AB9ECDA9ED934C3308F87CE97820F9EF /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - ABA6FA0F42B7391DB470C7DD7C8E6BB1 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - ABB251627EA1EA9F5A808A72F87A62A9 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + AB9D0C9EB38A158C6737F05F2811A41C /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; ABB34BE98015F83F80BC4216458D9FE9 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; + ABB41883201E8A3CC2CF1F56082324C9 /* 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; }; + ABB813D04CA9754BAFB8DDFE89FC6AF5 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; ABBAB6A3B14167BE15806D2D4C391430 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ABD8CDAAD0723AA4B20AD59FC2E6501F /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; ABFB99715FD05FB4DB35E948155D825C /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; ABFDDF7E2B4A60522C6DC5915D034318 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AC1A12E7FB760FCD374C12F15429F063 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + AC30C03D01D31FD850CD4F118749E13C /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; AC3787BF1E614D7EEDF5E1142F012247 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; + AC5B938D3541A5B6610D7044F0B2B802 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; AC5BBA5FEB96505850A90FBE111B046F /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + AC94BE00227F287FC4FAD2364F6A3605 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; AC94EA86B185F27AFFDD010481B75ED0 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; - AC97BD08333B42572B8A6C3044067098 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; ACAF6F97C93480DEF850BDAA7DE9577A /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - ACD51DA66542BC940D4A5FB04D6C0DAB /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - ACE6509B53357A0C5DADE6031CB9CCCB /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - AD1565950EC44B931A48C481E30CE33C /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; - AD2713659D9174B0454470119CFAA6D8 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; - AD2B06DCAB11F3B99CDEB99300E8B31D /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - AD3109680E3C1C5D2D4F6F6E043B9C7C /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + ACD2F0880899F34C02C6ECC889890018 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + ACE4268B41D109C09EB05548F194EF73 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + ACEA48A85C37E4144669E180093F21B5 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AD09E1D19266513C2C055F5A95ECB63D /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + AD1F642840E1CBEA926B77D869EF354D /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AD4C01981405A7597CB80DEE9DAF3C4E /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - AD56F36405180E5DBE926AB9B315D565 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; AD5C654D5F9C65609BC75BEDEB1C2EF1 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; AD6234B3E3CB445DBD2389BF9FB6E66F /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - ADBB374290ACC42CF28CA9F3155AE096 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - ADE425CCA9AB4117146451CCF94F2C89 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - ADE63674E150D51CE53B28AEFA23359C /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - ADF925B31FB0D38423440548BFB97E56 /* 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; }; - AE263565EA9A6623E8098BDDC664794C /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + ADAD173A3CB6D574EFB67D63D7DF5223 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + ADEEA9EAB573D09073DB5F5CA007CB57 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + AE12E44C8191A2E8B1B8EFE32689F728 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + AE26F08EC086EE5D016420F222DBEF1A /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; AE40F8A55B4E0868CA1A35733818234B /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; AE42AA2FA59AF812E73CBB61E72ECEA8 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; AE6009DB9E0286F743D5CFA5415F06EF /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; + AE6B1F1AD28E8D530D6CBDBA8C225943 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + AE6C42ED5E899898ADFFA0DB2CF294D2 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + AE73D22AB98677454C3E05B122591DFC /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; AE786E2067197B64CADFCEB08C452C84 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + AEBEE1806E267C24A8A7B68D7637068A /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + AECC493FF67B112DA1222D066A114C76 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + AEED18321B7E44F51D597640F8EFFC06 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + AF04557AAB96AE8BDD0E9D6983690CFC /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; AF0ED6FD0E89DAD5362477D5AFF91A2E /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; + AF2BF216C235DF5D4CC4F20A7B38DC7A /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + AF40E2CFC42FB777D2EA13DE2083E86C /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; AF56195464AFAF7C34D6F48C7CFF702E /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - AF56CD8EA9329F7F34CB313BE34EFE3C /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + AF6B07DDC90A8398F60AD691245EED73 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + AF6F3F121015DC30BDB69826ADAD9C31 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AFAAD27A524D6E425C12216C7F486100 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - AFCB43D3827AE977D3013BE069F70FCD /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - AFE2B58EC2E3690530A64E04F5FEA198 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - B0211C5BA6C49CB7568A093D135620F4 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - B03AEABDDF62B278F296D02437A837D5 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + AFE2A7E61B5BCADB377CABE262232B27 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + AFF5A9DFF659E98B68EAFAB41146E151 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + B0209ECC30CDCC83D198C2467437D727 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.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; }; B05C43896E9F95B6A4756C24B12C8DBB /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; - B0A171BA2CE9A319FDABBC541555819E /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + B07E8EB3E93886C66D234A9CC0EE80A7 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B0C40474532710B4EDDFFA5135339F53 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; + B0B3A12B91A8A500C5F71541AAAC6765 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + B0BA8E4C23DCFBE19DAB6C5BD97B5706 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; B0C730BFACECB7606E3E03C1D15A4BA2 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; + B0C94E1B0AD11B58B92A6DB7F07E5929 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; B0D7F4389F6E6CC404907A69EE8797DE /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; B101A21C2A5287012254B056CFA7D4FC /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; B1151875A2C24A78423CC58505388627 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - B12371BCF0527D2B1FE5682D40D9C1F3 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - B140EBBBDF37F8A960B5827F2CB7B09E /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + B1254E43650605D4E990EF16DDC5DEE1 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + B13741C7CBF2BA4D62AC11EFC7DD42B9 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; B1481C8FC99F5FE787F9FBBE96DD5E9F /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - B163ED9C4BB7942553E67152AD19FC89 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - B1817447D08BB116B2B09ECD993E1770 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - B1852732427A5BFF71AFCD908B912F49 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; + B16A6ED2E88D0CB778BDDDAA99B2CB91 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + B1775F1EA7BC00ADD1CDC80C4D6CC568 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; B18979D7EEF1DB0BD8B390FAE4FA6123 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; + B1A62F93CC9B20936EF9F1DC90F5FB51 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B1D2041F40CB423E76610B85373D225A /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; B1E3B9B644AA67562AB8AF3F6ADB7F0C /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - B209B9F601D63E666CAD8C90CAC0B43E /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - B227F9FBEF5FCD2024E1ED599955D36D /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - B24AA181DDDACF562563B87E0E060460 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - B253C49E623F5F56D28B06A728363F23 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - B26961AB7152E0E74BAD19380C69E867 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + B254483D4A57A067F0A2FCF47386DCBF /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + B27112808C89B6BFC1421CDF58A00489 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + B27122F337731A2A7A618F22CE4D3057 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + B27A0752AE9DCA39573FBA927B8F70D1 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; B2910F746BA799CA787EFCE48845B524 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; B298AD16DF9C7781D252AE8F6F69B0B4 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - B2A0D22A3DECC27109C0E62487A5D8E9 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; B2BDA968F3FED747EC612A14381CAFCB /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - B2FF970C74101530C9A7D48B65A4F84C /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; - B2FFA88F32071559CBD53527B42B8AF9 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - B3147B54DEFE43FB858A7D64F5171C34 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - B316EE8749A03932D358C95F9114570E /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - B31E1FEB4913F38A62E60358EB9BCE37 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - B321CCACE72FDC621355E383F7664018 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - B32D5B813D502A8FD58C0B0A8966E345 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - B35987451A3EB17624358086304CB840 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B38A62D77E3510713ED69055527540B0 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - B3961133E9C62549A0F7C125B3EEF7E6 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - B397FBC5CAEDE0C87D6F339BD03B2183 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; - B3EC19732CF8EEFDA9F2B588187D1BE2 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - B40BCE5751CB15D9915ED40E54235270 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; - B41185A17A123EA4A1F48887C13EF48D /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - B42CEE5D4856722450B5802D85420A5E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B43642FD0E1029A07935168BAA1A3FE9 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + B2C5FE9E9F17B137A1325C89084416A8 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + B2CCF890C7F636CF9828954DD4839ECF /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + B30FEF74567D1734FF4F1D188527AF7A /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + B31723DA3775B81672B99CA2A5ECF84B /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + B3790D2C749F3BEB5460510FCCBF447E /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + B3EF9DC14FC5563E4DDBD96C08432EDA /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + B42BBE16C17A2C50D57313F1880C87E5 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B43AF60286E224ACFA145A668E0211C9 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; B43DE523DEC5C5015D53A04238FFF28A /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; - B44A94BD5E5C4FA747BAE1692543611B /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - B472997F9BA4ED98BA2A1E2F65256632 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B48EC1054F17F4B28C2DA20FE8DF6D50 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + B4499EA5697FE25ADE2E5568F21AFF8B /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + B47E531AF460BFE2AFEB94FB96B0BC40 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + B4831205B2D5AB63CB8C419F16FA1A20 /* 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; }; + B48CB7F7996FE3D23C468D39879F5DEA /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; B491F35981D199A9F597FA6ADB1CDADD /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; B49950F25B4587A0F1428A0FF4D062F1 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; B4A567AE04DB13B59FF8430E58211E82 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - B4C688ACFAAB5C8C2F3F7922A721D3C3 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + B4B1B54EB3C6036147B4373EC7915E77 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; B4E59C34733EDDB63352F51EA330CB81 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - B4F2B2382DC297766F83388DBE6A9689 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - B5218BA52902DA678B5816D60E5C2B27 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - B55CACA6C91A7C67EF1D293C012BE983 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + B4F7D426EAAE7CE894F7DE82EE19BFA8 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + B529C81C0DD00D71DDA39F12B1114DE8 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + B55C64759D4234F5BCD31FC30DB51E88 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; + B560123E810CAAB8D32B0FBCE12FD9FB /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; B5609AB6E46F0A418839F14921E70AE4 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - B57D43FA12903105F3A9F573F3EE96A9 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - B59B706804D65D8A250DA137FCC9B138 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + B598FD18D2FE66054599D8AD914686DD /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; B59C6445493BACD5876AA3D8176366EB /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; + B5A86A4A16B1C1402D8BE800134AAB09 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + B5BA33E546CC64E70F3001F24607E3DC /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; B5C4CF7EEBB56E009C17E4CB2CDCD303 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - B5CC36CEC47C85A96A7807D3215B2C99 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - B5D0F0CB7563A5D8E055CE05B4F8A3A2 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + B5CE325D00481D90D6CB6429E245ADE8 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - B5F7B9DC5DBD0A04BB45CF9ABB1FE54F /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - B5FE8F6B235D306BBC8054E5BCA09CDE /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - B6173241AB27379E5EC529D7392BA90A /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - B62FD50583D50449408683A8512DD85D /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + B5E9A8FB0E5448CF4D5DB161BF7E6874 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B63ADF446513C372AA91EA2AEB0CE60A /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + B63CA93649708B66003D9976A73E11B9 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B64A61A851185348B2695008405AD490 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; + B6512EA37FC09D00212925C2A6A42AE4 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; B65D1E0F95214E2E1AC4F513C1753CC7 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; - B65DD7A796FA1FE4E5337786362D6ADF /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; B68868E9598353F7206899DB35AA264C /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - B6983AF95B39257FA2BE471713F402B1 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - B6A35BC8425A69E745CA3D09657EF2EA /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - B6B1D9D2E4B60BD628785C1C0FD559AF /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; B6DAE9177A3C3A2B93422B1382202FF6 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - B70F154A574728B8D4C1C0B9438FF4B3 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; + B6F4F7A1E522E464AD977A65D47474B1 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + B711EFEC9FD65D1F7E499E8117FFFF87 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; B72D2A1AFE5D8CB8AE76AADD8B87B42B /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - B7339489EE324E550C089F6B24D990FD /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - B7502A35843D4D02AE02AA4D6FCBEC4D /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - B751636E9EB237E78796852019202781 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - B7550E92A5666A5FC9463EE29F908187 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - B758A346013E4A3F52D56087B78F9A83 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B73CBC2C687018B3C79029359313931C /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 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; }; B7619685EB70998E0F7EC8865DDD7D94 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - B79A67A682917EF788EB5DD261DEE70B /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - B8381E2B75F16FCF9DAF41EE8E3433C8 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - B85468D6D253824D2ADD8B2A0CB3AA2C /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; - B8913B693F912E6D545EDCBEB75161E5 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + B787E74A715316D11B7654CE1F490802 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + B79D9FA11E8E7E0D0504869C62DEA932 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + B7C4400A6630481D31011975ECC11D8F /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + B7D86FE7C15703C33A3DE16CEF9FDE33 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + B7DAED777744B2FCD4740F52DB5A8D47 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + B7DE03D1640847C66490747A36E8BE66 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + B7E7E64489DADC6AEC3A10A6CA2ED535 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B7EB6554B672F31C9843AD1842DA000C /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + B7FA09B51BC675A9057DB49E34E0DEE5 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + B8613FAA45E29C8B63DCDA4AB27153A5 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + B8790185D4A434EF840ADA9054BCBD65 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + B8A43FE8F81EC75E4A2CB70BF951286A /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; + B8A4DA9E969B5E253D2C069CEE6863BC /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + B8A6464E930766407F78C75DF0174F30 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + B8AA0AF64FAF56FCFC373135F88A2480 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; B8B19D7098E1C36EB82CCA7E162D0984 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - B8B19FA68A32FFF3FCFA024A6DA603B3 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - B8F82E2568CD387AE71DA33BE9E526FA /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; - B98282A370896C9527343A2802D27930 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - B98F6E1E04F546506E19AD6C416C6AF0 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - B99B50260D3C74CC0BE95A439511508F /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - B9BB21426599D632F7A2A249838F9D75 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B9DEA0BF498BD7640F87AD72AD51B60C /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + B9ECAC6246431F48C0854FF2D09FD29A /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + B9F39C239AFE1A8E1197B94A171E0744 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; BA065BF226D7D8BE5F672D1B12FD2519 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - BA73AE15A22623217F88D04BA9686F52 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - BA828D46422211BE8175BA377FE611A2 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BA901DC34FE6CC5679CFCB66E02766D6 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; + BA3AE73EEEB3C3FFB4C471B1F5565CEC /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + BA45CE4A00BB20E5C9905D7DBE043F9F /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + BA5A619F1C49FDBF9EA3FC4972CAF6C9 /* 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; }; + BA5F45806B14AA9B70B7FC83CADBDFAC /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + BA67ABE060E187BA308C54A0ED82060A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BA6C1AFD59E48EA0E8D3DEE5C8314A44 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; BA97DE2A8EF2E1432F205EFE746D7873 /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; - BB0569876AE1A1CCE44FAD816F996875 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + BA9EE239835BEBB1498B0C10EEE54131 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + BAAAA6477211F706849A47DAFBFE31D4 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + BAACD298105D4CC21AAB8D4431E9FD87 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + BAE64465127B18474D8A4EB7CE2D9F11 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + BB112156C4AEA980476C53DE929F674D /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; BB117D47D780DC71082229222E18A9BB /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - BB1D0FEDBCF1E8FB20711DA061393254 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - BB2398BE031D52DFDEFD4D59EED50148 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; BB3994268A3900BB3EC0B6E41C8ACEEC /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - BB42A1E41CF00DC707700CBBB3D7BD80 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; BB473672F668467D6664FFB5D1B0E078 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - BB715B513540E23DAA9A4BA4892EA4C0 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - BB8244700BFF2F265FA42701A0DF2F14 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - BC28432DB28E26600A79158B20F82B6B /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + BB494AF6148A159C36F4BC6B88C2F8DF /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + BB835EB56966F391A219E0A3D4E24AD9 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + BB8E71FDFCC3B06D04E7727522B17445 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + BBAC5AB79CDF7B6C8ABA256E139C50AA /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + BC105F2C6B905F9DB86038886D5EFD53 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; BC36EC56CD213D984C4B7F24FD1B9665 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; BC41853A6450E14F865A02ADC3D019D7 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BC4ECBA43FFB94EB36805D34F4A53EF5 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - BC53B760117C17C307A13435465215B7 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - BCC1509149AD55868B0A8C7F4BA1936A /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - BCC85C917F9308976AC6ED6C364D618A /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + BC8EFA222A79BB8C702E463E4C186516 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; BCDC1F0FF0B1E2E4C213D78D24F0F9CD /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - BCDDAE6A7E41FD7CA7BB64FD8EB9AEF7 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - BCEA53C69C3685631F06C2188C4F5F73 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - BD2997D0C57A5E9834A3F6E7D5A2CDC9 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + BCF153D464BD99785B34A00EFA868A84 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + BCF373F15B65F313A14AF9973E3715A2 /* 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; }; + BD03A4720E8C57AC0FAB9BBAB8BEB17B /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; BD2D19249B0E5F20B228D7924697E712 /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; - BD2E48A06D39D267D0A6DE54100BE71A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - BD506638DCCF06CB0434974BFC80C00A /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - BD50BFF576E37A21E3895D00791C062B /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + BD3211CD9FF53D4057B638702C250219 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; BD58A224BC63CD1E1BB8C5E6A0AC8AD7 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; + BD6A7ABC10F5FA23F4E3ECE3CA6B42A4 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.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; }; BD7302148CAB101FE972B11E7D6DB858 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GULSecureCoding.h; sourceTree = ""; }; - BD7860900942ED5179416ACEE2CAC40F /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - BD7A672E7B21F7C2EB85B2FB241E9428 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - BD8C80B573BB1C2651C058B996D5A569 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - BD8DE34D2A5336EA6C638A092D29F16C /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; - BDBB11DCB79434FB7CF2C3941984DB0E /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; - BDD4EC0D01813218623B5372433F8219 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + BD8B0AE9639E7176108CECE5CA9A340C /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; BDEA5C38759AB791A74D4E71063DB293 /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; - BDFE1F387E5F04ED134A6A71124C655C /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - BE6781874D04D82A9300A2130BD1910F /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + BDF11E75FB7A03AA103FC9080F6C0EA6 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + BDF4D001E9025103893D210B0C3371B8 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + BE23F2B8AA47C7C0D83B1269BDA976CE /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; BE710B81BB8CB34A3D44E178C59ED0D3 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + BE8242280BF25BF44F38A27AD11233F4 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; BE9A40D3A7B0498886FB7048EF92990B /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - BEA3586451A5731024F262422F2A0E80 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + BEA9743250D2FCCDB6ADFCAD245245DE /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; BEAA4F63A52753F14D4888D08369618E /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - BEDD643D44C870406004853F80397131 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - BEDE3328BA1A8945076556E42D63F101 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + BEF8B04B50B641E32DF509D0625C6EE7 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; BF0E8DD8BC7FDA879032926A40B37AA3 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - BF2D6E7BE353183521A57A78A49ADA16 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - BF447A67C41DB59965B58758672AA97F /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - BF5624ED36A75321F4F24EAED7A7AF33 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - BF6358AB6D9E2F28FC1C6424EDB2840A /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - BF8953B11CC5C871E31B1265D3E25346 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + BF24566DF5E1E5D90A0E4E1DEE6C501A /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; BFA3D1106C1072A2B733533A2E770794 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - BFC24908B59EB8AA5084F7D8299EC4EA /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; - BFC4C31FA14EA5D1E5B78F7A8DC28E4D /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + BFBD6424DEE4DCF24BE84BE610F65546 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BFDC5015B07AF6726D48629172EF01E0 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - C01B4BFAB4AEDF34EF7BBCBB178D7FA7 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - C01FB8A779A3445EFD23654B3630937D /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + BFECD96F4738C82BA203AB4DEC4E3E27 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + C00F33CB462AED809B0A19BB3F9EEB14 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; C02C313B7B5553296D2F7158CBE25081 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - C0515A170A399D7811374BCD654EC21A /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + C0562A4A95BE95F30A64305FF55ED04C /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + C0565B3F72A1E8A56C02E4C9CBFDD324 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; + C0653AE93FB3AC2AB6D24D08E9683105 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + C065F6D18745B1FCDCA998C64631EDF5 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + C069CF07BD46D5DF39A5C365D865B694 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C06F60B264CEB19482C4DFD3476D64D2 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; + C072B46227B510BB9529F24AD3C6EE75 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; + C07B5E30004AFF786C8C897FD0E74CCD /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + C08EADA257AA9BE55496E9A991CEC7BB /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + C0A29B303BFAAB7E10AD4468D033EAC3 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; C0DCE0BB52AF13A0B41211860EA0CDCA /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - C13C31ECD854DA37DE88AE1C00078DA8 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - C15DBBB908005ED013E5D85E2446096A /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + C0E0F26FB8ED7992F86C07D82EAC6DAA /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + C0ECAABA573E7A5854923803B4543012 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; + C0EFBBBC05E3C3C332141A5AC62BF6CB /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + C0F87073BEC133F5FAF36A0C0FF1E27F /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + C14DB17FC0976634F69EC839ED8CEBF1 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + C151B3E6F916F70B67076631A3BD57E6 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; C17CE26530BAEFDE35C1E982341393BB /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - C1A5F8F2DA8110308C5AB74F52C95E76 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C18DF3D3F69E19D6E2A345D0DE63D473 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + C1A2D0A5191D2F6BBEE028B72C39CEE5 /* 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; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1B98CFF2D3F49F6DFED56367DEDF379 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - C1C99350D8A98C5A73C5FED1BFF1B53F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C1F00D3D631186E5C30E5082F7B76425 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - C1FCBE451CF25A5140A2A3847F531E84 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - C209D034DDFC1F6D088783677CACB505 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - C22B7A513CC428E42255314BBA5921B6 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - C24DCC43F7BDC47BC5FBA4D59DAD4650 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - C28AD31F48DE2DABE75E803A84132594 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - C293551CD5204586E6F8D5CB1DAF2BE6 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - C29F91CE67C0C0BD5E497A29A8AF5C6E /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - C29FD71196E223C3E2239356CC16DD9D /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; - C2A1342C45B8106215565D675029B241 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C2E6C2B575F24F9FA7B0F2C3AAEA8577 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + C1B194FC9EC7A62AA72AEB4028438BAC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C1F1B36C00FFB26AEB77DC4D71FE8C8E /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + C21746FD7CA8F9DF919C16A4CF86FA15 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + C223720610A971E3A68E9DCF8E90D03E /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + C2497B03EB62600C3D899A10DBD8B2FA /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + C257E7807BBF75B4B49830B41CDA0CBF /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + C25E04DB816E50DF60D015164849B0ED /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + C2A158B063C3E3B67A0088819EC778AC /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + C3146E80FFE5167B7138FEE5ADC80831 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C31C67BD65922F0BF947B14AFBA4703C /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; C31EC300C1418FF40CB367611BE8EB41 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; + C326DC9912A1507696EC77C2CC21605C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C328C8E28D895F9C4F0DE6909F21C432 /* 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; }; C33B5059A86C095F0D92336CBCB1F51B /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; - C36359EBCDDD39DCBDD63F8A091AF733 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; - C3648A8322404CC8C46A79E0F95A315A /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; - C36A46BD905DCD5C55106653B5BB691C /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - C388D8B8AF0927DDBF721CD4F0BAC23B /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - C3893067B4ECFFA8C4C9CC8A8D5966EE /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; + C349C1D79D706EBAC655334890D9CD5E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C371044B89982798C6F26ACB9B59D7CF /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + C4074D119A25A498EDD31EECB49B6D90 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; C422929093AA864A077D3201B48F2AD0 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; + C434FDCD3B03FA890F45EF6659E2831F /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + C44773251531A45FC64DFA4C79762546 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; C4479616B9A8800084821451D7E8362A /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - C452BF0E9DD1DEB06C0598D01E65657B /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + C44F6349165D05C3716A69E6A21F1874 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; C4539C0D5139FA433EA40799F1AC83A5 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - C45E958F1FD041D1C66D329032EC24E0 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; C460DA70768C93ED1BE2D6D8F8EB4963 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - C48A8F36129D6901E54E9A08ED6D9BC0 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - C49D225F6CF89085189D3E1775CD8333 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + C48544E8F498EEAB08419F5930C80608 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + C499F171AA5C6CE2B613EF6A9CFEE13C /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + C4A578F4C1550DF241581CCA328A7738 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; + C4FD8002F3BF22FF64978179AE572EE8 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; C4FFE67DC13EEC2EBC31ADD1DEBB2A2A /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - C5360E5CE48DB05E73CBCFEE94B489CC /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; - C540F34AA6E51D4B063AADF09A4D7314 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C54D8CFA029D874C176B40062B3D89CA /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - C57ADAB61AC6F95EDE1531DCF48B51A0 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - C59A44A3836E48A3D9E63963E2681D6D /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - C5CA46DC3BAC8E34D065E5D96307C663 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - C637E0FACF0DC21188B21A19BE3893CD /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - C644DF549BD49E875B7C6EAADFC9A82A /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + C54A80740E65C8D4D7651F3366236354 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C552E45409E4551E99829B400674D835 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + C573A9A7F37E14C79FE83701D61945FE /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + C57E8E463DD8F570C213A0D241DD8440 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + C5C7F21ADAFE55C6ED0770ADDEADDE82 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; + C612DE22D689950A1B3FE93EF732FCAC /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + C61B8BE8188041C07C6E0B4B48E0E9F6 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + C6400DBDF40FAD6814982111D2EC1D6B /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; C65235A5B4462861F568033127D5801F /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; C6624A128D06B1B7C27D2FBFA0584A44 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; + C664861DC8FF3CDA2F1CFCD17592A1F6 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; C67A04FD4DB80B332055C981539D61A1 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - C69C04ADD9CF573C52C251C1A991FF4D /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C67C6007DB25FCE8F7CF321593645822 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + C6949F425F809E697B92D53324097255 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; C6A63FCD6FAFEE69391E5C3FC275512F /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - C6A939BA0F9D37FB4EF4843C9BDD1A17 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C6BAE88016ED84819ECC59A8E1E84682 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; C6C1424961A6648F4F404DB4D5B51284 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - C6CB42DCB25CE96E7B610081A0C9032A /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; - C6CCFD413FEFB4F283862EE812234243 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; - C70418FD985ABB340521F3E3B73FD6B9 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - C71A357C4C3990C9352DAA14BD0A62E1 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + C6DB3BBC2567559A6D100058B4561C0B /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + C6F7376FF609E9CFB2F26665E0C0C71B /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; C74C60148A4948BAD446E2F2B11586EB /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - C7515F3955A7A7A6F1E0A8089381F968 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - C759BECA96DBE8903C63C266DAEE490D /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; C75A86B18664AF17C832083530EBC07C /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; C75F6B7CCC80F365375AE3D64978BE9F /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C78CF85D200C3733B1D747C9702711F1 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - C7B64314C69A8832898BAE08194AC9B9 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - C7C0DDAD43DCB0C5B0E28964FBD037BE /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + C7D13736CB8D6AE556168A4A012A2773 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + C7E080C5EA8A25D4DF742479B33DBFAB /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + C7E2F7DBB70EDF5186DBD518669E8A13 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + C7E62426A79E8FEDA73850FDE790D0E6 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + C7EAD7F2120265B3CAD556B7E4012470 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C7EFB60008DF9B71E0BF22DE8B9F1110 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; - C7FD02188CDAF5EB23CBB76EED51035B /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; - C80725470BFDE1260F794A5179DD62A2 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; - C8648AE914FA3B915EDC121CDE3F064B /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - C89485CBD68603701DFD1CF78BD93BCC /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - C8A1AD0ABD4B51F526A2B68A27A82E6E /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + C80098DFF4FC0A0A31DB57B8640F3EAF /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + C845321768ECE81C715B08799A37C1B9 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + C84DE06D995FB6615016758C04047D73 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; C8AAC00DA3B23BFCDC15277B87A9557B /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - C8CED9B8885A6D580D6E754E1FE18F32 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C8FA897C0F8EC6BD805E0F68B392A931 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - C8FECFA964F448691E08DBF24527F38B /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + C8C397D3AB31FF2B0214E95BEE43F7F9 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; + C8F60B77B8ECB9832C79FC49536E9187 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + C919F650D58DEBBC04422595612CBB1D /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + C924DAC40ABF80AFF8DDACA3783BF610 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + C925D8B168DF55B2D4E735C9E296A00F /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; C9483040D5F6D422F682396B87AF87D3 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - C958BEB0EE0CA981708C7227698F7D9B /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - C95C4506AB6B5CFC28D1AEDBD48CAF91 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; - C972750A84A0F589238CF3C40CA01ACC /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + C96443A48B38CD90869692B1D9B3B0F5 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + C96F181EF98997FE21D592A74A67F412 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; C98669397B6EB380F73981625F007E41 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; C99B6ED7E39443CBF47A64AE5D60CD8E /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; + C9A176727CA7B50D4B52C5E33F84CC32 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; C9C21A13DD4599456884602B0D4C6757 /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; - C9D0647297B92E80FC92B2CA069FAB5F /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - C9E1D8E89A6E01CD8EDDC9390128E289 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; - C9E77FEC3EF67F96CC4AC77AB9D73516 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - C9EE23420BFAC48413A4637E84819DC1 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - C9EEDC50DC8B5E885F22D39FE6DAFD6D /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C9FC4864EBFE117618D7662903228B34 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + CA21A655E870EF2FE2ACEB23F2E3989B /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; CA21C40AB9E6792C5EB386BCA0C5CF9D /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - CA6146538D9EC08C954D0E457725B2A9 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; - CA8EC789129B8AA5C2C6846EF32E95AF /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - CA9AFC587C2D554D3295F5586D669DF8 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - CAA81A8AB89E8C8D069C8BDE6728CC72 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + CA4F8830185513E662869F3152024125 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + CA6CE05E2A41411E77ECBEE029D33795 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + CAA1C30384FE9C5B7B56179B768675B9 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; CAB97B058E412E0CFCBF16E6AD07DCA2 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - CAC8F0CFB05A73A670C9E3F2D08A0640 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - CB00B9C1487A989AEB34D4E8BA7371F0 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + CAC68C9044E051BF80290FF7367230D0 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; + CAC8F9C86C3361A687DE72FFA06F22FB /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; CB0E66A3C33EB8EEC21616C116ABB4A4 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - CBBB145D86C58AAA825852EC498004DD /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; - CBC5411ECAAD3F957C8318B46CDAFFB8 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - CBC8978F7A2DBF3D6A595470001EB888 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + CB4CB974D84B00371C7D95D20396DD1C /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + CB8F8201AA65DC1316A2F4FCA3B5CA32 /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; + CB92E887D5F8CDB36C7CAA9B1D752F2E /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + CBB5C603ADE91187AB6084A7CEC3E06F /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + CBB6A58979F3751710060E41AE46858F /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + CBB9C64AB3245BA3940CC46E4D05DE1B /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; CBD554C9D80E29A82E56D1B7897C0E38 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; + CBF4B442297F465BB78756CC5517CDCA /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + CC039D26CC07B6E394E69C8209323C0B /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + CC092D9709492EACCC99AE2AC4584F53 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CC36153E97819CC766DFEB874BBF6500 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; - CC3CAF0F65B9E9B29625B2A8D62E6FB9 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + CC3FC9700712FBD1AA567F7AC6F218AF /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + CC47743ACD98AF0A478D0396FC3DC1F1 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CC558CC663CA045F998F5CA528ADEDB7 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - CCABB48D087659B9F3108DC2B38CC33D /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - CCD2A49D0B1F2C6DFB39EC4B6DB2F80B /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - CCDB866E2441C8D4C615934AE96E2B37 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + CCC79BE316E0AFC1330F62AC30ABC9A7 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; CCE13B65AEE9DB27E1676D172D142597 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; CCE294EC7F18FA41E37CBBE707B45FEA /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - CD14C4916843DE205E1E912FA7B8E281 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - CD38BB8B156132FBFC0DEDF194BCF83E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CD3BFC7884A73E8842C521A4FC73D14C /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - CD77225F3389FD634A05B840D1B19DF3 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; - CD96D51596543F25D4526773885A67DF /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CCF1C1EB8AA85D45F5E6286CD870DC5D /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + CD548AE735110B7E4E65FEFF1BA2BDF3 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + CD7E10B2B60D4B2E57F720BCB9453FB9 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + CD9E37BFCAA912825F204AA2FDE2431C /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + CDA8213009E70849199210857BCA10EB /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; CDAD3963A0F8EA40EAE6B916D5AA0A1F /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - CDBD1952FFD5475618E10B078F85101C /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; - CE263CBE0E4D45E11B34822EEB6F179A /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + CDB7E4A6B40CC3F7949482EBF4817BA0 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + CE3E5D846DF4977383B523054BEEA239 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; CE50447D6089FD034C451BE7675B6D7A /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - CE5B2A1B6F1EFD38BF8C4D5052784952 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; CE71CD3D3C773A121030FB81AB751D1A /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; - CE73BF668DDC17C0757CADB4332DB252 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - CEB6F60F08AC675430616A8B7C20CF96 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - CEEA07457F9F80108524E600457D4058 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + CE9E07113CDAACEFCB9A57CA00A06E8E /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; CF05DD10D852093D157806E5E953BD23 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - CF1DA6CA493E93D7AFA97F5096626F49 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; - CF229B1B9CD2988E2210AC5E3867FE44 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - CF4757C5B91E322EFA671FFD409EA3DA /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - CF616BF6284E7AACECDBB37FA2512B94 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - CF81CBD085AB92693642D6E6BC5FD9EE /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + CF4A61907180A333D63A2EE9CB6BE3F2 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + CF72BD4423453F95A443F02F30161D3D /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; + CF7B9397D510EEF821D6E8FEB6FCCDD9 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; CF993D633A32BC1ADCF4B996EA47AB13 /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; - CFB77E55364F07756874798EC9AC40C5 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + CF9DCA216CCC76332478CD7169F5BBD5 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + CFA837504AF8794986CD44505DF97CDF /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; D00145960C57E93C0FE7769437FEFA04 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - D02ED42A4438E940D0E92D0C69AAD2F9 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - D072AAF75155CF22E0B841DC87AA1FCF /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + D049295C0B025177328BD15AD63BBC01 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + D06FB799B0659053F734A832DBEDBF15 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + D0B2C8C639E7ECC87392A3A0BDF586A6 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + D0BCCB9EEF32E8B1D1E8EB6DACF48525 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + D0C942A2F3F9E0A46A739B2017654295 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + D0EDA54D493CBA42BD3AE434726EC00B /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + D0FDB85B13958EE918F65B67360C2A74 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; D0FE094866BD845597950E5E71ABA095 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - D10BE9B6DF433AD07B0DDF606D7F2E3F /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - D11A35222301EF61F70E1A10283069EB /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - D135C5009F92091AE2163A9A2E2BE67A /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D1437B2B40FAF0A9E366B04E4E38E374 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; - D1652AA28A4E5BB9606FA0F0223880BA /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - D1A4AD2BE6B55C9529F2FC6474C850EA /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - D1ADC607BB15353F965858ABCFB3CC56 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; - D1C21A1963B18619080396F1952EEFF9 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - D1D8016FFF808566998E371FEB3F3DE0 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + D11BFC452B2981FF0C8D5009CFCA21E1 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + D167E39F13F7681F163EC0B8E5924823 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D1799D95F22B054CE23AC4A4F4A36EF0 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + D1A0D5D7EC9E2BBCD81F172570CC5836 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + D1C8A6A31D8D94AF5F8B8C7651E1663D /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + D20C340B88715C7DAB6F46620313AA76 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; D21939B5F49D3C368E0AE91BCDCB1CF4 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - D21E43780BF3998101CB499FE552EEC7 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; D2339AD0FFA27A5E25CA38B3E89E724E /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; - D237A584B9F9D09B744C5B9A291ED87F /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; D2435B61807A015F7C86DCAB5E5A19AC /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - D27001C0EE49A2C52AB055D6EE0F0F01 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - D27F6811C1E80C2F86BCD041DE4269D2 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - D28C3C37EFCF29A4649B7A20E82CBEDC /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; - D2915E98F4D3522C540CEB1DAEB4968C /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - D29CB606B28145D0F34A30E8E92C3AE6 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - D29D20BFE80E1488AD42B308B8135E12 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - D2EB5842AB2F72FCE3166D064FA10F10 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; - D322A8477E1753B864B19AED1740C45E /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + D2B6362ED0A64743024DD69DFCD53F5D /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + D2C2179BCA4218E3D55F487626D098E8 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + D2F1EF22CDE9B012FC37464BEC211A3F /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + D2F4F77C5C57223D41097008F875071B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D30CFBB9075AD715CF0814F3C42F20D7 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + D33956969D29BEE46BB8FADABFD48697 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + D3452C49C169EC34D31E329A2B255A99 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; D34AAFE9C37C1A4DC2FFAF19DFF69CDC /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; - D35CE8C23A2ACF2D9D8D4E8E0C72988D /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + D353D694AB0EA7E09F8EBB7C3EACFFF2 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + D35F219D6B1F62CB48666E80FE58D9BF /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; D3601FC2175A7805C42496F6D3F25E1D /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; - D3826D8A27E574463157C55E58AE94AE /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + D38DC5C9850947A9A6ADF2CF404A02EC /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; D3ABC6469D72A242803A91AF2DA0B153 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - D3B3453CE4DE764804926152E606A99A /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; - D419A92B054E897166C3CEFC94079EF0 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - D428A5F89B83BAC3FD6FC10F08524F4F /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + D3CCC19F7FA3D7E88989C374AE66EAE9 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + D3E57F71321C9A7E1254B63DB74F9911 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; D4389EC289745BCEF60BEA7CDAC784D2 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; + D43BDAE8BA9BC348BDB600B49375A1FA /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D43DE3DC7792E0B353371829F68C0FFD /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - D46C8720FF023E767A3FD73608E6AAFC /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - D48621AC50DC4D30040BB50CD2442F17 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; - D499DB14204DC262235EAD034FA63FC1 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; - D4A9777CADEB6A3788DB137532CF5E2C /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; - D4ADE3AF72632200C53653677BCCBAC0 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - D4C5DCBD8CFEB2613D8E43206E263F1B /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; - D4ECAB3FBF1E5C23384E87E852D246E1 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - D514EDE68ECD59E03F9C6FB34661F168 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; + D447C85E988F3ED0F8F57FF110E56190 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; D525C8CC60B15909F0B82D63E338E963 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; D53A23815D628A7C3EFFC59488C8EA44 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; D53CE5F9F1B3C1396FB3444A3DC670B0 /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - D561D4B0BB968F9DDA35A4DE7D69C477 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; - D572767A593EDD6E23A9336C6566817A /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + D551134E4A8546C869960AE523AD6CF3 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + D5586AB0B37084705E75D2C95A97E3C9 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + D59645170D897EA74762E1FCEA7753D2 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; D5B3BDB0DF8A0EE45046BCB479E4B62C /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORDataFuture.h; sourceTree = ""; }; + D5C26607E9E8ABBED4A67805CC67CA70 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D5CC0DC1CF5E80A3E4FAD91A65678C96 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - D5E11F7AC15E70A2FAE36618DDDD535C /* 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; }; - D629257FE572D69ADAC74927CF7D729B /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; - D63308F085833F5B80CFD4C19FC1B4DA /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + D6217C740A21F0E53B36EEB9DA8F8008 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; D63B972B95C4ACEAA36C351BF1B2CDDD /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - D65ED7023ED69D130708EF8FEC3925FA /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + D65D3EB929E2830216638567C495A3C3 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; D66719B7E0573E532519532723F67812 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - D68D7349299EDC71DB05EB4EB4E8C029 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - D69E6F757132D77434CCCF83F16CEB51 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; - D6CCC3839226668399756AA19C5F9EB5 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + D67FA50BCB44E3E2A056DB73ECD959E2 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + D69701D88CD49E6A2117BF0A85D5CAD1 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + D6D1F6AD95564001DBFAADB6EAB26B7F /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + D6E0C7A086DBBA4CB8803CF531C89EEF /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; D701D1816B81717849B176050ED98E4F /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; + D7069CBFBBA93224DD546702CA3B3972 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + D74359D60258E32C8623C010E77D1BF3 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; D74BB20E1BC0B778FF8CFFA36C0840CF /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; D7593711A2E6EAD105E206B03D6E3616 /* UIColor+HexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+HexString.m"; path = "SDWebImage/Private/UIColor+HexString.m"; sourceTree = ""; }; + D75BCFDCE67B8A6966E9BF7495B90390 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; D76568A132A5A42C9799FAF84FB8BD09 /* GDTCORStorage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorage_Private.h; sourceTree = ""; }; + D7824E185C55F045D350B0C556D6C6F8 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D78FEB55F9E2565E62801C68DC429BCE /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - D79973939CE8EC7D031363E1E2FC21FD /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; D79E6FEE7691DA5E934AADB1851C0232 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; - D79E9727C2F33141B180DBDF92EB47F3 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; - D7A95B257013795111CFA1F1AB3E1273 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - D7C7649AFE69309F676CF78B232B1D1A /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - D7D51A791FED6E76B08D4DF61681B7E7 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - D814C2EE03734CB4327B241BBB99174D /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + D7AE37CC8ABEF1469F1B8301C5FB9894 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + D7DFCB6E297BBC506B33C46A4BC770E9 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + D7FBC9990D3E7CDAB68241248099C982 /* 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; }; + D807D4A13E5300E114B3CBDB8163FE14 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + D8172C4E7C03C8B5A091A935064E8E27 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; D8183FDF6CBBC2458D910575E0B9AE45 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - D85FDDE6F7D1E0584936A5EC114653D0 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; - D879E3AFB811F795F505E30DA3F55296 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - D87D4BF4E569C615C848E73CD7326793 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; - D8806E6C372CF900927E6CE9A7101DAB /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; - D88F548D375DB8B478A3622B94B83072 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - D89E2A740EBF31F6D63E4CD54C4BD4BB /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + D828143E852FCA1323B338F26ACD76E9 /* 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; }; + D8445F18BAA6F40088E088474DE8BD78 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + D8469837AD5A35B13B6080B1C82DCA9E /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + D8577D2B975A97ADB6C3715CEF5A7459 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + D861B08940AC3607865C3A60E48580AC /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; D8ABBD704A725E7E0D996145CBF6F03A /* 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 = ""; }; - D8AE2352033C6004C6B82D705161327F /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; - D8B3C196C1D0A315CE2BA6A45CECAB7F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D8C8CA00256CE08EE900DAEACD7EE94A /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + D8D71B2A92B7BD8FF02CF68A82BC0550 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; D8DE3BC13CAB60BD0F12942A7720BC23 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - D8F9BA04E20185B2AE77BF40BA62A7E8 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - D90DB9772E9FBE6044ED0537B3D578FA /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; D91483DC2ACFBE14D934FB42131A0745 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; D93D3654709D1331D79514EC1B960450 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - D965544614F05819D78EF98836617D24 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - D96E9F96EC89E9F9284338352C43C102 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + D95520735CA05E7C217DFF66FC5149E8 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + D96FF5F7DCDD0FE875B16F77DF339559 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + D98EFFF9D41A28945FBA50F000DC3553 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + D99204AD6F09D79FCE4199DAD7A7CDA9 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; D996FB83753842B15AAE13001FED927E /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; + D9B5BA4ABC09603A9AD22A2883EAD20A /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + D9B862F9313F77A078F0063C59C4F33E /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; D9C3D3CC551D9381EB6D1805585CF24D /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; + D9DF7DF103E2C8E69A6EEB006F1E1B0C /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - DA37F07249FFF2BB589D466D199150AB /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - DA5AB0196EA5FF764173A516F590D921 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - DA744873B7F2AC32520D0FD4D5055112 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - DA9D022F2DDEB875D1ED5D8A5472F02A /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DA0A8202EC997D35289AC5368B166D7B /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + DA7EC402A8ABE0976D9FBF93D17D1774 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + DAD12019D6D4F6503DAFC2ED496997F8 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; DAD1EC07061CD01D8DB00C1DF9CBA5B9 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - DB374EFA51479560B62F10435C12AD7C /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + DAEC71405BEDC19D15D9B2C4B0EF7A25 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; DB4059D2FB364A28E6585D247CD47FBA /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - DB5FE450AAB53AADE884BA269A897227 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; - DC038EAD706B8803534A159BF2D184F0 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - DC23F2A6776968AC25F6B3A06A87CADB /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - DC37764363A76FC196073D8917B4584C /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + DB5118406AC1ABF777B7F030A5382C37 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + DB5454C1FAFF496B3B2506A5CCFD9E69 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + DB67B66D070132A40C0DE8F074C38DA8 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + DB781FD5558E2764E0E59705E19C075F /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + DB85AB605D045FAEFF9B0A37979882A1 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + DB93DC9F12B3F62AEBC135DB6F0CAF30 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + DBAA23452718DB4A48F0E2AB76AF770E /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + DBEAF4DE71DC0A63CFB9CB0BCCC88284 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + DC1A06E88A8905EB529EC7DEEA2AC259 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + DC29ADBFAEABEA5A45B2281F99EDC5D6 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + DC369B712E904236327530F01310C3A0 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; DC3FBA3E5B2AE0036A215BD1C8E37D31 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - DC7329CA9428EC0F785B6A190B581E9E /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - DC7A46600FBDC9BC873D1E50C0822400 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + DC5799B144077539CE41F191B9AFBC47 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DC834FE770DBAFD4CAD544AB5F592ED4 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; - DC92164D6BFC49E2D478426F521D30FE /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + DC8504087EFA316D2D61345745FCCBA9 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DCA1074616EEF1BC09293FE2105C9CFC /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - DCABCC9C8001FA20E4E1830A4BE93DA2 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + DCA1CFD77AFBC867CD247A6781E6F939 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; DCADAF076921DEC4D671151F9E0C9584 /* 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 = ""; }; DCB16C1702DEA720BC36211E43A6596E /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; DCB23ABFC8B49A5E319D843667A25D15 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - DCC990FEA4CF0D91B5AA704511B9A366 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - DCFDBA48F4D45DD625444D5E3836E3EE /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + DCFDAB5A5BF812BE157F227A44EFBD95 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; DD2806395B36E55041B47CB2F212D053 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - DD5ECC7C878B88D0C61273EA8B878245 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + DD40E1C6D697D823E20C70F0A188C3F6 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + DD47CA8D146027D7F34C7E8E805EEA44 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + DD6E449B1111312DD65DBA1BC6FFE345 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; DD709B78F7B831FDC9366D13746333E0 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - DD7B1DDC7B038544A875E6A822F28386 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - DDC6F67C2DD59A6AD926936B059FB771 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; - DDDC95FFE0C6C7B2851FD524684F54B0 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - DE11E99498B7A9823D6DA87A938589A6 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - DE641A302A8646320DAC48CE6E849B7F /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; - DE6B237DE91DF63A64ABC835E1448A62 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; - DE76A96D81633774F56F33EE3C612B6A /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DE9658FF8987FF4A567A0FC9DC49582D /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - DED3C306036B86D6BAD40A6FC8471859 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; + DDB382DFBCB05EB7B387EED3D0867813 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + DE36D21D7C54853321D69B1C91247337 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + DE77279B6D322D56F97E3232C005326C /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + DEBACB8ECB0778B88824215A933E95CD /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + DEBDA3126B2570F185289B7CCA224035 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; DED9FC57D70D86176F806A8A2529655A /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - DF132347C29A84EF484351CF932FA858 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; - DF27FB27F03D0836198D91EAAB34E562 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - DF320A32A89DFDD836242CF9ACDE905C /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - DF33E3CF7D684DB98F89BAEB8F8E2E65 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - DF625B9FFD7CA277275930691C3AB5F2 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - DF6D5E0AF58DEBC7EFDA3E4CF9D871E5 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - DF85B830324DFEABADD1EBC6B2D3CAED /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DF8C4FB84FC5CC63827683833BF23659 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; - DF92D606E8726EC631EAC028DA7D1669 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + DEE3E1E7ED88DBFB409E2ECE39F0AB43 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + DEE453A55C088BE7915FB3FA91CECD2B /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + DEEAF57B8CE16D5F8C9C22A94E24195A /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + DF106BBF9FE17648E03694BDC777C2B2 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + DF1150C51770B7B91ECEAB225AD93EA5 /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; + DF8D409E21046D82CC1AFDBFBC03C909 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + DFB6FFCFF894659F5B8F9D1D3ABDF8E4 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; DFC6BCB3B33D02DBB888628D1E52A351 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - DFDC939DDDE5B2F633F78E7D72C17D92 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; - E013C3BD3D8B32F02469CCBECB38B281 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + DFD824F7CE10BB3B9A00CD916F5EF67E /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + DFF7DE5F0E6D5918C40DE557A7FAF89E /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + E008D2B5EB7D0C472E16FF196068F7A6 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + E04807E2A31F037B1625135145083279 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; E05491038895B9B893771A35A083EAA8 /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; E06128CB543E05DF7D4F8B8A3EF8EEF2 /* GDTCORStoredEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStoredEvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStoredEvent.h; sourceTree = ""; }; - E08543FDC39180F83C50169CA50E00A0 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - E0B1D28C01B0D9FF019BD11F48423BE1 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - E0B547458839A360641662CF36531F72 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - E0BC4658ED68247F4D86F89624EC6C18 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - E0CFCA19099474C4FB8877DE89AE37CF /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + E0DB5FF9F320278347715C51C5FDF477 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; E0E17F86AEE63B4E96B07B6417885A38 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; E10C2950FAF761DCACFC19CB9D52CF9C /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; - E12037BC069B82359BD9130847A65C00 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + E121E2788F805BDEF9518EF472B5EAD1 /* 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; }; + E143971B2FAD9D211A5615404D3C641B /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; E146C49FCEE4ED98740C53D8AF16B54A /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; E154067690FE650334C7C3D34DA323A1 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - E17056756AD03B5D1A3A24AE1C8217A1 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; - E1C1CAC2DFEA679A049CF92D108DD7A1 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - E1E29DDBDC1101D3DCDB77C88EA79F65 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + E1CC78D53CE35E1FC139ECEFE7F09D85 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + E1E2F93F57399CDEC80A211488DE322F /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + E1E5E0E7BB58C2CF3EC6CBFFF82C3498 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; E1E98A139B0A1E84E12ACFECE2DCC7BC /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - E2170B422AE233CA0E843E1C6F8C5AF6 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - E222CCBAE4B8B73A1E7FD6E8F2E67F1F /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; - E22F88CAA43045F32AF78CAF32BD7AF4 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + E20252175BAA5AB658B3988B28E463BE /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + E21F989188C48785155D2E89A077C86C /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + E222B7D35352942FDEB61713DCBC4252 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; E24A9D8245F7C2A76A8F628651409D86 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - E263FF05F0C40822398FCD1BA2930346 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + E2861783182DF21B587C19F09A101D92 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; + E2A11C44D39427C26147B8402A7BB452 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2DC9D466362320D9D82C2ABE0FFAA0D /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + E2C1D719BC629A43A1312179928D5E0B /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; E2E3C8E6D99317CEB9799CEDC4EF10E0 /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; + E2EE66875AAFC03B4C180E7169628571 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; E2FDE91FD70FFC43E88F683DC84004E6 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - E3085ABFDFB80C782979628AFA5B70C3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E37FA286A65A13B6EACE4F2949703FCF /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - E389BD72A1C7A96A96993A4A39B7D055 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; - E3AC30C12EC69BAE7FEB7BEBF749393F /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; - E3B9AC74E5B90C3FC6DDCFF3A42F0DE5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E3D1E7716CC44DDA6ECFCA7F38BAFD28 /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; - E3D450362CFE85BDCA37A5CBBA9C6911 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - E3DCC62AAF84C99768664D5FCB9581FC /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; - E3E6A1475FA0286C2069129BE72401FE /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - E41F52520D62AC019BAB1E9EEB0AD7E9 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + E330229D72950C7ECF82AEC858490128 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + E35E8759D6F54540CDE1ABDA1CF98535 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + E3B5DB235E15B5E7DBCF624DA846158F /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + E3E2DAFD22AECBC4E3B4B2709730315F /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + E40595242F74B2A1A8BB3DD7F0AA4E7B /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + E4273CAEA810F3D1D6483CD510A30A05 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; E427482FF0816F936F72DF5FD9CAB3BC /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E4E7F067F5AF42C063095057CB7F3A45 /* 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; }; + E4BD7CF6AE53A96760FA4A0E89B0E935 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; E4FD42C315AF54A28629FCA573EB25FA /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; E50163A58ADB7FB1A0B8C52679BD982C /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; E503EE768F7FB7BA45AF2BCAD9C1BFED /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; + E52AD0C56ED0B19FE853E488210268E7 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E57C813DDCCB3010D420482801376EB7 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + E589123CD9B1FE681766532E40644323 /* 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; }; + E590CE097E6BEB3846526CE5383091F6 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + E59495A31CA334CC38024FCD0ED489EA /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; E5BFD2113CD9F64E3ED9DA735B433731 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - E5D773D06094FC95830D197D526EAF1C /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - E5F4B99ABD683869879D48CC022775B4 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - E606ACB92B5C3B7E5141D49B128773C1 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; - E6164A6A95D6B2C5F5FB66AE8BF72F00 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E6670F2D0C21AAC77816339E4F162C86 /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; - E69F4D5FA2EEA2CCC03B5241F06B998F /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + E5DBFCFF8181CC81F2203B4C9A28A123 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + E64BBCFE0D1CD439F335B808B6E51D31 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + E6545E722707998F0CE00ED353637D3F /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + E6809FB5792DAEB271400287F2D27AAC /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6B0CEC82097EE31763F947D714730E0 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E6B5D917375CC87A748B9721340CBA58 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + E6CDBB8578B68E4A1806982883F0C6B0 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; E6D457DA870054C0D84E3800FDA55894 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - E6D4F0910997F8C5C7D9B5773979738D /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; - E6FEC01938E6E2881B3F79CA8423559A /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + E6E1BDE69C958750999B418590D97BA8 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + E70C5431BA2C7BA47F7F1A4C065E8065 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; E71363AF216BF6A9FDEDA89C8D14B6A2 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; E728B448CD6DE78410A3FA3D7DFFAF58 /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; E73C501A0EB747305BB4AAD7978E3E0E /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - E76502808A9CBAD48934D12CB8CA9BCD /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + E7493201B3715A9F4B6B7F80ECB1CE7B /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + E7608A4EC7BA9B296B04FA88C8DBBFAA /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + E763F629910487B9E9170C3ED4F841B0 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; E76F1E8AD66134342407C6C7C3FD17A8 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - E78BB7DD764E162B6A016C59A4F38920 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - E78C0DFF4376A743833BE1BE5257A4FD /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + E7B69D2EA711D9DE261BD4F8DE114AAE /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; E7DE8C91E01DA1613F5EC7CD66F28061 /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; + E7EC923E376F0FDA4523E2FB34689FCC /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; E818294C08CF5776BB1D71226C8C1B0A /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; E82A30AEF74EE71AF0B62661B8B26951 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + E83E226A670415A6EAD1BF95CAD6515D /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; E843DB2D9152A6891CEC690C8919CC3A /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; - E847FBA812E94CC9BCCD9EE428CC1966 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; - E866CECE6F9A3676B266DA1070DF8A37 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - E879EE624715C69DD9F0F4E2CE434B74 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - E88C45E4936F0D384CC06AC38B3C065C /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - E8AEA7B9442431BEAC08800C2EBDF01E /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - E8BD3D4427BD842D570DD8DC37853DEA /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - E8CD09B1F03524B84AE162118F5DD20C /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; - E9744C64B98B75CFF9A97A36FC9187F1 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; + E87BF0629517862C8C75F5911E51CD9A /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + E89F22711BE751D2479326A62844034B /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + E8C4DC67B729A6825D36EF3F07257B10 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; + E8EF18128806B5096CE475E08D7DEC9C /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + E8F3BC229BD0959965AF64757134ABD3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E90142F9AF1BCFB7A269255BB8D48330 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + E905C3C3BF7FFD7E361867A219E6CD68 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + E9200C6B2ADABAF0BB7CA63ABBEC4412 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + E93257CABCD50B220319708EBBCA16B5 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + E93796ED010DBD1A73E529E0DD9FE38D /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; + E94612411B009341CB5E270FF2072BEF /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + E951B711ABC5535548EA9722528C7042 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + E955D8C9C52D4F1AFCE52ACB8AB52EDF /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + E95A3CE98CB4A9EB2A7472A669722D3A /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + E9692395205DC2821CA5F280F28987F7 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; E97C6B62E60E3076A98791068DE7D7C1 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - E99246ECA2FF3A52EF5E264B6D7ABC84 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; E9FEBF5B13B80FBCD53AF5D844C38822 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - EA1E9A14E80735BFE4C7521D136DC165 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + EA0485E6A1E80FEBE4DE56BCB1DA9DF1 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + EA075078096768144D55BF2486D11C66 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + EA1A9983F5C76F1C89627688BE1BEEC1 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + EA28B39EED69E80E874C348017853C78 /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + EA35A0810016924A46CEFF5B1E00807D /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; EA3786891CC282557AB2EF14638CDE2D /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; EA3905F7E6892A7956DD8078E9E87116 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - EA39A846885AEDDA4978D47BBBC488C4 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + EA7DA10346399ECC0A8D2F74D4EABA83 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; EAB62C963029E8092CA65348E89AD1C6 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - EAC3D0BCF30C8AE869CCC160C96A4108 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - EAC91A933451B8E0BD44C846366D89C1 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - EACBACF9153DD3E5D782F861B1761ED0 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - EADCFA69EBD77D5207AA83AC8FD11C6F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - EB13EAAC29F39342E66D644585186CD7 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + EB1676151C97B015033F319C3C82EDD2 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + EB1CF25664AAA7FF8B5FF7770D436D7D /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + EB2991E1CE83341DB2EC249B05442071 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; EB3D678D3F78C857A36FCEE91C3A72E5 /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; + EB4237BA3DA5584A32961F36AA1B7F66 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; EB58C1A1A2B45B20B44F908DC5FFD1D5 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - EB63F685143CFE850F245E806125F4AE /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + EB6CFCF629C08F645FA877CDF1030306 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + EB6D86055425CB1521259B1763499D0B /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; EB70BE00723008AAD156EB27A07FE171 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; - EB72252CAC0049312C0A632E2F8F719B /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; - EB7D50EFBEB2E508AF716F3712D90713 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - EB94F93D00DB0189F3ED90E4609092F9 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - EBB697DB9411C56639A4EEA0CD6D9933 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - EBEDD9F09018A3CB9E1B5918F5653262 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - EC00180B78B1F10FA9BAA45677C192B6 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - EC174511251D6DA7612CA7306DB50846 /* 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; }; - EC1E6F6BD46D3034BC7755AEA1502E5F /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - EC3C0204BB6B6C009CA6714C0402304B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - ECC314D558F5DF672D18C790519C8D94 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + EC2FB715FA49FFF3B3138A1BF8247C2A /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + EC302DA9C6CDD370EB704F334E10A984 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + EC8172F32910DB51E25413A57C72D924 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + EC9A8DC2A217B85BB9D423A9AF7F4B4E /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + EC9C75C8C697AAF606A60399EE240358 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; + ECB108C5BC250A629873A35654223974 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + ECCF4970025374FDDB118B83F2C603C4 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + ECED4E94D8743FE117E124B2C3F4B6DA /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; ECF6CDD59A57C47D27B4C64E3C83F6EB /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; ECFF7646CDA1C9BC7B92C2364D35EB4F /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ED2B0EF803D68091C2A97BE33361B636 /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; - ED51C0ACBD2A3F1EE152AAFEDCDCE3AD /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + ED1EA912E8DC15EEC8D3CCF175A144C4 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + ED3481D84A5C7BF97684500C45226CFE /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; ED5D4ABF81DB0F6F91E1A25F93EE1DEB /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - ED6418C05DC7F19AB106263F7C32FCC6 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; - EDA960B488DC6DD0DC8848BF6E76941F /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - EDBFA5777814B21574051F46F39A63C7 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - EDEDC37F633DC4E7C3D71348613CEFDA /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + ED6E0DC1D444EC1F52386FCF7ED88421 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; EE1AB32C49A2A285235B4FDC69A39BAC /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - EE4BB4E7E0A00A40A77D9D5C97FE5D0F /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - EE56065787BBC3451B22B3A0C59BC47D /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - EE97AB3236145B08630BE08BD485A445 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; - EE9AA28534499BF21627F666995F05AD /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + EE36ED074E387BBA3ABAA7B5CC062A9C /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + EEAA3F245E67D67CA5BA643D7AE193F8 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; EEC39363574592DDD2C4DE7211730B12 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - EED0607F4BFC943666CFC8386F9377F4 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - EED3DB3971808F087853A4962A6A9391 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EEDE915C22C65B42CE4277C418DB3213 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; EEE7EDE32D47E34C402A333EA97DECAB /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - EF106A6DD349A9D728B07E4FF7D0B6FC /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; EF173724C22DB7D2C3F88CAA10675F80 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - EF1B8A56E41BE51A02DB11D725652A30 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; - EF2C901FE1223174D8B3A6746858D656 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + EF1AD2484115EC684DCAAF63FBA418C5 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + EF20CEAB0CFF3687E37E4466C9556607 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; EF4EB3533CCB7A84BFF17BE881F535D0 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - EF70D54EF4C3182ABD88763F3D049CE7 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - EF788968BF757270E8F0956A01A609CE /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - EF91A2BB1EDA2CD251578C0B4ABE65DE /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - EFC5A84423AE386178E1FB69D79B7D14 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - EFD192F604D03272854B5E351BFAC8FD /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; - EFFE34F8E17395B29CF1438DC93C6FEC /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - F0035AD75AF409EED99CE638FCD79F36 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + EF5DFA0047DCFB89F0F9C6BC56DBFB18 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + EF9D31DCBD08184757F0729FA3C8ED4D /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + EFB42C16669AA4D20B04031D7752E8F5 /* 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; }; + EFB8F756FA964C31DEA83DBBD3765A29 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + EFE6E1B491F297ADE051248B71E113D1 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + EFEA6ABCA5DBE334079B09B6F2488289 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + EFFEF6DF4D7C0F5DD065B851FA5A2B6E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F02ACAE8DEE115DBBC18C44F0AE2128C /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - F05DDA788AC42546B5D27BCCA0222EBE /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - F072948F3FB48D4D7040B7F5699DDE2B /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + F061C6D214A0820BF89E8CC5B4440E27 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; F08B0F9A4D8A738B0F5EF58D5545D0A9 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - F08C8E9ABDB624DB4767FBBFB966F840 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + F08DE8B5D343A20DB0A9B98F3ADF4E7F /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F09D66808FCE05691A438366BC25B746 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - F0B2FB09F82C24D3863A03DC1D759793 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F11AF63AF8F5AE2ADB2930373146C586 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F0D4EB6C7E3C9ED6349A23B2D7B6DC4C /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; F12DAF7528A201C09ADE0D2FC9600260 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - F15541AFEE0AAB9CC4B33C8D9ACE40B8 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + F132C06BC669E7AEF7C49683C9FE16C0 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + F13DC9E73387630908205297F04EE263 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + F146966A7449FF40F47586F70C258E0C /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + F14C54CC504345EA12F777BB987EB343 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + F14EAA6B71A74C0CAD112D5F73DEBCAC /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F15A1B308313E7B51B2753B9D83EDFA5 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; + F16B41A3F0930FB8BF3A64E14311AC3E /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; F17947A41DC67706AD2ADAD8C7C559C3 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - F19DB2FC51E9E061AF53B697805F90B2 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; F1A4FFD0829F895C7CB4CE1DADA8C124 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - F1AD8D4096824219D55A5025F4580AD7 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - F1AF26638D4F4A5094918242AACCFA05 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; - F1B073762F60DDCC730CD28587773E11 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; F1B1144A35ACFEBD4E96E634A66733F6 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; F1D65D982EF85292BB9FDEA34BBE516E /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - F1DD820E50ED7683D2682FC978902760 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; - F1FCB8B8C78B3CC67C0B2905CCC4AAD7 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - F21B72296B3BE105A34CCE9096EE22C9 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - F2236443FB53942C9708DA1C715F30D0 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F2659EE472B6D6569574FAB9D3BCFB98 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; F26BB59FEC9CBF96A4426D94923EF71D /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - F2A0626FD5854C9AB571E75A278FE003 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - F2B977120DCE58A53B2F07C61AF5CE2F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F2CFFC3F749D96C2A9A33A5F128355F1 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + F2A26B74F81FEBBD83D944E81B2F1E27 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + F2C807050CF08B7A229FD4A7C65DA7E3 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + F2D557E981D7E30B3E5E9E41F85D0A1D /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F3163268C537ADBAD8FD410E13BD2103 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - F330BF2530869556DBD57DDFD63437EE /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - F35E076CF529C953D063452BE7B556C9 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - F367B9EDD6B2025C9972D1F38FCEAC6C /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; - F36BE07D7433CF6314EDF014BE65D359 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; - F39DA98B4560F63097808A59C778BF0F /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + F2ECE75752AF10AA2FF8406535FB24F3 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + F3326BB6015447D408ACE84177F73D8A /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; F3AD925B23A79ECA6E6EBDF8DB7412D2 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; + F3B8A6101C7D6A4F68E2F87CD815D348 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + F3C50A681DC3AE3B5EBDF51981415082 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; F3C820FC2BBE1761DA1AA527AA0093BF /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - F3CCB24FC34E85BE20A08461CEAC5964 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; F3EA4E1C67B5BF8BD4E1E55A6409EB28 /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; - F3F3FE84E33655DC802A375A4A3A2F47 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + F3EB7483F89D0166947E7B4B6F5063EC /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; F4110D159EB83763AAC648B1B81D2F9D /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; F41672D8B6EA45CF462409479614FB31 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; F43FC1D38479CA8483FA503030EE4B5B /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; - F44D5DE9F47CC610A0799CDC1E8F49F8 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - F49BE03F87BDF1DAC772E82BCB319DCA /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + F477107A2B803038ED4C0CE752003155 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + F489A407CA0E326AD8787F35F02B6558 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + F498795E45FAC28F8509E32F3CE3340F /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + F49AC5D6346CE75F7D1FF5E8737B0137 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; F4B0846CC9420B2A99D2842B5596A174 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; - F4B6286766BAB16F75C8F3961268387E /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - F4BB57F2C8342D0890921AD00DE04C23 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; - F4C8A918CFE8CFB9403313034C194463 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + F4D0CE13CEA0CF33E35FCD61C079EBD8 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + F4D8213CC46B6484FA84155A0A0E4B9D /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F4E7D84B4EABB669435CADE862C21E25 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; F4EB52F7237332185617C32F718E1270 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - F4F59E818975B0DAF1677936CC7928F8 /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; - F50C39B607D9C89E5365FAE973EEFBFB /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - F524D386BD08B9CEE9E5CAC22FFEFE24 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; - F526CECC51F92CB747322256AE7477A6 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + F4F0207C48E67A868E63FFD34AC6C944 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + F5332C686F42E1962E0CD6C38D204DF2 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + F5374647C5382656DBDE995FE843997C /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + F5494133D52BD624EC64308919BEEDE4 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; F55052F42574B7D52A6BA105DCE2F19E /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; + F57A875B935129BBC5FED8BA1EB01ADA /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; F581E835D4B745A1D287B2D9FAFABD0D /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - F593B54165E01747415919096244018D /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - F5A72941FF0DBBF5D8FCA1F794225C4C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F5F3B97417BD3C97C6BBFD6BDC54FED8 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - F5F63BA013C595EAD453A39C343F921C /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + F5A8224B47E4E204C913A8027996EF23 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + F5B3D17FB8FFA0A2B941F4B27AFE4352 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + F5DA0C190F424D4BFF3E077DBEACAA05 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F5E143192522350A4938231255DAE5BB /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + F5E52AFA1FA6C1027A76F40FDCC7E87B /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + F5EFD4D2FFCC87063E06B2705F3CCE19 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; F603F708AE1BF751B3ACE89E154E4673 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; F62A51F0D87C21CBDCC1B8756AE451C6 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - F689FE1EE0C527B721E002B987BAD52C /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - F6B99648326FDB329C014550E639277A /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - F6CB564AE5D839003189C16F3289EEF1 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - F6DD803CEEF3E5ED10A5840760D5E1C5 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - F7168D4E11BDF82C884D85A8BB9E8421 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F655D94492FC6ECBA658C4771954484F /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + F6645BA2C8A3C858416E79070CCE2F07 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + F6805A2D652953069BF9CD5BAE3B9684 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + F6917495D07CEEDCDA6CC40941E5A562 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + F6EE154550CBE38E2AF693AA3FBBDB0F /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; F7181E6712382186FEFE1FAEE124DC30 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - F71EB3ED435BE62A03FB8BE9A69A5F5F /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.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; }; F72625A8093D89ACAEF9ACBC3883C014 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - F75A97E72944AAAD3BFFC5CCB7806BB7 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; - F75B10ADD795D175038A5C942CC2F902 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - F75CC06C0F97AC2F75B76FDB40EFFA9D /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + F77595C22F7AD76D2CAF6237A9B4591D /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + F7785D3CC4BE9E3D5801E9BEE6EEA2AC /* 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; }; F78C3AEA250BDD82BE7FE666904B87A3 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; F790E8CC5AC5310B53CA380DA817176B /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - F824E024621647C5329420E194FC7C22 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - F84D927CDF596173B9BCA45A39ABE347 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - F85392B2599302F91F4B0D19284BA676 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; - F85D6B2F3D53D8555287EE94A251903F /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; + F7AC3A140635256A5ACE73CEE11782C9 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + F7AEB18271B93ED325AF1F8E5EA32664 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; + F842088A50C96B15DA82622BB55C1A6B /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + F8463E5D03066C23953904688BB5DC93 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + F8560B8A02F21948E3B4C54CA9FC484F /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + F8626A5A17612355C68F8F392AACCFAE /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; F87F6A22FB4F600954FB2663E53340C6 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - F881CC99AF63CFBF850897A4D0123EC2 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; - F8963C48B4C9E71258D0BCE42665AC26 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - F897C4400531D40230442A47E1DC1972 /* 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; }; - F8B4A74169F9588A6545B52CDB6A092D /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - F8F38AFD3B266BA2D4AEBDA526734BCC /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - F9092F343B1335E2E42BE8DD93B7ABF6 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - F9325A0ED5CAF49D74FE46655BD88863 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + F895D9B8EF3F616CF5501812A80FF1CF /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + F8C88481986D8C97632229F613D25D11 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + F8C88966D6E9E109711830886774417F /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + F8F8AD2AF3CFA2FE2A6A02357A4F24D6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F906E75080AC43F9EEF840D179B85172 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F928327B9C47BB2EDF726C9F16938DBA /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; F934561A4844BCB1A5D2C72516F4A72A /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F96477C90288FED4C886718B8328F74C /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; - F98E9A2244FBE47544AD9A5D8A263A1D /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - F9BCF129B5681ADA1FABF4465D5F7084 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - F9C8922FC2D0B6600C814C1B3382B23F /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - F9ECBE21F9340188A655F5682239E588 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + F98C4872BC91A1A5FDC51EDFF8C2C61A /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; F9FDF1E88D043740EACFF1DC73E36B23 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/Private/FIRDiagnosticsData.h; sourceTree = ""; }; FA2193D233F784FDA8D14E5ED56629C0 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; FA26B5A8A32F2F522F09863C5C0477C0 /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - FA31819E9AE01BFDEA17BCABC8327379 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - FA31E7A7AB0C7A25E10AC0266F01FFDF /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - FA3FAD6F5216E43A3167EBEBE8B8167B /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + FA39F010CFC82380C04E0F3BCAC9D17D /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; FA4ECAC99B83A66CECD026177446CB77 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - FA5AEFCC8F782FF9FBAC5916C7863513 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; - FA5F8B27C3393ECAFC57D32F193C67B1 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + FA5ABB39A77B81C72A91FECE2C1EE4F4 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; FA6C315437C3214205593E74AB412E48 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - FACDEE6EE892C8AD2C3883084880CC3C /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FA72A13A2EE1B277F6AD77CFAD99D4D7 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + FA75329560DE85B2864E81DE0D4CB271 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; + FA9A7BCC965E4412222BFD628ACC52C5 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; FAEB584D2FCC43846A157044BC9D5E46 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - FAF68036D1CCEC3D01E8537FEC9697AB /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - FB1F2A873B83D185B95AD54D4488C69F /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; - FB2115D629A9747CDEF3713B6841D0F2 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - FB30A0C1F84B37E7A63836AD635BF79E /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; - FB336E236A070DCDE8ACF59ED7B49D2E /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - FB5163CC84095AD8ACF8C608B1977B90 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + FAF37906744BE85E468C61D67DF913A6 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + FB0FD0914EC038D592EC73415840B17E /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + FB1AE527938831EA5DAB885E86DFFCB2 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + FB4AA734209C3742815772E890AE7C5C /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + FB902AEE13313EE4E1BBE0238013A3AD /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + FB992AB0738E83408793655014FF5705 /* 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; }; FBB3943BA57703F03AC1AE6E9180EC2B /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - FBBA4243BD0169C8F395341965625008 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - FBF562C3060334988DA10DB6D86B54E2 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - FC106E9BE9BF1893772A66FAF3F9D3C8 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + FBC3F683E31CB35E256D3B126D215643 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + FBDF61950B1DF6964906A8592FCD9B36 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + FBFEA19C82D8D712E325597558386F35 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + FBFF8E45E24839D5D657907160C704CD /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; FC39B30F26E84F6B31EE5DC99AA7A735 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; FC4D1271006F3F19FD1F32ED18916996 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - FC5E2D8319B283B8962747D1ED57C037 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; - FC6ADFB46F1C49C39B89A1605D84EF32 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; - FC7349EEC7FB241A0DBF3CD9AA3FE736 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; FC7479F169BDFA83A763E71935B39C0A /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; + FC7E2CEC556EE101839CF06B251E1C5A /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + FC92A9FDCFA5DF1D1A81BAAB393E0678 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; FCB6EDCCFB847FE622558CA7FACF0C21 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - FCC93B91F207812C7C1D44FB69C95083 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; - FCD33AC7A683628CABF9B4DE61ECAC31 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + FCBCD2C615BA0D89D3234B209A073845 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + FCD4B9DA5174D235E8A5F27A15F33753 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + FCD8331DC43A1093045FB053061DB530 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + FCD8F67FB9E5FE3748111AE45CC00A67 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; FD022A7C3D909D8519F310D4392F2421 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; + FD3669C6CCD38882387710794F350200 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + FD416C72A86D78CC18A296032AA4F28C /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + FD41B7E0C460E3A9A3AEF7B667A018C1 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; FD463EFB922CF38263587F78A3E403E1 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; - FD58DB39F9A32D84F2801237B4423F13 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; - FD6A7F7AF7A06D9D2D5EBC4E87A4E5DB /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - FDAF171CD6AD6E3563BCE2211C0F9FA2 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - FDB6F03379BB5DCC38B9907F97598F3E /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - FDD189A000A0EF9993C53FEEE2AF81FD /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - FDDC908E683D379AE84D6E426DB81D17 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FDDFA76BAC2F0F134DB4AD9EA37146E8 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - FE024E817AC1A13A002CF2102FBF3444 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - FE1964BB79974C13D7002EC611C003A2 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; + FD6C56DDF945474351322785D873ED1D /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + FE158E330F1D8B18CA528D302D7038F6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; FE1CC5E059EA91AFC5ABF8BF527E9F10 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - FE36AD354A26A507F517A0A4F4B1692A /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - FE5E3DDE6DD52E7DD9A1126EAF36F66E /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - FE682E6879BA8154495887920D01926F /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FE99DA2A671583AFDB9A25490E656721 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - FED0982B6F4929D35EDF03B04F6BCE1F /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + FEB5B8E160C5D916CC66A91F2A9469A5 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + FEBF6A490BEBF5E8D10B5CDC4141015C /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + FEC1B721213D9E1AC29EB6BBC10461EC /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; FED3E487A355D9CE1B0445AF9E4FA899 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; FF00CDB7A8232AE4158B172CB16D57C2 /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - FF24D5393A4E5062742F0844057E3418 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; - FF2D5D8CC1056BBA90C406A003EF23EE /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - FF3804F6E5B0A5D91DBA8A993D10FB6A /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - FF47DDBF0E22453293ECB197BA2FC0C5 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + FF02551016BB7F5A3FDF31DBC21468A5 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; + FF091C557CBBC8FF608866AB6D4C58ED /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + FF3FD6E6CF315CE9FA69B74EF332B1CA /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + FF406B5F1741BA6DD87BEC1F1C74251A /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; FF4A1A447F74EECB8C2AC14492FA6CA0 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; + FF59E5D2F03A32E8718194E6C178F2C0 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + FF68D0F31AA6AC72471400C95CCDAE70 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; FF92B16CAA4A7AFB4FC58207B113E26A /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - FFD0AEBB89BB36C053458AF452310619 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; FFE34689D2E3DE37AC652BA9C6743AD3 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; + FFF7B6FB0985AB4ED8CA1D097BA1D088 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -6769,13 +6804,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0D62B59AA78AC18F1F6FA511C5D196A8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0F22F363690501476F87C3CF49F3CAAE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7119,13 +7147,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B6B295ECFF8B0B341BF334FEE8E81B65 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; B7B1FB20892F62F4621A9DC6EE73C7A3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7189,6 +7210,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + CCD9F85CC476B9A700C5BF2B053CE613 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; CE89E15E4B943EE060FA7E75EC9E2FF2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7224,6 +7252,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D88B88EE7A17738F0559CB8A4D111EFC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D9F099B355677F0C06B6DCEAC536A7FC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7252,6 +7287,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F28874E19D1005DE4580E71D01B5D07D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; F509C85E78C4D889BD39A8A42481438C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7318,25 +7360,6 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 00D96BEE3FA814BC5DFC2C42D8607C95 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5E6658E4489794B6871AB115234109D0 /* react-native-keyboard-tracking-view.xcconfig */, - 029605E4F75D599083442F50C89433FC /* react-native-keyboard-tracking-view-dummy.m */, - 274083A057DB57EAE21BA7522994583D /* react-native-keyboard-tracking-view-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - 011563D36C5AE7076FD2BDDBB3FD0610 /* Pod */ = { - isa = PBXGroup; - children = ( - C6A939BA0F9D37FB4EF4843C9BDD1A17 /* UMAppLoader.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 014C12EE5AF00EF9920FD4EE73C3B7A9 /* NSData+zlib */ = { isa = PBXGroup; children = ( @@ -7395,61 +7418,28 @@ path = FirebaseCore; sourceTree = ""; }; - 01C7302D0ED672161686C8416B303BED /* Pod */ = { + 0226E874B1455A2CDF1DC44DA79C3742 /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - 8480EABCD5953D075B72DDA610CCB1C3 /* LICENSE */, - 4755639FE46A04DEDDB05CF7A694FE83 /* README.md */, - 75DB16D82F7593F2F8F2D87BDDC52B4E /* RNVectorIcons.podspec */, + C0EFBBBC05E3C3C332141A5AC62BF6CB /* BugsnagReactNative.h */, + AB9D0C9EB38A158C6737F05F2811A41C /* BugsnagReactNative.m */, + 4884BA6258ECA46996142A3C96457D9A /* Core */, + 936F175CD1513FB90FCC2870C2DAEE70 /* Pod */, + 665859FDD9EBE4AC1D084E03C7A6AD19 /* Support Files */, + D1C54F70295DC2CA401B5B726D276400 /* vendor */, + ); + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; + sourceTree = ""; + }; + 0319E6564791F133D26A9AA775DB3745 /* Pod */ = { + isa = PBXGroup; + children = ( + 19D1803C6121DCE9578856E116F5AB61 /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - 0204F8EA7BF28F4CDE8FD3E6B827969C /* ios */ = { - isa = PBXGroup; - children = ( - 8DD126C0D073D3C5398EF812500A915B /* RCTTurboModule.h */, - 3DE1E6EB37A7568CECB81081794A3F18 /* RCTTurboModule.mm */, - 93E0A184E9DA535352EF48AF9C5EBF68 /* RCTTurboModuleManager.h */, - 1DD923C6F64649147DDB235950480E46 /* RCTTurboModuleManager.mm */, - ); - name = ios; - path = ios; - sourceTree = ""; - }; - 0277853A137F34F9C5C0831B3D50330F /* Pod */ = { - isa = PBXGroup; - children = ( - 3F7EFB01B72D715F81A11B15CC580F24 /* UMConstantsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 035311CECB99E4F29445B1FE7AE0FFC9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 34D25768B4EDCBE8AD32CF4F46796704 /* react-native-notifications.xcconfig */, - 83E049A998106BC1D48E224B840B4E17 /* react-native-notifications-dummy.m */, - 94C76B3BA4849C297A83C046F72B0584 /* react-native-notifications-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; - sourceTree = ""; - }; - 03E7D96C0B8726614C4C38EE7E118169 /* react-native-slider */ = { - isa = PBXGroup; - children = ( - CF81CBD085AB92693642D6E6BC5FD9EE /* RNCSlider.h */, - F367B9EDD6B2025C9972D1F38FCEAC6C /* RNCSlider.m */, - 2326D21F65C132C6B573D2F986450639 /* RNCSliderManager.h */, - 0630350963F5CC0D94D065864C0C43AF /* RNCSliderManager.m */, - 732DAC917BF654B9AE7754EABC05C472 /* Pod */, - 17792359A39239CE7610A06C93D24844 /* Support Files */, - ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; - sourceTree = ""; - }; 043F146E221D020B79B780B0AA0BA24D /* GoogleUtilities */ = { isa = PBXGroup; children = ( @@ -7467,81 +7457,255 @@ path = GoogleUtilities; sourceTree = ""; }; - 06DA4245F4026EFCD52E35238DDAB908 /* FBLazyVector */ = { + 0464EC6E4BBB9C14239DECFEEB26DDF6 /* React-RCTVibration */ = { isa = PBXGroup; children = ( - 0D3425F077BBD8F4E0203BAAC9D87879 /* FBLazyIterator.h */, - BB0569876AE1A1CCE44FAD816F996875 /* FBLazyVector.h */, - 7BA28E9429A276129A054FF44198416A /* Pod */, - D4FDB6459CDA592A6EA166545D9D82C1 /* Support Files */, + 2DC260A4CDB82C85CF4135AC1F2CB495 /* RCTVibration.m */, + 3A42BC5F8BFA1A4A1C08DCA5CFBD47FB /* Pod */, + 0689B336F4038062DC94C4A6C0E7A305 /* Support Files */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - 06F116E1BD272BD0E252E25498153A8A /* Pod */ = { + 04844EF4DBED0373077E79B326DFEE21 /* Pod */ = { isa = PBXGroup; children = ( - 852065F2CC1E88EB2D6A90A39EFBFCEE /* LICENSE */, - A22F94C05440702EAEA8551097983106 /* react-native-background-timer.podspec */, - E3B9AC74E5B90C3FC6DDCFF3A42F0DE5 /* README.md */, + 3DF2E5E1E45E6388EE28BE396E7D7C5D /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = ""; }; - 073E4DD5DD409A658DE618555EF0D736 /* turbomodule */ = { + 04A2BEA841EABB24F8A007F49D2328DF /* Support Files */ = { isa = PBXGroup; children = ( - E538D4FDC6999A30DA004E57B587F5E3 /* core */, - ); - name = turbomodule; - sourceTree = ""; - }; - 080326E9162A227D73472C5A1BF8E438 /* Support Files */ = { - isa = PBXGroup; - children = ( - 42E629407F5F9986664769B85BDE758C /* RNFastImage.xcconfig */, - 923936132C5FF045A354B7B75A74E01D /* RNFastImage-dummy.m */, - 8DBF610409B21DC9EF67D81A4DBDBC6A /* RNFastImage-prefix.pch */, + 3B5290A65C40648D797A811AB24661CF /* react-native-keyboard-input.xcconfig */, + 6DD296BE09B1F1E8C3FCA8CA4D72826E /* react-native-keyboard-input-dummy.m */, + A3C60B66DDBFDADC9C0A1A137713DC42 /* react-native-keyboard-input-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; sourceTree = ""; }; - 08F3E939EAA8D9D6CB3414A748368A0C /* Support Files */ = { + 05544C3B312BE37A0CB9B26F6BE0A3AE /* Products */ = { isa = PBXGroup; children = ( - 759D90D1019D505AD70BE871F8950D2B /* ReactCommon.xcconfig */, - D237A584B9F9D09B744C5B9A291ED87F /* ReactCommon-dummy.m */, - F44D5DE9F47CC610A0799CDC1E8F49F8 /* ReactCommon-prefix.pch */, + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, + 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 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 */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, + 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + ); + name = Products; + sourceTree = ""; + }; + 064CD34C07F833C642520ED0AC72516E /* notifications */ = { + isa = PBXGroup; + children = ( + D11BFC452B2981FF0C8D5009CFCA21E1 /* RNFirebaseNotifications.h */, + 560407F98C516AE202EC044E7543C5E4 /* RNFirebaseNotifications.m */, + ); + name = notifications; + path = RNFirebase/notifications; + sourceTree = ""; + }; + 0689B336F4038062DC94C4A6C0E7A305 /* Support Files */ = { + isa = PBXGroup; + children = ( + A06761A7F4506AB0BBCEEE8415D74071 /* React-RCTVibration.xcconfig */, + DAD12019D6D4F6503DAFC2ED496997F8 /* React-RCTVibration-dummy.m */, + C257E7807BBF75B4B49830B41CDA0CBF /* React-RCTVibration-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 09F11580B1F970138A816DD42C753E8E /* RawText */ = { + 071F48AB3C87E1A9C82738DC52CA207A /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 6721B45513882BF506BDB6A743EF761F /* RCTRawTextShadowView.m */, - 82451E45D911AAD9D3D2D625AD21505B /* RCTRawTextViewManager.m */, + CF4A61907180A333D63A2EE9CB6BE3F2 /* RNJitsiMeetView.h */, + BD6A7ABC10F5FA23F4E3ECE3CA6B42A4 /* RNJitsiMeetView.m */, + B4B1B54EB3C6036147B4373EC7915E77 /* RNJitsiMeetViewManager.h */, + 9D12E6FAB1395300CA923309E382CC4F /* RNJitsiMeetViewManager.m */, + AEA6FA688340109038932B764EE98B7A /* Pod */, + 8D5561F0D127A6B26E95FDF6730B34DC /* Support Files */, ); - name = RawText; - path = RawText; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; - 0A3E08B3A084D45CA8AF3B79FEBFF8C3 /* UMReactNativeAdapter */ = { + 07B912E4194279FDFA9400D79ECDDA26 /* core */ = { isa = PBXGroup; children = ( - 7D10630D29AFCDED6505AC01F612060B /* UMBridgeModule.h */, - A9EE28D5510AFD24F5A4E92922F72A9D /* Pod */, - AAC4B0A2C757525970DB19C0391A29CF /* Services */, - 81188818AA0A0B032566FB0CED8C0C05 /* Support Files */, - D5656FDA6FD66D5606FAF2B5A9F9824E /* UMModuleRegistryAdapter */, - 2C55E145DD9CE644968F4515E9F4EA17 /* UMNativeModulesProxy */, - DDF5F20BC9738C8599221D84B8F0C10B /* UMViewManagerAdapter */, + F146966A7449FF40F47586F70C258E0C /* LongLivedObject.cpp */, + 63ED932836B562304FC500EA790B3543 /* LongLivedObject.h */, + 5B3B761EE203D75EB7C6E5D53B76A89F /* TurboCxxModule.cpp */, + C4FD8002F3BF22FF64978179AE572EE8 /* TurboCxxModule.h */, + B0209ECC30CDCC83D198C2467437D727 /* TurboModule.cpp */, + 049F9D245A0FB203DB8F2DBF52A82821 /* TurboModule.h */, + 18456EB17AA72EEA954B8A7D4D78AE22 /* TurboModuleBinding.cpp */, + AD09E1D19266513C2C055F5A95ECB63D /* TurboModuleBinding.h */, + 395737951C4FF799B8D1EEE29480344B /* TurboModuleUtils.cpp */, + 5A770DBE9A18F5571FE2132345A60533 /* TurboModuleUtils.h */, + EC91402F9651CAA6B5AECC3DAF65C5CD /* platform */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = core; + sourceTree = ""; + }; + 08568AD2B33B1609CDAC0971EF1F78CE /* Support Files */ = { + isa = PBXGroup; + children = ( + F5B3D17FB8FFA0A2B941F4B27AFE4352 /* React-RCTImage.xcconfig */, + D8D71B2A92B7BD8FF02CF68A82BC0550 /* React-RCTImage-dummy.m */, + E52AD0C56ED0B19FE853E488210268E7 /* React-RCTImage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = ""; + }; + 08D6E7177FBD0BEC136145695B4D9306 /* Pod */ = { + isa = PBXGroup; + children = ( + 65B11B27A782BB624E88CD3043455C40 /* RCTRequired.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 0963F6A675A1FEF684A2943F91B04300 /* UserNotification */ = { + isa = PBXGroup; + children = ( + E2861783182DF21B587C19F09A101D92 /* EXUserNotificationPermissionRequester.h */, + 25191E329C06BBA423BA3E0E2439889C /* EXUserNotificationPermissionRequester.m */, + ); + name = UserNotification; + path = UserNotification; + sourceTree = ""; + }; + 098DA056327AB9C33DAEAA9F91FCDEEB /* Pod */ = { + isa = PBXGroup; + children = ( + 42ECEB00E825E8458427D31E33D602D4 /* React-RCTActionSheet.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 09F84A6DCCFD057CF0F3BC796FC4972C /* Support Files */ = { + isa = PBXGroup; + children = ( + 072BE4DF7B3DC0B23063AB83D4F52F43 /* react-native-cameraroll.xcconfig */, + 58E5110EA87FC2CB75FE09EDC2B796AB /* react-native-cameraroll-dummy.m */, + 7C3525D56BB5275A1C28B0CF573B0C86 /* react-native-cameraroll-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + sourceTree = ""; + }; + 0A6BAEE48164E5355E076C8A0DBD6AFE /* Transitioning */ = { + isa = PBXGroup; + children = ( + 71D772327E9F776A78B45D699F8C27C4 /* RCTConvert+REATransition.h */, + D551134E4A8546C869960AE523AD6CF3 /* RCTConvert+REATransition.m */, + 96493B2AA0B5B4EE195370CCC403C476 /* REAAllTransitions.h */, + 942CD3A4F0F42CAC8EFA1EDAD1D0C74D /* REAAllTransitions.m */, + F928327B9C47BB2EDF726C9F16938DBA /* REATransition.h */, + 1F86F1D1029F8C811D125D9BFC90A45C /* REATransition.m */, + D74359D60258E32C8623C010E77D1BF3 /* REATransitionAnimation.h */, + FBC3F683E31CB35E256D3B126D215643 /* REATransitionAnimation.m */, + A96F65FBBB75E5932155353AA447A23B /* REATransitionManager.h */, + 19D4A2E787296829FC87D4002896C4F0 /* REATransitionManager.m */, + 66DBE54FA327076B678F2BAC5A46D929 /* REATransitionValues.h */, + 3F2162624F2E523C80249E74C2A34F59 /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + 0ACA7CFF34B9D1D11C59F9BFAF23B864 /* UMCameraInterface */ = { + isa = PBXGroup; + children = ( + 115FB30A05D62E6D247256833E9795D9 /* UMCameraInterface.h */, + 500EA3491368DB24491F384DB75AFF22 /* Pod */, + 269CC9FC2E4FF58C730B36AED638368B /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; 0B306EB60859A04AF7CB557F7C204072 /* nanopb */ = { @@ -7562,80 +7726,58 @@ path = nanopb; sourceTree = ""; }; - 0B454300BFDB7ADC3D5E4D6701B3B593 /* Support Files */ = { + 0C04CA62B8029593AD6332E08A77FC46 /* converters */ = { isa = PBXGroup; children = ( - 2BEA966F870B42067C20AF302F59BCAD /* React-RCTAnimation.xcconfig */, - 78B21926C799D90FF38F3C01B49421DC /* React-RCTAnimation-dummy.m */, - F593B54165E01747415919096244018D /* React-RCTAnimation-prefix.pch */, + 4B617EB978015DFC4BBD89BF8E682072 /* RCTConvert+UIBackgroundFetchResult.h */, + CE3E5D846DF4977383B523054BEEA239 /* RCTConvert+UIBackgroundFetchResult.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = converters; + path = RNFirebase/converters; sourceTree = ""; }; - 0BC7458E471671745D749CEDDC1AAA49 /* Source */ = { + 0D5F535717F2D90E575D9A34EF8668E5 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - DF78D4F2DFA4FE1826958AA01886153F /* KSCrash */, + 05C163815BC1046143216F9E3AB57D3A /* RCTBlobCollector.h */, + 54D7B076263393E87D9ECEC6D3886CC3 /* RCTBlobCollector.mm */, + B5CE325D00481D90D6CB6429E245ADE8 /* RCTBlobManager.mm */, + 1B290D163F690F2E6EDBFAC0CD0D53F1 /* RCTFileReaderModule.m */, + 8F8B478908EE2E51F924606251EE0E3F /* Pod */, + 41F5DC7E1C10E219F655FE3F8B992E9A /* Support Files */, ); - name = Source; - path = Source; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 0D0AD3655418022438CEF1B152B5381E /* EXAV */ = { + 0DC7E60320069F7C4B38E74DC12DE9B8 /* TextInput */ = { isa = PBXGroup; children = ( - C759BECA96DBE8903C63C266DAEE490D /* EXAudioRecordingPermissionRequester.h */, - CD3BFC7884A73E8842C521A4FC73D14C /* EXAudioRecordingPermissionRequester.m */, - 83FA84340E3EE860FF6AE948F657555C /* EXAudioSessionManager.h */, - E78BB7DD764E162B6A016C59A4F38920 /* EXAudioSessionManager.m */, - D8F9BA04E20185B2AE77BF40BA62A7E8 /* EXAV.h */, - FA31E7A7AB0C7A25E10AC0266F01FFDF /* EXAV.m */, - 06A23A775D0C745D7DE8C3DDEC5797F7 /* EXAVObject.h */, - BDBB11DCB79434FB7CF2C3941984DB0E /* EXAVPlayerData.h */, - 1AADD43B283931056291E3578A535816 /* EXAVPlayerData.m */, - 144D6C8A5025F257DC007BD5977E0B5A /* Pod */, - B9F5D049D13D4CF55A254856B69E82C8 /* Support Files */, - 3A54A43E35FAC881086B302605819C14 /* Video */, + D3452C49C169EC34D31E329A2B255A99 /* RCTBackedTextInputDelegateAdapter.m */, + 4714246033FBA0CC9D06257D64561A80 /* RCTBaseTextInputShadowView.m */, + AA64ACB0759A7D98739D6CAFCA4DD08C /* RCTBaseTextInputView.m */, + F5374647C5382656DBDE995FE843997C /* RCTBaseTextInputViewManager.m */, + 02C132C8D0C8747978D7A4F4A8F15219 /* RCTInputAccessoryShadowView.m */, + E89F22711BE751D2479326A62844034B /* RCTInputAccessoryView.m */, + 935838A1A539372D72C09FC3F675BD90 /* RCTInputAccessoryViewContent.m */, + 6D5B06C8471EC60B0EFED96C02942CD0 /* RCTInputAccessoryViewManager.m */, + 0C40BDD85015A36835466F49B0744298 /* RCTTextSelection.m */, + 18AD917358D0916337F0228AC02B4822 /* Multiline */, + 40C6033FF800E0EA98FA823203322FA5 /* Singleline */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = TextInput; + path = TextInput; sourceTree = ""; }; - 0D76D3132CA1E2C3BDBD2B0E7FE81270 /* RCTNetworkHeaders */ = { + 0DC8A228AE396D0D8911BD88ECDBC08A /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 9766B809AC1E5C70E1EF8A7B6FB8914A /* RCTDataRequestHandler.h */, - 8F66E7205BB7E21813556AB6A7D50114 /* RCTFileRequestHandler.h */, - 705CCE9E05509627FF89A09250AE4165 /* RCTHTTPRequestHandler.h */, - AFAAD27A524D6E425C12216C7F486100 /* RCTNetInfo.h */, - B32D5B813D502A8FD58C0B0A8966E345 /* RCTNetworking.h */, - 600667F42973CEECCEE935951B13F5DD /* RCTNetworkTask.h */, + C18DF3D3F69E19D6E2A345D0DE63D473 /* UMConstantsInterface.h */, + 883FE08CBB78E90D2737660167FCEEFA /* Pod */, + 13FA73700B23344CA5A89E914BCD9DE6 /* Support Files */, ); - name = RCTNetworkHeaders; - sourceTree = ""; - }; - 0DC838F3F3ED8AA4D2A5789BCA8B9AA8 /* Support Files */ = { - isa = PBXGroup; - children = ( - D879E3AFB811F795F505E30DA3F55296 /* RCTTypeSafety.xcconfig */, - 26E43B346470D073A3946E6E3CE86745 /* RCTTypeSafety-dummy.m */, - 2AF2154BB868D31113AA5DBFC0490F1B /* RCTTypeSafety-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; - sourceTree = ""; - }; - 0E7C726891F7E52D63E98B208261E36F /* React-jsinspector */ = { - isa = PBXGroup; - children = ( - 924751E7D1039F4FB0EDC9094378B4BF /* InspectorInterfaces.cpp */, - B24AA181DDDACF562563B87E0E060460 /* InspectorInterfaces.h */, - 7C37218A8059CA8EC3EE33A1EAF18B86 /* Pod */, - 5002B09A7C6F3CECBD1866A6EE26C271 /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; 0EB22BBFAB12DE43BF0B817235CAED5A /* GoogleDataTransport */ = { @@ -7690,17 +7832,6 @@ path = GoogleDataTransport; sourceTree = ""; }; - 10370B45AC99A668C3F2518C9359639F /* Support Files */ = { - isa = PBXGroup; - children = ( - 2A41668B7A227780F09DE51D11387E2B /* UMPermissionsInterface.xcconfig */, - 296ED7582318BBF5FB39B24E3E2A0470 /* UMPermissionsInterface-dummy.m */, - 4AE4B069B3436F7C889EFE20F0684128 /* UMPermissionsInterface-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; - sourceTree = ""; - }; 10D07FABCF69DD0EE97B5E881DE54D1F /* Environment */ = { isa = PBXGroup; children = ( @@ -7714,6 +7845,27 @@ name = Environment; sourceTree = ""; }; + 10F4B34966675F64C96B5B792DF15E6A /* Nodes */ = { + isa = PBXGroup; + children = ( + 64144AC036A04D59E4B3A858C4007A68 /* RCTAdditionAnimatedNode.h */, + 7B70C662CA07E449FA6228A3FBAC4EB9 /* RCTAnimatedNode.h */, + 244891F0BB936D5801B43A6B34617BD6 /* RCTDiffClampAnimatedNode.h */, + AE73D22AB98677454C3E05B122591DFC /* RCTDivisionAnimatedNode.h */, + AD1F642840E1CBEA926B77D869EF354D /* RCTInterpolationAnimatedNode.h */, + 62D83205141BB4700BA0E51149AE2E7E /* RCTModuloAnimatedNode.h */, + 3BCE538C486A25F8E214D73571B7BCB5 /* RCTMultiplicationAnimatedNode.h */, + 420B086DB3BA0B109F0F62A35FC5D859 /* RCTPropsAnimatedNode.h */, + 926CDAEA097EE2BC56E2824EFF0F6C88 /* RCTStyleAnimatedNode.h */, + 6B67C39A4A02C1D359727F1D6075E019 /* RCTSubtractionAnimatedNode.h */, + 8A03405C284F8E43AA5A271489DB8DE3 /* RCTTrackingAnimatedNode.h */, + 66D1C195D2008482FA65BF8751D0DDCF /* RCTTransformAnimatedNode.h */, + 228767EBE8FAD2D16DB5C6004E53044F /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; + sourceTree = ""; + }; 113FAA400B44B384ACD031204F85F5A4 /* Support Files */ = { isa = PBXGroup; children = ( @@ -7724,16 +7876,14 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 11C372AE7D76F21C17C5164D78F75EB1 /* RNRootView */ = { + 11D2FEC01ACE971E0ED126192122CB3F /* Pod */ = { isa = PBXGroup; children = ( - 35F0BA05BEECBF2107FEA371E9D74683 /* RootView.h */, - 6D1B26716E0444055D19F8BE193F51AD /* RootView.m */, - DBB6767F634D140A8B2B723353E7299E /* Pod */, - DDD2D92B40A00B4FEA77410C5F4356E9 /* Support Files */, + A562A94B65346969B4C06803CB06F5E0 /* LICENSE */, + 3002A02AB1AB90B04317A376EB7DC832 /* README.md */, + 4AC4C89FAD105455A930AC5CCB3C974A /* RNBootSplash.podspec */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = Pod; sourceTree = ""; }; 11D3F6AF03D8A3626A7FD39925D9BB19 /* webp */ = { @@ -7891,50 +8041,78 @@ name = webp; sourceTree = ""; }; - 123B8222D9E0AABD1CBFE27A180152AA /* BaseText */ = { + 12B760401B758756D15142F360009F47 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 5E9B9CADDD9A79257A18CB6FF68785E0 /* RCTBaseTextShadowView.m */, - FDD189A000A0EF9993C53FEEE2AF81FD /* RCTBaseTextViewManager.m */, + 2188FE6A55B64B2F02E879DA1820F9D4 /* JSIExecutor.cpp */, + D98EFFF9D41A28945FBA50F000DC3553 /* JSIExecutor.h */, + FBFF8E45E24839D5D657907160C704CD /* JSINativeModules.cpp */, + 0DDB55323D859401B115652E78293B63 /* JSINativeModules.h */, + B0A8CCD6366687B5EBC58EF1556D6BE9 /* Pod */, + 6394F6EC019D44AB02F7700BAC189AC7 /* Support Files */, ); - name = BaseText; - path = BaseText; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; - 1253B43AD4B219811D516CD43567CB45 /* Support Files */ = { + 1310D9B93C59398E9A4252591870FB03 /* Support Files */ = { isa = PBXGroup; children = ( - E37FA286A65A13B6EACE4F2949703FCF /* RCTRequired.xcconfig */, + EC9C75C8C697AAF606A60399EE240358 /* RNRootView.xcconfig */, + CFA837504AF8794986CD44505DF97CDF /* RNRootView-dummy.m */, + 5BE49F3803081E3A668CDC23A9FCE3AF /* RNRootView-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + path = "../../ios/Pods/Target Support Files/RNRootView"; sourceTree = ""; }; - 13D0150FB6F1AFFECBEEE74FB1EF69F5 /* Pod */ = { + 13FA73700B23344CA5A89E914BCD9DE6 /* Support Files */ = { isa = PBXGroup; children = ( - 28D8934171C9DF01D91B4902E9616958 /* UMSensorsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 144D6C8A5025F257DC007BD5977E0B5A /* Pod */ = { - isa = PBXGroup; - children = ( - DE76A96D81633774F56F33EE3C612B6A /* EXAV.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 15788066B0B236881C557818E710856F /* Support Files */ = { - isa = PBXGroup; - children = ( - 325E42DDCF9C6C3954ED8A465D38C362 /* BugsnagReactNative.xcconfig */, - D8806E6C372CF900927E6CE9A7101DAB /* BugsnagReactNative-dummy.m */, - 3461E0B242016ACE7B2764548891EC32 /* BugsnagReactNative-prefix.pch */, + B3790D2C749F3BEB5460510FCCBF447E /* UMConstantsInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = ""; + }; + 1484ECE05A8C0648D454AD8000DC710B /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + 9B1E741B4EACFD774A03A37A918DDCB7 /* Compression.h */, + 9C56D930DA5EA4FDB0046D8B563CFD3B /* Compression.m */, + 6B765C7001344ADD30A7B09D7B18DC16 /* ImageCropPicker.h */, + 67411C8E45837F1C1D7F37E72C5D3B24 /* ImageCropPicker.m */, + 79A8B61565DAA3123B89DD53380D6671 /* UIImage+Resize.h */, + C25E04DB816E50DF60D015164849B0ED /* UIImage+Resize.m */, + CFDC0906CA33C5FD8D0DF0D699AC5BE3 /* Pod */, + 1755ADEB8E69279A96E64AB2402293AB /* QBImagePickerController */, + 83B4BABB92533255872B3FCF572539FE /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + 14A5AE354B95475C1542D1F0EB0195D4 /* ios */ = { + isa = PBXGroup; + children = ( + EB2991E1CE83341DB2EC249B05442071 /* RCTTurboModule.h */, + 2202930C762AADFF58306B8133BC2621 /* RCTTurboModule.mm */, + 676CDD36CA0F04EB6FA88A9298CCDD61 /* RCTTurboModuleManager.h */, + 6FFA89B48855AD591D0E0686DAB4388A /* RCTTurboModuleManager.mm */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; + 14CFC09D4011FB40310A7CD2495AD9CE /* Support Files */ = { + isa = PBXGroup; + children = ( + 670E38A691D7C5017C913049C87439DC /* RNReanimated.xcconfig */, + 3ED0A745E4060ACD91492E573ECC72BC /* RNReanimated-dummy.m */, + 975D48CA41FBA3A5B3CADFAF11755D02 /* RNReanimated-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; 15A7F9318FA0157E39897677596C6638 /* Frameworks */ = { @@ -7946,93 +8124,30 @@ name = Frameworks; sourceTree = ""; }; - 15BAE439160F6831E0700FC9268F6B90 /* event */ = { + 1755ADEB8E69279A96E64AB2402293AB /* QBImagePickerController */ = { isa = PBXGroup; children = ( - B38A62D77E3510713ED69055527540B0 /* event.cpp */, - FBBA4243BD0169C8F395341965625008 /* event.h */, + 3F1B5BBFE8385257047303B04335AC90 /* QBAlbumCell.h */, + 1033E5A5D0EBB041CD0AE93BE9F76223 /* QBAlbumCell.m */, + 4A1DDE0B9338CE30EFB1968BD0160998 /* QBAlbumsViewController.h */, + B1254E43650605D4E990EF16DDC5DEE1 /* QBAlbumsViewController.m */, + C7E2F7DBB70EDF5186DBD518669E8A13 /* QBAssetCell.h */, + BB835EB56966F391A219E0A3D4E24AD9 /* QBAssetCell.m */, + 3B45A0A58D7CECB9873348CECF626107 /* QBAssetsViewController.h */, + A81FBC14386ACA80016032DD21117D08 /* QBAssetsViewController.m */, + 710493512970091BE2775D6189F63526 /* QBCheckmarkView.h */, + 24F565E98A92800CA20A2D83A3233196 /* QBCheckmarkView.m */, + 57D3DD9B591B8A0DEE7CAA25810D6EAC /* QBImagePickerController.h */, + 1A6D05B3EF87F292D6BCE0B83F626EC6 /* QBImagePickerController.m */, + A1B4F5AFA0939AEA94E82B4624F51059 /* QBSlomoIconView.h */, + 3982047C78EF60BB286752A5684BE770 /* QBSlomoIconView.m */, + CE9E07113CDAACEFCB9A57CA00A06E8E /* QBVideoIconView.h */, + FEBF6A490BEBF5E8D10B5CDC4141015C /* QBVideoIconView.m */, + 0F805D37D02D124CD2026F62A952EB66 /* QBVideoIndicatorView.h */, + 44E9076B1C8F5C974E510E834014F681 /* QBVideoIndicatorView.m */, + 95069B88CC0F61F7F7744538B045E2E5 /* Resources */, ); - name = event; - path = yoga/event; - sourceTree = ""; - }; - 15C35EE578FECE5642F4801D79B8FD3B /* RCTBlobHeaders */ = { - isa = PBXGroup; - children = ( - FBF562C3060334988DA10DB6D86B54E2 /* RCTBlobManager.h */, - A37B85ACEC04F42234F39F36922AF4DF /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; - sourceTree = ""; - }; - 16A8E7E73DC968A6084B1CC63E8D9EA4 /* ReactNativeART */ = { - isa = PBXGroup; - children = ( - 4A71F41A03D4C4E9AEB5A2AF289501D8 /* ARTCGFloatArray.h */, - 863DB1AE51C0BA4A1D3DF938568E6C9C /* ARTContainer.h */, - 6600B3ECE4A9A1F4D25396A83C32C3DD /* ARTGroup.h */, - DDC6F67C2DD59A6AD926936B059FB771 /* ARTGroup.m */, - BB1D0FEDBCF1E8FB20711DA061393254 /* ARTNode.h */, - D48621AC50DC4D30040BB50CD2442F17 /* ARTNode.m */, - 67840563043AA82F17D29A652FA22AB6 /* ARTRenderable.h */, - DB5FE450AAB53AADE884BA269A897227 /* ARTRenderable.m */, - B85468D6D253824D2ADD8B2A0CB3AA2C /* ARTShape.h */, - C6CB42DCB25CE96E7B610081A0C9032A /* ARTShape.m */, - C7FD02188CDAF5EB23CBB76EED51035B /* ARTSurfaceView.h */, - 54DAD86D8E7F2D57156D4FEA78F677AE /* ARTSurfaceView.m */, - DE641A302A8646320DAC48CE6E849B7F /* ARTText.h */, - C49D225F6CF89085189D3E1775CD8333 /* ARTText.m */, - F072948F3FB48D4D7040B7F5699DDE2B /* ARTTextFrame.h */, - B1852732427A5BFF71AFCD908B912F49 /* RCTConvert+ART.h */, - 3D67570D241C8BD96DF9CB19D2E70141 /* RCTConvert+ART.m */, - 242EDB61C27A554614CD0A8BFC66C9BD /* Brushes */, - A8226C44832FF0067C03330C984E644A /* Pod */, - F1BDB9B9D34F3B7FE27B9A8AC02719FD /* Support Files */, - F34ACEB766383EDB5038DABE8BCDB9A1 /* ViewManagers */, - ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; - sourceTree = ""; - }; - 172890F8F0175FAF1FD29B3C52C16897 /* Singleline */ = { - isa = PBXGroup; - children = ( - 493FAAFD3937E8A839C0988482F7CEB9 /* RCTSinglelineTextInputView.h */, - 290DB13BE039EA3C352747F78BAADE99 /* RCTSinglelineTextInputViewManager.h */, - B5D0F0CB7563A5D8E055CE05B4F8A3A2 /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 17792359A39239CE7610A06C93D24844 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2615D87890C398C541274B84091F4118 /* react-native-slider.xcconfig */, - D814C2EE03734CB4327B241BBB99174D /* react-native-slider-dummy.m */, - EE97AB3236145B08630BE08BD485A445 /* react-native-slider-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; - sourceTree = ""; - }; - 17C4F089BDEDD5172F5587141F514CA7 /* Protocols */ = { - isa = PBXGroup; - children = ( - 25A03F3B74F4B37CA6245315F4B8E7EF /* UMAppLifecycleListener.h */, - 62D1CDB94E5DC720C62258096FB8F188 /* UMAppLifecycleService.h */, - 110F5F208B1277BEBFCEDFFA467DE235 /* UMEventEmitter.h */, - 3AF7A5FFD96AE3C7E2610CCA4A7EAB54 /* UMEventEmitterService.h */, - 06AF9DEAB18ECA63C1C7E00A032CB825 /* UMInternalModule.h */, - B316EE8749A03932D358C95F9114570E /* UMJavaScriptContextProvider.h */, - 131D3902D9352C048A30423FCBF0B8FA /* UMKernelService.h */, - 656E117710D129BCC5F46D0693DF9AB1 /* UMLogHandler.h */, - EE9AA28534499BF21627F666995F05AD /* UMModuleRegistryConsumer.h */, - 5D4F3FD31ED29FABC56321FF1335434E /* UMUIManager.h */, - 400A33EAC15BABDBC9CFAAD979540190 /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; + name = QBImagePickerController; sourceTree = ""; }; 18149080C63A878FBB6D5866B0791E49 /* Support Files */ = { @@ -8093,71 +8208,122 @@ path = PromisesObjC; sourceTree = ""; }; - 1A18EAD319B798576B97B9678EDB2C85 /* config */ = { + 18AD917358D0916337F0228AC02B4822 /* Multiline */ = { isa = PBXGroup; children = ( - 13F2CD272CBA0C054B3D23053F74F0C0 /* RNFirebaseRemoteConfig.h */, - 1A6893A7A9B3D5FFC6BCCD9C7FA26417 /* RNFirebaseRemoteConfig.m */, + 3A65B9D51FA41BE5D6CE29E02FA8A668 /* RCTMultilineTextInputView.m */, + 56C15EA31F9B05D94E53D1B6454A351F /* RCTMultilineTextInputViewManager.m */, + B30FEF74567D1734FF4F1D188527AF7A /* RCTUITextView.m */, ); - name = config; - path = RNFirebase/config; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 1A8CD8524066A5579B3037885D94597C /* Pod */ = { + 192EBFDA159841B8A3D762F1766C91BA /* Pod */ = { isa = PBXGroup; children = ( - F7168D4E11BDF82C884D85A8BB9E8421 /* RNFirebase.podspec */, + D167E39F13F7681F163EC0B8E5924823 /* EXAV.podspec */, ); name = Pod; sourceTree = ""; }; - 1AD3B7EBD0036F9F4B8506B7411EA899 /* platform */ = { + 1953CF92BBEEA790315DFEA37D783D4C /* Pod */ = { isa = PBXGroup; children = ( - 0204F8EA7BF28F4CDE8FD3E6B827969C /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - 1C118C0AD2AA27A1B2AC457C83678C7F /* Pod */ = { - isa = PBXGroup; - children = ( - 3D20059EEE08E4D54BE32164C0A68AE0 /* RCTTypeSafety.podspec */, + E589123CD9B1FE681766532E40644323 /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = ""; }; - 1D74E790D372881F6319E2F127C46A54 /* Pod */ = { + 1AF7B50596EBA4C0F9193867A8E37BDC /* Support Files */ = { isa = PBXGroup; children = ( - C2A1342C45B8106215565D675029B241 /* LICENSE */, - 975ECB2D29AFDE497BDE8DA25F81351C /* README.md */, - 1FE28A98EA9AA962C02DDA276010F12A /* RNBootSplash.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1EAA8D6BA2392DF7CFDA17F0A2AA645E /* Support Files */ = { - isa = PBXGroup; - children = ( - F4F59E818975B0DAF1677936CC7928F8 /* EXImageLoader.xcconfig */, - FCC93B91F207812C7C1D44FB69C95083 /* EXImageLoader-dummy.m */, - E9744C64B98B75CFF9A97A36FC9187F1 /* EXImageLoader-prefix.pch */, + 6A419EAE6646DDE68BCC3B1A4DD9C1F5 /* rn-extensions-share.xcconfig */, + 2BD3A5828B798419E6D0005418AA7D8C /* rn-extensions-share-dummy.m */, + 3C6AE66229EC35112181E20DD1AF9DB7 /* rn-extensions-share-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; - 1EBAC964314CB542BDFBB1408A0EC70B /* react-native-video */ = { + 1C6E445BA6CF204F3B4C4E4BDA571331 /* Pod */ = { isa = PBXGroup; children = ( - D170E80B182EC1326B18C57A13ED2FED /* Pod */, - 3B311F4CE755B72FEF8DBB4C8CDD2559 /* Support Files */, - 92126A89C3B77666F06E0C70D9787A3A /* Video */, + C54A80740E65C8D4D7651F3366236354 /* LICENSE */, + 9CA9957D79864D494BA9E6E5BCF4E3A3 /* README.md */, + 288A04E110ADC224733012DC1B6EE38A /* rn-extensions-share.podspec */, ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; + name = Pod; + sourceTree = ""; + }; + 1D2AB3A8A2C370B08D969DF94379CDC7 /* Source */ = { + isa = PBXGroup; + children = ( + B1D2041F40CB423E76610B85373D225A /* BSG_KSCrashReportWriter.h */, + 45458037C6F9DEF62A4FC8C58DCA01CC /* BSGConnectivity.h */, + 133F91CED2AE71F47C4EE3CBE81C081F /* BSGConnectivity.m */, + B711EFEC9FD65D1F7E499E8117FFFF87 /* BSGOutOfMemoryWatchdog.h */, + 36AA594FDBA32E557C49A009C974A67B /* BSGOutOfMemoryWatchdog.m */, + 61B0D3F0603D57AAF3CC0C0C9DFC12F1 /* BSGSerialization.h */, + 1BE0B9F81DF9BB4C8F1DB0B3F7892950 /* BSGSerialization.m */, + F4F0207C48E67A868E63FFD34AC6C944 /* Bugsnag.h */, + BB494AF6148A159C36F4BC6B88C2F8DF /* Bugsnag.m */, + 2E6A90739E4D7434B356723994AC0BD9 /* BugsnagApiClient.h */, + 47803AB4E5A16F1D5FF72ADE12B60FBC /* BugsnagApiClient.m */, + 86991F1C80D850332904ECDDEB7B59B2 /* BugsnagBreadcrumb.h */, + 785381399382075F3D4973B67A3CBC8D /* BugsnagBreadcrumb.m */, + 16CCDEE69411B61699DA424C248762F5 /* BugsnagCollections.h */, + 09D0EA33A1A7DEC68F1EB447B004AE9C /* BugsnagCollections.m */, + 31B989125059D1A30A1915AB163B8157 /* BugsnagConfiguration.h */, + 00D2750981CB3BA9B0E6DEA98E7ED45F /* BugsnagConfiguration.m */, + 87148DFF70B1C9617F089F092F86CA90 /* BugsnagCrashReport.h */, + 6E21147B8CEFAEE7BD94E8E368D13EC7 /* BugsnagCrashReport.m */, + 78C07652F1F392820EC279464BE9D615 /* BugsnagCrashSentry.h */, + 98A0B3AAC61084682CA26ACD65313B0A /* BugsnagCrashSentry.m */, + C0E0F26FB8ED7992F86C07D82EAC6DAA /* BugsnagErrorReportApiClient.h */, + 2B880E649943BF83C8628F37DBA3029C /* BugsnagErrorReportApiClient.m */, + E21F989188C48785155D2E89A077C86C /* BugsnagFileStore.h */, + C44773251531A45FC64DFA4C79762546 /* BugsnagFileStore.m */, + CAC8F9C86C3361A687DE72FFA06F22FB /* BugsnagHandledState.h */, + 4C16A8E7025480A82D0D162884083E91 /* BugsnagHandledState.m */, + 5A3796907A5931A4755FD85E37617F75 /* BugsnagKeys.h */, + 2BE5C9777A56A93325E584E96329994B /* BugsnagKSCrashSysInfoParser.h */, + 6873EE637F1FD65CFE77AED846DB38CC /* BugsnagKSCrashSysInfoParser.m */, + AAEF8C45EBA9D2DD1B198142DD7873D6 /* BugsnagLogger.h */, + 5ECC69B60832FACB53B1C4F37A693D81 /* BugsnagMetaData.h */, + ADEEA9EAB573D09073DB5F5CA007CB57 /* BugsnagMetaData.m */, + B13741C7CBF2BA4D62AC11EFC7DD42B9 /* BugsnagNotifier.h */, + 3D5C92F507018A463BD5D1B450DAF7E7 /* BugsnagNotifier.m */, + 175935B114BDB3CA3CA45084FC6E089D /* BugsnagSession.h */, + F498795E45FAC28F8509E32F3CE3340F /* BugsnagSession.m */, + F5EFD4D2FFCC87063E06B2705F3CCE19 /* BugsnagSessionFileStore.h */, + 3195A51A28D91E9C303A8551A1698000 /* BugsnagSessionFileStore.m */, + 9DC0D8F3A5C0E21CEF2648F8925E6512 /* BugsnagSessionTracker.h */, + 4E13F96763B04252674051C00483AFAC /* BugsnagSessionTracker.m */, + 19471965D85F9339403EA0E725249FA0 /* BugsnagSessionTrackingApiClient.h */, + 21CC78350195176B8CAB59745ABF5A3F /* BugsnagSessionTrackingApiClient.m */, + 151737EFF230255E4628BAB2FF738C95 /* BugsnagSessionTrackingPayload.h */, + 15B2D4AE4D73A5011178364790F19F71 /* BugsnagSessionTrackingPayload.m */, + 5BCF08557DEFF60428792C78FBEE2325 /* BugsnagSink.h */, + 7A4121E2D7C242F0D2B67476FEAA958C /* BugsnagSink.m */, + 3FA565A0D93E8F950877B47493C4AFF3 /* BugsnagUser.h */, + D96FF5F7DCDD0FE875B16F77DF339559 /* BugsnagUser.m */, + 4DC24019D7AC40892C15FA4D8FF0A6C6 /* Private.h */, + 78D216429E3705A4CDE00E20574D4BFE /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + 1DE75959079D8DBC40DF2C3FB03B725A /* Support Files */ = { + isa = PBXGroup; + children = ( + 6FF675B67F064CC12B6573CA90ED3D3F /* Yoga.xcconfig */, + 911D6C6195168846ABAA69CD04FDC12B /* Yoga-dummy.m */, + F2C807050CF08B7A229FD4A7C65DA7E3 /* Yoga-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; 1F7EC6C11018294EBF40CA4AAD13152A /* FirebaseInstanceID */ = { @@ -8227,45 +8393,23 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 1F8DC336A1373E5960838643116CCA93 /* Pod */ = { + 1FC91B37C1D70591637AD39C7F7AC2ED /* Support Files */ = { isa = PBXGroup; children = ( - DA9D022F2DDEB875D1ED5D8A5472F02A /* FBReactNativeSpec.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1F9E65A79F95D4FF6189EFD3AAF437FE /* Pod */ = { - isa = PBXGroup; - children = ( - 812B0BB7777DCECA0F21F0A430AE6208 /* LICENSE */, - 83B8DD6EDF80109F4E5C34CA5722D5F2 /* README.md */, - FACDEE6EE892C8AD2C3883084880CC3C /* RNScreens.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 207F66EE9B0DFCE4CAF9DD3E91371E64 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6178BBA9B9B9A78E0C232275C315D603 /* rn-fetch-blob.xcconfig */, - 9901BACE3A1530200B9D29B6C2010ED3 /* rn-fetch-blob-dummy.m */, - 4565A49262584DD8D25283A67864D489 /* rn-fetch-blob-prefix.pch */, + 4897B093E0D46D5F4CFD99DC3EBE98E8 /* RNCAsyncStorage.xcconfig */, + BF24566DF5E1E5D90A0E4E1DEE6C501A /* RNCAsyncStorage-dummy.m */, + 40A74BF78D0680470F541F8C8CAC047A /* RNCAsyncStorage-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; sourceTree = ""; }; - 216861150F80218EB8A430B06D640529 /* RNLocalize */ = { + 2164A917A13AADECCDD23018763226D5 /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 92D3A2C71CB1459A2CE0C33710DEA4CD /* RNLocalize.h */, - A40DDBDE75B76EE4C97C4876D85175B1 /* RNLocalize.m */, - 9F62BF7599A73E242E75EFE67CF89AC0 /* Pod */, - 2C45F107BCD64872F0256D897B5B94B5 /* Support Files */, + E83E226A670415A6EAD1BF95CAD6515D /* RCTVibration.h */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = RCTVibrationHeaders; sourceTree = ""; }; 216ED3B7178698D2741E65F697E7BD7F /* Support Files */ = { @@ -8278,71 +8422,58 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 218477F23FA810D68B35E0DF533922A3 /* LNInterpolation */ = { + 218D1E2EAA34C687F8E486F0B65A2E19 /* EXImageLoader */ = { isa = PBXGroup; children = ( - 37DADD1FD92C1F8887236BEF67D91AAD /* Color+Interpolation.h */, - A6455A15BAAEE82FD4F76D0D75A99C21 /* Color+Interpolation.m */, - C1FCBE451CF25A5140A2A3847F531E84 /* LNAnimator.h */, - A6B3BE6B96843EC4E2C030914285AAE3 /* LNAnimator.m */, - 4772B7623E21753987A7130E8621862E /* LNInterpolable.h */, - C972750A84A0F589238CF3C40CA01ACC /* LNInterpolable.m */, - 31C12D553C2C6EBEDD958013FD380CD3 /* LNInterpolation.h */, - 8BAF5B2F52394878A35B02A802913F95 /* NSValue+Interpolation.h */, + AC30C03D01D31FD850CD4F118749E13C /* EXImageLoader.h */, + 2FC54818204258126681C4022306BDA6 /* EXImageLoader.m */, + A32A86CBAE66592CE9AC66C3A2169DBF /* Pod */, + ECDF26B0119BB68A947790DBE641E7DE /* Support Files */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; sourceTree = ""; }; - 218CB7070D9FD14B6C24CA8B191610B1 /* auth */ = { + 21D0E6622860EDF64A0049DAD6C6E369 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 392498665B438714F134FCBC21214666 /* RNFirebaseAuth.h */, - D514EDE68ECD59E03F9C6FB34661F168 /* RNFirebaseAuth.m */, + BC8EFA222A79BB8C702E463E4C186516 /* UMTaskConsumerInterface.h */, + 728D87445140199E9D4E88EE3CC4E9BF /* UMTaskInterface.h */, + 9F0BD0D28FCC49E8B60D24B8C342481D /* UMTaskLaunchReason.h */, + 95877CAF9D423EEAA4F19FC53BB2C7F2 /* UMTaskManagerInterface.h */, + 2A0765A6FB118B90DCAF3098ED4AD508 /* UMTaskServiceInterface.h */, + BCC2EAD425E15EED42D1634B82E0AD31 /* Pod */, + AEEB2CA83104863944BBD998B06CAF88 /* Support Files */, ); - name = auth; - path = RNFirebase/auth; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - 238B28F479949ED98B0EC82115122286 /* Support Files */ = { + 2335A503758FD4A5D1F1C60A3F532BAF /* React-CoreModules */ = { isa = PBXGroup; children = ( - 21AC208C4538DED1D54AB4C102653BF0 /* React-RCTSettings.xcconfig */, - 6720C13989FF0300B3BD20734475DF23 /* React-RCTSettings-dummy.m */, - EFC5A84423AE386178E1FB69D79B7D14 /* React-RCTSettings-prefix.pch */, + 326FC3B5BBC66068A1CF02825EEF414B /* CoreModulesPlugins.mm */, + 9304E2B15D0A3123635F0438820C85A6 /* RCTExceptionsManager.mm */, + 911A353AE3EB253ABBBD5DC16D898B25 /* RCTImageEditingManager.m */, + ACE4268B41D109C09EB05548F194EF73 /* RCTImageLoader.mm */, + E64BBCFE0D1CD439F335B808B6E51D31 /* RCTImageStoreManager.m */, + 12F8BF5014271D19B0AFE318F6D11002 /* RCTPlatform.mm */, + 38BFA8AC4A77A45EFCD1B0C1F4D11C4F /* Pod */, + 807664B67F5384FF5DA591D6EA9CCE19 /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; + sourceTree = ""; + }; + 2430A79B28D89ACD307C0A8D380D83FA /* Support Files */ = { + isa = PBXGroup; + children = ( + E1E5E0E7BB58C2CF3EC6CBFFF82C3498 /* UMPermissionsInterface.xcconfig */, + 85F0CDC13F749D8A6463A9A071A40965 /* UMPermissionsInterface-dummy.m */, + 5715BD267CD51A2802F146EED5BB28C8 /* UMPermissionsInterface-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 242EDB61C27A554614CD0A8BFC66C9BD /* Brushes */ = { - isa = PBXGroup; - children = ( - 87E3B4E6F8DFCC3B1564EE5A6BC8A35E /* ARTBrush.h */, - 71BEB9E31A700E806EFB7FEC98C34B4E /* ARTBrush.m */, - 31238A8B7C9D38F8ABB58C56ED0A8793 /* ARTLinearGradient.h */, - A8B5C306DE7AF28132B3BAD6F0B04749 /* ARTLinearGradient.m */, - 2606CCA8EA3FA4E2E33F4F7F9C664DB0 /* ARTPattern.h */, - 0AF4CA0BA956D4476ADBBF1B6E4E78FA /* ARTPattern.m */, - 25B095623B50426CB11A2B72D32E2E19 /* ARTRadialGradient.h */, - F9ECBE21F9340188A655F5682239E588 /* ARTRadialGradient.m */, - 39E2BF8E4BE4C32B9113556EDECA42ED /* ARTSolidColor.h */, - 13D918F729CF132872915DE76691DF4A /* ARTSolidColor.m */, - ); - name = Brushes; - path = ios/Brushes; - sourceTree = ""; - }; - 247345CA84B10AA5E3AB4E69734A154A /* UMFaceDetectorInterface */ = { - isa = PBXGroup; - children = ( - 205E767FB5F6715EED16BB215A7201AC /* UMFaceDetectorManager.h */, - D4ADE3AF72632200C53653677BCCBAC0 /* UMFaceDetectorManagerProvider.h */, - 25A211078C866549828916BE5B704D14 /* Pod */, - EC216FA997440897912EB514820B2C70 /* Support Files */, - ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; 248C867CFC61347DCAF2D42E96528B93 /* SDWebImageWebPCoder */ = { @@ -8359,24 +8490,80 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 2531E5D9CF65C3CF26047BD34D009716 /* Text */ = { + 2560929D422DF81D9FB5AB674282EBE8 /* DevSupport */ = { isa = PBXGroup; children = ( - A595B6DD138E016E5D80F615167C7FCB /* NSTextStorage+FontScaling.h */, - DC23F2A6776968AC25F6B3A06A87CADB /* RCTTextShadowView.h */, - 4C12EFD3064A699FE323604CCC14F491 /* RCTTextView.h */, - D89E2A740EBF31F6D63E4CD54C4BD4BB /* RCTTextViewManager.h */, + BE23F2B8AA47C7C0D83B1269BDA976CE /* RCTDevLoadingView.h */, + C434FDCD3B03FA890F45EF6659E2831F /* RCTDevLoadingView.m */, + 34B616B83B7EE2AF882F7BF7E712E89C /* RCTDevMenu.h */, + E87BF0629517862C8C75F5911E51CD9A /* RCTDevMenu.m */, + C00F33CB462AED809B0A19BB3F9EEB14 /* RCTInspectorDevServerHelper.h */, + D8172C4E7C03C8B5A091A935064E8E27 /* RCTInspectorDevServerHelper.mm */, + C9FC4864EBFE117618D7662903228B34 /* RCTPackagerClient.h */, + 2B3D314EFFE2819869E5A8F627761719 /* RCTPackagerClient.m */, + 037EFC5DDB95C8DF260510470A69CC8C /* RCTPackagerConnection.h */, + 5E8055564328A3C168B7560C176F18EE /* RCTPackagerConnection.mm */, ); - name = Text; - path = Libraries/Text/Text; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - 25A211078C866549828916BE5B704D14 /* Pod */ = { + 26852C673336D6979BC3ADE3D4BCA9C3 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 8480EE856E141386167B4E150CB46136 /* UMFaceDetectorInterface.podspec */, + 7C23552EA58AFFAD374A981EA603F638 /* RCTSettingsManager.m */, + 65461EEA6AF8EF745E55D3BC863D0C13 /* Pod */, + A81447CB5D22DAC4EC3BFF86105B2DD9 /* Support Files */, ); - name = Pod; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; + sourceTree = ""; + }; + 269CC9FC2E4FF58C730B36AED638368B /* Support Files */ = { + isa = PBXGroup; + children = ( + BA9EE239835BEBB1498B0C10EEE54131 /* UMCameraInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + 275122FFA14AA658DFF70E63B261B572 /* Profiler */ = { + isa = PBXGroup; + children = ( + 5C6C3065708E58CE2686A002AEFF1574 /* RCTFPSGraph.h */, + 46A304D8C30ADD3DA05AC4E5FEB84EC2 /* RCTFPSGraph.m */, + DF106BBF9FE17648E03694BDC777C2B2 /* RCTMacros.h */, + 8B9EE8D85D2E2B7E5E94B698935D6771 /* RCTPerfMonitor.m */, + 1370AC119D7C23E09EB076FAA7008596 /* RCTProfile.h */, + 8724B62EA576BB65F2F7EB633220978A /* RCTProfile.m */, + DFD824F7CE10BB3B9A00CD916F5EF67E /* RCTProfileTrampoline-arm.S */, + 6CF4A79DB7790017739EE53E0138B48C /* RCTProfileTrampoline-arm64.S */, + 7E5F6A9175C2C2E8BC1900ED908EB292 /* RCTProfileTrampoline-i386.S */, + A0E2C2A0578FFFBFA58D8D308265FDCB /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + 295BE307839B3BCA871DF39F9CB9C7BA /* ViewManagers */ = { + isa = PBXGroup; + children = ( + DB5118406AC1ABF777B7F030A5382C37 /* ARTGroupManager.h */, + E2EE66875AAFC03B4C180E7169628571 /* ARTGroupManager.m */, + BDF11E75FB7A03AA103FC9080F6C0EA6 /* ARTNodeManager.h */, + 8A4771DEA3075824D380A39D09D3E07E /* ARTNodeManager.m */, + 00BCA9CB13EC7AA7313838A2B3F49C7C /* ARTRenderableManager.h */, + A98830A6AA4F5203B9ED5BEBD927446F /* ARTRenderableManager.m */, + 10DD403D876812A2CFA647D3AF09EF39 /* ARTShapeManager.h */, + 6BC8B5DBD9164D488591D0C5959E7BB4 /* ARTShapeManager.m */, + A6201676CD6EB9665D5AB59A3818A189 /* ARTSurfaceViewManager.h */, + BA3AE73EEEB3C3FFB4C471B1F5565CEC /* ARTSurfaceViewManager.m */, + 856E1CF8B4C250D2E8D7613E69E069A0 /* ARTTextManager.h */, + 901D3ED8D2BEE4D409C00D645D7DF9B7 /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; sourceTree = ""; }; 298EEA19A87671656A4C853C89031B0D /* Frameworks */ = { @@ -8387,20 +8574,6 @@ name = Frameworks; sourceTree = ""; }; - 29CB50E8CC69F4BB4048F2BB2B2F3823 /* KeyCommands */ = { - isa = PBXGroup; - children = ( - 0E93ECCDA1756C61A19DA411120DAAB7 /* RCTKeyCommandConstants.h */, - D87D4BF4E569C615C848E73CD7326793 /* RCTKeyCommandConstants.m */, - 636F31DA774BEA7BE943A8E6CCC0CFF0 /* RCTKeyCommandsManager.h */, - FA3FAD6F5216E43A3167EBEBE8B8167B /* RCTKeyCommandsManager.m */, - 7DA4A09401387DA68FD6AB3169D95BD9 /* Pod */, - 38D26E7BBE632D361CCBEEBB4E672A29 /* Support Files */, - ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; - sourceTree = ""; - }; 29CCB6618EF5BA556C5A34E647C5F5A3 /* FirebaseCoreDiagnostics */ = { isa = PBXGroup; children = ( @@ -8413,66 +8586,115 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 29F0C9EB17758698AAC12E60C5866873 /* Text */ = { + 29DFCB4A69860567BEC8A1FBF6CD1E05 /* Tools */ = { isa = PBXGroup; children = ( - C9E77FEC3EF67F96CC4AC77AB9D73516 /* NSTextStorage+FontScaling.m */, - 33AFE038D4008021778FB31EC6A6EFA1 /* RCTTextShadowView.m */, - 4EA63B128144C476191A9774005959AD /* RCTTextView.m */, - 627C072D1242A8741EB84490641B4EEE /* RCTTextViewManager.m */, + ECB108C5BC250A629873A35654223974 /* BSG_KSArchSpecific.h */, + DEE453A55C088BE7915FB3FA91CECD2B /* BSG_KSBacktrace.c */, + 44E9C10025A0D8378158D0BDD21D270E /* BSG_KSBacktrace.h */, + 56B4FBEB509ACAE0C0D3B4DCCDAF3BE5 /* BSG_KSBacktrace_Private.h */, + 5B02742925AD767AC05634CD404FA3E3 /* BSG_KSCrashCallCompletion.h */, + 9CE9A72CF6E189AF362512B223B4A3FA /* BSG_KSCrashCallCompletion.m */, + DC369B712E904236327530F01310C3A0 /* BSG_KSDynamicLinker.c */, + 3EEA86F54F9A79A0F564822480831C7A /* BSG_KSDynamicLinker.h */, + 98C0FD50BB1EFA8154BB3B773C058ACB /* BSG_KSFileUtils.c */, + B8A4DA9E969B5E253D2C069CEE6863BC /* BSG_KSFileUtils.h */, + 63B6F4D77CDA75F67BEC9FA9CEC45577 /* BSG_KSJSONCodec.c */, + 5B1BD0571CE680D83AA4EE422605FC2D /* BSG_KSJSONCodec.h */, + 482DEC5EF620887E6614CCA174DA5861 /* BSG_KSJSONCodecObjC.h */, + 19746B11A9FC85796D2E4D76B1E48390 /* BSG_KSJSONCodecObjC.m */, + FBDF61950B1DF6964906A8592FCD9B36 /* BSG_KSLogger.h */, + F2A26B74F81FEBBD83D944E81B2F1E27 /* BSG_KSLogger.m */, + D1C8A6A31D8D94AF5F8B8C7651E1663D /* BSG_KSMach.c */, + 2D1206B27BD5D05C0E23530D64D82FE7 /* BSG_KSMach.h */, + 2C52513AE7DBCB5987F011FB5DE59BAA /* BSG_KSMach_Arm.c */, + 78536689423EDC8F3F92362B7E3F4B5F /* BSG_KSMach_Arm64.c */, + 8567F4BE66BF18CCF6FD545F52D8F6CC /* BSG_KSMach_x86_32.c */, + 58772685D26FA85973A75761AB562C10 /* BSG_KSMach_x86_64.c */, + 43E2DC5BCB945506579389F0FA0BC002 /* BSG_KSMachApple.h */, + FF3FD6E6CF315CE9FA69B74EF332B1CA /* BSG_KSObjC.c */, + 1F0D73E30911FD6FC36A4864DE2F0A7D /* BSG_KSObjC.h */, + CCF1C1EB8AA85D45F5E6286CD870DC5D /* BSG_KSObjCApple.h */, + B27122F337731A2A7A618F22CE4D3057 /* BSG_KSSignalInfo.c */, + 302A9997905DEDBD4BD5F41E572C5F5A /* BSG_KSSignalInfo.h */, + C664861DC8FF3CDA2F1CFCD17592A1F6 /* BSG_KSSingleton.h */, + 779D34B3BA6422B7922802CA251B5BD1 /* BSG_KSString.c */, + AF6F3F121015DC30BDB69826ADAD9C31 /* BSG_KSString.h */, + A91AA40E3B64474267A1DA7F46B616AD /* BSG_KSSysCtl.c */, + 7AA61C68CFF30E72CC13AE4820139FAB /* BSG_KSSysCtl.h */, + 43DD593587BFC92CB829D1FE1F07614D /* BSG_RFC3339DateTool.h */, + 85DEA271F2AAD5B0744DE2100E84E7C0 /* BSG_RFC3339DateTool.m */, + 5D1213CE24B7A8C686B0CC8F9B08C5BA /* NSError+BSG_SimpleConstructor.h */, + C44F6349165D05C3716A69E6A21F1874 /* NSError+BSG_SimpleConstructor.m */, ); - name = Text; - path = Text; + name = Tools; + path = Tools; sourceTree = ""; }; - 2A70AF40947C85640A0CF21C0EA2B6A8 /* Support Files */ = { + 2A1DDCCA4909D772D3D6457C15D24DF0 /* VirtualText */ = { isa = PBXGroup; children = ( - 80D020E86A3DB547A971CA1B20F7E6C7 /* react-native-appearance.xcconfig */, - 0B67E23A4D5E5329C0527C804BD3134E /* react-native-appearance-dummy.m */, - 9BAD19431865B16792B25375CC234813 /* react-native-appearance-prefix.pch */, + 8B51C56BD452024AD1450ED884C3ABA9 /* RCTVirtualTextShadowView.h */, + 143ADFC0FA4DEE2451160EB9A906B4E8 /* RCTVirtualTextViewManager.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; - 2B20EFB79432F08207A0BC2109EE1EBB /* Pod */ = { + 2ACE968F224CA303D35EDD6D51A42D29 /* Pod */ = { isa = PBXGroup; children = ( - EC174511251D6DA7612CA7306DB50846 /* React-RCTSettings.podspec */, + B63CA93649708B66003D9976A73E11B9 /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 2B7ED1B7786AE1885AA5E2948D2A9F21 /* Pod */ = { + 2AFA0AE60CA3B57F0334C9BCCADC697A /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - CD38BB8B156132FBFC0DEDF194BCF83E /* LICENSE */, - 627B45BC8931FFF3C3C6BE50940ACACE /* react-native-webview.podspec */, - F5A72941FF0DBBF5D8FCA1F794225C4C /* README.md */, + 1D2AB3A8A2C370B08D969DF94379CDC7 /* Source */, + ); + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; + sourceTree = ""; + }; + 2BF5E1EEB87483A28A898C99DAC4F523 /* Support Files */ = { + isa = PBXGroup; + children = ( + CF7B9397D510EEF821D6E8FEB6FCCDD9 /* rn-fetch-blob.xcconfig */, + B7EB6554B672F31C9843AD1842DA000C /* rn-fetch-blob-dummy.m */, + E3E2DAFD22AECBC4E3B4B2709730315F /* rn-fetch-blob-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + sourceTree = ""; + }; + 2CD37A212B70A6D43B8432A57D08E4D9 /* Pod */ = { + isa = PBXGroup; + children = ( + 1C05FF26C5630868689698A6EBA0C723 /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 2C45F107BCD64872F0256D897B5B94B5 /* Support Files */ = { + 2CE794888F8DE9BE154E8E31E6F4771B /* EXFileSystem */ = { isa = PBXGroup; children = ( - 0F218E27E1059AFDA5D2F6B49784ED27 /* RNLocalize.xcconfig */, - DC92164D6BFC49E2D478426F521D30FE /* RNLocalize-dummy.m */, - CF229B1B9CD2988E2210AC5E3867FE44 /* RNLocalize-prefix.pch */, + D1A0D5D7EC9E2BBCD81F172570CC5836 /* EXDownloadDelegate.h */, + E8EF18128806B5096CE475E08D7DEC9C /* EXDownloadDelegate.m */, + 484FC0BF8917204AD3A0FF0D7B057B08 /* EXFilePermissionModule.h */, + ED1EA912E8DC15EEC8D3CCF175A144C4 /* EXFilePermissionModule.m */, + E955D8C9C52D4F1AFCE52ACB8AB52EDF /* EXFileSystem.h */, + 8652B79418E870A7D1FAB5BB20823FEB /* EXFileSystem.m */, + B2CCF890C7F636CF9828954DD4839ECF /* EXFileSystemAssetLibraryHandler.h */, + A3AA3FEA8A53641838369D00C03EEB11 /* EXFileSystemAssetLibraryHandler.m */, + D33956969D29BEE46BB8FADABFD48697 /* EXFileSystemLocalFileHandler.h */, + 633F3053CA8B414B51F0D77B7B9B9E2F /* EXFileSystemLocalFileHandler.m */, + 960CDC8E9620951807BD04359581B61D /* Pod */, + D29F68DC54EECB210A3686F9F224DBC8 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; - sourceTree = ""; - }; - 2C55E145DD9CE644968F4515E9F4EA17 /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - D6CCC3839226668399756AA19C5F9EB5 /* UMNativeModulesProxy.h */, - 6400266D477D2FA1A5BD7E46E08C1FC8 /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; 2CFB22E97429F69EF0B16000B9744E75 /* Support Files */ = { @@ -8484,151 +8706,124 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 2DD1AED08B9659E6582CEAF0363779D2 /* SurfaceHostingView */ = { + 2D522EBF04DDB46C3A9D606575716E23 /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - 5FF6EEDD41B74C067D234D6C305BFF65 /* RCTSurfaceHostingProxyRootView.h */, - 2323F367B32053EA27F9D766634A5DDB /* RCTSurfaceHostingProxyRootView.mm */, - 357FF7EA38456A76C452E63689055EDB /* RCTSurfaceHostingView.h */, - FC106E9BE9BF1893772A66FAF3F9D3C8 /* RCTSurfaceHostingView.mm */, - 3B598E756408A131151E0D606053991B /* RCTSurfaceSizeMeasureMode.h */, - 2DB4C4BAA0A3E960224AD870D1692FE5 /* RCTSurfaceSizeMeasureMode.mm */, + 38A30600C0DFDF4A55322D34986130AE /* RNCAssetsLibraryRequestHandler.h */, + DD47CA8D146027D7F34C7E8E805EEA44 /* RNCAssetsLibraryRequestHandler.m */, + 228CFB3390CC7D9CA85CADC0DDF34E83 /* RNCCameraRollManager.h */, + 0CB7FD18214C4A9B53A00CB42D763FB9 /* RNCCameraRollManager.m */, + A60D27E8E3B2F40CF1DAAB4CE6AAF5BC /* Pod */, + 09F84A6DCCFD057CF0F3BC796FC4972C /* Support Files */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = ""; }; - 2E25BD9D4FCAAE923B7BFF6C6A7D6DD2 /* React-RCTLinking */ = { + 2D762D739E2ECD37DF80F7B51273EBCF /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 04B0350A98F7FD6735CBAA7A93BD01B1 /* RCTLinkingManager.m */, - 2E3A1ADED02F8CF37B5D424C86DE171D /* Pod */, - DBDFDE81C85A3EF35AEE1191D1DD2FD2 /* Support Files */, + 2E6D706B80A509660C8D48471972DE63 /* UMModuleRegistryProvider.h */, + C924DAC40ABF80AFF8DDACA3783BF610 /* UMModuleRegistryProvider.m */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; - 2E3A1ADED02F8CF37B5D424C86DE171D /* Pod */ = { + 2EF3D75F068694DC234CD13A4C125353 /* Nodes */ = { isa = PBXGroup; children = ( - 2C907D36037903303ECD9829DB8495BC /* React-RCTLinking.podspec */, + 336332861BBE16E791E3BF91B49A90AF /* REAAlwaysNode.h */, + C065F6D18745B1FCDCA998C64631EDF5 /* REAAlwaysNode.m */, + 40D78442127209831840FF37844DC9BE /* REABezierNode.h */, + FB0FD0914EC038D592EC73415840B17E /* REABezierNode.m */, + D59645170D897EA74762E1FCEA7753D2 /* REABlockNode.h */, + E93257CABCD50B220319708EBBCA16B5 /* REABlockNode.m */, + 5EE8292748F382CBD51314B67374C69E /* REACallFuncNode.h */, + 155BF30E98B03A0E2C247B5207B08A90 /* REACallFuncNode.m */, + 9B56B26CA2BC9870ADBBFA20BD83716A /* REAClockNodes.h */, + 5A3E9181E2D51A42FE4943ED1D9B5535 /* REAClockNodes.m */, + 32AD7270A69F58601E058EE708DFC3C0 /* REAConcatNode.h */, + B0B3A12B91A8A500C5F71541AAAC6765 /* REAConcatNode.m */, + 51C861E9CF0A5D895DA2E65CC1A3BAB8 /* REACondNode.h */, + D35F219D6B1F62CB48666E80FE58D9BF /* REACondNode.m */, + 1DE736777B95922CA3250DE0A9F4C6D2 /* READebugNode.h */, + 01CE63975CB6F456365FF3E39570FE09 /* READebugNode.m */, + DCA1CFD77AFBC867CD247A6781E6F939 /* REAEventNode.h */, + F3B8A6101C7D6A4F68E2F87CD815D348 /* REAEventNode.m */, + 33286A92BBA775A209FCB1713DBD0249 /* REAFunctionNode.h */, + EA1A9983F5C76F1C89627688BE1BEEC1 /* REAFunctionNode.m */, + 7664C51B71C4030F277918AB13606AED /* REAJSCallNode.h */, + 6787D97354E99D4B6966994AF6A53F8C /* REAJSCallNode.m */, + A96CB40A9755C2F2F94FB73512E96322 /* REANode.h */, + F8463E5D03066C23953904688BB5DC93 /* REANode.m */, + AC5B938D3541A5B6610D7044F0B2B802 /* REAOperatorNode.h */, + 9840C1D5092D09CF7DE8F2F8EB6153D2 /* REAOperatorNode.m */, + 85EC457C09526CED4653E2E2B12AF25B /* REAParamNode.h */, + 5C336663E9A8F1C74D8FA35657612638 /* REAParamNode.m */, + 39837F87108DB198E2A017AA1BB8D992 /* REAPropsNode.h */, + 7194487BFF3965B1C033076603CF428D /* REAPropsNode.m */, + CDB7E4A6B40CC3F7949482EBF4817BA0 /* REASetNode.h */, + F13DC9E73387630908205297F04EE263 /* REASetNode.m */, + 46410397E3023D5F484AA3CE02FA2C3E /* REAStyleNode.h */, + C371044B89982798C6F26ACB9B59D7CF /* REAStyleNode.m */, + 781F1C4AE7307355643F18D9C711807A /* REATransformNode.h */, + 0E59F6B883516627C1CC6F8E6563D499 /* REATransformNode.m */, + CDA8213009E70849199210857BCA10EB /* REAValueNode.h */, + 0DCE199F6933D32286C8907127F900B0 /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; + sourceTree = ""; + }; + 2F3F88062029210D78C4C268357C7C75 /* Pod */ = { + isa = PBXGroup; + children = ( + 3E19D483A425A5566F05812F8AF6A440 /* LICENSE */, + 35F74D3BB4ECD5E8E0DC2EE188EB3045 /* README.md */, + F7785D3CC4BE9E3D5801E9BEE6EEA2AC /* rn-fetch-blob.podspec */, ); name = Pod; sourceTree = ""; }; - 2F640704C6B238FFAD7855CF187FE578 /* Drivers */ = { + 3147C0EA09B0BE6E5ABEB7D28CB19089 /* Pod */ = { isa = PBXGroup; children = ( - 28200B7B2826E413420961FA86E7E2E9 /* RCTAnimationDriver.h */, - DC7329CA9428EC0F785B6A190B581E9E /* RCTDecayAnimation.h */, - 03D230A5DC176F0B184A61B8C98B6BEA /* RCTEventAnimation.h */, - 5FBB2E0D6185552EE63D91A0B3B7AD1F /* RCTFrameAnimation.h */, - B6983AF95B39257FA2BE471713F402B1 /* RCTSpringAnimation.h */, + D43BDAE8BA9BC348BDB600B49375A1FA /* EXPermissions.podspec */, ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; + name = Pod; sourceTree = ""; }; - 2F7690AE1FEF9B42F41E1F8F10D10735 /* React-cxxreact */ = { + 3261A7403DD7EBD1685726D691924C1F /* Support Files */ = { isa = PBXGroup; children = ( - A9503EF536E523F96203052014C6BAF4 /* CxxModule.h */, - 4AC0C7574DAE4ECE43B4A13EF75AECA8 /* CxxNativeModule.cpp */, - 12A16BBD093134117D9B4CFDF9359DDF /* CxxNativeModule.h */, - FAF68036D1CCEC3D01E8537FEC9697AB /* Instance.cpp */, - F71EB3ED435BE62A03FB8BE9A69A5F5F /* Instance.h */, - 04ED4DEE7B509B2575509E63CEB2B1AD /* JsArgumentHelpers.h */, - 82D163B62D58A7DAAC4F67FE5DB44B93 /* JsArgumentHelpers-inl.h */, - 07E5DA47E4212DB768DB092C518399AD /* JSBigString.cpp */, - C15DBBB908005ED013E5D85E2446096A /* JSBigString.h */, - 18A5FB31561943E51775DF6C2A709D19 /* JSBundleType.cpp */, - 7D7213217E40522F94758DC70EE7305B /* JSBundleType.h */, - 9A7AEBA9C7FF343E5421EF7F9BFCC694 /* JSDeltaBundleClient.cpp */, - AAE04C89918794FD8CEB73ED15E0C056 /* JSDeltaBundleClient.h */, - 9F11B9FBA50006F16241B643CC14A271 /* JSExecutor.cpp */, - 0F7B2000BE3105D55FDF862386C46774 /* JSExecutor.h */, - E5D773D06094FC95830D197D526EAF1C /* JSIndexedRAMBundle.cpp */, - 8A532F8903DFA43FF342F2EB8E9AF675 /* JSIndexedRAMBundle.h */, - 041AE7063506BA408912E1C0DC8B5B9F /* JSModulesUnbundle.h */, - 6248DF6E2A2A11CDEAEB601763176F59 /* MessageQueueThread.h */, - 0840CE117A17CF8930BBBD11D54CBF22 /* MethodCall.cpp */, - 356A307C6ABF12EF11CA33E44EACF4E6 /* MethodCall.h */, - B3961133E9C62549A0F7C125B3EEF7E6 /* ModuleRegistry.cpp */, - 30B150C99EB1AAE67D345BC94069538D /* ModuleRegistry.h */, - CCDB866E2441C8D4C615934AE96E2B37 /* NativeModule.h */, - 6570BEC05AF52AE575BFE1F10E1D6275 /* NativeToJsBridge.cpp */, - B57D43FA12903105F3A9F573F3EE96A9 /* NativeToJsBridge.h */, - 09FEF9981606134C65ADBEB0FB57B17E /* RAMBundleRegistry.cpp */, - EC00180B78B1F10FA9BAA45677C192B6 /* RAMBundleRegistry.h */, - 11C69D513A3C6989D4E6AD2745DE7E66 /* ReactMarker.cpp */, - 8AEEFA27BA1AF4F108E5CAD8B09C5DD8 /* ReactMarker.h */, - 7A4F18BCCD035A3DB966FB44364322BC /* RecoverableError.h */, - 4873C107DBE9F26AECC09318A8B12A9A /* SharedProxyCxxModule.h */, - F84D927CDF596173B9BCA45A39ABE347 /* SystraceSection.h */, - 6EE080B27C2F0BC39CC6F791380A9695 /* Pod */, - 4008E5145C352361130CF003129A6EEC /* Support Files */, - ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; - sourceTree = ""; - }; - 2F7A2F7E340E5890C8E1047645B4F7D4 /* messaging */ = { - isa = PBXGroup; - children = ( - C3893067B4ECFFA8C4C9CC8A8D5966EE /* RNFirebaseMessaging.h */, - 54E3C1C3BCCE56C706BFA114BE0B4287 /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; - 3082259E58863D9403713AD11984680B /* Support Files */ = { - isa = PBXGroup; - children = ( - 0CF4A6E68D0685DE586ED50622C61AB0 /* UMBarCodeScannerInterface.xcconfig */, + 1122716D821F5E98F684F6C17A79B568 /* React-Core.xcconfig */, + 721AE8AE7F5A350C60272E1396DF83CA /* React-Core-dummy.m */, + 2BE06E60A7CD7CD2F3CCFA917985403B /* React-Core-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; - 30F75404939D1A08E87AF042E94679A4 /* UMFontInterface */ = { + 32E5DDE002C39AA47F435BD00A682A59 /* React-jsi */ = { isa = PBXGroup; children = ( - 2B0F6F88BD766B40D9610A5374CC36B9 /* UMFontManagerInterface.h */, - 55F88757732E7FE74C9DB1339A410111 /* UMFontProcessorInterface.h */, - 9FCD890FE514033649939E23DF34FCFD /* UMFontScalerInterface.h */, - 8E63DE5FDC61C58B3447DB0396BC3C73 /* UMFontScalersManagerInterface.h */, - F8D5524FB063092E3325F8D28B28D52C /* Pod */, - 879F3A9033ECD2468189DAE5BB980708 /* Support Files */, + F8560B8A02F21948E3B4C54CA9FC484F /* JSCRuntime.cpp */, + 279F84CE98B0C3F73635D61DB1FCF01A /* JSCRuntime.h */, + B60228CCF0B40AC453D9371ED50294A5 /* jsi */, + D1B3017B97D18BC854ED3031B1C02C17 /* Pod */, + EC823A739F3856D45BF09923A1DDF0C9 /* Support Files */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; - 313A748AEB6B4934761E0630D7BC91AB /* Default */ = { + 3427C543C2EB965117965AA3DF42B04E /* Pod */ = { isa = PBXGroup; children = ( - E9F30F25519F63BF0442A29E1423FFF1 /* Base */, - 8C20CEE22212DDDE842C26FDE6ADA2CA /* CxxBridge */, - FC59B7331AE341F0413D952C9259C402 /* CxxModule */, - C3205B7DE975C5140E227DACC552CF13 /* CxxUtils */, - 8C7CBC84423331242D42A6B6FE6C9777 /* Modules */, - 65AE39EF8646DA1A7B47A88EE6DFFC39 /* Profiler */, - 6B7B99CB35929146A220D14D68A46DF8 /* UIUtils */, - 6EA4AC36E6CB3CDB7F0F7F660605D1F2 /* Views */, + 36FC38F4BACD984E4837C57543196DF0 /* react-native-keyboard-tracking-view.podspec */, ); - name = Default; - sourceTree = ""; - }; - 33F151A6A4A0F23EE92B99FE2F728DA2 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 3ABB39A02D387C3BEF3101867418B280 /* RCTVirtualTextShadowView.m */, - C8648AE914FA3B915EDC121CDE3F064B /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; + name = Pod; sourceTree = ""; }; 343E456B2AB936C3DDC90D1F4B20237F /* MethodSwizzler */ = { @@ -8641,6 +8836,26 @@ name = MethodSwizzler; sourceTree = ""; }; + 34437C678392336D06F7D9A44F95BE39 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6963CE9D04E17D9D800781536E876D59 /* UMBarCodeScannerInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + sourceTree = ""; + }; + 345D95BBEFDB96979128772FD0A9100C /* Support Files */ = { + isa = PBXGroup; + children = ( + 2DF73263658389F8568E38761A19E8DF /* react-native-slider.xcconfig */, + B7FA09B51BC675A9057DB49E34E0DEE5 /* react-native-slider-dummy.m */, + 802049199BC49D6DE72DD947DF0F8EC2 /* react-native-slider-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; + sourceTree = ""; + }; 34C9625F8E0C707FA11F358702EB8A04 /* GoogleDataTransportCCTSupport */ = { isa = PBXGroup; children = ( @@ -8664,94 +8879,88 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 377C1100EC2B6658E5E10ED244F6F29F /* react-native-keyboard-tracking-view */ = { + 350D8991844FEE2ABEA3D5B7586DF8EE /* KeyCommands */ = { isa = PBXGroup; children = ( - ECC314D558F5DF672D18C790519C8D94 /* KeyboardTrackingViewManager.h */, - 639DAC10EE5EA1A619AB562FD75ED18C /* KeyboardTrackingViewManager.m */, - 89744B170298F75C90CAC39E6808A498 /* ObservingInputAccessoryView.h */, - 1CCDD0A69E45548748B1FAAF293AADFB /* ObservingInputAccessoryView.m */, - C7C0DDAD43DCB0C5B0E28964FBD037BE /* UIResponder+FirstResponder.h */, - 75E365638CA123FC673096D535EC8E84 /* UIResponder+FirstResponder.m */, - 7B89B65395E413FA150A2EA80A8B154D /* Pod */, - 00D96BEE3FA814BC5DFC2C42D8607C95 /* Support Files */, + A31E5566AAD517FCD773D6C2F9361629 /* RCTKeyCommandConstants.h */, + 7C6AAB1C0DD54AD4F964138F0AFDB78F /* RCTKeyCommandConstants.m */, + 58CE965B2A850BF72367F02050183E01 /* RCTKeyCommandsManager.h */, + 5E3DBB2C5DB68118B145E5FF464CBAF8 /* RCTKeyCommandsManager.m */, + B169B0B4B3EAA7F31BC7CB986D4679E0 /* Pod */, + 88F6350C6594112796036F5F04287C1F /* Support Files */, ); - name = "react-native-keyboard-tracking-view"; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = ""; }; - 37E134DBFE626C2E55CDE1D3EE165A01 /* Support Files */ = { + 35E4E93D48056041A586D1FC9CD32BB5 /* config */ = { isa = PBXGroup; children = ( - EF106A6DD349A9D728B07E4FF7D0B6FC /* UMSensorsInterface.xcconfig */, + D8469837AD5A35B13B6080B1C82DCA9E /* RNFirebaseRemoteConfig.h */, + 6D552AFF53AA993FAED6F96D1E77886F /* RNFirebaseRemoteConfig.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = config; + path = RNFirebase/config; sourceTree = ""; }; - 38D26E7BBE632D361CCBEEBB4E672A29 /* Support Files */ = { + 3898FDCC8438E183229BA1EC6579DEA8 /* RawText */ = { isa = PBXGroup; children = ( - 6B6F4AC2C5C639CD50BF159830CC8CFA /* KeyCommands.xcconfig */, - 01FB45C7FD3C9C71EE2326C6D2C35FB0 /* KeyCommands-dummy.m */, - 579DCA16DBC6E517F256C8FCF62D5C1A /* KeyCommands-prefix.pch */, + 67F159A66A2D17CAB3A4277FB3AF6A58 /* RCTRawTextShadowView.m */, + 60361FD7C49A6AD026815EF494CA3B33 /* RCTRawTextViewManager.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + name = RawText; + path = RawText; sourceTree = ""; }; - 38E66E7C00D8504B205C563F363DD3DE /* React-RCTText */ = { + 38BFA8AC4A77A45EFCD1B0C1F4D11C4F /* Pod */ = { isa = PBXGroup; children = ( - 3DDD0DEB64B160EAE167CD2F2BCCDAFF /* RCTConvert+Text.m */, - 2C33912CA546600E42493C322862CA45 /* RCTTextAttributes.m */, - 123B8222D9E0AABD1CBFE27A180152AA /* BaseText */, - CB57D8EDCFBC6E588ECFD35966437CF6 /* Pod */, - 09F11580B1F970138A816DD42C753E8E /* RawText */, - 68C31E9E200F9720B5B0A651EF94E5DF /* Support Files */, - 29F0C9EB17758698AAC12E60C5866873 /* Text */, - AB00C6C5CA12BF25D635208FFF45DC40 /* TextInput */, - 33F151A6A4A0F23EE92B99FE2F728DA2 /* VirtualText */, - ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; - sourceTree = ""; - }; - 38E7DB5068ECD555A8C177F79ECD8392 /* Pod */ = { - isa = PBXGroup; - children = ( - 7789EFA9B0EDD2CF26FC3B1BD82EC15E /* React-Core.podspec */, + BCF373F15B65F313A14AF9973E3715A2 /* React-CoreModules.podspec */, ); name = Pod; sourceTree = ""; }; - 3A54A43E35FAC881086B302605819C14 /* Video */ = { + 399325743B607CA9A7DCD17BFC3C0AB1 /* Pod */ = { isa = PBXGroup; children = ( - 3FF032A05D37EC27E5991CF4F8AB0560 /* EXVideoManager.h */, - E41F52520D62AC019BAB1E9EEB0AD7E9 /* EXVideoManager.m */, - A097391D91E9B6ABA1CECE20676B56E3 /* EXVideoPlayerViewController.h */, - 8120E4F98D1D00F4339976D8EDC1057F /* EXVideoPlayerViewController.m */, - 3098F19ED0FF9A0D33958CE009076ED2 /* EXVideoPlayerViewControllerDelegate.h */, - 20F168BF5FD0754BFE7FF0FDA8265702 /* EXVideoView.h */, - AFE2B58EC2E3690530A64E04F5FEA198 /* EXVideoView.m */, + 6BB03E3659B261F8957825BA15C0C820 /* LICENSE */, + 1C3ED6965B82BADCF0791CEFA64C3BD4 /* README.md */, + 8FE9B7E792A4563346F03D5F9DB4D050 /* RNFastImage.podspec */, ); - name = Video; - path = EXAV/Video; + name = Pod; sourceTree = ""; }; - 3AD623D9DA1BAB6BC9895D4428C38246 /* firestore */ = { + 39D0057FC1CF94F165A3E7B03392397B /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - 60163513AA98DAFFBB8096351DCE81C1 /* RNFirebaseFirestore.h */, - E606ACB92B5C3B7E5141D49B128773C1 /* RNFirebaseFirestore.m */, - D21E43780BF3998101CB499FE552EEC7 /* RNFirebaseFirestoreCollectionReference.h */, - 516328D76CF735CAAC99DF79EEE52C05 /* RNFirebaseFirestoreCollectionReference.m */, - 8520D971696FEBF0477BBD6446C4D492 /* RNFirebaseFirestoreDocumentReference.h */, - 2F56A0807073424049DE488D5F256EDD /* RNFirebaseFirestoreDocumentReference.m */, + CD548AE735110B7E4E65FEFF1BA2BDF3 /* RCTAnimationUtils.m */, + 7AAA59CC783933EF25B63E4551597526 /* RCTNativeAnimatedModule.m */, + 1681EFF77C91B2EBAADBBCFDE5AB3D82 /* RCTNativeAnimatedNodesManager.m */, + F92A59C1E1D35B689C4739898ED356EB /* Drivers */, + 621D749F48F18C75083B23171C0616C8 /* Nodes */, + DC8CCBD7E9F42471C772B5589F5E43EF /* Pod */, + E82C8CEA04EA86DCE2AC711D278233DF /* Support Files */, ); - name = firestore; - path = RNFirebase/firestore; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; + sourceTree = ""; + }; + 3A42BC5F8BFA1A4A1C08DCA5CFBD47FB /* Pod */ = { + isa = PBXGroup; + children = ( + 4564C1279658F975D4C6F3EF65B16195 /* React-RCTVibration.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3AA45A06C9EF7C0585C192AAD706384D /* Support Files */ = { + isa = PBXGroup; + children = ( + 6A0081E92C4286A22421D3C0C73B0BA4 /* RCTRequired.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; 3AFE7C92461044B160C47A6C0AAAB752 /* Support Files */ = { @@ -8764,59 +8973,109 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - 3B311F4CE755B72FEF8DBB4C8CDD2559 /* Support Files */ = { + 3BDFE2731FC1278319E74EBBAAB93A2A /* Support Files */ = { isa = PBXGroup; children = ( - F85392B2599302F91F4B0D19284BA676 /* react-native-video.xcconfig */, - 7B1E97A9F2C1BC67CEFC4ED914700AD2 /* react-native-video-dummy.m */, - 672A3A7FA491AC6968E21C58EC21FD21 /* react-native-video-prefix.pch */, + EF5DFA0047DCFB89F0F9C6BC56DBFB18 /* RNGestureHandler.xcconfig */, + B8AA0AF64FAF56FCFC373135F88A2480 /* RNGestureHandler-dummy.m */, + 07112190785FAFD6F42C3C1D0E8AA9D1 /* RNGestureHandler-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-video"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - 3C323F0E225E5DB3AB4E1EDD64942BB1 /* RCTCustomInputController */ = { + 3C1DDC3FB6E24F9107C8229DEF32483A /* EXHaptics */ = { isa = PBXGroup; children = ( - C2E6C2B575F24F9FA7B0F2C3AAEA8577 /* RCTCustomInputController.h */, - E3AC30C12EC69BAE7FEB7BEBF749393F /* RCTCustomInputController.m */, - F3F3FE84E33655DC802A375A4A3A2F47 /* RCTCustomKeyboardViewController.h */, - 93397AD379506B0DFA85AB22E1858FC5 /* RCTCustomKeyboardViewController.m */, + DDB382DFBCB05EB7B387EED3D0867813 /* EXHapticsModule.h */, + FD3669C6CCD38882387710794F350200 /* EXHapticsModule.m */, + 9CBC55C874F8419A8CA75500713700EE /* Pod */, + BC60BF9D7D9E26FEB2706D14C2B7B79D /* Support Files */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; - 3C33563BD7AFAEF8D12B35A08AF8CAD7 /* fabric */ = { + 3C2412ED15FFF8679A2C947A222F5BE3 /* Pod */ = { isa = PBXGroup; children = ( - 7C6F00A792B8D8F7E2EDA3CEAD517A3F /* crashlytics */, + 436C1371FC8E6E933E1C7D4FFDD8B7F4 /* react-native-slider.podspec */, ); - name = fabric; - path = RNFirebase/fabric; + name = Pod; sourceTree = ""; }; - 3CE3C357B97965F1EB80E54CA3AE881C /* UMModuleRegistry */ = { + 3C8C0233964D1BA7DF3019F8C27BBA7F /* RNFetchBlob */ = { isa = PBXGroup; children = ( - 714A238B856E4054872E1FD400E56ED0 /* UMModuleRegistry.h */, - 47EEF3AE669D34F0C6B77A1B1C77409D /* UMModuleRegistry.m */, - 78A184457F8555737983B26A11323CC5 /* UMModuleRegistryDelegate.h */, + 48329096C1351B1DD5AE929CC0D9D4AE /* RNFetchBlob.h */, + 2EE0A3B1E2E891EB4A57FC5CA50CF611 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; + 3D0185EB56872593E9B35E51103909CA /* UMModuleRegistry */ = { + isa = PBXGroup; + children = ( + 649344AA8B1C08392740E46567C66E47 /* UMModuleRegistry.h */, + 619B139913CB514337EE15652ADE9A53 /* UMModuleRegistry.m */, + 57FA445BB37F82D01B52365ECD7D6C52 /* UMModuleRegistryDelegate.h */, ); name = UMModuleRegistry; path = UMCore/UMModuleRegistry; sourceTree = ""; }; - 3EBFCEBC1B23903E52896FD370724FC6 /* RCTAnimationHeaders */ = { + 3D7A936488BEFC07FBC8B81D2C2060DD /* TextInput */ = { isa = PBXGroup; children = ( - 4F1B903AFBB12AAE3480AA42378C8726 /* RCTAnimationUtils.h */, - F9C8922FC2D0B6600C814C1B3382B23F /* RCTNativeAnimatedModule.h */, - 6178ED33DD306879DAFA289C279D1721 /* RCTNativeAnimatedNodesManager.h */, - 2F640704C6B238FFAD7855CF187FE578 /* Drivers */, - 5D4663A395B20D33275C3A3D4C05A68D /* Nodes */, + 1FBB0C53766AC1DFF327E9CFCBBD6F98 /* RCTBackedTextInputDelegate.h */, + 6661B5DF26D3D513147A6BB00CDB9F38 /* RCTBackedTextInputDelegateAdapter.h */, + 16E7612E96088646591DE8A684016131 /* RCTBackedTextInputViewProtocol.h */, + C0653AE93FB3AC2AB6D24D08E9683105 /* RCTBaseTextInputShadowView.h */, + 02A0D42512086283A861F8CED0F648A0 /* RCTBaseTextInputView.h */, + A8DB2F461C5ED332B4E19865257F5FCD /* RCTBaseTextInputViewManager.h */, + 4151BE02E30868B45332A3685EE9B1AA /* RCTInputAccessoryShadowView.h */, + 31456AED676E5858FD1BAEBDA8A1BD56 /* RCTInputAccessoryView.h */, + 6B498F582FEB3B9C9EE4FDC74737D545 /* RCTInputAccessoryViewContent.h */, + 4D38D3439400A446FC489F62DD1545AB /* RCTInputAccessoryViewManager.h */, + 3EE0D0103FCF7397BFE95BB411148F8A /* RCTTextSelection.h */, + 9A45D20565BA83DE6A86837F7D1FEF12 /* Multiline */, + C73999ADCC8613B2E501B3EDB3E4E61B /* Singleline */, ); - name = RCTAnimationHeaders; + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; + 3E6538CB2E7833565643E70173BC7EE3 /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + D5C26607E9E8ABBED4A67805CC67CA70 /* RCTAnimatedImage.m */, + 04A51D984AEC516EF9A97414A6E079B9 /* RCTGIFImageDecoder.m */, + 8FF29F881AA0F7272BECFB2257110210 /* RCTImageBlurUtils.m */, + B31723DA3775B81672B99CA2A5ECF84B /* RCTImageCache.m */, + EA35A0810016924A46CEFF5B1E00807D /* RCTImageShadowView.m */, + 599C3A829167F002480731A8F5B63CA4 /* RCTImageUtils.m */, + CAC68C9044E051BF80290FF7367230D0 /* RCTImageView.m */, + 8B956CEEE85425A03D1A573B50CBCDB7 /* RCTImageViewManager.m */, + F7AEB18271B93ED325AF1F8E5EA32664 /* RCTLocalAssetImageLoader.m */, + EC302DA9C6CDD370EB704F334E10A984 /* RCTResizeMode.m */, + CF9DCA216CCC76332478CD7169F5BBD5 /* RCTUIImageViewAnimated.m */, + 8B54899BB6A71ED98D51B1E5FE5C63DE /* Pod */, + 08568AD2B33B1609CDAC0971EF1F78CE /* Support Files */, + ); + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; + sourceTree = ""; + }; + 3EE3226A34E4349C5936738189149766 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3CE8DB135BD84815A56BD056D34BD742 /* EXLocalAuthentication.xcconfig */, + 123652BFB7980D6B22F23CE30BF983DB /* EXLocalAuthentication-dummy.m */, + 0B119CD86443D85E00D8782B268F50FA /* EXLocalAuthentication-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = ""; }; 3F6F28E6BE7C21FFF5BEC8EA83FCA9A1 /* Resources */ = { @@ -8827,91 +9086,98 @@ name = Resources; sourceTree = ""; }; - 4008E5145C352361130CF003129A6EEC /* Support Files */ = { + 3FFB1D0932CDF007881A23583A7BA09E /* Support Files */ = { isa = PBXGroup; children = ( - FB30A0C1F84B37E7A63836AD635BF79E /* React-cxxreact.xcconfig */, - 4ECC8DCC2ABEC6C02D9002EA8DB15B51 /* React-cxxreact-dummy.m */, - 289C498A8DF4EC279311FDCAD80D1986 /* React-cxxreact-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; - sourceTree = ""; - }; - 41AB71CF1960229EB3168DEC12D6D7A1 /* Pod */ = { - isa = PBXGroup; - children = ( - 3CDB31921DA1C96EA73DF664B097FDE4 /* React.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 41EAFE4A5D36EB625E314E306C1ED578 /* Support Files */ = { - isa = PBXGroup; - children = ( - 43815A8525F773276C57D3783821EC68 /* RNFirebase.xcconfig */, - 9A1D215EB5CC4FA8B549778DCF215A5C /* RNFirebase-dummy.m */, - C9E1D8E89A6E01CD8EDDC9390128E289 /* RNFirebase-prefix.pch */, + FA9A7BCC965E4412222BFD628ACC52C5 /* RNFirebase.xcconfig */, + C08EADA257AA9BE55496E9A991CEC7BB /* RNFirebase-dummy.m */, + 17B0741E5EE7768D82809C35EA236F63 /* RNFirebase-prefix.pch */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFirebase"; sourceTree = ""; }; - 42AED56E50C010F8D77AA2DA49C14D2B /* Pod */ = { + 40280EFA2DA63984B2096D1997387BD1 /* Support Files */ = { isa = PBXGroup; children = ( - CD96D51596543F25D4526773885A67DF /* UMFileSystemInterface.podspec */, + EFB8F756FA964C31DEA83DBBD3765A29 /* React-cxxreact.xcconfig */, + B7DE03D1640847C66490747A36E8BE66 /* React-cxxreact-dummy.m */, + CCC79BE316E0AFC1330F62AC30ABC9A7 /* React-cxxreact-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + sourceTree = ""; + }; + 40A5243363E95533536C10F166243198 /* Pod */ = { + isa = PBXGroup; + children = ( + F2D557E981D7E30B3E5E9E41F85D0A1D /* RCTTypeSafety.podspec */, ); name = Pod; sourceTree = ""; }; - 42BFB295E0CF8B1595BA60D8B0DDBA0F /* EXHaptics */ = { + 40C6033FF800E0EA98FA823203322FA5 /* Singleline */ = { isa = PBXGroup; children = ( - E12037BC069B82359BD9130847A65C00 /* EXHapticsModule.h */, - 86F3BA956CA2FFF9CD02935EAB9D2D39 /* EXHapticsModule.m */, - B93E696AD81C6E78001C38538C32EAB2 /* Pod */, - 58FB4F633D42A5FAC9B1A6C59C4C6970 /* Support Files */, + 8ECD48DF4DA4FE387EECA42C6D3D9E75 /* RCTSinglelineTextInputView.m */, + 25E8877F69574680B9D157D37935E23C /* RCTSinglelineTextInputViewManager.m */, + 2F72CFDA1205DF7C793BCAFDC48F55DD /* RCTUITextField.m */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 43219D9397ABE3178694DBEC1762B03F /* Support Files */ = { + 41F5DC7E1C10E219F655FE3F8B992E9A /* Support Files */ = { isa = PBXGroup; children = ( - 93FAB1745DC86F18A7B2CF702DE72503 /* React.xcconfig */, + 433D8D0C7022405DB54D273A5D2D01CD /* React-RCTBlob.xcconfig */, + 394DC43CF3BA3EAD34232339A9192442 /* React-RCTBlob-dummy.m */, + 326A14F8992345AEEFF8DC48325E2CE2 /* React-RCTBlob-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 4327AF53E2632320858494B5B7CD605E /* Support Files */ = { + 42BA71782241714E439CE87C1862723E /* turbomodule */ = { isa = PBXGroup; children = ( - 929ADB4BD381ED2AA60F8FF8E7317730 /* UMImageLoaderInterface.xcconfig */, + 07B912E4194279FDFA9400D79ECDDA26 /* core */, + ); + name = turbomodule; + sourceTree = ""; + }; + 433286A7166B99702D9CBA5A18678020 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + E9692395205DC2821CA5F280F28987F7 /* ReactNativeShareExtension.h */, + B7C4400A6630481D31011975ECC11D8F /* ReactNativeShareExtension.m */, + 1C6E445BA6CF204F3B4C4E4BDA571331 /* Pod */, + 1AF7B50596EBA4C0F9193867A8E37BDC /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; + 4362E34D1C889BDDC5BD1FDD884C562F /* RCTRequired */ = { + isa = PBXGroup; + children = ( + 1F9B63FF63976FAB9F6FA8373A3AB9FB /* RCTRequired.h */, + 08D6E7177FBD0BEC136145695B4D9306 /* Pod */, + 3AA45A06C9EF7C0585C192AAD706384D /* Support Files */, + ); + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; + sourceTree = ""; + }; + 4395C58E2EFC71131B5CD962D628918C /* Support Files */ = { + isa = PBXGroup; + children = ( + 5683BF5F00D3AD794CFB35F8C653915D /* UMAppLoader.xcconfig */, + 753777D1486081C047A17939026DF097 /* UMAppLoader-dummy.m */, + 7838ACD9046536BF03DC225DBCC3676C /* UMAppLoader-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; - sourceTree = ""; - }; - 433AAF23E6B69256BECA8C24F639F2F5 /* jsi */ = { - isa = PBXGroup; - children = ( - 9C4240233ECFEFFB1E31A2BDB0900128 /* decorator.h */, - EC1E6F6BD46D3034BC7755AEA1502E5F /* instrumentation.h */, - D29D20BFE80E1488AD42B308B8135E12 /* jsi.cpp */, - FE682E6879BA8154495887920D01926F /* jsi.h */, - 363F1EF00EC3F453493AAD41BD955E61 /* jsi-inl.h */, - 7D08DF9539848E8CAC7915FCD30C16E7 /* JSIDynamic.cpp */, - 87362BE98732F68528D90304A5C4E274 /* JSIDynamic.h */, - FDB6F03379BB5DCC38B9907F97598F3E /* jsilib.h */, - B62FD50583D50449408683A8512DD85D /* jsilib-posix.cpp */, - 315204E8FD52FE3A3515BE4EE234DEA1 /* jsilib-windows.cpp */, - CE73BF668DDC17C0757CADB4332DB252 /* threadsafe.h */, - ); - name = jsi; - path = jsi; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; sourceTree = ""; }; 43B8BB7576E1183520FEAE7BF9E22D8D /* Support Files */ = { @@ -8925,45 +9191,119 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 43CF339D7075F9E6CD613C86B905EECB /* instanceid */ = { + 4617BE69FD98363527FCBCDEE1299725 /* FBReactNativeSpec */ = { isa = PBXGroup; children = ( - 0086AEEAD45DC59D6693CBD261CE72B5 /* RNFirebaseInstanceId.h */, - C45E958F1FD041D1C66D329032EC24E0 /* RNFirebaseInstanceId.m */, + 6E634AF63D2908380EB08052C6AFB288 /* FBReactNativeSpec.h */, + FD416C72A86D78CC18A296032AA4F28C /* FBReactNativeSpec-generated.mm */, + AA2BBA6EB170E3DCB2E885CBFF3EF906 /* Pod */, + 78F9DBACD8C721AF1D5CCEC48BB53CD2 /* Support Files */, ); - name = instanceid; - path = RNFirebase/instanceid; + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; sourceTree = ""; }; - 4462BEB6146565CEE5A20EA239657F9A /* RCTSettingsHeaders */ = { + 468A33E95D143FBFB505EB51C108F197 /* Sentry */ = { isa = PBXGroup; children = ( - 0797AE20CA374FA355E5FBE35EF12C88 /* RCTSettingsManager.h */, + D75BCFDCE67B8A6966E9BF7495B90390 /* BSG_KSCrashSentry.c */, + 4F8ACEA925EDDC058C2DE518185D420D /* BSG_KSCrashSentry.h */, + 05B5A84B6B74F56B539C09088C1C0BBE /* BSG_KSCrashSentry_CPPException.h */, + 97C5EB41C0561EA9AEE0F1DA5C8C8360 /* BSG_KSCrashSentry_CPPException.mm */, + E6809FB5792DAEB271400287F2D27AAC /* BSG_KSCrashSentry_MachException.c */, + 71D2CD37131FEAF7D4F26098B157E68F /* BSG_KSCrashSentry_MachException.h */, + 597B45ACDEEE83E10C7BD66FEC256031 /* BSG_KSCrashSentry_NSException.h */, + C07B5E30004AFF786C8C897FD0E74CCD /* BSG_KSCrashSentry_NSException.m */, + F5332C686F42E1962E0CD6C38D204DF2 /* BSG_KSCrashSentry_Private.h */, + F7AC3A140635256A5ACE73CEE11782C9 /* BSG_KSCrashSentry_Signal.c */, + A8A6D7A6A091B419DF831051E00C4CD8 /* BSG_KSCrashSentry_Signal.h */, + 95503B6D18BDAE9F985337F7AA516564 /* BSG_KSCrashSentry_User.c */, + E0DB5FF9F320278347715C51C5FDF477 /* BSG_KSCrashSentry_User.h */, ); - name = RCTSettingsHeaders; + name = Sentry; + path = Sentry; sourceTree = ""; }; - 4676890FEDBBEFAFF2DB105E012484D6 /* Support Files */ = { + 469CAF51A0CCDC31820174853B439B74 /* Base */ = { isa = PBXGroup; children = ( - 54E5BFB8C428641CEB02F8AEB19B9EFF /* RNDeviceInfo.xcconfig */, - A75A67682FD28D02E198C5940C1521C6 /* RNDeviceInfo-dummy.m */, - 182ED7904C3796A73CE77AB1D6112A6C /* RNDeviceInfo-prefix.pch */, + FA39F010CFC82380C04E0F3BCAC9D17D /* RCTAssert.h */, + 456BBCAF78BBACAAD7C01BC9E2597F20 /* RCTAssert.m */, + 577AA797596CCD537BBB28A012B318A1 /* RCTBridge.h */, + 599F059051EB27007371CB7C5B060254 /* RCTBridge.m */, + 285DAF02097EA6B348CD8E9E35BD4C8B /* RCTBridge+Private.h */, + 55E6CD74ACE700E806D1BC5D367E87DA /* RCTBridgeDelegate.h */, + C80098DFF4FC0A0A31DB57B8640F3EAF /* RCTBridgeMethod.h */, + 555CC7304619A95B56B13EE3EFAD8414 /* RCTBridgeModule.h */, + 4EA1758B2AC701677EFDCCEF39CB7602 /* RCTBundleURLProvider.h */, + 5670E1147F9957D8D0E7C4C079DC8DE6 /* RCTBundleURLProvider.m */, + CA21A655E870EF2FE2ACEB23F2E3989B /* RCTComponentEvent.h */, + E9200C6B2ADABAF0BB7CA63ABBEC4412 /* RCTComponentEvent.m */, + A8D6C880CB8C20B4B90D3DE6B2DA8EFC /* RCTConvert.h */, + 6321847F10A77C1FF0389ED9C0C6B780 /* RCTConvert.m */, + 06A4C429F395B8492D7483B61D6C6AFD /* RCTCxxConvert.h */, + 0C735F56B38F7BD8ADD354A681E7609C /* RCTCxxConvert.m */, + F8C88481986D8C97632229F613D25D11 /* RCTDefines.h */, + 3A76115031FB58D04F933C1B30D9F376 /* RCTDisplayLink.h */, + C612DE22D689950A1B3FE93EF732FCAC /* RCTDisplayLink.m */, + BD3211CD9FF53D4057B638702C250219 /* RCTErrorCustomizer.h */, + 893F64FC7D8FD759746CEAA5CE615092 /* RCTErrorInfo.h */, + 9A19FDB2516013B599513E4AAAEA4B4C /* RCTErrorInfo.m */, + 1CD7E07A5E8B9738C7EA621CA6BEA4D2 /* RCTEventDispatcher.h */, + 2E123B890BCEED2C16B71A12D95505F5 /* RCTEventDispatcher.m */, + C96443A48B38CD90869692B1D9B3B0F5 /* RCTFrameUpdate.h */, + 875CD72E0979C3A6AF5527EF392697C0 /* RCTFrameUpdate.m */, + 998FDEA6919DD3D06C5FFEE1BF48CD22 /* RCTImageSource.h */, + AE6B1F1AD28E8D530D6CBDBA8C225943 /* RCTImageSource.m */, + 3BF84B708F40CF06069DC272F2FC6223 /* RCTInvalidating.h */, + 0522CE2CF3EDD15A3BEA023C78D8A508 /* RCTJavaScriptExecutor.h */, + 0B29D5785455CAC0AA2DDA47131CB341 /* RCTJavaScriptLoader.h */, + B8A6464E930766407F78C75DF0174F30 /* RCTJavaScriptLoader.mm */, + 90C5B26C28B103E702171182A08E4EDE /* RCTJSStackFrame.h */, + 2DBAC94257DF0DE9986805B9FFAA1448 /* RCTJSStackFrame.m */, + 72D896F137C78EBD13C64502F9AA3008 /* RCTKeyCommands.h */, + 56ABC1C2FF746AF53777F8E930FD8CDC /* RCTKeyCommands.m */, + ECCF4970025374FDDB118B83F2C603C4 /* RCTLog.h */, + AF6B07DDC90A8398F60AD691245EED73 /* RCTLog.mm */, + 832001E0A106CE56DB9C536D51013D0E /* RCTManagedPointer.h */, + 80D99B4450B57B52BEB0E235151CA894 /* RCTManagedPointer.mm */, + 41FFEE62DEF357EE410424399F93BD39 /* RCTModuleData.h */, + 2264278E2488C0928AF8093C1B268458 /* RCTModuleData.mm */, + 663579CD0EC0678A648E6960DAB1F54F /* RCTModuleMethod.h */, + 5B032FB34BB4F3680105324F10FBC098 /* RCTModuleMethod.mm */, + 87C599217575C480C784DC563066D782 /* RCTMultipartDataTask.h */, + 81F3CA61C02CBE816B72BFF19462871E /* RCTMultipartDataTask.m */, + 8E2AAF41E6FC1BB9857221966A40B6A9 /* RCTMultipartStreamReader.h */, + 5473E304A18535EF8AF54295529408CF /* RCTMultipartStreamReader.m */, + BBAC5AB79CDF7B6C8ABA256E139C50AA /* RCTNullability.h */, + BCF153D464BD99785B34A00EFA868A84 /* RCTParserUtils.h */, + ABD8CDAAD0723AA4B20AD59FC2E6501F /* RCTParserUtils.m */, + 06B1A80F2753CDE6FA1B820D38B17152 /* RCTPerformanceLogger.h */, + 40E5E57FECB4E9C66ACEB82B8B5AC7A6 /* RCTPerformanceLogger.m */, + 96F73718ADFED1B74565DF96A3AB58D3 /* RCTReloadCommand.h */, + 66028ECC3209639BD89AA0238CF8886F /* RCTReloadCommand.m */, + 99ABF097F32CAD0D4ABD0A1474EA0E89 /* RCTRootContentView.h */, + FCBCD2C615BA0D89D3234B209A073845 /* RCTRootContentView.m */, + 41F4A0B9270881945BD1496745EA97B4 /* RCTRootView.h */, + 0F99FAC3E8C63124B24B80600D32D597 /* RCTRootView.m */, + 6FAD7F8DB9E0D5A33F39720D7231BE7C /* RCTRootViewDelegate.h */, + 6907504E90C00A4008814AE843E60B4B /* RCTRootViewInternal.h */, + FEC1B721213D9E1AC29EB6BBC10461EC /* RCTTouchEvent.h */, + 27A2BFFCC95ABA18117734D6E43F18B3 /* RCTTouchEvent.m */, + F8C88966D6E9E109711830886774417F /* RCTTouchHandler.h */, + 9878464D997BC5F4110F8D0763686CC1 /* RCTTouchHandler.m */, + 70C04CBCFC6274AF9988CC234819188B /* RCTURLRequestDelegate.h */, + 2D4B253A5A4ED1E275303D37A74FDA91 /* RCTURLRequestHandler.h */, + 88429A773B0AB71900406A45870F1475 /* RCTUtils.h */, + 6174D48143BD0DF94D073485BBC23699 /* RCTUtils.m */, + 5574642EED822E9625FF87BCA481BC9F /* RCTVersion.h */, + FF59E5D2F03A32E8718194E6C178F2C0 /* RCTVersion.m */, + E59495A31CA334CC38024FCD0ED489EA /* RCTWeakProxy.h */, + BAE64465127B18474D8A4EB7CE2D9F11 /* RCTWeakProxy.m */, + 483B35ED4595ED5B8EA202B6809BEE2B /* Surface */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - 4690AAA8E351FE010BF9ADAE16FAA138 /* react-native-background-timer */ = { - isa = PBXGroup; - children = ( - B79A67A682917EF788EB5DD261DEE70B /* RNBackgroundTimer.h */, - E8AEA7B9442431BEAC08800C2EBDF01E /* RNBackgroundTimer.m */, - 06F116E1BD272BD0E252E25498153A8A /* Pod */, - 57B0D03180988DC4C100962BCB3FEA22 /* Support Files */, - ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = Base; + path = React/Base; sourceTree = ""; }; 472D0655A441F438064A68603A68705A /* Support Files */ = { @@ -8977,29 +9317,72 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - 47B93930C148F7CF326BE7A02DA8C1B6 /* react-native-cameraroll */ = { + 47D8F19B9EB71F4D9D367A7CE83A7C61 /* FBLazyVector */ = { isa = PBXGroup; children = ( - 6123B2A15408A70B76B79C57A175C786 /* RNCAssetsLibraryRequestHandler.h */, - B59B706804D65D8A250DA137FCC9B138 /* RNCAssetsLibraryRequestHandler.m */, - EB13EAAC29F39342E66D644585186CD7 /* RNCCameraRollManager.h */, - D8AE2352033C6004C6B82D705161327F /* RNCCameraRollManager.m */, - D583C4762FED683674C7C1A87E20571B /* Pod */, - 6FB512089F3862C7E961C56A0BA3CB5E /* Support Files */, + 2DDECE251E6973D501126445BA43F194 /* FBLazyIterator.h */, + 51A15D13EA2B61352F6B848E9BFB5E59 /* FBLazyVector.h */, + CB9A6CEAA31FE30A27A54A281BD73641 /* Pod */, + FAC05CC1A29C560381E2059C9003FB59 /* Support Files */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; - 481F7DDC3704037F2C749AFF5137CDDD /* UMCameraInterface */ = { + 48244423FD0140AD2CFF186E9E765A5C /* RNGestureHandler */ = { isa = PBXGroup; children = ( - 5C9ED86974837919A203C890E1B9D52A /* UMCameraInterface.h */, - 80ED9C0DC40111C25E56884FB4E6C8BD /* Pod */, - DE162CB7DF8F690F562B7785D34B6E87 /* Support Files */, + D2B6362ED0A64743024DD69DFCD53F5D /* RNGestureHandler.h */, + 663974728DFA3DEA57E22F6040CE836C /* RNGestureHandler.m */, + C14DB17FC0976634F69EC839ED8CEBF1 /* RNGestureHandlerButton.h */, + C0A29B303BFAAB7E10AD4468D033EAC3 /* RNGestureHandlerButton.m */, + 3463795B2C1200775014C3B70EF3544E /* RNGestureHandlerDirection.h */, + B7D86FE7C15703C33A3DE16CEF9FDE33 /* RNGestureHandlerEvents.h */, + 6E0A583E0A8EDD71C80C4A02E6FF9925 /* RNGestureHandlerEvents.m */, + 5A97918CD6FC52BCD868EB3CACD045B2 /* RNGestureHandlerManager.h */, + AF2BF216C235DF5D4CC4F20A7B38DC7A /* RNGestureHandlerManager.m */, + 1765BB61EEF89E3A759977FA7F298E3F /* RNGestureHandlerModule.h */, + 0F0CB13F8583CB0A1B8976EB9C5F9676 /* RNGestureHandlerModule.m */, + 8B8EB435630157EE4BD45C80FF974327 /* RNGestureHandlerRegistry.h */, + 8002C53A9AB7D33BF5434B76158A02DC /* RNGestureHandlerRegistry.m */, + 0BC57B938E7CC798B5E793739E46D7DA /* RNGestureHandlerState.h */, + 6F0B38542FF2B64E7EA95F3112638ABE /* RNRootViewGestureRecognizer.h */, + C919F650D58DEBBC04422595612CBB1D /* RNRootViewGestureRecognizer.m */, + 83D33F37D331A12C629AA6F80B7D7E77 /* Handlers */, + B41AD85C736A67EDC3B69A230FE54B55 /* Pod */, + 3BDFE2731FC1278319E74EBBAAB93A2A /* Support Files */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; + sourceTree = ""; + }; + 483B35ED4595ED5B8EA202B6809BEE2B /* Surface */ = { + isa = PBXGroup; + children = ( + B6512EA37FC09D00212925C2A6A42AE4 /* RCTSurface.h */, + 81F3CD9170F9CD13EACFDCC36CFD3A20 /* RCTSurface.mm */, + 7B76A58A3D96C19CF6901FE310CE5EB2 /* RCTSurfaceDelegate.h */, + 24B28DB24E2FB40CCC1E4B88DD6A56F8 /* RCTSurfaceRootShadowView.h */, + 80899C2F8EEB9AFFD64A2675B5397557 /* RCTSurfaceRootShadowView.m */, + 2EB94CD950E302FB8DA62A3929C37289 /* RCTSurfaceRootShadowViewDelegate.h */, + C0F87073BEC133F5FAF36A0C0FF1E27F /* RCTSurfaceRootView.h */, + 1A87A6311133BA73A8410C2973AC9530 /* RCTSurfaceRootView.mm */, + D049295C0B025177328BD15AD63BBC01 /* RCTSurfaceStage.h */, + 6A2280D74CFA75E6466F93795D6F7DFD /* RCTSurfaceStage.m */, + EFE6E1B491F297ADE051248B71E113D1 /* RCTSurfaceView.h */, + 56407D16F77B1F00CB130D98F2C8AE4A /* RCTSurfaceView.mm */, + 78A3B2B8451D2E51A7C50DE977B73B0D /* RCTSurfaceView+Internal.h */, + 936B00E7A1D781E5327B1EAEE90D1834 /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + 4884BA6258ECA46996142A3C96457D9A /* Core */ = { + isa = PBXGroup; + children = ( + ); + name = Core; sourceTree = ""; }; 4928610451BAB56E49BA8FF8129BF910 /* Network */ = { @@ -9019,127 +9402,86 @@ name = Network; sourceTree = ""; }; - 49DFB9D678A577EA84F92F9B365E3781 /* React-Core */ = { + 4A16DD454653B6C1ABA2E409993F7114 /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 6681E15CB9B690F8E44F237E8246F44F /* CoreModulesHeaders */, - 313A748AEB6B4934761E0630D7BC91AB /* Default */, - FA967AC70E4B763378E1F4FEA9D13281 /* DevSupport */, - 38E7DB5068ECD555A8C177F79ECD8392 /* Pod */, - 64064FEFC8406963BAF5E1BCDA37B960 /* RCTActionSheetHeaders */, - 3EBFCEBC1B23903E52896FD370724FC6 /* RCTAnimationHeaders */, - 15C35EE578FECE5642F4801D79B8FD3B /* RCTBlobHeaders */, - D9EFA9C00413793029A953444995E0DF /* RCTImageHeaders */, - ECD0E388727ACC2986139E9FB2E9A41D /* RCTLinkingHeaders */, - 0D76D3132CA1E2C3BDBD2B0E7FE81270 /* RCTNetworkHeaders */, - 4462BEB6146565CEE5A20EA239657F9A /* RCTSettingsHeaders */, - 9F75A82E87505DC71E8C2FF08343D03E /* RCTTextHeaders */, - A4DF82F35E9EDCF5412AE8523A092D8C /* RCTVibrationHeaders */, - B3042851285834DAA75A12538B0233F1 /* RCTWebSocket */, - F650E908CCC38313A969EC02E0FB24DD /* Support Files */, + 99C4A0223F6AD0C87E435E09D27EB998 /* RNDateTimePicker.h */, + F3EB7483F89D0166947E7B4B6F5063EC /* RNDateTimePicker.m */, + EB6CFCF629C08F645FA877CDF1030306 /* RNDateTimePickerManager.h */, + C223720610A971E3A68E9DCF8E90D03E /* RNDateTimePickerManager.m */, + 6A049C165F655892E1CF19972C457643 /* Pod */, + DFAD69D292EB9701F0372231204879E2 /* Support Files */, ); - name = "React-Core"; - path = "../../node_modules/react-native"; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - 4A2183A32EAFCD944A3BB85CCC82248C /* Support Files */ = { + 4A9D2D1C1F2FF930A98750A775EB9ABE /* Pod */ = { isa = PBXGroup; children = ( - B8F82E2568CD387AE71DA33BE9E526FA /* RNUserDefaults.xcconfig */, - 604580A241970FCE2252B38D3AD2EB26 /* RNUserDefaults-dummy.m */, - 26680BCBEBAA3226DB090A99D25A5A7D /* RNUserDefaults-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; - sourceTree = ""; - }; - 4AB8D02D54DC2F5DD29DC2DC5374DC13 /* Pod */ = { - isa = PBXGroup; - children = ( - 3820F806CA630ADD7988BD05E3E98001 /* React-RCTActionSheet.podspec */, + C3146E80FFE5167B7138FEE5ADC80831 /* UMAppLoader.podspec */, ); name = Pod; sourceTree = ""; }; - 4ACE2A048E6729B2A42E0265260523E1 /* converters */ = { + 4AC7F0FAB3F841ED168FFBF043DFFE67 /* Support Files */ = { isa = PBXGroup; children = ( - 290E8035DD3CE29392F2FF8F1F3E0AA9 /* RCTConvert+UIBackgroundFetchResult.h */, - E6D4F0910997F8C5C7D9B5773979738D /* RCTConvert+UIBackgroundFetchResult.m */, - ); - name = converters; - path = RNFirebase/converters; - sourceTree = ""; - }; - 4B97B54F5497DA6A63A9DEB57979A463 /* Recording */ = { - isa = PBXGroup; - children = ( - 1D131917DF3473FDB6FA934D9DEFEA9F /* BSG_KSCrash.h */, - 79EF13B1EBA69CD93AC259653E3BFF3E /* BSG_KSCrash.m */, - 569BB4CE80475699AABC611932B19F3B /* BSG_KSCrashAdvanced.h */, - 4255DDF37217B80A6FC1AA87E7D961BB /* BSG_KSCrashC.c */, - 22E29CEFCAF60427BF23BB8173FF0290 /* BSG_KSCrashC.h */, - 707A93EC8F27AFC053B4DFE9AD3048C5 /* BSG_KSCrashContext.h */, - EF70D54EF4C3182ABD88763F3D049CE7 /* BSG_KSCrashDoctor.h */, - 8AFC3FDE725E9FAA7A4B64F82BF4B32A /* BSG_KSCrashDoctor.m */, - E013C3BD3D8B32F02469CCBECB38B281 /* BSG_KSCrashIdentifier.h */, - E57C813DDCCB3010D420482801376EB7 /* BSG_KSCrashIdentifier.m */, - 7DA61CD0F80A05EAE58026DA7C88C082 /* BSG_KSCrashReport.c */, - 3C7A25419288AB12A311C9B8590BA7ED /* BSG_KSCrashReport.h */, - 43D89E7B92F1FB75487CC4507EFEDE97 /* BSG_KSCrashReportFields.h */, - 4F4538B9A5DD66CFB3917610C824941C /* BSG_KSCrashReportStore.h */, - F1DD820E50ED7683D2682FC978902760 /* BSG_KSCrashReportStore.m */, - DF92D606E8726EC631EAC028DA7D1669 /* BSG_KSCrashReportVersion.h */, - 7DAA2E69EEF67212019EA6FF8CD3E96E /* BSG_KSCrashState.h */, - EDBFA5777814B21574051F46F39A63C7 /* BSG_KSCrashState.m */, - 67A1FB9C11FBF93A066ED437E4D975E9 /* BSG_KSCrashType.c */, - CEB6F60F08AC675430616A8B7C20CF96 /* BSG_KSCrashType.h */, - BD50BFF576E37A21E3895D00791C062B /* BSG_KSSystemCapabilities.h */, - B40BCE5751CB15D9915ED40E54235270 /* BSG_KSSystemInfo.h */, - 43471D841BB5055A3A2C97042BD45621 /* BSG_KSSystemInfo.m */, - 955D77FB666FAF9BE8FE7B657B256897 /* BSG_KSSystemInfoC.h */, - F71F1B3ABD955B695D466A833B0D17F5 /* Sentry */, - F9AE074AB8667E103AB4D29D06057F3E /* Tools */, - ); - name = Recording; - path = Recording; - sourceTree = ""; - }; - 4D102FBD7E42969A6E5555EA558F3314 /* Support Files */ = { - isa = PBXGroup; - children = ( - 54352B464F96C6F36A4E3BF21A0AAF4C /* React-RCTImage.xcconfig */, - 11918BF00AEACDEB104E48AC350AF3D8 /* React-RCTImage-dummy.m */, - 2545EB3FFD648DE0B0840C756FDED923 /* React-RCTImage-prefix.pch */, + 65343CE5E18AC74ACF73D009DBBCB881 /* UMReactNativeAdapter.xcconfig */, + 2658AA021E09980DCEF810707F664D3D /* UMReactNativeAdapter-dummy.m */, + 483EEC35D537E0F0FABC6348F3B4860C /* UMReactNativeAdapter-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 4E0E8C55BFE659BFEC943808176AA9C5 /* Support Files */ = { + 4DAEC74B7F8DC8FE1693EAC367F70D16 /* DevSupport */ = { isa = PBXGroup; children = ( - B70F154A574728B8D4C1C0B9438FF4B3 /* FBReactNativeSpec.xcconfig */, - 4F145E3A0B46968D0904ADDC55641E70 /* FBReactNativeSpec-dummy.m */, - 14485ECF294113273CEEB34F289F0D57 /* FBReactNativeSpec-prefix.pch */, + 2560929D422DF81D9FB5AB674282EBE8 /* DevSupport */, + 9487E6E7491944F2C9D30485F9CAD925 /* Inspector */, + ); + name = DevSupport; + sourceTree = ""; + }; + 4DB5D7391ECAE4233DE8472A4F5BE8EA /* Pod */ = { + isa = PBXGroup; + children = ( + 5FAEEC58ED20FCF61DE82741DD5D8BFB /* LICENSE */, + 46ABA70351A5C18D9CB0F6EC8417D2F9 /* README.md */, + 3895BD717303A11880A4CFEA5CAB0690 /* RNCAsyncStorage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4DB762C990E52D93A13F992E3D6D46EE /* Protocols */ = { + isa = PBXGroup; + children = ( + A952D980D462BEF87C23A88A472DC5C8 /* UMAppLifecycleListener.h */, + 5C74E0C3EB66731AE1A1A83CA0EFEFA6 /* UMAppLifecycleService.h */, + 98D3E6EE2A73727B4AA55ED53C51C165 /* UMEventEmitter.h */, + 0183FFB7633DCD6C33AA182DC359DFFC /* UMEventEmitterService.h */, + E330229D72950C7ECF82AEC858490128 /* UMInternalModule.h */, + 1468B84A4E74547E95D132496B5D7812 /* UMJavaScriptContextProvider.h */, + 7F04982FD559057C4B92BCA89A895352 /* UMKernelService.h */, + 06DEF412E3A91B874C1B22F5C9332C65 /* UMLogHandler.h */, + 31696E0031DC0A7348FB5EF6E614B0DA /* UMModuleRegistryConsumer.h */, + 333FEDA807E878FFB2E6CD94C10E6A3B /* UMUIManager.h */, + 1354B90BC556B36106C15B58AA62A05F /* UMUtilitiesInterface.h */, + ); + name = Protocols; + path = UMCore/Protocols; + sourceTree = ""; + }; + 4ECC25D74EBFDC3D87CE6340895629DF /* Support Files */ = { + isa = PBXGroup; + children = ( + E951B711ABC5535548EA9722528C7042 /* React-RCTLinking.xcconfig */, + EA7DA10346399ECC0A8D2F74D4EABA83 /* React-RCTLinking-dummy.m */, + 5A2CF824EAE883BCE28B7B0C05AED5AA /* React-RCTLinking-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; - sourceTree = ""; - }; - 4E13CFBCB0C4E5403AF5C72A29500C9F /* React-RCTAnimation */ = { - isa = PBXGroup; - children = ( - 9775310D6981341505F105C9568C5E45 /* RCTAnimationUtils.m */, - 4650D690BA6630C497BA5400ED547938 /* RCTNativeAnimatedModule.m */, - A20CC0982D78D08FA3BD84F1E518DA51 /* RCTNativeAnimatedNodesManager.m */, - 6A725F6F772893A2149E72E17EFF9A5E /* Drivers */, - 769E1B5673D138F10F198F12A2BF89C5 /* Nodes */, - 996C180176C2AB9BB35BF35B2B5177BC /* Pod */, - 0B454300BFDB7ADC3D5E4D6701B3B593 /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; 4EE5506810A48BF6790471E58A60007A /* Support Files */ = { @@ -9153,81 +9495,41 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 4EFE31D50AF7A61F24A42460E98A5E42 /* Support Files */ = { + 500EA3491368DB24491F384DB75AFF22 /* Pod */ = { isa = PBXGroup; children = ( - 564AC08059D7AA58D39DD0DF9EAAB6A9 /* UMAppLoader.xcconfig */, - C6CCFD413FEFB4F283862EE812234243 /* UMAppLoader-dummy.m */, - A1836297279046CF93D2133080C76D41 /* UMAppLoader-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; - sourceTree = ""; - }; - 4FB4EC3B30CA4BFDE8C9BCA576D389F3 /* UMModuleRegistryProvider */ = { - isa = PBXGroup; - children = ( - 4D871EA5370D99BCBA2545E46BA94F97 /* UMModuleRegistryProvider.h */, - C24DCC43F7BDC47BC5FBA4D59DAD4650 /* UMModuleRegistryProvider.m */, - ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; - sourceTree = ""; - }; - 5002B09A7C6F3CECBD1866A6EE26C271 /* Support Files */ = { - isa = PBXGroup; - children = ( - 316CE9524A5CBC00F625F390AF349412 /* React-jsinspector.xcconfig */, - 6F9E7EF7E62D98E528212D0D273427AD /* React-jsinspector-dummy.m */, - F1B073762F60DDCC730CD28587773E11 /* React-jsinspector-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; - 50DAF21F75BA46F0CFF1BF4B8238D87D /* Support Files */ = { - isa = PBXGroup; - children = ( - AD1565950EC44B931A48C481E30CE33C /* React-jsi.xcconfig */, - 668A06AC4FD01113F3AD768199562A4D /* React-jsi-dummy.m */, - CC3CAF0F65B9E9B29625B2A8D62E6FB9 /* React-jsi-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; - sourceTree = ""; - }; - 50E42D2ABC83BE09BB42CBD788AAA7EC /* perf */ = { - isa = PBXGroup; - children = ( - 9ADB38322F34A3E62427612768AE218F /* RNFirebasePerformance.h */, - 82F7F16CE0883730CD67D3C8EAE7BB61 /* RNFirebasePerformance.m */, - ); - name = perf; - path = RNFirebase/perf; - sourceTree = ""; - }; - 521D4D9BAF9008D2BC1182D2FF9CEC52 /* Pod */ = { - isa = PBXGroup; - children = ( - 9F56933F51654EE11046716D6A9D893E /* LICENSE */, - 4B3C709C93E8DB059EB220F922F47E3F /* README.md */, - F0B2FB09F82C24D3863A03DC1D759793 /* RNUserDefaults.podspec */, + 9DD9065C7F3C523F31488A9D30FF9159 /* UMCameraInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 5325256D86BBD3F06F7B2A8D8CCEF5CF /* React-jsiexecutor */ = { + 51F112367706777B859744A874D1D575 /* Support Files */ = { isa = PBXGroup; children = ( - BFC4C31FA14EA5D1E5B78F7A8DC28E4D /* JSIExecutor.cpp */, - 807E1456005CC3EAD5A089FFF018EF8F /* JSIExecutor.h */, - 1C9D9B0AD38BEEFDC45CED6AF59EA439 /* JSINativeModules.cpp */, - B5218BA52902DA678B5816D60E5C2B27 /* JSINativeModules.h */, - B4F6A7FA053B075A8363A7AD9D168C94 /* Pod */, - C0AC1B78ED9785E3BB7A6DAA243F0543 /* Support Files */, + C96F181EF98997FE21D592A74A67F412 /* UMCore.xcconfig */, + 63353C2356F59EA4911AFF9892841E20 /* UMCore-dummy.m */, + 335EF82435CC8BD6A223C7100692BCA9 /* UMCore-prefix.pch */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; + sourceTree = ""; + }; + 52029CE7B8EE68C780C6E56F3D3FC6D1 /* Brushes */ = { + isa = PBXGroup; + children = ( + 7CB065671A135BC7DD945EA525562EC5 /* ARTBrush.h */, + D0FDB85B13958EE918F65B67360C2A74 /* ARTBrush.m */, + B7DAED777744B2FCD4740F52DB5A8D47 /* ARTLinearGradient.h */, + 2F186FA6D54A1335A867B7ABC0D90EE5 /* ARTLinearGradient.m */, + 15E54FCADA50EE5D9162CA526A74D397 /* ARTPattern.h */, + 99E5A9CBDB11A6C509653B315149A513 /* ARTPattern.m */, + D3E57F71321C9A7E1254B63DB74F9911 /* ARTRadialGradient.h */, + 799240BCD9030357F96AC6E79354A19B /* ARTRadialGradient.m */, + E7EC923E376F0FDA4523E2FB34689FCC /* ARTSolidColor.h */, + 7E2BA298FF1E9167CB35166313B9A7D7 /* ARTSolidColor.m */, + ); + name = Brushes; + path = ios/Brushes; sourceTree = ""; }; 532D65DCF750E9E2E8BE97FC42B35BCC /* Crashlytics */ = { @@ -9247,17 +9549,6 @@ path = Crashlytics; sourceTree = ""; }; - 540C3751D1AC6CB777305883265ADE26 /* Support Files */ = { - isa = PBXGroup; - children = ( - D5CC0DC1CF5E80A3E4FAD91A65678C96 /* EXConstants.xcconfig */, - BD7860900942ED5179416ACEE2CAC40F /* EXConstants-dummy.m */, - 0CC59D489EF2C068C5C82032B002449B /* EXConstants-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = ""; - }; 54220516EB0979A39034CFA10C3D2092 /* Fabric */ = { isa = PBXGroup; children = ( @@ -9291,25 +9582,36 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = ""; }; - 5489BBE270FCBACF4317ACDD4A5E0358 /* Support Files */ = { + 55145BF37CFF2F1C5F1937A846EDDF3F /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - C0515A170A399D7811374BCD654EC21A /* RNReanimated.xcconfig */, - 25B52FD2856570BDBFEA5B0A8B5F19E3 /* RNReanimated-dummy.m */, - D561D4B0BB968F9DDA35A4DE7D69C477 /* RNReanimated-prefix.pch */, + 57AE6597B0DA09C3F20E1BAA5AD99DD9 /* IOS7Polyfill.h */, + 0F5F96EEB39BE4E9A73688C25B3C7174 /* RNFetchBlobConst.h */, + 320290B06306F025CDEA0C68A80C2483 /* RNFetchBlobConst.m */, + 7DC8DF73BDA9A60C4CD8B8BF89E8F5C8 /* RNFetchBlobFS.h */, + 9F982A3920E7648B0FAB4A6A4678FA4C /* RNFetchBlobFS.m */, + 3C653B5EC454F8282D5EB437253590AF /* RNFetchBlobNetwork.h */, + EB1676151C97B015033F319C3C82EDD2 /* RNFetchBlobNetwork.m */, + 7E969B6A3CD84F66DCB50063BE0B4244 /* RNFetchBlobProgress.h */, + 2967D2B704C17E5CEDA9CD96C6AB69BE /* RNFetchBlobProgress.m */, + 4A5BC578C3620AFCB6479350298FFB0F /* RNFetchBlobReqBuilder.h */, + 9A96EA257B059165E5B142D858245E34 /* RNFetchBlobReqBuilder.m */, + 0D186F30E27BF37E5746C70ABCD2BB61 /* RNFetchBlobRequest.h */, + 040FE697406A3ACFF0FD6E51860D00B3 /* RNFetchBlobRequest.m */, + 2F3F88062029210D78C4C268357C7C75 /* Pod */, + 3C8C0233964D1BA7DF3019F8C27BBA7F /* RNFetchBlob */, + 2BF5E1EEB87483A28A898C99DAC4F523 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - 55372375535F95651ABA24E3481D0980 /* analytics */ = { + 55894DC70216F6D263361B64D5F52A4E /* Pod */ = { isa = PBXGroup; children = ( - D3B3453CE4DE764804926152E606A99A /* RNFirebaseAnalytics.h */, - 528CEBD803180BFA178C982103478889 /* RNFirebaseAnalytics.m */, + F14EAA6B71A74C0CAD112D5F73DEBCAC /* React.podspec */, ); - name = analytics; - path = RNFirebase/analytics; + name = Pod; sourceTree = ""; }; 55B18D8D8BE5E5FB139159F9864ED8CA /* glog */ = { @@ -9333,26 +9635,38 @@ path = glog; sourceTree = ""; }; - 57B0D03180988DC4C100962BCB3FEA22 /* Support Files */ = { + 5708F0A7B4E5DDB1B56CC9636B1B263C /* RNLocalize */ = { isa = PBXGroup; children = ( - 26F384A95B89DD4DEE81C0AF3AEA0503 /* react-native-background-timer.xcconfig */, - EED3DB3971808F087853A4962A6A9391 /* react-native-background-timer-dummy.m */, - 6EDE0A2FEAF794C4A3B1D117283ED8B9 /* react-native-background-timer-prefix.pch */, + 1A65CFE271F520EF3B7787FBE7E15D58 /* RNLocalize.h */, + C1F1B36C00FFB26AEB77DC4D71FE8C8E /* RNLocalize.m */, + C61BEABF86864AE60155BECFA1027069 /* Pod */, + D6141A079FAF591DC330274179D968C7 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - 57BADD79651C53ADA9857150C84BA1C5 /* Support Files */ = { + 578522262EB1C4C535B53649B8EB9FB9 /* Pod */ = { isa = PBXGroup; children = ( - 1A7BDFA4779468035CA517CC2B92B606 /* react-native-orientation-locker.xcconfig */, - 461DED48BAECA2364F51E16C2192B419 /* react-native-orientation-locker-dummy.m */, - 57857F67A76F4D48311B6EA82F721D4B /* react-native-orientation-locker-prefix.pch */, + 8C8418AB580C156B5BD73C410B46E363 /* LICENSE */, + E121E2788F805BDEF9518EF472B5EAD1 /* react-native-video.podspec */, + 96FA878DF202E84B0A40E85B64A69C70 /* README.md */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = Pod; + sourceTree = ""; + }; + 57B19A5BD4734FFACDDAC7B2AFC5E019 /* RNAudio */ = { + isa = PBXGroup; + children = ( + 3F8906958F662D4C75959B7B3FA0106D /* AudioRecorderManager.h */, + 167F5F38A1E01066FC901783E7A68521 /* AudioRecorderManager.m */, + BFA2871F8180B3AE485639B3BBCD5C90 /* Pod */, + 8B48291E60965889D13512896F29FA41 /* Support Files */, + ); + name = RNAudio; + path = "../../node_modules/react-native-audio"; sourceTree = ""; }; 588BB8EA70D0562BF2408368B973356B /* DoubleConversion */ = { @@ -9382,149 +9696,53 @@ path = DoubleConversion; sourceTree = ""; }; - 58F584E638DA03644700E60B331092C4 /* Pod */ = { + 5A3FC187145023E218384AA34C1A9684 /* ReactNativeART */ = { isa = PBXGroup; children = ( - 5D72A991A8C2F34EA384AC14E7066DB1 /* Yoga.podspec */, + 0EC895162175286C34EEAA273FB70393 /* ARTCGFloatArray.h */, + E93796ED010DBD1A73E529E0DD9FE38D /* ARTContainer.h */, + 1B6D088B721B8F433491C048CCF8AF81 /* ARTGroup.h */, + 49D0E27D70268CC4E88BDCEBBDA290C9 /* ARTGroup.m */, + C0562A4A95BE95F30A64305FF55ED04C /* ARTNode.h */, + B79D9FA11E8E7E0D0504869C62DEA932 /* ARTNode.m */, + DCFDAB5A5BF812BE157F227A44EFBD95 /* ARTRenderable.h */, + 3FAFE744B6BBF60E5CABA41A796A4068 /* ARTRenderable.m */, + 92761219FB30D2337C4A78AE4C28F897 /* ARTShape.h */, + 8D7A6FAEC9BDA81893914FE2A34F74C3 /* ARTShape.m */, + AB5F5EB7937FDEB0A4C3ED80D8BD56DB /* ARTSurfaceView.h */, + 85314764861A67068C81FC59C361556E /* ARTSurfaceView.m */, + 4E60DFD263CA56A4A50D0120C86E2E25 /* ARTText.h */, + 21D6F8E87745A49640668EA07C0197EE /* ARTText.m */, + 27D46512C14FF5A5EA0B11A1EFED1DC8 /* ARTTextFrame.h */, + 77D8824C3FADE1C9A14B0237B22A40C2 /* RCTConvert+ART.h */, + 2B043F46160EE045D242B24C8F178B55 /* RCTConvert+ART.m */, + 52029CE7B8EE68C780C6E56F3D3FC6D1 /* Brushes */, + CD99B22D2BFEFEF56AD5A7F0CB7E3607 /* Pod */, + A4BAFC8CB587AC868354F86A69241B02 /* Support Files */, + 295BE307839B3BCA871DF39F9CB9C7BA /* ViewManagers */, ); - name = Pod; + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; sourceTree = ""; }; - 58FB4F633D42A5FAC9B1A6C59C4C6970 /* Support Files */ = { + 5AC78DD3270E5CB757C36F12065A2F08 /* Support Files */ = { isa = PBXGroup; children = ( - B8381E2B75F16FCF9DAF41EE8E3433C8 /* EXHaptics.xcconfig */, - 0CBCC7E011F6EF7E978AC965DE289A43 /* EXHaptics-dummy.m */, - BB8244700BFF2F265FA42701A0DF2F14 /* EXHaptics-prefix.pch */, + B3EF9DC14FC5563E4DDBD96C08432EDA /* react-native-webview.xcconfig */, + 54C0BA0525E7D75D19C72473B76E930A /* react-native-webview-dummy.m */, + 66F8A1BDE9059C47BF37B284B544DC34 /* react-native-webview-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - 59A415744A0596858A0BD53FC33ABAEC /* Pod */ = { + 5BB28E2699BDF65F2A3AE459C4DA83DE /* Support Files */ = { isa = PBXGroup; children = ( - 4945B18C03894AB79864057EDD45BE41 /* android_date.png */, - CBBB145D86C58AAA825852EC498004DD /* android_time.png */, - B0C40474532710B4EDDFFA5135339F53 /* ios_date.png */, - A47DC66E549832DB7131B4082C3744CD /* ios_time.png */, - 81921FD5D77C8DB55740FF060603D686 /* LICENSE.md */, - 8335606D26A6EE76EF0923DFA2748421 /* README.md */, - 53C280A64E948F7D1D9A89778F9B910D /* RNDateTimePicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 59E05BEBD2D2251D2BFCDAE07C8F9A00 /* RNImageCropPicker */ = { - isa = PBXGroup; - children = ( - 66FE792892A7EBA79A71E33AA48E556F /* Compression.h */, - BD8C80B573BB1C2651C058B996D5A569 /* Compression.m */, - 16DC5622C62C49184B49E9D362BB3A3E /* ImageCropPicker.h */, - 549DD35AF50F448D6C868B08063F11D4 /* ImageCropPicker.m */, - 680D7CA3D690389D5E2F3571CA82F65D /* UIImage+Resize.h */, - 894F1ED2B6368487AF330CAA982A116A /* UIImage+Resize.m */, - 6C8834E7AC0D4238E5B6A66810EEC9E8 /* Pod */, - 6158A9BEA97EAA4647E306C709772282 /* QBImagePickerController */, - B0FC10F5EE32C328DEF931F9DB7ABF90 /* Support Files */, - ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; - sourceTree = ""; - }; - 5C1C9560663B399EBF825881C5527D2F /* Support Files */ = { - isa = PBXGroup; - children = ( - 569B6F1D87183821E96F79C08CFAA86F /* RNAudio.xcconfig */, - E389BD72A1C7A96A96993A4A39B7D055 /* RNAudio-dummy.m */, - D1437B2B40FAF0A9E366B04E4E38E374 /* RNAudio-prefix.pch */, + BD8B0AE9639E7176108CECE5CA9A340C /* UMFileSystemInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; - sourceTree = ""; - }; - 5C363871E886613C4F5656188959E6D5 /* Yoga */ = { - isa = PBXGroup; - children = ( - 9F8A795D79440FA00273CD98F065B963 /* Bitfield.h */, - A79E5957E608E87CB9A07FB2D9B74357 /* CompactValue.h */, - 4E3D4FBAD25B67DE005C06028EFEED9D /* log.cpp */, - 8F2A4EB921C09B725F2CB6A24B0429F1 /* log.h */, - 16924B7391DBFE4D0AD6337368F0C5D2 /* Utils.cpp */, - 4FFECA28172BDE39608A5EF2B76D15B1 /* Utils.h */, - BFDC5015B07AF6726D48629172EF01E0 /* YGConfig.cpp */, - CF616BF6284E7AACECDBB37FA2512B94 /* YGConfig.h */, - DD5ECC7C878B88D0C61273EA8B878245 /* YGEnums.cpp */, - D10BE9B6DF433AD07B0DDF606D7F2E3F /* YGEnums.h */, - 450A06AFE47875867D6D007603239D97 /* YGFloatOptional.h */, - 1CDD73571B970B45A486A3B0498F927E /* YGLayout.cpp */, - 81EE0039A619694FF3E16C06F28D8054 /* YGLayout.h */, - 6E2D19D654878B82F657E6B3A6BEFFC1 /* YGMacros.h */, - 79C1357F2591BBF578F21D97ECF2B59E /* YGNode.cpp */, - 06B5C6560ABB8384D4E8AABCC6938572 /* YGNode.h */, - C71A357C4C3990C9352DAA14BD0A62E1 /* YGNodePrint.cpp */, - 963529313674244E03C747A4948AE491 /* YGNodePrint.h */, - 3C0358FA438F9178127E0C2BCE503104 /* YGStyle.cpp */, - 878DA4DA1965E991360A0B90C6221A8F /* YGStyle.h */, - AA83C66BCE237C477EF7FA53A9A4C4FD /* YGValue.cpp */, - 4E5A3FB0E0F5259719BE815748EA69DC /* YGValue.h */, - B7550E92A5666A5FC9463EE29F908187 /* Yoga.cpp */, - 3ABA252CBB6E3B2F8D94515CDAFF5ED8 /* Yoga.h */, - 2877A38389E7D2FC96844CBB9A9706EE /* Yoga-internal.h */, - 15BAE439160F6831E0700FC9268F6B90 /* event */, - CF3B9070ED4011E1DA0AA3784370E6C6 /* internal */, - 58F584E638DA03644700E60B331092C4 /* Pod */, - BF0239A9FB18298116C3B7E18AF61725 /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - 5CE8EDDB715C31A090A3F0BABC431079 /* Support Files */ = { - isa = PBXGroup; - children = ( - 32AAFADD3DD8438F7CBA97F98D670481 /* react-native-document-picker.xcconfig */, - A45F0030699924CE63A3BE1A1E04032C /* react-native-document-picker-dummy.m */, - 596088C6B3860AEE5A266E2190E854F0 /* react-native-document-picker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; - sourceTree = ""; - }; - 5D4663A395B20D33275C3A3D4C05A68D /* Nodes */ = { - isa = PBXGroup; - children = ( - CCD2A49D0B1F2C6DFB39EC4B6DB2F80B /* RCTAdditionAnimatedNode.h */, - 2910D26607637BF64B2E89CA8B50BC0B /* RCTAnimatedNode.h */, - 13B3D5DF0D3F1C1EDF9FBF32FB4D10A8 /* RCTDiffClampAnimatedNode.h */, - 65CE45D203BEB30B53094FFB8F23B2C7 /* RCTDivisionAnimatedNode.h */, - B321CCACE72FDC621355E383F7664018 /* RCTInterpolationAnimatedNode.h */, - 78AE025AF94C2093809106A016A35345 /* RCTModuloAnimatedNode.h */, - E1C1CAC2DFEA679A049CF92D108DD7A1 /* RCTMultiplicationAnimatedNode.h */, - CBC5411ECAAD3F957C8318B46CDAFFB8 /* RCTPropsAnimatedNode.h */, - 58C75434D5A226A79016D53B6234AA57 /* RCTStyleAnimatedNode.h */, - F19DB2FC51E9E061AF53B697805F90B2 /* RCTSubtractionAnimatedNode.h */, - 0DECC37F011305E4F8D5201A3D90010D /* RCTTrackingAnimatedNode.h */, - 7FA6021FC51B75C6CA372416846B2B09 /* RCTTransformAnimatedNode.h */, - 7E7037E56436AE0964F96889FED26B9D /* RCTValueAnimatedNode.h */, - ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; - sourceTree = ""; - }; - 5D8A542AB9C7E0F72D9F10DF9CB9C7F1 /* EXPermissions */ = { - isa = PBXGroup; - children = ( - 089E361FA9F6CCDEF000FDACC54CBDEF /* EXPermissions.h */, - 717784DDC0972D374703808D43BE935A /* EXPermissions.m */, - 0A05659F0F906E80F05804D2793FA971 /* EXReactNativeUserNotificationCenterProxy.h */, - 19A6DAA1635F9B631B3EAA16F81907F9 /* EXReactNativeUserNotificationCenterProxy.m */, - 66E0D2B9B4914944D3F6D52FE02365AE /* Pod */, - 9FF7A194BE5F7E3424E82028AB7C57B7 /* Requesters */, - 95165EDE04FA68694255CC700EE2612C /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; 5DACF37B91672B1B16D7C6F64F5A348F /* UserDefaults */ = { @@ -9557,184 +9775,251 @@ path = Firebase; sourceTree = ""; }; - 601D81E7DB6D1A63E552FA48F9818A73 /* UMSensorsInterface */ = { + 5FD07EDDF388A1DC10C408E1A444B69E /* Support Files */ = { isa = PBXGroup; children = ( - F5F63BA013C595EAD453A39C343F921C /* UMAccelerometerInterface.h */, - 747A249486EDA716D7B8D233052E91EE /* UMBarometerInterface.h */, - 528A2DCAEECDC9D47C40F034BBBEB915 /* UMDeviceMotionInterface.h */, - CA8EC789129B8AA5C2C6846EF32E95AF /* UMGyroscopeInterface.h */, - A685EB89558965F941A405C3FAA82EB3 /* UMMagnetometerInterface.h */, - 0B824D421BC9F1ACD7F0FB4708517650 /* UMMagnetometerUncalibratedInterface.h */, - 13D0150FB6F1AFFECBEEE74FB1EF69F5 /* Pod */, - 37E134DBFE626C2E55CDE1D3EE165A01 /* Support Files */, + 45CDC5952DE2A914698B3DA075934A2C /* react-native-appearance.xcconfig */, + FA72A13A2EE1B277F6AD77CFAD99D4D7 /* react-native-appearance-dummy.m */, + E6E1BDE69C958750999B418590D97BA8 /* react-native-appearance-prefix.pch */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = ""; }; - 609D9081E999495046E2FD28E6CB4E84 /* Pod */ = { + 611F996627DBCE00DE861ABF42D43BAC /* event */ = { isa = PBXGroup; children = ( - 4AFDF3F710E8303C27FA938F68F10F93 /* React-RCTNetwork.podspec */, + FB1AE527938831EA5DAB885E86DFFCB2 /* event.cpp */, + 09066CC5070831A0DA2CF08AF4A289DA /* event.h */, + ); + name = event; + path = yoga/event; + sourceTree = ""; + }; + 621D749F48F18C75083B23171C0616C8 /* Nodes */ = { + isa = PBXGroup; + children = ( + 94F244C33CECD727B977DFD36C60BA95 /* RCTAdditionAnimatedNode.m */, + 121477E3C5C739ABA9355F4412524663 /* RCTAnimatedNode.m */, + AF04557AAB96AE8BDD0E9D6983690CFC /* RCTDiffClampAnimatedNode.m */, + 4D74F25B5B18ACD7FE4ABEB3B36EEB39 /* RCTDivisionAnimatedNode.m */, + 68311F13F12006033BF507D23E722D99 /* RCTInterpolationAnimatedNode.m */, + 3DA408E66225BA119EC89A929EDF6156 /* RCTModuloAnimatedNode.m */, + 959D3F686247ADFDB8FD8CD7550AB964 /* RCTMultiplicationAnimatedNode.m */, + 6E8D9AD27E7F69CCD404ED31159311CC /* RCTPropsAnimatedNode.m */, + 3595616E90E90D230A4767F66232AF4D /* RCTStyleAnimatedNode.m */, + 211A78C16996FBFD76CEEB864AAF23E5 /* RCTSubtractionAnimatedNode.m */, + FFF7B6FB0985AB4ED8CA1D097BA1D088 /* RCTTrackingAnimatedNode.m */, + 43FA5B7AC64A73BC3E6F4D60B39BEEB7 /* RCTTransformAnimatedNode.m */, + 091A574479E27D1661DB903AF31B83AF /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Nodes; + sourceTree = ""; + }; + 62590E803E2C3A62F71CE363712299CC /* RNCAsyncStorage */ = { + isa = PBXGroup; + children = ( + 97DA749E8E918B0DA470C0E5430B0A0B /* RNCAsyncStorage.h */, + AF40E2CFC42FB777D2EA13DE2083E86C /* RNCAsyncStorage.m */, + 7DB78DEEF52E22B2342A2386609DAF80 /* RNCAsyncStorageDelegate.h */, + 4DB5D7391ECAE4233DE8472A4F5BE8EA /* Pod */, + 1FC91B37C1D70591637AD39C7F7AC2ED /* Support Files */, + ); + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; + sourceTree = ""; + }; + 627A94DC4C75E9C031F55DB914B2C892 /* Pod */ = { + isa = PBXGroup; + children = ( + 29106485A61AF3F64187F3E882181CEA /* React-Core.podspec */, ); name = Pod; sourceTree = ""; }; - 6158A9BEA97EAA4647E306C709772282 /* QBImagePickerController */ = { + 6394F6EC019D44AB02F7700BAC189AC7 /* Support Files */ = { isa = PBXGroup; children = ( - 4D8915AB6846EAFEF97610B429FEE5D2 /* QBAlbumCell.h */, - A8EF9ADE40BC7719B21F362BA27D0CE6 /* QBAlbumCell.m */, - 6C795AC784E91CE7BFFFC7AA57CC3043 /* QBAlbumsViewController.h */, - 4E2743AAAF9A4FC35706F52E73C11C62 /* QBAlbumsViewController.m */, - 9BBFB7DF029570D3DA89F4EA8867EED8 /* QBAssetCell.h */, - 08AC8CB8E44B9D7D19D80AA1B56368B0 /* QBAssetCell.m */, - A94EF12DA4840DCF1D416FD566715F02 /* QBAssetsViewController.h */, - ED51C0ACBD2A3F1EE152AAFEDCDCE3AD /* QBAssetsViewController.m */, - AC1A12E7FB760FCD374C12F15429F063 /* QBCheckmarkView.h */, - F36BE07D7433CF6314EDF014BE65D359 /* QBCheckmarkView.m */, - 0EB20BE3ECCF35EADA103257BA92078B /* QBImagePickerController.h */, - FD6A7F7AF7A06D9D2D5EBC4E87A4E5DB /* QBImagePickerController.m */, - 3D71A2300D1F1BA16C41BEDF99A0397F /* QBSlomoIconView.h */, - 8525930F3F8CD3EBD6DA4389DD5C0EF7 /* QBSlomoIconView.m */, - E99246ECA2FF3A52EF5E264B6D7ABC84 /* QBVideoIconView.h */, - 325E1317AEFB463846E7C2AE2C8706D0 /* QBVideoIconView.m */, - 7729EE9D32168E2D7F78339279D55710 /* QBVideoIndicatorView.h */, - 81AF7C72C8D1321A79EFD6250A8453EB /* QBVideoIndicatorView.m */, - 95D9417CB50F85E00F98AB60FB2E8181 /* Resources */, - ); - name = QBImagePickerController; - sourceTree = ""; - }; - 625FAD8FF46231A1501E2FF1FD012C9C /* Support Files */ = { - isa = PBXGroup; - children = ( - 6FE23694EA167907586135DDAE4DE7EC /* React-RCTActionSheet.xcconfig */, - 0E84E6C970C887F862CFF4A74D75AF6C /* React-RCTActionSheet-dummy.m */, - 58334587D7722A791F7FA79F25270C03 /* React-RCTActionSheet-prefix.pch */, + 4D29F42E1A369E44DBBA2DBBDF8F4E81 /* React-jsiexecutor.xcconfig */, + 7172F5248F51BC52D083CD0358E25881 /* React-jsiexecutor-dummy.m */, + 5E775340B23487736098232DCDC40408 /* React-jsiexecutor-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - 62F895489E81C9A525E91D745669D6FB /* Support Files */ = { + 63AB53CA3D23A5E51C0B30DFA27D2168 /* Pod */ = { isa = PBXGroup; children = ( - D4A9777CADEB6A3788DB137532CF5E2C /* RNVectorIcons.xcconfig */, - A826F40E441D4412E32324F91F36CDBC /* RNVectorIcons-dummy.m */, - 0E407BF44DCAC2F5C9171F6175AD699F /* RNVectorIcons-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; - sourceTree = ""; - }; - 64064FEFC8406963BAF5E1BCDA37B960 /* RCTActionSheetHeaders */ = { - isa = PBXGroup; - children = ( - C7515F3955A7A7A6F1E0A8089381F968 /* RCTActionSheetManager.h */, - ); - name = RCTActionSheetHeaders; - sourceTree = ""; - }; - 64618759288B7B69898B7D4936064EE7 /* Pod */ = { - isa = PBXGroup; - children = ( - F2236443FB53942C9708DA1C715F30D0 /* UMBarCodeScannerInterface.podspec */, + 59E60AC24994CA2199780D8345644734 /* LICENSE */, + EFB42C16669AA4D20B04031D7752E8F5 /* react-native-orientation-locker.podspec */, + 875877D1A40F35C209C73A4FBC9D9777 /* README.md */, ); name = Pod; sourceTree = ""; }; - 65AE39EF8646DA1A7B47A88EE6DFFC39 /* Profiler */ = { + 6401EC82E49758EAC427BAE9137B4399 /* Pod */ = { isa = PBXGroup; children = ( - 496CF1E9975B06BA3A0EA5BE8C6FA985 /* RCTFPSGraph.h */, - F4B6286766BAB16F75C8F3961268387E /* RCTFPSGraph.m */, - 05FCAD5BF02AFE224924B65BD9903055 /* RCTMacros.h */, - AF56CD8EA9329F7F34CB313BE34EFE3C /* RCTPerfMonitor.m */, - 59A2B19434A72F254FE6595D38FB8712 /* RCTProfile.h */, - 569DB05BB4E8ADB94613FA5A0E2A3D39 /* RCTProfile.m */, - 3A9A28B444753B9F9526CD5412636FE0 /* RCTProfileTrampoline-arm.S */, - 7CB8C0DB6EEE6CC67BAC49EE564D190E /* RCTProfileTrampoline-arm64.S */, - F824E024621647C5329420E194FC7C22 /* RCTProfileTrampoline-i386.S */, - 4A3A2F39E1458E815C1C6DDF6D8AC153 /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = React/Profiler; - sourceTree = ""; - }; - 65D96D29A12911140E7B564778F069B2 /* RNBootSplash */ = { - isa = PBXGroup; - children = ( - 5ECEE9B7AB6E325C452EC27C706345B5 /* RNBootSplash.h */, - F4BB57F2C8342D0890921AD00DE04C23 /* RNBootSplash.m */, - 1D74E790D372881F6319E2F127C46A54 /* Pod */, - C78F7233EE2D4406A69AA0272F01DC28 /* Support Files */, - ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; - sourceTree = ""; - }; - 6681E15CB9B690F8E44F237E8246F44F /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - E263FF05F0C40822398FCD1BA2930346 /* CoreModulesPlugins.h */, - 715DE3D61DB2B9F0C8ED94D9195A2359 /* RCTExceptionsManager.h */, - 3D40CFA13FF0F7838C12F25132E746C8 /* RCTImageEditingManager.h */, - 9B7CFD05C691F6924977123D6341303E /* RCTImageLoader.h */, - 948E905C7DF7FF829F4AF8B63DA1650A /* RCTImageStoreManager.h */, - 0FB14AEB040EF55E079AD9DF8E45383B /* RCTPlatform.h */, - ); - name = CoreModulesHeaders; - sourceTree = ""; - }; - 66E0D2B9B4914944D3F6D52FE02365AE /* Pod */ = { - isa = PBXGroup; - children = ( - DF85B830324DFEABADD1EBC6B2D3CAED /* EXPermissions.podspec */, + 8905F3B270F1935A9E279AA5CDCD42DC /* RNFirebase.podspec */, ); name = Pod; sourceTree = ""; }; - 68C31E9E200F9720B5B0A651EF94E5DF /* Support Files */ = { + 64C3BB85B39AE86DE11937260225455D /* UIUtils */ = { isa = PBXGroup; children = ( - F75A97E72944AAAD3BFFC5CCB7806BB7 /* React-RCTText.xcconfig */, - 8A8190566899CF9ABE25C063278E2F77 /* React-RCTText-dummy.m */, - FED0982B6F4929D35EDF03B04F6BCE1F /* React-RCTText-prefix.pch */, + 40107C1AC2FC5EDC4845E0926FE4146E /* RCTUIUtils.h */, + AEBEE1806E267C24A8A7B68D7637068A /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + 64F60278B4BBF95DC1D88D9182A46686 /* RCTWebSocket */ = { + isa = PBXGroup; + children = ( + 0A3AA235F991FED94A3DB1DE6C17954E /* RCTReconnectingWebSocket.h */, + E6B5D917375CC87A748B9721340CBA58 /* RCTReconnectingWebSocket.m */, + 8F44254CDC9D17AB06A9E33787E57F9F /* RCTSRWebSocket.h */, + 9CEA630F3D539492A2BB797322823EE8 /* RCTSRWebSocket.m */, + 8759E2B890E867234F438F380CE3FF61 /* RCTWebSocketExecutor.h */, + B0C94E1B0AD11B58B92A6DB7F07E5929 /* RCTWebSocketExecutor.m */, + FD41B7E0C460E3A9A3AEF7B667A018C1 /* RCTWebSocketModule.h */, + D807D4A13E5300E114B3CBDB8163FE14 /* RCTWebSocketModule.m */, + ); + name = RCTWebSocket; + sourceTree = ""; + }; + 65389CD96386E64B0A14188DEB1F8D4E /* RNReanimated */ = { + isa = PBXGroup; + children = ( + 078C04246B9C3A7EA9EF3CDD9744B954 /* REAModule.h */, + F895D9B8EF3F616CF5501812A80FF1CF /* REAModule.m */, + 7F13F85437C08420B2C4D9772A5C0F84 /* REANodesManager.h */, + F6917495D07CEEDCDA6CC40941E5A562 /* REANodesManager.m */, + 2EF3D75F068694DC234CD13A4C125353 /* Nodes */, + E9802D6CA0E7C5D06A5136FFFE28E85E /* Pod */, + 14CFC09D4011FB40310A7CD2495AD9CE /* Support Files */, + 0A6BAEE48164E5355E076C8A0DBD6AFE /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + 65461EEA6AF8EF745E55D3BC863D0C13 /* Pod */ = { + isa = PBXGroup; + children = ( + B4831205B2D5AB63CB8C419F16FA1A20 /* React-RCTSettings.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 65484BC0AC4B3DD6F9F7EB16CA05453A /* Recording */ = { + isa = PBXGroup; + children = ( + 9773B663DB146257EFBD1E74BE95F85F /* BSG_KSCrash.h */, + FF406B5F1741BA6DD87BEC1F1C74251A /* BSG_KSCrash.m */, + 3A249E8D9CE12DDEED3AF4DB691C25AB /* BSG_KSCrashAdvanced.h */, + D8577D2B975A97ADB6C3715CEF5A7459 /* BSG_KSCrashC.c */, + 5D65140255764E9E242489D4004C7C9D /* BSG_KSCrashC.h */, + 05D6D8D4185DD843E13AA076DD463262 /* BSG_KSCrashContext.h */, + BAACD298105D4CC21AAB8D4431E9FD87 /* BSG_KSCrashDoctor.h */, + 267A348BBE5CCBB5F7CFDE697641641B /* BSG_KSCrashDoctor.m */, + 2CCDE638E28EF8965A0ABF0BB3989C85 /* BSG_KSCrashIdentifier.h */, + 0C097BB027F3EF153DA2C0DC6B926B16 /* BSG_KSCrashIdentifier.m */, + 6DE0681EDF0E0211D456C5E8D32BDC14 /* BSG_KSCrashReport.c */, + ABB813D04CA9754BAFB8DDFE89FC6AF5 /* BSG_KSCrashReport.h */, + 0437B4865CB76197F5EF62FBF87D233A /* BSG_KSCrashReportFields.h */, + 164EBE67EF41CFFDC479317A8B9631B2 /* BSG_KSCrashReportStore.h */, + 02267800B3684D4BA125373674B5638C /* BSG_KSCrashReportStore.m */, + 0B5EF498B442839D5C6E22C5C16642FF /* BSG_KSCrashReportVersion.h */, + DEEAF57B8CE16D5F8C9C22A94E24195A /* BSG_KSCrashState.h */, + 9A556282A3B0F6806B50B9D64B56A8D4 /* BSG_KSCrashState.m */, + E94612411B009341CB5E270FF2072BEF /* BSG_KSCrashType.c */, + 91962A61FF181A9A85B005F9D7F8F8FD /* BSG_KSCrashType.h */, + E4BD7CF6AE53A96760FA4A0E89B0E935 /* BSG_KSSystemCapabilities.h */, + 3632DFB1D9C0696E71313BCC82D3B30F /* BSG_KSSystemInfo.h */, + 885D812687E2B07C8F02B276D002BD93 /* BSG_KSSystemInfo.m */, + 1D4B987455E55D6782BEC5EE482153D4 /* BSG_KSSystemInfoC.h */, + 468A33E95D143FBFB505EB51C108F197 /* Sentry */, + 29DFCB4A69860567BEC8A1FBF6CD1E05 /* Tools */, + ); + name = Recording; + path = Recording; + sourceTree = ""; + }; + 6575610C03823B74E1916E412F79FF7D /* Interfaces */ = { + isa = PBXGroup; + children = ( + 62A80A601B408A4CB5F883AA9B664B5A /* UMAppLoaderInterface.h */, + 78481B9CC4D7B4B7475909834BEB3932 /* UMAppRecordInterface.h */, + ); + name = Interfaces; + path = UMAppLoader/Interfaces; + sourceTree = ""; + }; + 660DA62D768E6A021365D37A32121F80 /* Video */ = { + isa = PBXGroup; + children = ( + 67E19F19787661DCFCA60CD07A38A33E /* RCTVideo.h */, + 83E6C2CF91BB9491782F439CF886009D /* RCTVideo.m */, + 08973732DE9BD3F907E0D41E5B0088AF /* RCTVideoManager.h */, + 83935506FE6CA3D043C47B66AA1DCE69 /* RCTVideoManager.m */, + C84DE06D995FB6615016758C04047D73 /* RCTVideoPlayerViewController.h */, + 3F83567E7F6D1EC1547C35B12A585367 /* RCTVideoPlayerViewController.m */, + A0B78963249C137BBDE8342DEA6F1B9C /* RCTVideoPlayerViewControllerDelegate.h */, + C072B46227B510BB9529F24AD3C6EE75 /* UIView+FindUIViewController.h */, + C0ECAABA573E7A5854923803B4543012 /* UIView+FindUIViewController.m */, + ); + name = Video; + sourceTree = ""; + }; + 665859FDD9EBE4AC1D084E03C7A6AD19 /* Support Files */ = { + isa = PBXGroup; + children = ( + 90CC2265CE93E0224E5485B17D2FE529 /* BugsnagReactNative.xcconfig */, + A61DB22D4ED374945643AA50231FD3FB /* BugsnagReactNative-dummy.m */, + 2BC6AA78756D6DF73200165D5BCEC7A4 /* BugsnagReactNative-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; - 69A4802389093D8619F156274B3BB3A5 /* RNFastImage */ = { + 6803053EF31DB79562E16D4715ACD3FC /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - 8097A444830D3C6CCE125A1719EBE321 /* FFFastImageSource.h */, - CBC8978F7A2DBF3D6A595470001EB888 /* FFFastImageSource.m */, - 65DF2D38D025F5920C9A118C22152FC2 /* FFFastImageView.h */, - BB42A1E41CF00DC707700CBBB3D7BD80 /* FFFastImageView.m */, - 3405BF8C28915A35FDCF0DC28DD6C452 /* FFFastImageViewManager.h */, - 78370509C55CD0F883BD4BEF2A6D6273 /* FFFastImageViewManager.m */, - 5A09A3FC6667C5F9782E43A35E3C5BE8 /* RCTConvert+FFFastImage.h */, - 7338C1843FE0B7ED556C5763FD46A84F /* RCTConvert+FFFastImage.m */, - 9822752D930EFC21B0F025B094F9FF8A /* Pod */, - 080326E9162A227D73472C5A1BF8E438 /* Support Files */, + 8655F3F8142267D046697618FA4B8C24 /* RCTAnimatedImage.h */, + 9E9780F189B0F0F286F7FD96944F5439 /* RCTGIFImageDecoder.h */, + B1775F1EA7BC00ADD1CDC80C4D6CC568 /* RCTImageBlurUtils.h */, + CB4CB974D84B00371C7D95D20396DD1C /* RCTImageCache.h */, + 7A40288D82A3F1706752546010B05892 /* RCTImageDataDecoder.h */, + 1D519D0A5561B71619784359CE8D33C6 /* RCTImageLoaderProtocol.h */, + 91C3D9FC94ABE9264069E1B9AB64DB02 /* RCTImageShadowView.h */, + CA4F8830185513E662869F3152024125 /* RCTImageURLLoader.h */, + E3B5DB235E15B5E7DBCF624DA846158F /* RCTImageUtils.h */, + 9AE7FC29097C1A2C7BBAB7252D91C9D5 /* RCTImageView.h */, + 4B10BFE8AE9ADF76ACD8FCFD6917854E /* RCTImageViewManager.h */, + F14C54CC504345EA12F777BB987EB343 /* RCTLocalAssetImageLoader.h */, + AEED18321B7E44F51D597640F8EFFC06 /* RCTResizeMode.h */, + 660C1A1152A5277F6D275390ECC7089B /* RCTUIImageViewAnimated.h */, ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; + name = RCTImageHeaders; sourceTree = ""; }; - 6A725F6F772893A2149E72E17EFF9A5E /* Drivers */ = { + 6A049C165F655892E1CF19972C457643 /* Pod */ = { isa = PBXGroup; children = ( - E2170B422AE233CA0E843E1C6F8C5AF6 /* RCTDecayAnimation.m */, - 24ED047780F990FDE45C495CB8C81BE3 /* RCTEventAnimation.m */, - 2F878A57E2BD422441DA596CE98AC330 /* RCTFrameAnimation.m */, - 21798EFB64E95ED60C19806C91FC71F0 /* RCTSpringAnimation.m */, + 7CCC06E985E7494119EA13D35C583044 /* android_date.png */, + DF1150C51770B7B91ECEAB225AD93EA5 /* android_time.png */, + E8C4DC67B729A6825D36EF3F07257B10 /* ios_date.png */, + 583EA6C96DC1C7FBFA45E759D9499070 /* ios_time.png */, + 33E1326F0400249FA1E8797B6955A612 /* LICENSE.md */, + 89B7EC9FA29DDB2180DE4F6B55D1499D /* README.md */, + 48FF887AA9B708C2A8F14280655A0000 /* RNDateTimePicker.podspec */, ); - name = Drivers; - path = Drivers; + name = Pod; sourceTree = ""; }; 6B316D4F61F7D349A2A4EEB4B290CEE6 /* Support Files */ = { @@ -9747,15 +10032,16 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - 6B386F027F4B267841A3111DB1104A2B /* Multiline */ = { + 6B4A9C7177AD4AE9F496C6200893CBE5 /* React-jsinspector */ = { isa = PBXGroup; children = ( - 5CE7F2C3E9991FC3578F7E67BE5C9393 /* RCTMultilineTextInputView.h */, - FFD0AEBB89BB36C053458AF452310619 /* RCTMultilineTextInputViewManager.h */, - E69F4D5FA2EEA2CCC03B5241F06B998F /* RCTUITextView.h */, + 523200F618E483B56631A61C76CD23B5 /* InspectorInterfaces.cpp */, + 9ED0AD43CC44C17BB61ECA17CBB20C44 /* InspectorInterfaces.h */, + B1DAA59EE539AAA07E44CF7B04FBE736 /* Pod */, + E003E96934F6F28AF0861B11679EB562 /* Support Files */, ); - name = Multiline; - path = Multiline; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; 6B6C32C73706CF621C5AF986E93AFEA5 /* Support Files */ = { @@ -9768,43 +10054,33 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 6B7B99CB35929146A220D14D68A46DF8 /* UIUtils */ = { + 6BB96610449144E3F422B2CA1ED8465D /* ScrollView */ = { isa = PBXGroup; children = ( - 7012687F32F355EC8E14C8C53AAD981D /* RCTUIUtils.h */, - 515A22978278B8552B18FDDF1FBA5AF8 /* RCTUIUtils.m */, + 83267670680BCF7A389A2881E287D144 /* RCTScrollableProtocol.h */, + 41C300FFABD69FB816837192A0079DA0 /* RCTScrollContentShadowView.h */, + A6268F447B9C8E786F8672ABBEDE0B33 /* RCTScrollContentShadowView.m */, + 9EA34B065C288E777E0D495594C554C7 /* RCTScrollContentView.h */, + 9C17060AC692446E4620A3A371BB4D00 /* RCTScrollContentView.m */, + 89398DB31D2B090D296B4E56FB6830CE /* RCTScrollContentViewManager.h */, + 6E3D3A38329A7C0EFA19CB9C4C6E39DE /* RCTScrollContentViewManager.m */, + F132C06BC669E7AEF7C49683C9FE16C0 /* RCTScrollView.h */, + 99700EEEE49AFBF5155726521B378965 /* RCTScrollView.m */, + A3B8E2D29E386F5C3FA652AA6D1DD585 /* RCTScrollViewManager.h */, + 734C07C36A7F791888477C0D23601C11 /* RCTScrollViewManager.m */, ); - name = UIUtils; - path = React/UIUtils; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - 6C517F5AE5A03AAEADD9CBE51FB6E0D2 /* Support Files */ = { + 6C6087879F3F2AB999883E6C5E7BEBF0 /* KSCrash */ = { isa = PBXGroup; children = ( - 11C8A67A523D91820F05E1E75A938EB7 /* UMConstantsInterface.xcconfig */, + 65484BC0AC4B3DD6F9F7EB16CA05453A /* Recording */, + E21FCE85B53DA0526A40A7A71F7168CA /* Reporting */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; - sourceTree = ""; - }; - 6C8834E7AC0D4238E5B6A66810EEC9E8 /* Pod */ = { - isa = PBXGroup; - children = ( - 8071F3140C83C329B87D89F7F76D7B0A /* LICENSE */, - E3085ABFDFB80C782979628AFA5B70C3 /* README.md */, - 4CCD21308C37AE02C506AEEA3FDC135A /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6CAD6E5F63F068421E0A82826BC0EBA4 /* Pod */ = { - isa = PBXGroup; - children = ( - 75DB9753B851A6352F359AD77132937B /* LICENSE */, - 717E9E9B93F6F630140F1EA916BF74D5 /* README.md */, - D5E11F7AC15E70A2FAE36618DDDD535C /* rn-fetch-blob.podspec */, - ); - name = Pod; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; 6CF7EC609CAD8174E757012DA4B177A1 /* Support Files */ = { @@ -9818,149 +10094,15 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - 6D7697A150FDA36C16E8D3A38337E1E1 /* EXConstants */ = { + 6D0ED0DCF6E48C33CCE0A6EC2899F3E7 /* Support Files */ = { isa = PBXGroup; children = ( - 274F543867C64B9A619D27C4513014D2 /* EXConstants.h */, - 5AE52EB85E8977A12AE544F6B71A771E /* EXConstants.m */, - 9904960D15504DAC6CCA49A008D712AE /* EXConstantsService.h */, - B5F7B9DC5DBD0A04BB45CF9ABB1FE54F /* EXConstantsService.m */, - CF256EB76BF3C0AAF27AC421B283BCEC /* Pod */, - 540C3751D1AC6CB777305883265ADE26 /* Support Files */, - ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; - sourceTree = ""; - }; - 6D8A7CB344ECF80DB5110C18F436E842 /* FBReactNativeSpec */ = { - isa = PBXGroup; - children = ( - 80126C51BED4E3DCB4CCD333C38DA46B /* FBReactNativeSpec.h */, - CAC8F0CFB05A73A670C9E3F2D08A0640 /* FBReactNativeSpec-generated.mm */, - 1F8DC336A1373E5960838643116CCA93 /* Pod */, - 4E0E8C55BFE659BFEC943808176AA9C5 /* Support Files */, - ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; - sourceTree = ""; - }; - 6E3D9D081618F355E89BC08740B794C1 /* RNVectorIcons */ = { - isa = PBXGroup; - children = ( - 39440C29EF6281814EEBA71F12BF027E /* RNVectorIconsManager.h */, - 0B3E5DD41E0FA57BBB1449FE2675DE59 /* RNVectorIconsManager.m */, - 01C7302D0ED672161686C8416B303BED /* Pod */, - DE11E11452EA3705402E9A845B1CE0D8 /* Resources */, - 62F895489E81C9A525E91D745669D6FB /* Support Files */, - ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; - sourceTree = ""; - }; - 6E76E5C1C37AC6F688843C9E740B7212 /* Support Files */ = { - isa = PBXGroup; - children = ( - ED2B0EF803D68091C2A97BE33361B636 /* RNDateTimePicker.xcconfig */, - 4B9CA38E879CD20E77C3E4C4B0DE0CB9 /* RNDateTimePicker-dummy.m */, - FF24D5393A4E5062742F0844057E3418 /* RNDateTimePicker-prefix.pch */, + 79AE51DE109D3E965D8E3B7F09CE3EDE /* react-native-video.xcconfig */, + 9E2057DF80BA5D1A31D4F523D7DBA016 /* react-native-video-dummy.m */, + 58209E5FA35C4B702B45D48090F98C11 /* react-native-video-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; - sourceTree = ""; - }; - 6EA4AC36E6CB3CDB7F0F7F660605D1F2 /* Views */ = { - isa = PBXGroup; - children = ( - A693AA61E697173D763FB55F9F925A76 /* RCTActivityIndicatorView.h */, - 8E18A88BAD923B062DD7A8FDDE0FC019 /* RCTActivityIndicatorView.m */, - 7F2DF0505AC6DD488E90BAA79F1E6DB9 /* RCTActivityIndicatorViewManager.h */, - 59B44F2096A5FF0B60BDF62BAD0EB766 /* RCTActivityIndicatorViewManager.m */, - 44EABB9CB5B9D0D74454496877665506 /* RCTAnimationType.h */, - 15B5BE8D50BAB0134DD382D366567ED6 /* RCTAutoInsetsProtocol.h */, - 70D235412EFE764BFC9DBBEAD567BB29 /* RCTBorderDrawing.h */, - AA9F7478AADD3DD5BF9F700EE0988915 /* RCTBorderDrawing.m */, - EEDE915C22C65B42CE4277C418DB3213 /* RCTBorderStyle.h */, - F1AD8D4096824219D55A5025F4580AD7 /* RCTComponent.h */, - 0C2DF73102D11D25584EE0473C499831 /* RCTComponentData.h */, - 4BF3A95DB37F815FF43D7EF1E503E1E5 /* RCTComponentData.m */, - 8089F7AB55E384041ACDDF19E78F1B60 /* RCTConvert+CoreLocation.h */, - EA1E9A14E80735BFE4C7521D136DC165 /* RCTConvert+CoreLocation.m */, - 13FAC8112719E5F8DF48A5580D6146ED /* RCTConvert+Transform.h */, - 0381A251667F2E0736F1F8B62BCAA077 /* RCTConvert+Transform.m */, - 5EF03D4A1089DE603CBFFF9D9D52203D /* RCTDatePicker.h */, - 77B1EBB82F5E7296CDCBF6DECA8539D9 /* RCTDatePicker.m */, - BEDD643D44C870406004853F80397131 /* RCTDatePickerManager.h */, - 8C1C346A405E291620CD1E83A90BDC2E /* RCTDatePickerManager.m */, - 2D34EDB4F334F9A61289CC7A8CE81336 /* RCTFont.h */, - 830091E9F5DA8AA7DE3E4082877C79B2 /* RCTFont.mm */, - 71D333D6C9815B4D7BDE138207450774 /* RCTLayout.h */, - 1D0AB78E30104F0A136DF6B23174E0D0 /* RCTLayout.m */, - 09B04B8589E68E2687A1D94C462182AD /* RCTMaskedView.h */, - 87250954950E13682D9F5CD7F3A6BA91 /* RCTMaskedView.m */, - AB9ECDA9ED934C3308F87CE97820F9EF /* RCTMaskedViewManager.h */, - FB5163CC84095AD8ACF8C608B1977B90 /* RCTMaskedViewManager.m */, - EF2C901FE1223174D8B3A6746858D656 /* RCTModalHostView.h */, - 7E50CD8A90BE20BC826BEC95C64F9915 /* RCTModalHostView.m */, - B751636E9EB237E78796852019202781 /* RCTModalHostViewController.h */, - 32535E19DA9B81F52BD854BC718FE596 /* RCTModalHostViewController.m */, - C89485CBD68603701DFD1CF78BD93BCC /* RCTModalHostViewManager.h */, - D1A4AD2BE6B55C9529F2FC6474C850EA /* RCTModalHostViewManager.m */, - F05DDA788AC42546B5D27BCCA0222EBE /* RCTModalManager.h */, - 759973C61B3A8903A686499A76905E4C /* RCTModalManager.m */, - 81143DA51A172C18B1CD38A0FD36407D /* RCTPicker.h */, - D1D8016FFF808566998E371FEB3F3DE0 /* RCTPicker.m */, - A16DEFAB0875333C26E3139CE5310E82 /* RCTPickerManager.h */, - 90840E4541C9DD475BB36737BCEF0EF0 /* RCTPickerManager.m */, - 388E38F332625087DCF2599BD7A2301D /* RCTPointerEvents.h */, - BF5624ED36A75321F4F24EAED7A7AF33 /* RCTProgressViewManager.h */, - 7D9CF80F3F009E6064C67C573894F6D9 /* RCTProgressViewManager.m */, - 226179432C6080ECA229D01D76926AFC /* RCTRefreshControl.h */, - 980334210A70EC8FFACDA9AE9DECBEE1 /* RCTRefreshControl.m */, - D7A95B257013795111CFA1F1AB3E1273 /* RCTRefreshControlManager.h */, - 2417D733FCFBBA6DE5A653206FC6DBC2 /* RCTRefreshControlManager.m */, - D072AAF75155CF22E0B841DC87AA1FCF /* RCTRootShadowView.h */, - 247EB6446686C8DE976B71F8E7151AB5 /* RCTRootShadowView.m */, - A1F900E624E4F67AFB7FA81DF7F85E61 /* RCTSegmentedControl.h */, - 980FDBA738C683BE41F4E005921CF7B2 /* RCTSegmentedControl.m */, - 92AAE233471128F7AB697528E5779C4F /* RCTSegmentedControlManager.h */, - 0CE1B26244BAE7DEC268FC99D1DB1116 /* RCTSegmentedControlManager.m */, - 375E3F922217B20721576A0AC235351F /* RCTShadowView.h */, - 6B8F563DDF42E97813ADA94A44D41DAB /* RCTShadowView.m */, - DD7B1DDC7B038544A875E6A822F28386 /* RCTShadowView+Internal.h */, - 0722D2EC567F23AE93ADAE6D32994A8C /* RCTShadowView+Internal.m */, - 1CEAC4E463CAC8251214B1C9557FCEAF /* RCTShadowView+Layout.h */, - 3761AEACE1DA39F1AD4786BB1D0061FF /* RCTShadowView+Layout.m */, - 5617399E43084D1599B422553239EF32 /* RCTSlider.h */, - 6BA51F00ECD12529E58CF5FCF1BDD822 /* RCTSlider.m */, - 7C07F9EEC2DBABECAACCAC8A87228BBF /* RCTSliderManager.h */, - 86F87738549F13FD7A93B2D9A9E7AE3E /* RCTSliderManager.m */, - BCEA53C69C3685631F06C2188C4F5F73 /* RCTSwitch.h */, - 907943E2FBD3DB953B4FBA9071E2CB0C /* RCTSwitch.m */, - A472B29A06F533DC8055155CB0C7DA06 /* RCTSwitchManager.h */, - EB7D50EFBEB2E508AF716F3712D90713 /* RCTSwitchManager.m */, - 1511DFEB994E187AFF9521845948D37C /* RCTTextDecorationLineType.h */, - 91D1EFE5F226BBD145CE95DAC5EA45FA /* RCTView.h */, - 4BA98710C34DBCE9064FE58C234DF6F4 /* RCTView.m */, - BE6781874D04D82A9300A2130BD1910F /* RCTViewManager.h */, - 1FFF4386C7B0F3D13728EEF0B16D8810 /* RCTViewManager.m */, - 4E755321532787F7DB40AC844B2A0AE0 /* RCTWrapperViewController.h */, - 3EF16EEFB7DEE0F7CD09E9E57683CAEB /* RCTWrapperViewController.m */, - BCC85C917F9308976AC6ED6C364D618A /* UIView+Private.h */, - DDDC95FFE0C6C7B2851FD524684F54B0 /* UIView+React.h */, - 602A3122C7F22DFAAB9B83821759D99D /* UIView+React.m */, - AA1160D4DE7CADD11E97B3EA14933708 /* SafeAreaView */, - F26AAD006FF956042BD5D10835BFAD9F /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; - 6EE080B27C2F0BC39CC6F791380A9695 /* Pod */ = { - isa = PBXGroup; - children = ( - 0498B64643BBE06318BD049DCBD0A9E6 /* React-cxxreact.podspec */, - ); - name = Pod; + path = "../../ios/Pods/Target Support Files/react-native-video"; sourceTree = ""; }; 6F88DEA2865A43BC2ACD1E85CDD051E9 /* AppDelegateSwizzler */ = { @@ -9978,67 +10120,159 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 6FB512089F3862C7E961C56A0BA3CB5E /* Support Files */ = { + 6FBED58FD6F873D76413EF0B4A617352 /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - DED3C306036B86D6BAD40A6FC8471859 /* react-native-cameraroll.xcconfig */, - F689FE1EE0C527B721E002B987BAD52C /* react-native-cameraroll-dummy.m */, - FDDFA76BAC2F0F134DB4AD9EA37146E8 /* react-native-cameraroll-prefix.pch */, + 15C16410D0D202FC7BEC08F3A5D52800 /* Orientation.h */, + 6A78E75F58C4D4838FB6EEFE907BC2B6 /* Orientation.m */, + 63AB53CA3D23A5E51C0B30DFA27D2168 /* Pod */, + 7993F72E08981CC77808A28A46077DD8 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - 732DAC917BF654B9AE7754EABC05C472 /* Pod */ = { + 6FFF82A5B8ADCC0E0B6D3ECC7A65A114 /* RCTBlobHeaders */ = { isa = PBXGroup; children = ( - 55ED733271DE2C63203BF1F6FCEF76F7 /* react-native-slider.podspec */, + 49450186F5B9E86D18208D07FBF9EF01 /* RCTBlobManager.h */, + C552E45409E4551E99829B400674D835 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + 70E1DC0C248850B3CE956BA44186EC46 /* RNBootSplash */ = { + isa = PBXGroup; + children = ( + 083DEECF25FCD1C719EFD6E0670572EE /* RNBootSplash.h */, + FCD4B9DA5174D235E8A5F27A15F33753 /* RNBootSplash.m */, + 11D2FEC01ACE971E0ED126192122CB3F /* Pod */, + ECCA4149EA74A1A751E843D0F2F98CFC /* Support Files */, + ); + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; + sourceTree = ""; + }; + 711EED8D213018761F16B38F2FE2E8ED /* Support Files */ = { + isa = PBXGroup; + children = ( + DB5454C1FAFF496B3B2506A5CCFD9E69 /* EXConstants.xcconfig */, + 7CE58D7FD05607438B54DD5CE666D78A /* EXConstants-dummy.m */, + AFE2A7E61B5BCADB377CABE262232B27 /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; + 715F08235C87A54EA472F4C79006BB0E /* Yoga */ = { + isa = PBXGroup; + children = ( + 84B6BA8026C191439E6A8DBFDAC36C7F /* Bitfield.h */, + C57E8E463DD8F570C213A0D241DD8440 /* CompactValue.h */, + 9024ED3FEA023FBCE5FC297B08442458 /* log.cpp */, + E143971B2FAD9D211A5615404D3C641B /* log.h */, + 87AD05BC9122F8026F225D0CAC65187E /* Utils.cpp */, + 163849C656D0C2B93BCD6CB128E65F30 /* Utils.h */, + 3D5625497BBC55C69000B1915CCD5624 /* YGConfig.cpp */, + 4EFAD701B4A0CCAEE8A3F9DF35E5D4FE /* YGConfig.h */, + 1BA22A22703146AC68DCE049822AAB4D /* YGEnums.cpp */, + E7B69D2EA711D9DE261BD4F8DE114AAE /* YGEnums.h */, + 3E4B99868B700BE2A8F0F98FA4F55F7B /* YGFloatOptional.h */, + FC7E2CEC556EE101839CF06B251E1C5A /* YGLayout.cpp */, + D353D694AB0EA7E09F8EBB7C3EACFFF2 /* YGLayout.h */, + 0802DC2D86396ADF4E54BF982B056302 /* YGMacros.h */, + D7AE37CC8ABEF1469F1B8301C5FB9894 /* YGNode.cpp */, + 5B452019B4BC48CFCA2CEA795EAAF8A4 /* YGNode.h */, + D9B862F9313F77A078F0063C59C4F33E /* YGNodePrint.cpp */, + 7DCBEE5C8D08250D44D7238E3A4BCF1C /* YGNodePrint.h */, + B787E74A715316D11B7654CE1F490802 /* YGStyle.cpp */, + 5BA23425B285C80307FDA26B981501FE /* YGStyle.h */, + 44C740C76BBD96A20E9011FA1E14F64A /* YGValue.cpp */, + 643B77F3614352E821DA708CEFB5DB41 /* YGValue.h */, + E20252175BAA5AB658B3988B28E463BE /* Yoga.cpp */, + 963BA59445DE7391A6E43D344A3C12DD /* Yoga.h */, + 986824148C5063640EEB369573A7C353 /* Yoga-internal.h */, + 611F996627DBCE00DE861ABF42D43BAC /* event */, + B421EB9129064FF53BEDB58DDD04C3FE /* internal */, + E8E227C9BA683EF18E3295DCF36DA266 /* Pod */, + 1DE75959079D8DBC40DF2C3FB03B725A /* Support Files */, + ); + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + 716247A39A2739870B577DC49D84471A /* UMNativeModulesProxy */ = { + isa = PBXGroup; + children = ( + CD7E10B2B60D4B2E57F720BCB9453FB9 /* UMNativeModulesProxy.h */, + EF20CEAB0CFF3687E37E4466C9556607 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + 72640BD7EEE3AB90A8D6FDDD231157FF /* Pod */ = { + isa = PBXGroup; + children = ( + 9C43639720E4EB981C2E4FAC9E81DBD1 /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; }; - 736C8FFB8079F02E286F804D6821B18E /* Support Files */ = { + 730910E8D3BD39B6A63B8A5E5D73BD61 /* Pod */ = { isa = PBXGroup; children = ( - 48AAA8346CB5AF2DFBF2FAE3648FBE8B /* RNGestureHandler.xcconfig */, - A863BA598F51BD9217091846EFC9849D /* RNGestureHandler-dummy.m */, - 024606C24DFB6DFF07FD9F7FC9556B48 /* RNGestureHandler-prefix.pch */, + 4435CF706E37C458DBCE4442B262FDB2 /* LICENSE.md */, + FB992AB0738E83408793655014FF5705 /* react-native-document-picker.podspec */, + 22A523DBB13395236C8C7484BEDB8CE8 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 73689BA02E4808C807C38A120C0F45D0 /* Resources */ = { + isa = PBXGroup; + children = ( + 292FAA83F77871CA7125AB3C6D336C5A /* AntDesign.ttf */, + CBB9C64AB3245BA3940CC46E4D05DE1B /* Entypo.ttf */, + 3A42DCF044AEF80953597F845058F38C /* EvilIcons.ttf */, + 67A506193749BDD1D0C7A91BD4539316 /* Feather.ttf */, + BB112156C4AEA980476C53DE929F674D /* FontAwesome.ttf */, + 5FA891486436E268DD612FFBFFDE6BC8 /* FontAwesome5_Brands.ttf */, + F98C4872BC91A1A5FDC51EDFF8C2C61A /* FontAwesome5_Regular.ttf */, + 6ECDDA9E133901E9658E457AE4A90AC3 /* FontAwesome5_Solid.ttf */, + BA5F45806B14AA9B70B7FC83CADBDFAC /* Fontisto.ttf */, + 8AE43FC6E58A976B3C6D2570091904CB /* Foundation.ttf */, + DEBDA3126B2570F185289B7CCA224035 /* Ionicons.ttf */, + C6F7376FF609E9CFB2F26665E0C0C71B /* MaterialCommunityIcons.ttf */, + 89B28C405A0AB9F9086B93A87FC74CF4 /* MaterialIcons.ttf */, + 3472377E14C6E55BB9E78FA7B1D6477C /* Octicons.ttf */, + A31CB50833B37420416341B344B5ACDA /* SimpleLineIcons.ttf */, + FCD8331DC43A1093045FB053061DB530 /* Zocial.ttf */, + ); + name = Resources; + sourceTree = ""; + }; + 74EE7E69112E69F1AB23E625DBA1701C /* react-native-document-picker */ = { + isa = PBXGroup; + children = ( + 95BCCFC2874599E98F8FAA6BC1E00E59 /* RNDocumentPicker.h */, + DBAA23452718DB4A48F0E2AB76AF770E /* RNDocumentPicker.m */, + 730910E8D3BD39B6A63B8A5E5D73BD61 /* Pod */, + DC4D298CD70386447E4D518330143735 /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; + 75029FCBC9B54EC1D1BF62173B4F0040 /* Support Files */ = { + isa = PBXGroup; + children = ( + CF72BD4423453F95A443F02F30161D3D /* react-native-keyboard-tracking-view.xcconfig */, + EA28B39EED69E80E874C348017853C78 /* react-native-keyboard-tracking-view-dummy.m */, + 239D2BF5AFCF790EB88B94220067AE36 /* react-native-keyboard-tracking-view-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; - sourceTree = ""; - }; - 7468352AB2AACA3FD43509BAC33C9A19 /* Support Files */ = { - isa = PBXGroup; - children = ( - F6CB564AE5D839003189C16F3289EEF1 /* React-RCTVibration.xcconfig */, - 83E5C868AF0D7E96D4BD8511C1A6D078 /* React-RCTVibration-dummy.m */, - B397FBC5CAEDE0C87D6F339BD03B2183 /* React-RCTVibration-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = ""; - }; - 754BC65B3E384E70A15C9B89EC311324 /* Services */ = { - isa = PBXGroup; - children = ( - BDFE1F387E5F04ED134A6A71124C655C /* UMLogManager.h */, - 81D1EF2629F8267469FF9635CA325509 /* UMLogManager.m */, - ); - name = Services; - path = UMCore/Services; - sourceTree = ""; - }; - 7608AB024D1633872B42272B5E1F84FE /* EXWebBrowser */ = { - isa = PBXGroup; - children = ( - ACD51DA66542BC940D4A5FB04D6C0DAB /* EXWebBrowser.h */, - C78CF85D200C3733B1D747C9702711F1 /* EXWebBrowser.m */, - D28D7DAA3C32A57F7E68530A96482DEE /* Pod */, - 7FFA47933E70AFC1B78B545306817DCB /* Support Files */, - ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; sourceTree = ""; }; 7608AC1BAFF9991F61A7036E8460C5F2 /* Pods-ShareRocketChatRN */ = { @@ -10055,58 +10289,32 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - 7643CA6EAFC13DCAC51058242FD000A9 /* RemoteNotification */ = { + 76574FB32CCDC693B4D95D10785F3E9E /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - 783B518DD2B125FC0E464EEDAA73E812 /* EXRemoteNotificationPermissionRequester.h */, - E3D1E7716CC44DDA6ECFCA7F38BAFD28 /* EXRemoteNotificationPermissionRequester.m */, + 5EA5333A327D4FE321C9F504A7B43F88 /* RCTSettingsManager.h */, ); - name = RemoteNotification; - path = RemoteNotification; + name = RCTSettingsHeaders; sourceTree = ""; }; - 767F2EBF981E8690469F1A8949CD95B2 /* ReactCommon */ = { + 765B8369ED68BA56227627EB094C7DC7 /* Support Files */ = { isa = PBXGroup; children = ( - A78F8B84B10BCF1E1A0BE22031D00524 /* jscallinvoker */, - 08F3E939EAA8D9D6CB3414A748368A0C /* Support Files */, - 073E4DD5DD409A658DE618555EF0D736 /* turbomodule */, + 614C632A125345307D7C19F68F26D2C3 /* React-RCTActionSheet.xcconfig */, + 20D53B1689D26C8BB9510CC4A87E1336 /* React-RCTActionSheet-dummy.m */, + 01B7E4E7FFDD320A23093917FF0FDEED /* React-RCTActionSheet-prefix.pch */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 769E1B5673D138F10F198F12A2BF89C5 /* Nodes */ = { + 7767CAFE27669FB1617F94739F018A0F /* Source */ = { isa = PBXGroup; children = ( - A353EBABAB23AF51DD06C780062A0033 /* RCTAdditionAnimatedNode.m */, - D27001C0EE49A2C52AB055D6EE0F0F01 /* RCTAnimatedNode.m */, - 7B39C5E381ACE6F64E9BB458AE03BD63 /* RCTDiffClampAnimatedNode.m */, - EB94F93D00DB0189F3ED90E4609092F9 /* RCTDivisionAnimatedNode.m */, - 36756CBFBFF0B3B954AD1B7158A3E6D4 /* RCTInterpolationAnimatedNode.m */, - 93CCBDDABEAE5942230CF0E025336E1E /* RCTModuloAnimatedNode.m */, - 4F4E632D2E19B3B79DF2C310705D42BA /* RCTMultiplicationAnimatedNode.m */, - 4DAAD67DF7974AF97D3B405CB6A2F359 /* RCTPropsAnimatedNode.m */, - B03AEABDDF62B278F296D02437A837D5 /* RCTStyleAnimatedNode.m */, - 33C061B1392DFF91EE6CBE0A4CC35993 /* RCTSubtractionAnimatedNode.m */, - DF6D5E0AF58DEBC7EFDA3E4CF9D871E5 /* RCTTrackingAnimatedNode.m */, - 7FD4FA37C4ABD4B22B9675BFD87748D1 /* RCTTransformAnimatedNode.m */, - F9325A0ED5CAF49D74FE46655BD88863 /* RCTValueAnimatedNode.m */, + 6C6087879F3F2AB999883E6C5E7BEBF0 /* KSCrash */, ); - name = Nodes; - path = Nodes; - sourceTree = ""; - }; - 77D12721DE5C7D86E49DFE81A82BCC48 /* RNAudio */ = { - isa = PBXGroup; - children = ( - 5668891029B9B7D87A4885AE25E331EB /* AudioRecorderManager.h */, - 76E8F7051C8AE4EB9A276F0FA68D5A5C /* AudioRecorderManager.m */, - E009B0369075FA826BED6EF7E4029CC2 /* Pod */, - 5C1C9560663B399EBF825881C5527D2F /* Support Files */, - ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; + name = Source; + path = Source; sourceTree = ""; }; 77E5437F2565ABF89F8E76F4530936A3 /* Support Files */ = { @@ -10119,529 +10327,400 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 784060C1F46AC7777BADE925641CCD77 /* RNGestureHandler */ = { + 787194A9DAB2DB427C1351E25F81E677 /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - E78C0DFF4376A743833BE1BE5257A4FD /* RNGestureHandler.h */, - 56FD6071C9093AABD262B1CDC9FBF442 /* RNGestureHandler.m */, - 64C7B6452059258838A037FCED07C385 /* RNGestureHandlerButton.h */, - 3D3EB0C538A74A00277C1B7D5275BA45 /* RNGestureHandlerButton.m */, - C7B64314C69A8832898BAE08194AC9B9 /* RNGestureHandlerDirection.h */, - 3DB5C006FFFD6248BB1DE2BD1FDAA845 /* RNGestureHandlerEvents.h */, - 04BE1D6CA0CD9241EB81A4AB5F3C45A9 /* RNGestureHandlerEvents.m */, - 83801A2B1087F85FCBCEE0AAD6F633BA /* RNGestureHandlerManager.h */, - 0EDFD91143B580A2011219BF543907D2 /* RNGestureHandlerManager.m */, - F08C8E9ABDB624DB4767FBBFB966F840 /* RNGestureHandlerModule.h */, - 672097DF8942995581CE2F38215EB2A5 /* RNGestureHandlerModule.m */, - D27F6811C1E80C2F86BCD041DE4269D2 /* RNGestureHandlerRegistry.h */, - FC7349EEC7FB241A0DBF3CD9AA3FE736 /* RNGestureHandlerRegistry.m */, - 98A7A347CA351FBD29C63ECE2C510116 /* RNGestureHandlerState.h */, - 0ED91A38D50BB121286DD13CE08A30CF /* RNRootViewGestureRecognizer.h */, - CAA81A8AB89E8C8D069C8BDE6728CC72 /* RNRootViewGestureRecognizer.m */, - BF186C75EA06E6813F1FBAC8C998D99D /* Handlers */, - 9C65BAEDCB19A016A3CB5DC347249D0D /* Pod */, - 736C8FFB8079F02E286F804D6821B18E /* Support Files */, + 8E09B78FB6C90B1B7261FDFC164B3D76 /* RCTConvert+Text.h */, + 682095DA635CC6AEDBF65261265FE60E /* RCTTextAttributes.h */, + 4E9F08911747D4CC8EB8C9AC619393D0 /* RCTTextTransform.h */, + B18E513A36DF49E83E1662C4FF105BA1 /* BaseText */, + ED9097E459F07548977E5CB06F59D0BE /* RawText */, + 9127461E6527B213CDBDA6D62BB6AE96 /* Text */, + 3D7A936488BEFC07FBC8B81D2C2060DD /* TextInput */, + 2A1DDCCA4909D772D3D6457C15D24DF0 /* VirtualText */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = RCTTextHeaders; sourceTree = ""; }; - 79D61CA7C196A1286C653402B2E4FDB0 /* Pod */ = { + 78D216429E3705A4CDE00E20574D4BFE /* KSCrash */ = { isa = PBXGroup; children = ( - B9BB21426599D632F7A2A249838F9D75 /* EXImageLoader.podspec */, + 7767CAFE27669FB1617F94739F018A0F /* Source */, ); - name = Pod; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - 7AFEC717B70C015C7A0756DF889212C2 /* Pod */ = { + 78F9DBACD8C721AF1D5CCEC48BB53CD2 /* Support Files */ = { isa = PBXGroup; children = ( - 514A7FC352EF592241BFCAFC228C1B14 /* React-CoreModules.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7B2AA775DEE264DD46F30C99DAA2322D /* Pod */ = { - isa = PBXGroup; - children = ( - F11AF63AF8F5AE2ADB2930373146C586 /* EXFileSystem.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7B89B65395E413FA150A2EA80A8B154D /* Pod */ = { - isa = PBXGroup; - children = ( - ADF925B31FB0D38423440548BFB97E56 /* react-native-keyboard-tracking-view.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7BA28E9429A276129A054FF44198416A /* Pod */ = { - isa = PBXGroup; - children = ( - 57959E3B04D0C0BDA52EA22A356E8DC2 /* FBLazyVector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7BB8B5503AC95FE21EF47B1C5153752F /* Pod */ = { - isa = PBXGroup; - children = ( - C1C99350D8A98C5A73C5FED1BFF1B53F /* LICENSE */, - 30E4DFFD382FF53419B8D93D49256970 /* README.md */, - F897C4400531D40230442A47E1DC1972 /* rn-extensions-share.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7C37218A8059CA8EC3EE33A1EAF18B86 /* Pod */ = { - isa = PBXGroup; - children = ( - 0AEC25EAAA5E51A74B9582B5EDA35EC3 /* React-jsinspector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7C6F00A792B8D8F7E2EDA3CEAD517A3F /* crashlytics */ = { - isa = PBXGroup; - children = ( - 03C581B5EAD8C9A859EE4A56D56414BA /* RNFirebaseCrashlytics.h */, - 2765B792B467115750BCB85AC04C7374 /* RNFirebaseCrashlytics.m */, - ); - name = crashlytics; - path = crashlytics; - sourceTree = ""; - }; - 7D4BA0E1DFDD07B523659CC6D8A64A6B /* vendor */ = { - isa = PBXGroup; - children = ( - ADAEB9A1C92C89BCB5A904B84782EC9C /* bugsnag-cocoa */, - ); - name = vendor; - path = cocoa/vendor; - sourceTree = ""; - }; - 7DA4A09401387DA68FD6AB3169D95BD9 /* Pod */ = { - isa = PBXGroup; - children = ( - 10B4D2544463909549F12C7F692223DB /* KeyCommands.podspec */, - E6164A6A95D6B2C5F5FB66AE8BF72F00 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 7ED1A83997F52CD057EE255451E9B4B4 /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - 91BC942CF16AC147CAD7D1217158C055 /* DeviceUID.h */, - 74FA0DFB857F49DD1B0057076D9CE528 /* DeviceUID.m */, - 2E900620FE75CBB1CB75DF8274671C9B /* RNDeviceInfo.h */, - 01B218C01075CC627D6CD84828172CB7 /* RNDeviceInfo.m */, - C93AC788C6BD7BBC749D28E42F88C3EB /* Pod */, - 4676890FEDBBEFAFF2DB105E012484D6 /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; - sourceTree = ""; - }; - 7FFA47933E70AFC1B78B545306817DCB /* Support Files */ = { - isa = PBXGroup; - children = ( - E866CECE6F9A3676B266DA1070DF8A37 /* EXWebBrowser.xcconfig */, - 0C041C1310AE95E7FC32B4BCEF39B5E3 /* EXWebBrowser-dummy.m */, - 9BD8E89DC6D0FE7D0F3D4AFAA6584194 /* EXWebBrowser-prefix.pch */, + 41FC7D8A1386B7220C9D6CD996A9D6DF /* FBReactNativeSpec.xcconfig */, + 1EAC7ECF9A844DFCE965CC8DE5E1440B /* FBReactNativeSpec-dummy.m */, + E1E2F93F57399CDEC80A211488DE322F /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - 80E471F80B32E863E50DD113FCB69EAC /* Pod */ = { + 7993F72E08981CC77808A28A46077DD8 /* Support Files */ = { isa = PBXGroup; children = ( - A37F85EC0C192B825ED43BA595184762 /* RCTRequired.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 80ED9C0DC40111C25E56884FB4E6C8BD /* Pod */ = { - isa = PBXGroup; - children = ( - 2569FFED30094AFFDBA2FF03A9982DC1 /* UMCameraInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 81188818AA0A0B032566FB0CED8C0C05 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4546767F3188A259899C9560A580DFDE /* UMReactNativeAdapter.xcconfig */, - 52F5092222245D907FA715A5E5B4B37D /* UMReactNativeAdapter-dummy.m */, - 5128E229E8F893C5DA5F50997F12F2E0 /* UMReactNativeAdapter-prefix.pch */, + 32A71A392990AA38DA83502C56103130 /* react-native-orientation-locker.xcconfig */, + 06FC133F1412911B673B8BE2DCE6F502 /* react-native-orientation-locker-dummy.m */, + CBB6A58979F3751710060E41AE46858F /* react-native-orientation-locker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; - 81C0870E49C2C1C6FCC73D1E4974A315 /* EXLocalAuthentication */ = { + 7AFBEC9B33E0D2E97381848DE08E7C94 /* react-native-background-timer */ = { isa = PBXGroup; children = ( - 61ACE6EF73A38A8530394E258344A58E /* EXLocalAuthentication.h */, - FB1F2A873B83D185B95AD54D4488C69F /* EXLocalAuthentication.m */, - EFD403C3B9850858E56B3FD6BE1897BC /* Pod */, - FF530D20D1A8D927B43CFB93470B89E7 /* Support Files */, + 7F2E9864BB593868E295DDB617F1F2D0 /* RNBackgroundTimer.h */, + 0A47127F267588640A0B0D7D74911177 /* RNBackgroundTimer.m */, + 91928D1D6B3559609DE8C1ACDCAF776F /* Pod */, + CDBAAD9EE8C6EFEF335972A2D05F0E20 /* Support Files */, ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - 82427D4DB5EF92D59620DBEB6830FF7F /* RNFetchBlob */ = { + 7C7861D210EA1A3CBA669B97E6779E6A /* RemoteNotification */ = { isa = PBXGroup; children = ( - 1199498CED9F8347974A740A839A1121 /* RNFetchBlob.h */, - 7DBF90403D226FD4BA9D802C0772DC56 /* RNFetchBlob.m */, + 8DE88AB462586372BF9B4290971ABDEF /* EXRemoteNotificationPermissionRequester.h */, + CB8F8201AA65DC1316A2F4FCA3B5CA32 /* EXRemoteNotificationPermissionRequester.m */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = RemoteNotification; + path = RemoteNotification; sourceTree = ""; }; - 824FCB05728F40A7EDB0DC578520661F /* React-RCTVibration */ = { + 7DA988E9A72772EBFF675C8C654D18C2 /* Support Files */ = { isa = PBXGroup; children = ( - 20C369594F3002EE0F7D495BDFC51219 /* RCTVibration.m */, - AFE75C3A25D721808449B8B69DD04E16 /* Pod */, - 7468352AB2AACA3FD43509BAC33C9A19 /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - 82A012E9979AE498413DA70862AB6DFF /* BugsnagReactNative */ = { - isa = PBXGroup; - children = ( - 9F357FFA83F025CF4B110994FADFE0DB /* BugsnagReactNative.h */, - 2D2B51DD4DF417B10B71E8B822A93A9B /* BugsnagReactNative.m */, - C5C5F26E96193E0BC6081DC7A572DF0C /* Core */, - 9CBEC30486697F054242C7954BDF78FC /* Pod */, - 15788066B0B236881C557818E710856F /* Support Files */, - 7D4BA0E1DFDD07B523659CC6D8A64A6B /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; - 834BC0B5A785498CCE4848C041877A6F /* functions */ = { - isa = PBXGroup; - children = ( - 82675BE62C3ACFEE49CA5D268C891DB4 /* RNFirebaseFunctions.h */, - F85D6B2F3D53D8555287EE94A251903F /* RNFirebaseFunctions.m */, - ); - name = functions; - path = RNFirebase/functions; - sourceTree = ""; - }; - 879F3A9033ECD2468189DAE5BB980708 /* Support Files */ = { - isa = PBXGroup; - children = ( - C28AD31F48DE2DABE75E803A84132594 /* UMFontInterface.xcconfig */, + A9F440F61A7A540D6C743513425E6070 /* React.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - 87B43EFE108D744676A25D0DE7AB40F7 /* Interfaces */ = { + 7DD0937BD1F98C4174A863C4AFFAF745 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - F49BE03F87BDF1DAC772E82BCB319DCA /* UMAppLoaderInterface.h */, - C29FD71196E223C3E2239356CC16DD9D /* UMAppRecordInterface.h */, + 51B0AB5ECB35C326646ADFA831203F54 /* UMBarCodeScannerInterface.h */, + 88D1CD0C6DDF4DACD9F837C739A63831 /* UMBarCodeScannerProviderInterface.h */, + FB354B85F2AD1654778970D69228EA84 /* Pod */, + 34437C678392336D06F7D9A44F95BE39 /* Support Files */, ); - name = Interfaces; - path = UMAppLoader/Interfaces; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; - 87F3033FCEAEAD21E9AD72258A4B448A /* RNUserDefaults */ = { + 7EEE7F0D1155F75AC9726B0023BC8E15 /* links */ = { isa = PBXGroup; children = ( - 014EF95AAC4DFB40DC1F1AFC58414C97 /* RNUserDefaults.h */, - 73045376DE6AE9AB27D7A891266C41A8 /* RNUserDefaults.m */, - 521D4D9BAF9008D2BC1182D2FF9CEC52 /* Pod */, - 4A2183A32EAFCD944A3BB85CCC82248C /* Support Files */, + D9B5BA4ABC09603A9AD22A2883EAD20A /* RNFirebaseLinks.h */, + 2D950339BF5D6D4AA8B33AA2AB010E45 /* RNFirebaseLinks.m */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = links; + path = RNFirebase/links; sourceTree = ""; }; - 88F1C5CDED7D1A41F977E22A57792F3E /* Pod */ = { + 7FE3146D7DC65482251E2D1F9C57345A /* Support Files */ = { isa = PBXGroup; children = ( - 4C7C0723CA0A08AEB0B8C8161A0459C3 /* LICENSE */, - 9CEA49036BD452BE4A76DB445E83A381 /* react-native-keyboard-input.podspec */, - 763B918D7D01DFE0779F8B2CEEB1F46A /* README.md */, + 9CBE9CC10DDA7BD6F80C4B15E26A0A04 /* RNUserDefaults.xcconfig */, + F4E7D84B4EABB669435CADE862C21E25 /* RNUserDefaults-dummy.m */, + 5678EF0A836474ADB5E6BDD0DEC4C1D8 /* RNUserDefaults-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + sourceTree = ""; + }; + 807664B67F5384FF5DA591D6EA9CCE19 /* Support Files */ = { + isa = PBXGroup; + children = ( + 542CBA029E6ED75F27E2435B3DC6DCF5 /* React-CoreModules.xcconfig */, + 3A508781313B2CC5E0CF3FD634BB448A /* React-CoreModules-dummy.m */, + DE36D21D7C54853321D69B1C91247337 /* React-CoreModules-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + sourceTree = ""; + }; + 81915EFA870C87D9F74F96BA434DF875 /* Drivers */ = { + isa = PBXGroup; + children = ( + 07DE25B05DC5C580B5AC78CF05DD8812 /* RCTAnimationDriver.h */, + 464A14CCAF7979464730EA6D35647487 /* RCTDecayAnimation.h */, + F49AC5D6346CE75F7D1FF5E8737B0137 /* RCTEventAnimation.h */, + 717BEEDB30766F863AE9B6C97B2487E5 /* RCTFrameAnimation.h */, + D06FB799B0659053F734A832DBEDBF15 /* RCTSpringAnimation.h */, + ); + name = Drivers; + path = Libraries/NativeAnimation/Drivers; + sourceTree = ""; + }; + 83B4BABB92533255872B3FCF572539FE /* Support Files */ = { + isa = PBXGroup; + children = ( + 48F2F26EDC7DC5233B445FE1398D661C /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + A6085EF77FB9A7F1116F1851BD1AACDB /* RNImageCropPicker.xcconfig */, + 90E547EC0ACF4D5420387F46C0FDBF40 /* RNImageCropPicker-dummy.m */, + 30F25864884382DA06BD43BCAD840404 /* RNImageCropPicker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + sourceTree = ""; + }; + 83D33F37D331A12C629AA6F80B7D7E77 /* Handlers */ = { + isa = PBXGroup; + children = ( + 898188593FA1F50CCBE83173BFD842C2 /* RNFlingHandler.h */, + 2D5A40D8EDB5FFE4A6152623A437B93D /* RNFlingHandler.m */, + D5586AB0B37084705E75D2C95A97E3C9 /* RNForceTouchHandler.h */, + 3A7E15E440FFF061B2A37C5E65D3B6B9 /* RNForceTouchHandler.m */, + DB67B66D070132A40C0DE8F074C38DA8 /* RNLongPressHandler.h */, + D0BCCB9EEF32E8B1D1E8EB6DACF48525 /* RNLongPressHandler.m */, + 9B48572E35EE480C6E262B529189C902 /* RNNativeViewHandler.h */, + D67FA50BCB44E3E2A056DB73ECD959E2 /* RNNativeViewHandler.m */, + FF091C557CBBC8FF608866AB6D4C58ED /* RNPanHandler.h */, + 301703B0ECF438819C86F852A1FD1852 /* RNPanHandler.m */, + EC8172F32910DB51E25413A57C72D924 /* RNPinchHandler.h */, + DA0A8202EC997D35289AC5368B166D7B /* RNPinchHandler.m */, + 462B73DA088CF00C86CD51B0EEF20ED2 /* RNRotationHandler.h */, + 24D52D084C2DC71EA19CFAADB944B453 /* RNRotationHandler.m */, + AE26F08EC086EE5D016420F222DBEF1A /* RNTapHandler.h */, + 8EFEFC829BBF0C3247A3E986500E9F29 /* RNTapHandler.m */, + ); + name = Handlers; + path = ios/Handlers; + sourceTree = ""; + }; + 851E2E51C8B2F11AE923FB37BBDC9EBA /* React-RCTText */ = { + isa = PBXGroup; + children = ( + 90228C82C5A6499C44F04D0D75058DB7 /* RCTConvert+Text.m */, + EF1AD2484115EC684DCAAF63FBA418C5 /* RCTTextAttributes.m */, + BD1D760A1B30D46F57553A5526B48B2F /* BaseText */, + 72640BD7EEE3AB90A8D6FDDD231157FF /* Pod */, + 3898FDCC8438E183229BA1EC6579DEA8 /* RawText */, + E4F9CC5C093D990DF8CFB30963F968BA /* Support Files */, + 998FC6C4B2FFC2B51AD7CAE914C4C9E5 /* Text */, + 0DC7E60320069F7C4B38E74DC12DE9B8 /* TextInput */, + A77F12512511A95868F7D1F77C62CF6E /* VirtualText */, + ); + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = ""; + }; + 863FEAB96E44D79341CEDC6972C4A7E8 /* Pod */ = { + isa = PBXGroup; + children = ( + 0AFD8C63F5BDD5245AAD45063214DA1F /* LICENSE */, + 680146476F1308B7B2D95FCB50802BA2 /* README.md */, + 4784C313A5BC5D65FD1C450D307A9C9F /* RNScreens.podspec */, ); name = Pod; sourceTree = ""; }; - 890910D2505ED7E061FABFCD61823A18 /* Products */ = { + 883FE08CBB78E90D2737660167FCEEFA /* Pod */ = { isa = PBXGroup; children = ( - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, - 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, - 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 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 */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, - E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, - E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, - 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, - 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, - C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, - E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, - 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, - 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, - B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, - FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, - 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, - ); - name = Products; - sourceTree = ""; - }; - 8A2BAA7744CA0ED87AAE14AB5FEE47E9 /* BaseText */ = { - isa = PBXGroup; - children = ( - 058883D577F30E4210855B6DE5283D8B /* RCTBaseTextShadowView.h */, - 72C7372FB61DF360A86BD59E40639D4D /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - 8BC7B8D1E693EF5D8C8C84492C8695E5 /* React-RCTActionSheet */ = { - isa = PBXGroup; - children = ( - 40E6B5A6BDDAA03117709635756F3EF8 /* RCTActionSheetManager.m */, - 4AB8D02D54DC2F5DD29DC2DC5374DC13 /* Pod */, - 625FAD8FF46231A1501E2FF1FD012C9C /* Support Files */, - ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; - sourceTree = ""; - }; - 8C20CEE22212DDDE842C26FDE6ADA2CA /* CxxBridge */ = { - isa = PBXGroup; - children = ( - DA37F07249FFF2BB589D466D199150AB /* JSCExecutorFactory.h */, - AC97BD08333B42572B8A6C3044067098 /* JSCExecutorFactory.mm */, - 2A3048046DC7897AAB75AF6BF02C67B3 /* NSDataBigString.h */, - 4E637E78DD99F45D9C9882E5AB714206 /* NSDataBigString.mm */, - B98F6E1E04F546506E19AD6C416C6AF0 /* RCTCxxBridge.mm */, - 91DEC9A923CC79D8CD146271B6CC8A86 /* RCTCxxBridgeDelegate.h */, - C8FA897C0F8EC6BD805E0F68B392A931 /* RCTMessageThread.h */, - 7E16A5B4856F88F15343D19693C196B5 /* RCTMessageThread.mm */, - A0B4A06232EC276DAB783F7F1D6C5866 /* RCTObjcExecutor.h */, - 7BC202C24CE9064F5A6E70A82A6B382C /* RCTObjcExecutor.mm */, - ); - name = CxxBridge; - path = React/CxxBridge; - sourceTree = ""; - }; - 8C7CBC84423331242D42A6B6FE6C9777 /* Modules */ = { - isa = PBXGroup; - children = ( - 9E7A149307A393ACABD36837C91C2C61 /* RCTAccessibilityManager.h */, - 337AE88C9B8A03E812F00B5F40AA869E /* RCTAccessibilityManager.m */, - 502610B461EA2D1A026F2B01243AC74D /* RCTAlertManager.h */, - 6976F471728D539A443214A0E81DB102 /* RCTAlertManager.m */, - D11A35222301EF61F70E1A10283069EB /* RCTAppState.h */, - 6FA43C006EA2B6CF298FE00569849C4E /* RCTAppState.m */, - 39AF1DB378623B241A1961DA51117BFE /* RCTAsyncLocalStorage.h */, - 9AA5BE73650483C36940FEB822F5FEFF /* RCTAsyncLocalStorage.m */, - 69E73D0D712ABA9F6DEED0F86AF52EF7 /* RCTClipboard.h */, - 4708508DB230A1AFFC0276E5EB866F98 /* RCTClipboard.m */, - D419A92B054E897166C3CEFC94079EF0 /* RCTDeviceInfo.h */, - 0798B90710BEE010D41A8725BE3E757B /* RCTDeviceInfo.m */, - B5CC36CEC47C85A96A7807D3215B2C99 /* RCTDevSettings.h */, - 8F20CC66C09FA1EA57D7754B739BB3FF /* RCTDevSettings.mm */, - 7E0D984C4268C8982372D81B491862FC /* RCTEventEmitter.h */, - 3D52B9F53E90E46BB7BC2868DCD0ED49 /* RCTEventEmitter.m */, - D965544614F05819D78EF98836617D24 /* RCTI18nManager.h */, - E1E29DDBDC1101D3DCDB77C88EA79F65 /* RCTI18nManager.m */, - 52D8B368C340C9FE894310C8E9484B1A /* RCTI18nUtil.h */, - EF788968BF757270E8F0956A01A609CE /* RCTI18nUtil.m */, - 9496F8ADFC18E0AA6076F1A696215AC9 /* RCTKeyboardObserver.h */, - 33E42C181DD42D9C5AB95F31B1DF9AC0 /* RCTKeyboardObserver.m */, - 624FC0F34AA0E8556C317C42E134D426 /* RCTLayoutAnimation.h */, - 61D39CC515F185885887678EAC477089 /* RCTLayoutAnimation.m */, - 9EC6719490272E2EB87C07A55669DB19 /* RCTLayoutAnimationGroup.h */, - 4CEDF8BB61428E7B1CA483A5342D87C7 /* RCTLayoutAnimationGroup.m */, - 3868C09A16BB72A9B708B4819E23937A /* RCTRedBox.h */, - 7F64B8AA477693BD691861C5CB28A033 /* RCTRedBox.m */, - A81EA97901E6916351212989A5228AB5 /* RCTRedBoxExtraDataViewController.h */, - D35CE8C23A2ACF2D9D8D4E8E0C72988D /* RCTRedBoxExtraDataViewController.m */, - 8D8B9F732954D86D82A441E9B1D642CD /* RCTSourceCode.h */, - D29CB606B28145D0F34A30E8E92C3AE6 /* RCTSourceCode.m */, - F75CC06C0F97AC2F75B76FDB40EFFA9D /* RCTStatusBarManager.h */, - F9BCF129B5681ADA1FABF4465D5F7084 /* RCTStatusBarManager.m */, - 76FE63E3F928B76B0B0BAE72B3D43FF7 /* RCTSurfacePresenterStub.h */, - B0A171BA2CE9A319FDABBC541555819E /* RCTSurfacePresenterStub.m */, - 2AB47831C397F347C7653E5A48316330 /* RCTTiming.h */, - BA73AE15A22623217F88D04BA9686F52 /* RCTTiming.m */, - 75B4456387FD1F49F14C09F38D397A6E /* RCTUIManager.h */, - ADE425CCA9AB4117146451CCF94F2C89 /* RCTUIManager.m */, - E3D450362CFE85BDCA37A5CBBA9C6911 /* RCTUIManagerObserverCoordinator.h */, - 071D90A52285C5F4B905B6DD3028570D /* RCTUIManagerObserverCoordinator.mm */, - 30C43C73342C9D6D4D64749F10018473 /* RCTUIManagerUtils.h */, - 6621CD50302794812AD1F7FF9D0322B6 /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = React/Modules; - sourceTree = ""; - }; - 8DDE3E86EDA2D6AE1A6843AFAEAF9573 /* Inspector */ = { - isa = PBXGroup; - children = ( - 5739CF4CDC78B4383E371AB297932F20 /* RCTInspector.h */, - 9C9112F2E8C6E60647D2E2E444624B85 /* RCTInspector.mm */, - 18B6C522760E81DDDAD1505DBD7AFF87 /* RCTInspectorPackagerConnection.h */, - 5E3E534D5295A28045589D6BEA240E6B /* RCTInspectorPackagerConnection.m */, - ); - name = Inspector; - path = React/Inspector; - sourceTree = ""; - }; - 8E9C320C4E8F816CA2D95CD6E65F4BF3 /* UMFileSystemInterface */ = { - isa = PBXGroup; - children = ( - C54D8CFA029D874C176B40062B3D89CA /* UMFilePermissionModuleInterface.h */, - 50237226CD6FFA21014E95BA780DACE0 /* UMFileSystemInterface.h */, - 42AED56E50C010F8D77AA2DA49C14D2B /* Pod */, - D8DEB1B3CAFFA0C1972EB62B79371208 /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = ""; - }; - 8EE59F4CD63FDEC3C8A02E47D3D1B10E /* Support Files */ = { - isa = PBXGroup; - children = ( - 15B1B18F7BCA23D317AEB00634D5E7E0 /* react-native-keyboard-input.xcconfig */, - 5C89D7ED4E2CCB53B6DA2BB7D65A67DD /* react-native-keyboard-input-dummy.m */, - 81919368713931AEDC52362FE4CFCE27 /* react-native-keyboard-input-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; - sourceTree = ""; - }; - 8FD3406EFE24F28F50867946EEB4450B /* Pod */ = { - isa = PBXGroup; - children = ( - 86CD56D84B97BE4DB81C5DBAC8C0B8BB /* React-RCTImage.podspec */, + 5D0BF129CF28904AB15544DA075BD487 /* UMConstantsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 908DD4DC97B1BF0AC8DBAC0A0C2CC6DE /* notifications */ = { + 886B9A65CD3625F6ADFD6BEF7D3E253E /* react-native-notifications */ = { isa = PBXGroup; children = ( - 14227FAAE815AD5DE3A7008DC8C3F31E /* RNFirebaseNotifications.h */, - 7B4CE24F6E1081A73953291129C65004 /* RNFirebaseNotifications.m */, + CD9E37BFCAA912825F204AA2FDE2431C /* RCTConvert+RNNotifications.h */, + 4E050349688D70AD72042D4B52A7967A /* RCTConvert+RNNotifications.m */, + E04807E2A31F037B1625135145083279 /* RNBridgeModule.h */, + ADAD173A3CB6D574EFB67D63D7DF5223 /* RNBridgeModule.m */, + 561D85765F922638B5B410FD1C0FB705 /* RNCommandsHandler.h */, + BFECD96F4738C82BA203AB4DEC4E3E27 /* RNCommandsHandler.m */, + 75F898066136E87F7FB718CFFE3C0C28 /* RNEventEmitter.h */, + 3A58E49BC55FDC1A70920ECFD59D1D06 /* RNEventEmitter.m */, + A7E830046FD5260CAA2B1AA7B0EECA00 /* RNNotificationCenter.h */, + 63A6651632E9893DD2C835F7F40465EB /* RNNotificationCenter.m */, + D0C942A2F3F9E0A46A739B2017654295 /* RNNotificationCenterListener.h */, + 64FBE1B7E4D6F9888572C871259C50B8 /* RNNotificationCenterListener.m */, + A17089A7BFAC8B01B6BFB6ABE2C3001D /* RNNotificationEventHandler.h */, + 3416025EF40E33E53FF91B69F942E11A /* RNNotificationEventHandler.m */, + 49ED2021122767026E806F8E11F95C51 /* RNNotificationParser.h */, + C31C67BD65922F0BF947B14AFBA4703C /* RNNotificationParser.m */, + 87021CA2CD7453C4F124F06C43992442 /* RNNotifications.h */, + 1DE7C7CE72EA26F049CC9690AA75D7F9 /* RNNotifications.m */, + A08280F279B7913E31A0AA152FCB670D /* RNNotificationsStore.h */, + 5EFB1EDDE9BDB5325F76E6053F52E1EF /* RNNotificationsStore.m */, + 0F62909EFABD0D64D478AC8A5C9BF8E8 /* RNNotificationUtils.h */, + 1B231F67D19304F03E128D2CAE829C69 /* RNNotificationUtils.m */, + 1CBC1ED4A7FBE216A54CC07F9B320554 /* RNPushKit.h */, + B4F7D426EAAE7CE894F7DE82EE19BFA8 /* RNPushKit.m */, + A705E458746FB937D5E970232BB2724A /* RNPushKitEventHandler.h */, + 9A88FC47B886B41C804AA7C878EC4544 /* RNPushKitEventHandler.m */, + 8A10B25979F59F7A8AFBECC802C109EB /* RNPushKitEventListener.h */, + 1D8C7D8FB7C108D54D1F81B72FF7C277 /* RNPushKitEventListener.m */, + A8F6D2D60875ED126EF13B02E7CB9720 /* Pod */, + A83CE3970F60CDFDBB64F09DF1403515 /* Support Files */, ); - name = notifications; - path = RNFirebase/notifications; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; - 90FCB415BED4848548B3B66B60124569 /* RNFirebase */ = { + 8895DA8A423CD4B09B5BD1106ABC412D /* admob */ = { isa = PBXGroup; children = ( - FE1964BB79974C13D7002EC611C003A2 /* RNFirebase.h */, - ADE63674E150D51CE53B28AEFA23359C /* RNFirebase.m */, - 8B4EE64ED82995E97CA320A712E8CBDE /* RNFirebaseEvents.h */, - EFD192F604D03272854B5E351BFAC8FD /* RNFirebaseUtil.h */, - 9616C625D92B8968CC0533A4CA4AE4A6 /* RNFirebaseUtil.m */, - B898FF0674107D7C7CFEEDCFBF7A63A5 /* admob */, - 55372375535F95651ABA24E3481D0980 /* analytics */, - 218CB7070D9FD14B6C24CA8B191610B1 /* auth */, - 1A18EAD319B798576B97B9678EDB2C85 /* config */, - 4ACE2A048E6729B2A42E0265260523E1 /* converters */, - CC9E4FEF1978DBDF894BAA50CEB1EB50 /* database */, - 3C33563BD7AFAEF8D12B35A08AF8CAD7 /* fabric */, - 3AD623D9DA1BAB6BC9895D4428C38246 /* firestore */, - 834BC0B5A785498CCE4848C041877A6F /* functions */, - 43CF339D7075F9E6CD613C86B905EECB /* instanceid */, - 9B7D20554E22E1C4CCF5659BB3146852 /* links */, - 2F7A2F7E340E5890C8E1047645B4F7D4 /* messaging */, - 908DD4DC97B1BF0AC8DBAC0A0C2CC6DE /* notifications */, - 50E42D2ABC83BE09BB42CBD788AAA7EC /* perf */, - 1A8CD8524066A5579B3037885D94597C /* Pod */, - C718804C9031CD08FCCE88B1105D910B /* storage */, - 41EAFE4A5D36EB625E314E306C1ED578 /* Support Files */, + 03821E9789C99F03ECBC35AD7E836D22 /* BannerComponent.h */, + FB4AA734209C3742815772E890AE7C5C /* BannerComponent.m */, + D6E0C7A086DBBA4CB8803CF531C89EEF /* NativeExpressComponent.h */, + DC29ADBFAEABEA5A45B2281F99EDC5D6 /* NativeExpressComponent.m */, + 6EE27F3B9676864953CC3577E98902BE /* RNFirebaseAdMob.h */, + 1C4C385AF47819B1F9C31E2190B88933 /* RNFirebaseAdMob.m */, + 705C86F8722E4A66BD4C913451A9B387 /* RNFirebaseAdMobBannerManager.h */, + B8613FAA45E29C8B63DCDA4AB27153A5 /* RNFirebaseAdMobBannerManager.m */, + EA075078096768144D55BF2486D11C66 /* RNFirebaseAdMobInterstitial.h */, + 2387E27F30CD5DA048E9DDE6C997A061 /* RNFirebaseAdMobInterstitial.m */, + A1682606BF0991ADEF47A12A23121916 /* RNFirebaseAdMobNativeExpressManager.h */, + B8A43FE8F81EC75E4A2CB70BF951286A /* RNFirebaseAdMobNativeExpressManager.m */, + B48CB7F7996FE3D23C468D39879F5DEA /* RNFirebaseAdMobRewardedVideo.h */, + 79ECC4A13537CF3F08E9F680F3A34F0E /* RNFirebaseAdMobRewardedVideo.m */, ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; + name = admob; + path = RNFirebase/admob; + sourceTree = ""; + }; + 88F6350C6594112796036F5F04287C1F /* Support Files */ = { + isa = PBXGroup; + children = ( + C0565B3F72A1E8A56C02E4C9CBFDD324 /* KeyCommands.xcconfig */, + 4FED50463E0B54348966E42852210BD8 /* KeyCommands-dummy.m */, + 161A3A675C9DDF5C3BFBF2EE94C0BCEA /* KeyCommands-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; + sourceTree = ""; + }; + 892ECE61F6EE2F5C0990EA33C67A379F /* Pod */ = { + isa = PBXGroup; + children = ( + F08DE8B5D343A20DB0A9B98F3ADF4E7F /* EXConstants.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8A745CC10592439C9D6A6E79B620C2F5 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + C8C397D3AB31FF2B0214E95BEE43F7F9 /* RNCWebView.h */, + 53CE97A536A1DFA4A7DA3CB55448D804 /* RNCWebView.m */, + 1B25F2C7F57673EEC44CF50293C20C82 /* RNCWebViewManager.h */, + 0ADE9884FA448BD9B459F272F5B850E1 /* RNCWebViewManager.m */, + 944DBF7D354C42710E3FC54F3497286B /* RNCWKProcessPoolManager.h */, + A4F19AC9C2ECE5C5D4C90DC22494F353 /* RNCWKProcessPoolManager.m */, + B518BCDDD25125B3F4089187BFE61F13 /* Pod */, + 5AC78DD3270E5CB757C36F12065A2F08 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + 8A7B2EABA41915E2018A4B0258F607B0 /* react-native-appearance */ = { + isa = PBXGroup; + children = ( + 4607DA090D7B0CDD1029EDE16C03922E /* RNCAppearance.h */, + 35E783664B9DA2FD5368F65EB428A4E5 /* RNCAppearance.m */, + 933711BDDE0493B6FDCADCFC4EEDAC67 /* RNCAppearanceProvider.h */, + DB85AB605D045FAEFF9B0A37979882A1 /* RNCAppearanceProvider.m */, + 45AC1E8B6ED87517CAC078CC7094D1DE /* RNCAppearanceProviderManager.h */, + A21D2DBEA36CC48A3607825DFED2E85D /* RNCAppearanceProviderManager.m */, + A25940BE98256696EBA42FBC3E57AE20 /* Pod */, + 5FD07EDDF388A1DC10C408E1A444B69E /* Support Files */, + ); + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; + sourceTree = ""; + }; + 8B48291E60965889D13512896F29FA41 /* Support Files */ = { + isa = PBXGroup; + children = ( + 23E42333DCFA1C476A29DC9D8EF88F28 /* RNAudio.xcconfig */, + B560123E810CAAB8D32B0FBCE12FD9FB /* RNAudio-dummy.m */, + E905C3C3BF7FFD7E361867A219E6CD68 /* RNAudio-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNAudio"; + sourceTree = ""; + }; + 8B54899BB6A71ED98D51B1E5FE5C63DE /* Pod */ = { + isa = PBXGroup; + children = ( + D7FBC9990D3E7CDAB68241248099C982 /* React-RCTImage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8C1DF442CE43EEAA737F44C53352F417 /* UMFontInterface */ = { + isa = PBXGroup; + children = ( + 21F0DD6BAD51D53515A94CB550952BD0 /* UMFontManagerInterface.h */, + B4499EA5697FE25ADE2E5568F21AFF8B /* UMFontProcessorInterface.h */, + E2C1D719BC629A43A1312179928D5E0B /* UMFontScalerInterface.h */, + 5F475DE779C2DB820421A516021A7048 /* UMFontScalersManagerInterface.h */, + 2CD37A212B70A6D43B8432A57D08E4D9 /* Pod */, + B013EEC2E72418E46708F990F3E08FEF /* Support Files */, + ); + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + 8D5561F0D127A6B26E95FDF6730B34DC /* Support Files */ = { + isa = PBXGroup; + children = ( + 6543F5BC0CC8D7366DA0145987DDED39 /* react-native-jitsi-meet.xcconfig */, + 5BDE4A0FA8F642EBB817B2D8CB95696F /* react-native-jitsi-meet-dummy.m */, + 4C70CB9E6970624EB3B72F779BF84F4B /* react-native-jitsi-meet-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + sourceTree = ""; + }; + 8F8B478908EE2E51F924606251EE0E3F /* Pod */ = { + isa = PBXGroup; + children = ( + 036AED2BD0B30C1F52511426C3181A14 /* React-RCTBlob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8FB63ADA9B91287CF1E9872C442F7DD9 /* LNInterpolation */ = { + isa = PBXGroup; + children = ( + 8AD6703F9B23155360E0F4B921E83CB8 /* Color+Interpolation.h */, + F5E143192522350A4938231255DAE5BB /* Color+Interpolation.m */, + 7937088C88E781D69DB63BCBFE2F399F /* LNAnimator.h */, + 5E3AEBD740EE480800AE98528B440E01 /* LNAnimator.m */, + FD6C56DDF945474351322785D873ED1D /* LNInterpolable.h */, + C61B8BE8188041C07C6E0B4B48E0E9F6 /* LNInterpolable.m */, + D0B2C8C639E7ECC87392A3A0BDF586A6 /* LNInterpolation.h */, + 2512BAF6895E8C85D9135652CD0E7335 /* NSValue+Interpolation.h */, + ); + name = LNInterpolation; + path = lib/ios/LNInterpolation; + sourceTree = ""; + }; + 9127461E6527B213CDBDA6D62BB6AE96 /* Text */ = { + isa = PBXGroup; + children = ( + 087F4892C4671C1BB1B026E6C11C0C59 /* NSTextStorage+FontScaling.h */, + FBFEA19C82D8D712E325597558386F35 /* RCTTextShadowView.h */, + 1DDCE8F6B4BC2E63EF5AB635D4E77985 /* RCTTextView.h */, + 9613B4E009829F49500D5476BF62A6CA /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; sourceTree = ""; }; 9160F20DFF7DC7F1CACEE969035ACE20 /* Pods */ = { @@ -10675,183 +10754,182 @@ name = Pods; sourceTree = ""; }; - 9191BDCF2CCBF32FF82A40EB7A711AA0 /* RNReanimated */ = { + 91928D1D6B3559609DE8C1ACDCAF776F /* Pod */ = { isa = PBXGroup; children = ( - CB00B9C1487A989AEB34D4E8BA7371F0 /* REAModule.h */, - AD3109680E3C1C5D2D4F6F6E043B9C7C /* REAModule.m */, - 840D870AFD9819EB4C229B9AA8AD9807 /* REANodesManager.h */, - 5D2769D9DB4B1CBD4E7DB9C6999667E1 /* REANodesManager.m */, - A0DD529EAFD79B64612923DFA2085A7D /* Nodes */, - DDDE51211789C88B2A3B31BC8D030F15 /* Pod */, - 5489BBE270FCBACF4317ACDD4A5E0358 /* Support Files */, - FC2C423674CE9AAA49F583CD0276499E /* Transitioning */, + 0C5724DAAE7D734D7FA73C871851EB0D /* LICENSE */, + 318DE043ACE2FBC20320DCC121426903 /* react-native-background-timer.podspec */, + C349C1D79D706EBAC655334890D9CD5E /* README.md */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = Pod; sourceTree = ""; }; - 91FA45A16A71185F42327D2AA3AE9A3A /* Source */ = { + 926B6BBF9F4955442CF5CCF45AA5BCDA /* Support Files */ = { isa = PBXGroup; children = ( - 294B7B117A54E956E4C3C0D7547DCC63 /* BSG_KSCrashReportWriter.h */, - F1AF26638D4F4A5094918242AACCFA05 /* BSGConnectivity.h */, - 1F2DA6A44AB5BE316DEEBF16FF0B5E96 /* BSGConnectivity.m */, - 61935962D316655D08F4C0C658529A2B /* BSGOutOfMemoryWatchdog.h */, - E0B547458839A360641662CF36531F72 /* BSGOutOfMemoryWatchdog.m */, - B2FF970C74101530C9A7D48B65A4F84C /* BSGSerialization.h */, - 1FB321404EF961390E06B73C021A358C /* BSGSerialization.m */, - 648EFD12C8881B842B22AA55F3DC4FE9 /* Bugsnag.h */, - F6B99648326FDB329C014550E639277A /* Bugsnag.m */, - 2D3B5DFF6CDCE9E34DCD31DCD94AFC08 /* BugsnagApiClient.h */, - EFFE34F8E17395B29CF1438DC93C6FEC /* BugsnagApiClient.m */, - 67DBF913CE88380D78DC6C7EA7707F76 /* BugsnagBreadcrumb.h */, - B227F9FBEF5FCD2024E1ED599955D36D /* BugsnagBreadcrumb.m */, - 78DCB97C2C0B300A6C7FAEE9170F900E /* BugsnagCollections.h */, - F15541AFEE0AAB9CC4B33C8D9ACE40B8 /* BugsnagCollections.m */, - 50016C1070EA933A214FF69663C622FE /* BugsnagConfiguration.h */, - 865875386FB2559918C6689786CF4307 /* BugsnagConfiguration.m */, - 1BCE5F1C5D4DF02A3D6824D9A0B4347E /* BugsnagCrashReport.h */, - E0CFCA19099474C4FB8877DE89AE37CF /* BugsnagCrashReport.m */, - FF2D5D8CC1056BBA90C406A003EF23EE /* BugsnagCrashSentry.h */, - 4E74D502DF45C3DB6C2002E30237D083 /* BugsnagCrashSentry.m */, - A3D30A327658332768723A3C7A5AD074 /* BugsnagErrorReportApiClient.h */, - 5780B4F8BC5641AAB90E5090C945C115 /* BugsnagErrorReportApiClient.m */, - 1FF59804677A068BCFC8092661D8A2E5 /* BugsnagFileStore.h */, - 43CF00C5BF0D4947F59761AEBD7F68AB /* BugsnagFileStore.m */, - C70418FD985ABB340521F3E3B73FD6B9 /* BugsnagHandledState.h */, - F5F3B97417BD3C97C6BBFD6BDC54FED8 /* BugsnagHandledState.m */, - 96994F4ACDF019E0D9595D3C51B92406 /* BugsnagKeys.h */, - EE4BB4E7E0A00A40A77D9D5C97FE5D0F /* BugsnagKSCrashSysInfoParser.h */, - 1706E659D23E02AB43A00E255ED2B3D0 /* BugsnagKSCrashSysInfoParser.m */, - 6C977153EE830FF4DF8C2637EB155FC4 /* BugsnagLogger.h */, - E22F88CAA43045F32AF78CAF32BD7AF4 /* BugsnagMetaData.h */, - C01FB8A779A3445EFD23654B3630937D /* BugsnagMetaData.m */, - 538BC0B0037435C15B566E75E8D2C7FC /* BugsnagNotifier.h */, - B98282A370896C9527343A2802D27930 /* BugsnagNotifier.m */, - 9E822F4CDCF4DB122075F36B3348CB32 /* BugsnagSession.h */, - 9608D8A2D0AEE0A6A888D2E2C7E4342D /* BugsnagSession.m */, - CE263CBE0E4D45E11B34822EEB6F179A /* BugsnagSessionFileStore.h */, - 82B7FDA33841430FAECFEB78091A9B83 /* BugsnagSessionFileStore.m */, - 3E95DBCAC6C998F70DC53712A6BECC62 /* BugsnagSessionTracker.h */, - A2A6138081D3600CEEF94F4879B26747 /* BugsnagSessionTracker.m */, - 2CAD3E89099CF2EC94DA2040159C4FB1 /* BugsnagSessionTrackingApiClient.h */, - A949256D0826A4CB0C7A208C50FFE3E8 /* BugsnagSessionTrackingApiClient.m */, - 12B539A266AA947F50A5C2AA6BD5C8AA /* BugsnagSessionTrackingPayload.h */, - D69E6F757132D77434CCCF83F16CEB51 /* BugsnagSessionTrackingPayload.m */, - A08C132DEDA462010F5B82CC4EFD99A4 /* BugsnagSink.h */, - B7339489EE324E550C089F6B24D990FD /* BugsnagSink.m */, - 93ADFE4CAD9451B1B196CECC916633D8 /* BugsnagUser.h */, - EF1B8A56E41BE51A02DB11D725652A30 /* BugsnagUser.m */, - 7CA72CCD11307A621D3F237636E253F4 /* Private.h */, - DB812DDD4FBD4840842D56B53C970284 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; - 92126A89C3B77666F06E0C70D9787A3A /* Video */ = { - isa = PBXGroup; - children = ( - 9973454611F684DDCF713365145BC4F6 /* RCTVideo.h */, - 1F9BF9B60B65C4862F9EAB875CF41129 /* RCTVideo.m */, - 77258C342D4729EE4CF05D804A6056E8 /* RCTVideoManager.h */, - E8CD09B1F03524B84AE162118F5DD20C /* RCTVideoManager.m */, - 8B139C6C451896FB33A71909257B218F /* RCTVideoPlayerViewController.h */, - 8DF5D0FBF5908E9568AE95C94B45CF8C /* RCTVideoPlayerViewController.m */, - 27641C724056FF0B81D6FAE31F26009B /* RCTVideoPlayerViewControllerDelegate.h */, - FA5AEFCC8F782FF9FBAC5916C7863513 /* UIView+FindUIViewController.h */, - 03E428AC1A9B8C1B06A9AE52D832972D /* UIView+FindUIViewController.m */, - ); - name = Video; - sourceTree = ""; - }; - 95165EDE04FA68694255CC700EE2612C /* Support Files */ = { - isa = PBXGroup; - children = ( - 08D8CE592E3E6D38A9ADF97B640DA0CB /* EXPermissions.xcconfig */, - B253C49E623F5F56D28B06A728363F23 /* EXPermissions-dummy.m */, - 4142246BA1B8EF4A323159B74E1878C0 /* EXPermissions-prefix.pch */, + F6805A2D652953069BF9CD5BAE3B9684 /* UMSensorsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 957EC19CCA8F674A2321D3B461A53A95 /* EXFileSystem */ = { + 936B00E7A1D781E5327B1EAEE90D1834 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 0FA81729A1DB43571D35E2E7A19E1345 /* EXDownloadDelegate.h */, - 3DF9ED76541390C66E04D31C29138C06 /* EXDownloadDelegate.m */, - 597D35020229D35A237C0209B93C47B7 /* EXFilePermissionModule.h */, - F21B72296B3BE105A34CCE9096EE22C9 /* EXFilePermissionModule.m */, - A728F9090C0195D0BF044B3BC36C5CAC /* EXFileSystem.h */, - DA5AB0196EA5FF764173A516F590D921 /* EXFileSystem.m */, - 2E0781D6B8B1537F22692ACCB7E783DB /* EXFileSystemAssetLibraryHandler.h */, - CF4757C5B91E322EFA671FFD409EA3DA /* EXFileSystemAssetLibraryHandler.m */, - 6548FD636CFDC61BB7F344C247E1C340 /* EXFileSystemLocalFileHandler.h */, - 5C0237864402485714C0421AC8F8AADA /* EXFileSystemLocalFileHandler.m */, - 7B2AA775DEE264DD46F30C99DAA2322D /* Pod */, - E5DF34F2E001EB71173C4194172DDE53 /* Support Files */, + EE36ED074E387BBA3ABAA7B5CC062A9C /* RCTSurfaceHostingProxyRootView.h */, + 7F1D0C34940E160A98208A9A359E78C4 /* RCTSurfaceHostingProxyRootView.mm */, + 2721C756756313C51B1F5700544D62D9 /* RCTSurfaceHostingView.h */, + D95520735CA05E7C217DFF66FC5149E8 /* RCTSurfaceHostingView.mm */, + C7D13736CB8D6AE556168A4A012A2773 /* RCTSurfaceSizeMeasureMode.h */, + EF9D31DCBD08184757F0729FA3C8ED4D /* RCTSurfaceSizeMeasureMode.mm */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; - 95D9417CB50F85E00F98AB60FB2E8181 /* Resources */ = { + 936F175CD1513FB90FCC2870C2DAEE70 /* Pod */ = { isa = PBXGroup; children = ( - 2A90292EAD4E4B3D95515EA21628B634 /* de.lproj */, - FC5E2D8319B283B8962747D1ED57C037 /* en.lproj */, - F2CFFC3F749D96C2A9A33A5F128355F1 /* es.lproj */, - 6AE78AC48248757E5F4481B82B2EB069 /* fr.lproj */, - FB336E236A070DCDE8ACF59ED7B49D2E /* ja.lproj */, - 4F3FEA4D6EDA37ABD94BCC29214D0E99 /* pl.lproj */, - A5655AC0642AB47E0696586F98F9EB9A /* QBImagePicker.storyboard */, - 003F77A050EC3E8996B044A5976155EA /* zh-Hans.lproj */, + F4D8213CC46B6484FA84155A0A0E4B9D /* BugsnagReactNative.podspec */, + 4B7CBDDA1F832CA3C18F8B562FF74637 /* LICENSE.txt */, + 7CD82D355AE84EB76613C789BC327F21 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 9473EBEBB5A07F341D9BF0261E95401A /* Development Pods */ = { + isa = PBXGroup; + children = ( + 0226E874B1455A2CDF1DC44DA79C3742 /* BugsnagReactNative */, + A835EE73903E87918038A431C3C06F93 /* EXAV */, + CFB3A3515C942BC1FFFD91C0137B10CA /* EXConstants */, + 2CE794888F8DE9BE154E8E31E6F4771B /* EXFileSystem */, + 3C1DDC3FB6E24F9107C8229DEF32483A /* EXHaptics */, + 218D1E2EAA34C687F8E486F0B65A2E19 /* EXImageLoader */, + F213C0F835D928401B65E6EF24461DA7 /* EXLocalAuthentication */, + B1EA4ECAE8B4134EB455CD6B64445675 /* EXPermissions */, + A86A92FDF945DB516F4F315AC47272D0 /* EXWebBrowser */, + 47D8F19B9EB71F4D9D367A7CE83A7C61 /* FBLazyVector */, + 4617BE69FD98363527FCBCDEE1299725 /* FBReactNativeSpec */, + 350D8991844FEE2ABEA3D5B7586DF8EE /* KeyCommands */, + 4362E34D1C889BDDC5BD1FDD884C562F /* RCTRequired */, + DB59E7F0F0BC5D90D4888C577016D7CC /* RCTTypeSafety */, + E4E7A20F45C4401929CFF9C8C57E78DD /* React */, + E81482AB5E9B6A6BFA81F4D05D86565F /* React-Core */, + 2335A503758FD4A5D1F1C60A3F532BAF /* React-CoreModules */, + A877714260D851902BB1B1A34082B24E /* React-cxxreact */, + 32E5DDE002C39AA47F435BD00A682A59 /* React-jsi */, + 12B760401B758756D15142F360009F47 /* React-jsiexecutor */, + 6B4A9C7177AD4AE9F496C6200893CBE5 /* React-jsinspector */, + 8A7B2EABA41915E2018A4B0258F607B0 /* react-native-appearance */, + 7AFBEC9B33E0D2E97381848DE08E7C94 /* react-native-background-timer */, + 2D522EBF04DDB46C3A9D606575716E23 /* react-native-cameraroll */, + 74EE7E69112E69F1AB23E625DBA1701C /* react-native-document-picker */, + 071F48AB3C87E1A9C82738DC52CA207A /* react-native-jitsi-meet */, + EEA99F92ED3071457898AD0F0FA77005 /* react-native-keyboard-input */, + E4918554E77ABF7ABC72C8EA8A548145 /* react-native-keyboard-tracking-view */, + 886B9A65CD3625F6ADFD6BEF7D3E253E /* react-native-notifications */, + 6FBED58FD6F873D76413EF0B4A617352 /* react-native-orientation-locker */, + A8650FF19C84D88638F921FDB0B1E094 /* react-native-slider */, + B080BD46DCE013EA6994906E5D1F7D8B /* react-native-video */, + 8A745CC10592439C9D6A6E79B620C2F5 /* react-native-webview */, + D2E50D487EE97709C9638D1517AC818D /* React-RCTActionSheet */, + 39D0057FC1CF94F165A3E7B03392397B /* React-RCTAnimation */, + 0D5F535717F2D90E575D9A34EF8668E5 /* React-RCTBlob */, + 3E6538CB2E7833565643E70173BC7EE3 /* React-RCTImage */, + CA514D1C1589381D7174354B84EE73AB /* React-RCTLinking */, + A6924FBB8FD821D144BC2B3F91A6958B /* React-RCTNetwork */, + 26852C673336D6979BC3ADE3D4BCA9C3 /* React-RCTSettings */, + 851E2E51C8B2F11AE923FB37BBDC9EBA /* React-RCTText */, + 0464EC6E4BBB9C14239DECFEEB26DDF6 /* React-RCTVibration */, + D90DA521FFAD28439E16F6B172FE8243 /* ReactCommon */, + 5A3FC187145023E218384AA34C1A9684 /* ReactNativeART */, + 433286A7166B99702D9CBA5A18678020 /* rn-extensions-share */, + 55145BF37CFF2F1C5F1937A846EDDF3F /* rn-fetch-blob */, + 57B19A5BD4734FFACDDAC7B2AFC5E019 /* RNAudio */, + 70E1DC0C248850B3CE956BA44186EC46 /* RNBootSplash */, + 62590E803E2C3A62F71CE363712299CC /* RNCAsyncStorage */, + 4A16DD454653B6C1ABA2E409993F7114 /* RNDateTimePicker */, + A7BED5773DC2E6857A7402C6637C213D /* RNDeviceInfo */, + BA1F697DA9FA805A4512628A142338D3 /* RNFastImage */, + E1B8AF69B39ECFF21B1B24606646F4D8 /* RNFirebase */, + 48244423FD0140AD2CFF186E9E765A5C /* RNGestureHandler */, + 1484ECE05A8C0648D454AD8000DC710B /* RNImageCropPicker */, + 5708F0A7B4E5DDB1B56CC9636B1B263C /* RNLocalize */, + 65389CD96386E64B0A14188DEB1F8D4E /* RNReanimated */, + AB89382825299E3D7255F81ABAB44C90 /* RNRootView */, + 9F16CA6590243209301496EFE8FC1A09 /* RNScreens */, + B89D422C0A1EFEBE5EE1DDA8614C3D0A /* RNUserDefaults */, + F21A7433B667AE50CD8C4A4DE117FB65 /* RNVectorIcons */, + B4BA5A7D3A285C295FC714D53CA63EF7 /* UMAppLoader */, + 7DD0937BD1F98C4174A863C4AFFAF745 /* UMBarCodeScannerInterface */, + 0ACA7CFF34B9D1D11C59F9BFAF23B864 /* UMCameraInterface */, + 0DC8A228AE396D0D8911BD88ECDBC08A /* UMConstantsInterface */, + BCFE95163A7E786C777F5B657BD6FEB4 /* UMCore */, + B48D2257937761E5FE2500431B12CBCC /* UMFaceDetectorInterface */, + FC6F727396515D95B3E02AF36476F5A6 /* UMFileSystemInterface */, + 8C1DF442CE43EEAA737F44C53352F417 /* UMFontInterface */, + AF818D91507CAA809F953816FBF7AD56 /* UMImageLoaderInterface */, + C8408EF539CD56BAFA27209DB50417CC /* UMPermissionsInterface */, + 9C1CC312A2385AD6DD931CBD337CC8C6 /* UMReactNativeAdapter */, + 972923D8E7217BA6768E84989581A265 /* UMSensorsInterface */, + 21D0E6622860EDF64A0049DAD6C6E369 /* UMTaskManagerInterface */, + 715F08235C87A54EA472F4C79006BB0E /* Yoga */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + 9487E6E7491944F2C9D30485F9CAD925 /* Inspector */ = { + isa = PBXGroup; + children = ( + 84EA0709246AEF731F306EDEDE3D55EF /* RCTInspector.h */, + BEA9743250D2FCCDB6ADFCAD245245DE /* RCTInspector.mm */, + E590CE097E6BEB3846526CE5383091F6 /* RCTInspectorPackagerConnection.h */, + D8C8CA00256CE08EE900DAEACD7EE94A /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = React/Inspector; + sourceTree = ""; + }; + 95069B88CC0F61F7F7744538B045E2E5 /* Resources */ = { + isa = PBXGroup; + children = ( + 45B9748EFB1BCBED7A3E4462EF963B01 /* de.lproj */, + 9E44C2C9A3309DBA3282A63D18C9D052 /* en.lproj */, + DB93DC9F12B3F62AEBC135DB6F0CAF30 /* es.lproj */, + 861DA14224575858F5F466924A6755AB /* fr.lproj */, + 2725B22B46C9C68AE4F25521DFD55CD3 /* ja.lproj */, + B55C64759D4234F5BCD31FC30DB51E88 /* pl.lproj */, + 3E5B4D8B287DB1660673843CE794A172 /* QBImagePicker.storyboard */, + 97CF8C7EB68FF0F389F6748D4B9CC38A /* zh-Hans.lproj */, ); name = Resources; sourceTree = ""; }; - 968D1905EC986564B4FDF60599DC3F5C /* RCTTypeSafety */ = { + 960CDC8E9620951807BD04359581B61D /* Pod */ = { isa = PBXGroup; children = ( - 31D476183BD0305AB8612F3A73A5FABF /* RCTConvertHelpers.h */, - 7F031A2F61456BB1EB892DA1FED39B97 /* RCTConvertHelpers.mm */, - F4C8A918CFE8CFB9403313034C194463 /* RCTTypedModuleConstants.h */, - 8ECEB4113FAE0A630DB0A48789C04434 /* RCTTypedModuleConstants.mm */, - 1C118C0AD2AA27A1B2AC457C83678C7F /* Pod */, - 0DC838F3F3ED8AA4D2A5789BCA8B9AA8 /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; - sourceTree = ""; - }; - 97A3B90C8B725260DEF9C1EA02C502A0 /* React-RCTNetwork */ = { - isa = PBXGroup; - children = ( - C5360E5CE48DB05E73CBCFEE94B489CC /* RCTDataRequestHandler.m */, - 84D49A7A06647CABE0B3ED5B1854533F /* RCTFileRequestHandler.m */, - D02ED42A4438E940D0E92D0C69AAD2F9 /* RCTHTTPRequestHandler.mm */, - BC4ECBA43FFB94EB36805D34F4A53EF5 /* RCTNetInfo.m */, - 443E3FEB5021F5AE568876B2ECE7DAEE /* RCTNetworking.mm */, - 8A2DBC6972F10CB3F42935FAA3D7FEA6 /* RCTNetworkTask.m */, - 609D9081E999495046E2FD28E6CB4E84 /* Pod */, - CBF823573C79B7BBCD55B5B21FA365DE /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - 9822752D930EFC21B0F025B094F9FF8A /* Pod */ = { - isa = PBXGroup; - children = ( - EADCFA69EBD77D5207AA83AC8FD11C6F /* LICENSE */, - 846B0207BB73770B89FFDAC9557E3E7A /* README.md */, - FDDC908E683D379AE84D6E426DB81D17 /* RNFastImage.podspec */, + 1FB8931872750EEBDFC73441A3C16D7F /* EXFileSystem.podspec */, ); name = Pod; sourceTree = ""; }; + 972923D8E7217BA6768E84989581A265 /* UMSensorsInterface */ = { + isa = PBXGroup; + children = ( + D65D3EB929E2830216638567C495A3C3 /* UMAccelerometerInterface.h */, + F77595C22F7AD76D2CAF6237A9B4591D /* UMBarometerInterface.h */, + 4EF7EAB0D045ED8B13AB60C53B7C2041 /* UMDeviceMotionInterface.h */, + B07E8EB3E93886C66D234A9CC0EE80A7 /* UMGyroscopeInterface.h */, + 34D319A9E5D7C7F7DD6499CE677EBA06 /* UMMagnetometerInterface.h */, + 03C7DA0666463BBB30798D4A412E3911 /* UMMagnetometerUncalibratedInterface.h */, + E9509F914EB80051924BD6E4114D6A08 /* Pod */, + 926B6BBF9F4955442CF5CCF45AA5BCDA /* Support Files */, + ); + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; + sourceTree = ""; + }; 98796D2B4A35C296B4C2230305F1F484 /* FirebaseInstallations */ = { isa = PBXGroup; children = ( @@ -10901,74 +10979,55 @@ path = FirebaseInstallations; sourceTree = ""; }; - 996C180176C2AB9BB35BF35B2B5177BC /* Pod */ = { + 990F6E058F4C44E84DF1DC3DA54FFBC2 /* Pod */ = { isa = PBXGroup; children = ( - 8564C07F57E37E38D43687431A38E465 /* React-RCTAnimation.podspec */, + 8961A029D89CE834643D0AC9728755D7 /* React-RCTNetwork.podspec */, ); name = Pod; sourceTree = ""; }; - 9A28FEB2FDDC6A6C50DD49E0728E987E /* react-native-appearance */ = { + 998FC6C4B2FFC2B51AD7CAE914C4C9E5 /* Text */ = { isa = PBXGroup; children = ( - D2EB5842AB2F72FCE3166D064FA10F10 /* RNCAppearance.h */, - 674FA7B59F6E13FCB007AF7757327943 /* RNCAppearance.m */, - BD506638DCCF06CB0434974BFC80C00A /* RNCAppearanceProvider.h */, - D79E9727C2F33141B180DBDF92EB47F3 /* RNCAppearanceProvider.m */, - E2DC9D466362320D9D82C2ABE0FFAA0D /* RNCAppearanceProviderManager.h */, - DC37764363A76FC196073D8917B4584C /* RNCAppearanceProviderManager.m */, - EEA1A85B6760F650D4DDF334111F1B26 /* Pod */, - 2A70AF40947C85640A0CF21C0EA2B6A8 /* Support Files */, + 1A2365F988FC03687C90A9E78C2FCCDA /* NSTextStorage+FontScaling.m */, + 645A862D5112A87C605FB8F8957D4188 /* RCTTextShadowView.m */, + B598FD18D2FE66054599D8AD914686DD /* RCTTextView.m */, + 14160F8013A4CD22C4A8618227453F7F /* RCTTextViewManager.m */, ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; + name = Text; + path = Text; sourceTree = ""; }; - 9A5EBDA2852FF57826543043675865FB /* Pod */ = { + 99BD16722E76F0F6C52D668430196026 /* jscallinvoker */ = { isa = PBXGroup; children = ( - E6B0CEC82097EE31763F947D714730E0 /* UMCore.podspec */, + 73710B05B84EC076CC86DAA47036C5B4 /* BridgeJSCallInvoker.cpp */, + 683A649F2756D0CED81BC010AB03DC85 /* BridgeJSCallInvoker.h */, + 710626F89D39387BF706E1AC0839597A /* JSCallInvoker.h */, + ); + name = jscallinvoker; + sourceTree = ""; + }; + 9A45D20565BA83DE6A86837F7D1FEF12 /* Multiline */ = { + isa = PBXGroup; + children = ( + C4074D119A25A498EDD31EECB49B6D90 /* RCTMultilineTextInputView.h */, + 00AA2794A63D47A505005F5D362E2881 /* RCTMultilineTextInputViewManager.h */, + F0D4EB6C7E3C9ED6349A23B2D7B6DC4C /* RCTUITextView.h */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 9BC733B84D06D7CCEBD3A4D1AF49EF0C /* Pod */ = { + isa = PBXGroup; + children = ( + CC092D9709492EACCC99AE2AC4584F53 /* UMImageLoaderInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 9AD99CA97E87C898F621A96AF1CA0BCB /* react-native-jitsi-meet */ = { - isa = PBXGroup; - children = ( - 7E02B942ACBEE1C0746FCBD61B1B0D35 /* RNJitsiMeetView.h */, - 54FA29A58A8091571DFBDADD8EF21000 /* RNJitsiMeetView.m */, - 91D9E1D0C746C2FFBD68E1A7367EC6B7 /* RNJitsiMeetViewManager.h */, - 502EC837155ED714DF23FB05FBC35B3B /* RNJitsiMeetViewManager.m */, - E2D7EA628465A53CE606804DC0F9E87E /* Pod */, - A44CDE19F12DB36C2090AACD4819DF02 /* Support Files */, - ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; - sourceTree = ""; - }; - 9B7D20554E22E1C4CCF5659BB3146852 /* links */ = { - isa = PBXGroup; - children = ( - 15EC4CE1E11E17AC364ECBAC3B513646 /* RNFirebaseLinks.h */, - 7667B53E10D068E0BFA32C6B17ECCEBA /* RNFirebaseLinks.m */, - ); - name = links; - path = RNFirebase/links; - sourceTree = ""; - }; - 9B8498762E7C4BFA0793E1B469FD23D0 /* react-native-document-picker */ = { - isa = PBXGroup; - children = ( - F8B4A74169F9588A6545B52CDB6A092D /* RNDocumentPicker.h */, - 76A2215D06FB7C40AB36F197692FA766 /* RNDocumentPicker.m */, - 9DE7997C234CC835598F55F025F6B880 /* Pod */, - 5CE8EDDB715C31A090A3F0BABC431079 /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; - sourceTree = ""; - }; 9BCEFBA6F728DA1423C8D80E348E9F24 /* Support Files */ = { isa = PBXGroup; children = ( @@ -10978,65 +11037,42 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 9C56294BA63CF629E9A870B5321B4677 /* Pod */ = { + 9C1CC312A2385AD6DD931CBD337CC8C6 /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 36D4A571E35EBFD16999ABF5BBDF5F4A /* UMTaskManagerInterface.podspec */, + B2C5FE9E9F17B137A1325C89084416A8 /* UMBridgeModule.h */, + 04844EF4DBED0373077E79B326DFEE21 /* Pod */, + E0F2361CAFF1219818C4B31D6A059EA7 /* Services */, + 4AC7F0FAB3F841ED168FFBF043DFFE67 /* Support Files */, + FA42F2806D2A85706EB650D165092E2C /* UMModuleRegistryAdapter */, + 716247A39A2739870B577DC49D84471A /* UMNativeModulesProxy */, + E2C3F1A19F25A0B5CFA4F7485BB0857D /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + 9CBC55C874F8419A8CA75500713700EE /* Pod */ = { + isa = PBXGroup; + children = ( + D7824E185C55F045D350B0C556D6C6F8 /* EXHaptics.podspec */, ); name = Pod; sourceTree = ""; }; - 9C65BAEDCB19A016A3CB5DC347249D0D /* Pod */ = { + 9CFD4C7BDAEFA690C23DD607E24C322B /* Video */ = { isa = PBXGroup; children = ( - 0BD8D43D83B7997FCC63F1C3E83C6F1B /* LICENSE */, - B42CEE5D4856722450B5802D85420A5E /* README.md */, - BA828D46422211BE8175BA377FE611A2 /* RNGestureHandler.podspec */, + C573A9A7F37E14C79FE83701D61945FE /* EXVideoManager.h */, + 3470C187730785987000EA696CDA42A6 /* EXVideoManager.m */, + DBEAF4DE71DC0A63CFB9CB0BCCC88284 /* EXVideoPlayerViewController.h */, + 0DA50D661A9B86529C8E9289A8C5F35A /* EXVideoPlayerViewController.m */, + 95034913BBC0A86B5FFED29336E7F6AD /* EXVideoPlayerViewControllerDelegate.h */, + B0BA8E4C23DCFBE19DAB6C5BD97B5706 /* EXVideoView.h */, + A497F8793AE52968911B2A7A1FAB1CA2 /* EXVideoView.m */, ); - name = Pod; - sourceTree = ""; - }; - 9C67426BBFA5213CE185322D72CC433E /* EXImageLoader */ = { - isa = PBXGroup; - children = ( - 64B5D7BB5FFA60F01C8E187D6D93E9B1 /* EXImageLoader.h */, - A615973B85BA181006E0063EBEE40504 /* EXImageLoader.m */, - 79D61CA7C196A1286C653402B2E4FDB0 /* Pod */, - 1EAA8D6BA2392DF7CFDA17F0A2AA645E /* Support Files */, - ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; - sourceTree = ""; - }; - 9CBEC30486697F054242C7954BDF78FC /* Pod */ = { - isa = PBXGroup; - children = ( - 16D47CF049BA220DD66912A75430CD4A /* BugsnagReactNative.podspec */, - 4042FFD2C9AADFCAF567C3972EF9939A /* LICENSE.txt */, - 3A9B6A3890CAB5814678E26BA5596F52 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 9DE7997C234CC835598F55F025F6B880 /* Pod */ = { - isa = PBXGroup; - children = ( - 7582E14963B13D27AE0CFC384CE026F9 /* LICENSE.md */, - 9CF3786EE8000A20DFDD143520027865 /* react-native-document-picker.podspec */, - C540F34AA6E51D4B063AADF09A4D7314 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 9DEC2C34D18BD19293FEFEFEBBF2B382 /* Multiline */ = { - isa = PBXGroup; - children = ( - 188C9AE6484B0E6EF5C45A6E65126E23 /* RCTMultilineTextInputView.m */, - BF6358AB6D9E2F28FC1C6424EDB2840A /* RCTMultilineTextInputViewManager.m */, - B0211C5BA6C49CB7568A093D135620F4 /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; + name = Video; + path = EXAV/Video; sourceTree = ""; }; 9EA5F86655592B693DE74D95DF3A3C23 /* Frameworks */ = { @@ -11048,127 +11084,124 @@ name = Frameworks; sourceTree = ""; }; - 9F2995718F449AA02D637224A2AB062F /* UMImageLoaderInterface */ = { + 9EA7821EB556202151DEC1047CB0A02B /* Support Files */ = { isa = PBXGroup; children = ( - A13C6946B33C455B359738BA52FB0A4A /* UMImageLoaderInterface.h */, - CA5B2FB35C804FF0EE7A1DEF3AAB9BC4 /* Pod */, - 4327AF53E2632320858494B5B7CD605E /* Support Files */, + 3FDF18BE60DB983D9CC91AC0B7E3FB99 /* EXAV.xcconfig */, + C6400DBDF40FAD6814982111D2EC1D6B /* EXAV-dummy.m */, + A728E17DC0071BDB92B0B0AC4FCCBC9C /* EXAV-prefix.pch */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - 9F62BF7599A73E242E75EFE67CF89AC0 /* Pod */ = { + 9EE46CC266285019843699CB284F7DE3 /* Support Files */ = { isa = PBXGroup; children = ( - EBEDD9F09018A3CB9E1B5918F5653262 /* LICENSE */, - 4526C8074EFC911D4391FC14652BABCD /* README.md */, - 6595FE78E81599C216E59270F714BC82 /* RNLocalize.podspec */, + 0D63FA32B0624F29F46C66B41C5731CA /* RNFastImage.xcconfig */, + 80B6C2D5DA23C5D1F8DB2EB628BEDA3B /* RNFastImage-dummy.m */, + C925D8B168DF55B2D4E735C9E296A00F /* RNFastImage-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; + sourceTree = ""; + }; + 9F16CA6590243209301496EFE8FC1A09 /* RNScreens */ = { + isa = PBXGroup; + children = ( + E35E8759D6F54540CDE1ABDA1CF98535 /* RNSScreen.h */, + A35488CA38548E124B5E9B984D505508 /* RNSScreen.m */, + 010B69D1871557FF87BFBCA7299023A1 /* RNSScreenContainer.h */, + 17CBE5BB0564D33E9DB99AFC3AAD3747 /* RNSScreenContainer.m */, + 2E4C2A8FF4818C982D1AA14F3A16798E /* RNSScreenStack.h */, + 1CAAA95AC5A05F3CCD215D95CD66B1CD /* RNSScreenStack.m */, + 7D61BB0381EAD01963E36420B7FE6991 /* RNSScreenStackHeaderConfig.h */, + FC92A9FDCFA5DF1D1A81BAAB393E0678 /* RNSScreenStackHeaderConfig.m */, + 863FEAB96E44D79341CEDC6972C4A7E8 /* Pod */, + B9829CBE705386AF70C5DF1AF865B7E5 /* Support Files */, + ); + name = RNScreens; + path = "../../node_modules/react-native-screens"; + sourceTree = ""; + }; + 9F2C85EAD4890209012FFD538C437561 /* functions */ = { + isa = PBXGroup; + children = ( + 6F249257BAC55088E6F3BF269F0DC57A /* RNFirebaseFunctions.h */, + 39E77115B17F4922F7FCFD4CDD27B79F /* RNFirebaseFunctions.m */, + ); + name = functions; + path = RNFirebase/functions; + sourceTree = ""; + }; + A25940BE98256696EBA42FBC3E57AE20 /* Pod */ = { + isa = PBXGroup; + children = ( + 0608A5DA379D828EF5B610EAC15926F2 /* LICENSE */, + C1A2D0A5191D2F6BBEE028B72C39CEE5 /* react-native-appearance.podspec */, + 22CCF3D85DBB99BE5FD42C85E781F4DC /* README.md */, ); name = Pod; sourceTree = ""; }; - 9F75A82E87505DC71E8C2FF08343D03E /* RCTTextHeaders */ = { + A2BED3D74789814CA77459548DB287F0 /* Support Files */ = { isa = PBXGroup; children = ( - 14A1909E30018152870D41BE4CF7E326 /* RCTConvert+Text.h */, - A98B8012F144C30D6A38B0B3B345ADF1 /* RCTTextAttributes.h */, - 3F0E13FC825A0389AFB6D7962502FE1D /* RCTTextTransform.h */, - 8A2BAA7744CA0ED87AAE14AB5FEE47E9 /* BaseText */, - B788E545FAED88B23C64450C6955910A /* RawText */, - 2531E5D9CF65C3CF26047BD34D009716 /* Text */, - F219CAF7F8BC8FCF331E390A74833695 /* TextInput */, - DB2F04FEFFA88D64A56C1891D6D33EB5 /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = ""; - }; - 9FF7A194BE5F7E3424E82028AB7C57B7 /* Requesters */ = { - isa = PBXGroup; - children = ( - 7643CA6EAFC13DCAC51058242FD000A9 /* RemoteNotification */, - FE98B0896FF26D43B4DA4510D54A3213 /* UserNotification */, - ); - name = Requesters; - path = EXPermissions/Requesters; - sourceTree = ""; - }; - A0DD529EAFD79B64612923DFA2085A7D /* Nodes */ = { - isa = PBXGroup; - children = ( - 7CDA57B7A037A04CAF162CCF8783CB39 /* REAAlwaysNode.h */, - ADBB374290ACC42CF28CA9F3155AE096 /* REAAlwaysNode.m */, - 85262D71DBAB951692FBC6B28F927FF6 /* REABezierNode.h */, - 1C1DB3872977A9B38AA80081DB9F0D90 /* REABezierNode.m */, - 7493D81119BC9FA4036C10337C09BC5A /* REABlockNode.h */, - 5C5220ADF71397D5B95AA595F8813FE3 /* REABlockNode.m */, - C1F00D3D631186E5C30E5082F7B76425 /* REACallFuncNode.h */, - 62046A26178649AC5D619E9ED83B8CED /* REACallFuncNode.m */, - 331AF84BCC2BA7E0A3BE1703F9444B22 /* REAClockNodes.h */, - C48A8F36129D6901E54E9A08ED6D9BC0 /* REAClockNodes.m */, - 6DE8A4F7C409117A3DC6A2E37ED2DF60 /* REAConcatNode.h */, - 16F343A73D8A9CB64F3C45BCDBA495FC /* REAConcatNode.m */, - A40F869B4425DC36B268AAC134C05811 /* REACondNode.h */, - FD58DB39F9A32D84F2801237B4423F13 /* REACondNode.m */, - 50134151E35E1B96FD28AC7ED0800892 /* READebugNode.h */, - 6B360C00644E9E808A39C5EB37BB1840 /* READebugNode.m */, - BB715B513540E23DAA9A4BA4892EA4C0 /* REAEventNode.h */, - DF27FB27F03D0836198D91EAAB34E562 /* REAEventNode.m */, - D4C5DCBD8CFEB2613D8E43206E263F1B /* REAFunctionNode.h */, - 63F98D42B9567C6BAFED9D04BBDAD278 /* REAFunctionNode.m */, - B6A35BC8425A69E745CA3D09657EF2EA /* REAJSCallNode.h */, - D572767A593EDD6E23A9336C6566817A /* REAJSCallNode.m */, - B55CACA6C91A7C67EF1D293C012BE983 /* REANode.h */, - 5795E5FB84901A09682C23201BD21518 /* REANode.m */, - 45DCCF91BE6331A403D82963970FFDFE /* REAOperatorNode.h */, - 5F0337242837C1D7E4670132D6F493B4 /* REAOperatorNode.m */, - 82C2CC4DA2D0A987F666774AAF991E7C /* REAParamNode.h */, - 54AC49AAA4AFD11414A9FAAF69ED9769 /* REAParamNode.m */, - 74258F81D8E9A10E7FFF59588C4A3450 /* REAPropsNode.h */, - 771101BC66D624FBFA77FBF11A3232C2 /* REAPropsNode.m */, - 0EF13686829746A2F67F9C4179C93609 /* REASetNode.h */, - A6FDFA32B8295040197988E798C0AB0D /* REASetNode.m */, - 5CC1C8636F6E342DC363373509099EC9 /* REAStyleNode.h */, - 513C3F34D99097335FA72E9F425B9845 /* REAStyleNode.m */, - A0BD5F45347AF241ACD522068EE2A13F /* REATransformNode.h */, - 19F051C398E0E0CF5604A783AA3D061F /* REATransformNode.m */, - 0C4157C2FAA19B37B490BC14D91400ED /* REAValueNode.h */, - F6DD803CEEF3E5ED10A5840760D5E1C5 /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; - sourceTree = ""; - }; - A19A1CAEC2DC473E9CBBBFB88B53E2E2 /* UMBarCodeScannerInterface */ = { - isa = PBXGroup; - children = ( - B12371BCF0527D2B1FE5682D40D9C1F3 /* UMBarCodeScannerInterface.h */, - 1E1021A0C3C509D48D905BADBFF434A1 /* UMBarCodeScannerProviderInterface.h */, - 64618759288B7B69898B7D4936064EE7 /* Pod */, - 3082259E58863D9403713AD11984680B /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - A44CDE19F12DB36C2090AACD4819DF02 /* Support Files */ = { - isa = PBXGroup; - children = ( - 05DE3B152B393181033A3529CEC2B6BE /* react-native-jitsi-meet.xcconfig */, - 54DCCA8CF849B2B71253E54894E70343 /* react-native-jitsi-meet-dummy.m */, - 3CBDD5CDE2AA4C6B4D0C14D5948DCDCB /* react-native-jitsi-meet-prefix.pch */, + 3468185C6A123C9B0B267B1785EB1175 /* RCTTypeSafety.xcconfig */, + A66779B86941EC3E046DA5518C56E4F5 /* RCTTypeSafety-dummy.m */, + 77324D29D0D2C15F63207EF6C3E5C932 /* RCTTypeSafety-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - A4DF82F35E9EDCF5412AE8523A092D8C /* RCTVibrationHeaders */ = { + A2F53ABD4440AAD348C22BE92B0A466E /* firestore */ = { isa = PBXGroup; children = ( - 60962EF7F5AA7A9D95F94DCEE66EA7F5 /* RCTVibration.h */, + EB1CF25664AAA7FF8B5FF7770D436D7D /* RNFirebaseFirestore.h */, + B27112808C89B6BFC1421CDF58A00489 /* RNFirebaseFirestore.m */, + E70C5431BA2C7BA47F7F1A4C065E8065 /* RNFirebaseFirestoreCollectionReference.h */, + EFEA6ABCA5DBE334079B09B6F2488289 /* RNFirebaseFirestoreCollectionReference.m */, + 07EA8F689EEC81C795FB9A12722F49F9 /* RNFirebaseFirestoreDocumentReference.h */, + AE6C42ED5E899898ADFFA0DB2CF294D2 /* RNFirebaseFirestoreDocumentReference.m */, ); - name = RCTVibrationHeaders; + name = firestore; + path = RNFirebase/firestore; + sourceTree = ""; + }; + A32A86CBAE66592CE9AC66C3A2169DBF /* Pod */ = { + isa = PBXGroup; + children = ( + ACEA48A85C37E4144669E180093F21B5 /* EXImageLoader.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A3B3DE4A310F4FF21E50C36954521DC1 /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + 0CFEB1123E4C2DC0FD95B915DA542C72 /* RCTSafeAreaShadowView.h */, + 0ED9790A219C2DE2D227B3921432CCE5 /* RCTSafeAreaShadowView.m */, + AB811BB172E5C47A41E719448B6F3709 /* RCTSafeAreaView.h */, + BA6C1AFD59E48EA0E8D3DEE5C8314A44 /* RCTSafeAreaView.m */, + 0C1719800CE128E59EE7CB07010B4676 /* RCTSafeAreaViewLocalData.h */, + 1E8E545A44AAADCA5A45F824468D70C8 /* RCTSafeAreaViewLocalData.m */, + E5DBFCFF8181CC81F2203B4C9A28A123 /* RCTSafeAreaViewManager.h */, + 8D08522C833A9FA9AF9397A725E582BC /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + A4BAFC8CB587AC868354F86A69241B02 /* Support Files */ = { + isa = PBXGroup; + children = ( + 92D37DCEA5F912CD83F2BF86201FBCB5 /* ReactNativeART.xcconfig */, + 1DAAF08BD348AE3065A24572A308E5AB /* ReactNativeART-dummy.m */, + CAA1C30384FE9C5B7B56179B768675B9 /* ReactNativeART-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { @@ -11180,41 +11213,186 @@ name = "Targets Support Files"; sourceTree = ""; }; - A78F8B84B10BCF1E1A0BE22031D00524 /* jscallinvoker */ = { + A60D27E8E3B2F40CF1DAAB4CE6AAF5BC /* Pod */ = { isa = PBXGroup; children = ( - DF8C4FB84FC5CC63827683833BF23659 /* BridgeJSCallInvoker.cpp */, - DFDC939DDDE5B2F633F78E7D72C17D92 /* BridgeJSCallInvoker.h */, - 0302318BE1A4996F6362DEECA23878B8 /* JSCallInvoker.h */, - ); - name = jscallinvoker; - sourceTree = ""; - }; - A7BFC0F36DEB3F36F0FC94E319B441D0 /* RNDateTimePicker */ = { - isa = PBXGroup; - children = ( - C9EE23420BFAC48413A4637E84819DC1 /* RNDateTimePicker.h */, - 687D274BCA24C931D4E2AC530A4BB8C9 /* RNDateTimePicker.m */, - BD8DE34D2A5336EA6C638A092D29F16C /* RNDateTimePickerManager.h */, - AB041F83DA810ED8C5D4970D923977BE /* RNDateTimePickerManager.m */, - 59A415744A0596858A0BD53FC33ABAEC /* Pod */, - 6E76E5C1C37AC6F688843C9E740B7212 /* Support Files */, - ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; - sourceTree = ""; - }; - A8226C44832FF0067C03330C984E644A /* Pod */ = { - isa = PBXGroup; - children = ( - 52D6A118E3DC3F00CB5F5FC58C208510 /* api.md */, - 159D3A6C5F3D43C874A28A3600AC9AE6 /* LICENSE */, - C1A5F8F2DA8110308C5AB74F52C95E76 /* ReactNativeART.podspec */, - A5F862DE55B8DAE16E05BE2AD7B275CE /* README.md */, + 1289A4493D8132E1701E662DCF2C1B23 /* LICENCE */, + 9BC50ED1928A5BBAA7711561105E11E6 /* react-native-cameraroll.podspec */, + D2F4F77C5C57223D41097008F875071B /* README.md */, ); name = Pod; sourceTree = ""; }; + A6924FBB8FD821D144BC2B3F91A6958B /* React-RCTNetwork */ = { + isa = PBXGroup; + children = ( + 18E53BF9EB73E8659D3501206E81D6C8 /* RCTDataRequestHandler.m */, + 192E9DD5E2EA46CE683DB11AC148E676 /* RCTFileRequestHandler.m */, + D0EDA54D493CBA42BD3AE434726EC00B /* RCTHTTPRequestHandler.mm */, + C7E080C5EA8A25D4DF742479B33DBFAB /* RCTNetInfo.m */, + 9F6F76C75DF2E4CDD2B9E6C2B261C387 /* RCTNetworking.mm */, + B16A6ED2E88D0CB778BDDDAA99B2CB91 /* RCTNetworkTask.m */, + 990F6E058F4C44E84DF1DC3DA54FFBC2 /* Pod */, + FC57D1CAA94A4B0065B9B6E8DC4DBE76 /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + A72150CE75E2B351EE8F805FAC248E1E /* RCTLinkingHeaders */ = { + isa = PBXGroup; + children = ( + 77D6A2821B92ECF1D2A3A9433DA3E3B2 /* RCTLinkingManager.h */, + ); + name = RCTLinkingHeaders; + sourceTree = ""; + }; + A7799022F7F79061EB2A007B993C9019 /* Support Files */ = { + isa = PBXGroup; + children = ( + 76F17F993FDA2F75B204D361ED77A590 /* EXWebBrowser.xcconfig */, + 590F5492B176CBCF053C11FFF0CFC13A /* EXWebBrowser-dummy.m */, + 3491BE4807C4316DDBC7B66FA56EAC35 /* EXWebBrowser-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + A77F12512511A95868F7D1F77C62CF6E /* VirtualText */ = { + isa = PBXGroup; + children = ( + 0F7BFA9868C8B87C1B813014460F1963 /* RCTVirtualTextShadowView.m */, + 7A3682B74576D9FEA4B36935562AA4CC /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = VirtualText; + sourceTree = ""; + }; + A7BED5773DC2E6857A7402C6637C213D /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + FCD8F67FB9E5FE3748111AE45CC00A67 /* DeviceUID.h */, + F6645BA2C8A3C858416E79070CCE2F07 /* DeviceUID.m */, + 33DE46464F3B2D67DFA5644EED84E573 /* RNDeviceInfo.h */, + 345D90C813B8770C526A48EF328A395C /* RNDeviceInfo.m */, + E9152C496C9645EF4F97EFAF7A1C5F22 /* Pod */, + D98645150F2958A364F57E2A2B2C825E /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + A81447CB5D22DAC4EC3BFF86105B2DD9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6307F3286D96C57A78B3915CDA5896C9 /* React-RCTSettings.xcconfig */, + A74FC8F44C2DA05695B5BF84D7E0D224 /* React-RCTSettings-dummy.m */, + D447C85E988F3ED0F8F57FF110E56190 /* React-RCTSettings-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + sourceTree = ""; + }; + A835EE73903E87918038A431C3C06F93 /* EXAV */ = { + isa = PBXGroup; + children = ( + 5AA0CB3C0EAC3E7176B612CB6B6B5FFE /* EXAudioRecordingPermissionRequester.h */, + 7030F60F05871D798FCBAA2CB8433DA1 /* EXAudioRecordingPermissionRequester.m */, + 53C0A6586526CD4580623B1AEBA3BC54 /* EXAudioSessionManager.h */, + 823F9CF65AEC7B3D92926179830B4649 /* EXAudioSessionManager.m */, + 970A28468BEE739729C651807974B665 /* EXAV.h */, + 1633223EA7070D4AA9E8C1DA21D1E050 /* EXAV.m */, + EEAA3F245E67D67CA5BA643D7AE193F8 /* EXAVObject.h */, + 902007CD0430091CA5FFA9F68CD6EE57 /* EXAVPlayerData.h */, + D99204AD6F09D79FCE4199DAD7A7CDA9 /* EXAVPlayerData.m */, + 192EBFDA159841B8A3D762F1766C91BA /* Pod */, + 9EA7821EB556202151DEC1047CB0A02B /* Support Files */, + 9CFD4C7BDAEFA690C23DD607E24C322B /* Video */, + ); + name = EXAV; + path = "../../node_modules/expo-av/ios"; + sourceTree = ""; + }; + A83CE3970F60CDFDBB64F09DF1403515 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5890F6284FF3A60CE3CFADC549951C33 /* react-native-notifications.xcconfig */, + AC94BE00227F287FC4FAD2364F6A3605 /* react-native-notifications-dummy.m */, + DAEC71405BEDC19D15D9B2C4B0EF7A25 /* react-native-notifications-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; + sourceTree = ""; + }; + A8650FF19C84D88638F921FDB0B1E094 /* react-native-slider */ = { + isa = PBXGroup; + children = ( + 1ECFE1DAC69AE2E6C670D1C11DE3614E /* RNCSlider.h */, + 1183FA05965CCBD6EBE508B2B4A4C168 /* RNCSlider.m */, + CBB5C603ADE91187AB6084A7CEC3E06F /* RNCSliderManager.h */, + 8211E7D473E95C9621109787540CA25C /* RNCSliderManager.m */, + 3C2412ED15FFF8679A2C947A222F5BE3 /* Pod */, + 345D95BBEFDB96979128772FD0A9100C /* Support Files */, + ); + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; + sourceTree = ""; + }; + A86A92FDF945DB516F4F315AC47272D0 /* EXWebBrowser */ = { + isa = PBXGroup; + children = ( + C151B3E6F916F70B67076631A3BD57E6 /* EXWebBrowser.h */, + 316DA94486647DDBD25D3AF4DE336C44 /* EXWebBrowser.m */, + FAB267B8842102D37E721FF0DD511875 /* Pod */, + A7799022F7F79061EB2A007B993C9019 /* Support Files */, + ); + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; + sourceTree = ""; + }; + A877714260D851902BB1B1A34082B24E /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + 99BFEDDC6C2FFD1C5A6D1F2B31078E32 /* CxxModule.h */, + B9F39C239AFE1A8E1197B94A171E0744 /* CxxNativeModule.cpp */, + A3CCB977E79DD1435691B18805B12834 /* CxxNativeModule.h */, + 3FBCE7F506D6F5BE5BAC86815AD17870 /* Instance.cpp */, + E1CC78D53CE35E1FC139ECEFE7F09D85 /* Instance.h */, + 198682BD604D26EF9517EDA29B3BFE13 /* JsArgumentHelpers.h */, + 0A59B4908C871994AA75E070FB68AA55 /* JsArgumentHelpers-inl.h */, + C21746FD7CA8F9DF919C16A4CF86FA15 /* JSBigString.cpp */, + C2A158B063C3E3B67A0088819EC778AC /* JSBigString.h */, + 7C59C15AEEDA00AA218C77F7B154E57F /* JSBundleType.cpp */, + 6FF51CE73264ED07FDDD86A04DC0D3F9 /* JSBundleType.h */, + B254483D4A57A067F0A2FCF47386DCBF /* JSDeltaBundleClient.cpp */, + F489A407CA0E326AD8787F35F02B6558 /* JSDeltaBundleClient.h */, + 8B08F92BDD499DC6E327479ECB6552FB /* JSExecutor.cpp */, + E90142F9AF1BCFB7A269255BB8D48330 /* JSExecutor.h */, + 61BFFF666044707645A41CE5B3984727 /* JSIndexedRAMBundle.cpp */, + 256F4AF2577D0DDD5133F7A22C6C8850 /* JSIndexedRAMBundle.h */, + E40595242F74B2A1A8BB3DD7F0AA4E7B /* JSModulesUnbundle.h */, + 3110F04116563705A7FEDFADDE265C12 /* MessageQueueThread.h */, + 4F65734043BD7387F353B6BED3746AED /* MethodCall.cpp */, + E222B7D35352942FDEB61713DCBC4252 /* MethodCall.h */, + A6DB7394EB220F61EBCBCCC9454CF196 /* ModuleRegistry.cpp */, + 1B36C277A662045D089C5D30EDF92C38 /* ModuleRegistry.h */, + BEF8B04B50B641E32DF509D0625C6EE7 /* NativeModule.h */, + C67C6007DB25FCE8F7CF321593645822 /* NativeToJsBridge.cpp */, + A5594BC570DC751C1CB2233CB64B1A9A /* NativeToJsBridge.h */, + 917C2BFBDD722F33A15A69113BDCD537 /* RAMBundleRegistry.cpp */, + A33B1F40333CFD389EB9C71DFAE35EA6 /* RAMBundleRegistry.h */, + 6F1DE52AF140D521507A7FFE64A0D2F7 /* ReactMarker.cpp */, + D8445F18BAA6F40088E088474DE8BD78 /* ReactMarker.h */, + F2ECE75752AF10AA2FF8406535FB24F3 /* RecoverableError.h */, + 7AC84EDC5DAE9647029D17EA4E949065 /* SharedProxyCxxModule.h */, + 3C2C67F45E347638D596266DCB078148 /* SystraceSection.h */, + B1B199D315F03BE02E68ABC309892F12 /* Pod */, + 40280EFA2DA63984B2096D1997387BD1 /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; + sourceTree = ""; + }; A8C71C322026C911F1F90E2B03F26405 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -11223,6 +11401,21 @@ name = Frameworks; sourceTree = ""; }; + A8F6D2D60875ED126EF13B02E7CB9720 /* Pod */ = { + isa = PBXGroup; + children = ( + 732ACB9F5D35FADAB6B9F56F140F9A4C /* advancedIos.md */, + 841BCF1E63876D4B6FB1CF5353FB7A5A /* installation.md */, + 545678591396C5A080742B559C528EF5 /* LICENSE */, + BA45CE4A00BB20E5C9905D7DBE043F9F /* localNotifications.md */, + 25B2209C1F1BF2F8C8DE3EB64622583B /* notificationsEvents.md */, + 75A5644C499AFBCAF3340D3F8E088FD8 /* react-native-notifications.podspec */, + C7EAD7F2120265B3CAD556B7E4012470 /* README.md */, + 964A39EC5E9D150BCF41C17268D74A89 /* subscription.md */, + ); + name = Pod; + sourceTree = ""; + }; A93FC5B030CC5395435DD39670F9E756 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11232,28 +11425,32 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - A9EE28D5510AFD24F5A4E92922F72A9D /* Pod */ = { + A941FB7D2276E7FB414361F42AF69BAB /* CxxUtils */ = { isa = PBXGroup; children = ( - C9EEDC50DC8B5E885F22D39FE6DAFD6D /* UMReactNativeAdapter.podspec */, + B42BBE16C17A2C50D57313F1880C87E5 /* RCTFollyConvert.h */, + F4D0CE13CEA0CF33E35FCD61C079EBD8 /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; + sourceTree = ""; + }; + AA2BBA6EB170E3DCB2E885CBFF3EF906 /* Pod */ = { + isa = PBXGroup; + children = ( + 289932562F1B89DB736FD7AA184F039B /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = ""; }; - AA1160D4DE7CADD11E97B3EA14933708 /* SafeAreaView */ = { + AA32D8E3673DEF1CB7F7AAE36B3F3B90 /* analytics */ = { isa = PBXGroup; children = ( - 91A9B7A30D4D872C8EC76F32B87D2FD1 /* RCTSafeAreaShadowView.h */, - 1C4FFE3B1606113541FAAA752591E5E7 /* RCTSafeAreaShadowView.m */, - C59A44A3836E48A3D9E63963E2681D6D /* RCTSafeAreaView.h */, - F3CCB24FC34E85BE20A08461CEAC5964 /* RCTSafeAreaView.m */, - 6A43E7DC5723FD9F6489D01E21E04EE0 /* RCTSafeAreaViewLocalData.h */, - 1FA178F75745CEEA3494C31D038EC7FE /* RCTSafeAreaViewLocalData.m */, - 72F3A429601F66AEEBF3B565EEDF1F41 /* RCTSafeAreaViewManager.h */, - 46B486541A6AA377CDD781BA73395D1C /* RCTSafeAreaViewManager.m */, + BAAAA6477211F706849A47DAFBFE31D4 /* RNFirebaseAnalytics.h */, + 8C1C0DF6325073D049977F086DE518CB /* RNFirebaseAnalytics.m */, ); - name = SafeAreaView; - path = SafeAreaView; + name = analytics; + path = RNFirebase/analytics; sourceTree = ""; }; AA4F6AAD65B434D8E494DA264036AFDA /* Core */ = { @@ -11402,148 +11599,146 @@ name = Core; sourceTree = ""; }; - AA7EF108B1AF468547A5017D68DE1F7B /* react-native-orientation-locker */ = { + AAA762DEB684B9A15DE5200DDBF2E25C /* Filters */ = { isa = PBXGroup; children = ( - 5C423F0F22D9E644B5F9E5ECA56CBB8D /* Orientation.h */, - 7BF2B8515953DCD57957BA8EFD20ACFF /* Orientation.m */, - E85D54DAE27FA6537A064F3A51309A0A /* Pod */, - 57BADD79651C53ADA9857150C84BA1C5 /* Support Files */, + 8EEC5E012EF08FE0EE7652064E65C5CF /* BSG_KSCrashReportFilter.h */, + 4F5866834C180937CCDCBE599C854CC1 /* BSG_KSCrashReportFilterCompletion.h */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = Filters; + path = Filters; sourceTree = ""; }; - AAC4B0A2C757525970DB19C0391A29CF /* Services */ = { + AB89382825299E3D7255F81ABAB44C90 /* RNRootView */ = { isa = PBXGroup; children = ( - 8DCA471A96EEDC4FF71B04C0B6280E1E /* UMReactFontManager.h */, - 3E0BF76806F01A4737F7E7FF400AFF7A /* UMReactFontManager.m */, - 559BE7FB81AFF08D3690E3B14F07E8B0 /* UMReactLogHandler.h */, - BEA3586451A5731024F262422F2A0E80 /* UMReactLogHandler.m */, - D96E9F96EC89E9F9284338352C43C102 /* UMReactNativeAdapter.h */, - 8E41897D7B8A9E05D048F023965765EE /* UMReactNativeAdapter.m */, - 606CCE606376DD7990442AF23CEE5A3F /* UMReactNativeEventEmitter.h */, - AD2B06DCAB11F3B99CDEB99300E8B31D /* UMReactNativeEventEmitter.m */, + B47E531AF460BFE2AFEB94FB96B0BC40 /* RootView.h */, + E7493201B3715A9F4B6B7F80ECB1CE7B /* RootView.m */, + BB7B9DFF924481DAA326B20F28C649E8 /* Pod */, + 1310D9B93C59398E9A4252591870FB03 /* Support Files */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = RNRootView; + path = "../../node_modules/rn-root-view"; sourceTree = ""; }; - AB00C6C5CA12BF25D635208FFF45DC40 /* TextInput */ = { + ABBDCA1A9A5505FA3925820B03864E03 /* instanceid */ = { isa = PBXGroup; children = ( - 61FBC6C6160BB2253D991ED26479A5FB /* RCTBackedTextInputDelegateAdapter.m */, - CCABB48D087659B9F3108DC2B38CC33D /* RCTBaseTextInputShadowView.m */, - 1DAE96F078224826317C344961328901 /* RCTBaseTextInputView.m */, - 6E6B3F72D28DBBEB7379B5DBECA7B3B2 /* RCTBaseTextInputViewManager.m */, - C388D8B8AF0927DDBF721CD4F0BAC23B /* RCTInputAccessoryShadowView.m */, - B26961AB7152E0E74BAD19380C69E867 /* RCTInputAccessoryView.m */, - EBB697DB9411C56639A4EEA0CD6D9933 /* RCTInputAccessoryViewContent.m */, - F35E076CF529C953D063452BE7B556C9 /* RCTInputAccessoryViewManager.m */, - 52F26A7E8EED47F49C39F9121B4D43F8 /* RCTTextSelection.m */, - 9DEC2C34D18BD19293FEFEFEBBF2B382 /* Multiline */, - C017DB12561A783826FF948A1F121C3D /* Singleline */, + 26B6EF411EE2B65DB86109C9B5BB349F /* RNFirebaseInstanceId.h */, + 8ABC6CDE9EB6CD6F3DD6793BAB8A17A5 /* RNFirebaseInstanceId.m */, ); - name = TextInput; - path = TextInput; + name = instanceid; + path = RNFirebase/instanceid; sourceTree = ""; }; - ABD5AB3B3750E40F95CB957B0E21CA15 /* UMConstantsInterface */ = { + AEA6FA688340109038932B764EE98B7A /* Pod */ = { isa = PBXGroup; children = ( - A2BB4A0544ACABAB39F55C9B4DC418F1 /* UMConstantsInterface.h */, - 0277853A137F34F9C5C0831B3D50330F /* Pod */, - 6C517F5AE5A03AAEADD9CBE51FB6E0D2 /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; - sourceTree = ""; - }; - AD2FA45F1B35CDA794A4D46F1DFC95E4 /* Surface */ = { - isa = PBXGroup; - children = ( - 4575FF1293FEB3125B895E2A0DA0FD7B /* RCTSurface.h */, - 37B7696826AB43902263D71479D95B63 /* RCTSurface.mm */, - E3E6A1475FA0286C2069129BE72401FE /* RCTSurfaceDelegate.h */, - 40C8CDF7DDF4D4317E4FB9A090B13B2A /* RCTSurfaceRootShadowView.h */, - DC038EAD706B8803534A159BF2D184F0 /* RCTSurfaceRootShadowView.m */, - 233FECEF1AAAE50F2AE5315510F92514 /* RCTSurfaceRootShadowViewDelegate.h */, - 488480EAD543AFDD806FE0620D2A8B9A /* RCTSurfaceRootView.h */, - 124B50748AC829D4F462CD6D1806C564 /* RCTSurfaceRootView.mm */, - E0BC4658ED68247F4D86F89624EC6C18 /* RCTSurfaceStage.h */, - 4BE8E6275C59B97B8ABD3F43F99AF6C8 /* RCTSurfaceStage.m */, - C8FECFA964F448691E08DBF24527F38B /* RCTSurfaceView.h */, - 49EE0D4AA6ECCB30D86E884EBB2E7FEA /* RCTSurfaceView.mm */, - CA9AFC587C2D554D3295F5586D669DF8 /* RCTSurfaceView+Internal.h */, - 2DD1AED08B9659E6582CEAF0363779D2 /* SurfaceHostingView */, - ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - ADAEB9A1C92C89BCB5A904B84782EC9C /* bugsnag-cocoa */ = { - isa = PBXGroup; - children = ( - 91FA45A16A71185F42327D2AA3AE9A3A /* Source */, - ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; - sourceTree = ""; - }; - AFE75C3A25D721808449B8B69DD04E16 /* Pod */ = { - isa = PBXGroup; - children = ( - E4E7F067F5AF42C063095057CB7F3A45 /* React-RCTVibration.podspec */, + 96C8E9B45F1A4403E312C5D174F9759F /* LICENSE */, + C328C8E28D895F9C4F0DE6909F21C432 /* react-native-jitsi-meet.podspec */, + 81C07706C138A072DE46E36D91745D08 /* README.md */, ); name = Pod; sourceTree = ""; }; - B09B1D032D62946A4FC9C721846F384F /* rn-fetch-blob */ = { + AEEB2CA83104863944BBD998B06CAF88 /* Support Files */ = { isa = PBXGroup; children = ( - 6B0DF453C24E692E4F8226C5A42A08FB /* IOS7Polyfill.h */, - 3BB8D1658E6620DC5BD8F056364B9CAD /* RNFetchBlobConst.h */, - DF625B9FFD7CA277275930691C3AB5F2 /* RNFetchBlobConst.m */, - 47F3DD333F04504A9B36039EB3EBC91E /* RNFetchBlobFS.h */, - 4083DC5D6BEC378CED9B623819ED172A /* RNFetchBlobFS.m */, - BF8953B11CC5C871E31B1265D3E25346 /* RNFetchBlobNetwork.h */, - 809C97FBE2B7346EB069300DC64893C5 /* RNFetchBlobNetwork.m */, - 2C969BCCC29425F18EE53652B5D8706F /* RNFetchBlobProgress.h */, - 6A9B116DF69ECF6ACD623B9630FD7F1F /* RNFetchBlobProgress.m */, - 7BEC8F33025EEFC8AD46D997458C4839 /* RNFetchBlobReqBuilder.h */, - D428A5F89B83BAC3FD6FC10F08524F4F /* RNFetchBlobReqBuilder.m */, - 1879999503453BFC58A6601D7FAA72B5 /* RNFetchBlobRequest.h */, - B7502A35843D4D02AE02AA4D6FCBEC4D /* RNFetchBlobRequest.m */, - 6CAD6E5F63F068421E0A82826BC0EBA4 /* Pod */, - 82427D4DB5EF92D59620DBEB6830FF7F /* RNFetchBlob */, - 207F66EE9B0DFCE4CAF9DD3E91371E64 /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - B0FC10F5EE32C328DEF931F9DB7ABF90 /* Support Files */ = { - isa = PBXGroup; - children = ( - DF132347C29A84EF484351CF932FA858 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */, - 7EE23C3E92A145C8608B385EAD04D34D /* RNImageCropPicker-dummy.m */, - 5EDBA507EA30949A1594DB294BB7731A /* RNImageCropPicker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; - sourceTree = ""; - }; - B12C4BAC2F9FFE423EBEACA4D7F304BE /* Support Files */ = { - isa = PBXGroup; - children = ( - DA744873B7F2AC32520D0FD4D5055112 /* UMTaskManagerInterface.xcconfig */, + 4AD863146F6A048F2CB31FC7ECEB172B /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; + AF818D91507CAA809F953816FBF7AD56 /* UMImageLoaderInterface */ = { + isa = PBXGroup; + children = ( + 56B58B9551FA51A9CDCC4FB372283DD3 /* UMImageLoaderInterface.h */, + 9BC733B84D06D7CCEBD3A4D1AF49EF0C /* Pod */, + CDE50CA5003CA16EE29FC71C2BA00325 /* Support Files */, + ); + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; + sourceTree = ""; + }; + B013EEC2E72418E46708F990F3E08FEF /* Support Files */ = { + isa = PBXGroup; + children = ( + 66225A64B113B885CB93457885C99D2E /* UMFontInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + sourceTree = ""; + }; + B080BD46DCE013EA6994906E5D1F7D8B /* react-native-video */ = { + isa = PBXGroup; + children = ( + 578522262EB1C4C535B53649B8EB9FB9 /* Pod */, + 6D0ED0DCF6E48C33CCE0A6EC2899F3E7 /* Support Files */, + 660DA62D768E6A021365D37A32121F80 /* Video */, + ); + name = "react-native-video"; + path = "../../node_modules/react-native-video"; + sourceTree = ""; + }; + B0A8CCD6366687B5EBC58EF1556D6BE9 /* Pod */ = { + isa = PBXGroup; + children = ( + 7A0EC15C85E305B97646DE0BDBA48E82 /* React-jsiexecutor.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + B169B0B4B3EAA7F31BC7CB986D4679E0 /* Pod */ = { + isa = PBXGroup; + children = ( + F906E75080AC43F9EEF840D179B85172 /* KeyCommands.podspec */, + 2EAD353FE1795896B59DAE1DD2E5265E /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + B18E513A36DF49E83E1662C4FF105BA1 /* BaseText */ = { + isa = PBXGroup; + children = ( + A9E69C7745B00C2AE132199BBC552222 /* RCTBaseTextShadowView.h */, + 2D0FDDDE6DADDFB9DCE1C1EA37EF3B99 /* RCTBaseTextViewManager.h */, + ); + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + B1B199D315F03BE02E68ABC309892F12 /* Pod */ = { + isa = PBXGroup; + children = ( + ABB41883201E8A3CC2CF1F56082324C9 /* React-cxxreact.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + B1DAA59EE539AAA07E44CF7B04FBE736 /* Pod */ = { + isa = PBXGroup; + children = ( + 666797620E5FD08F857BB55E0970ADC2 /* React-jsinspector.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + B1EA4ECAE8B4134EB455CD6B64445675 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + 338F84E87C6E68BB0DADBBB5CDED7DFB /* EXPermissions.h */, + 4FAA02D5F6A5047F1C7508C44AB0B027 /* EXPermissions.m */, + CB92E887D5F8CDB36C7CAA9B1D752F2E /* EXReactNativeUserNotificationCenterProxy.h */, + 521A5AA4A893656801E1A13C626B13B9 /* EXReactNativeUserNotificationCenterProxy.m */, + 3147C0EA09B0BE6E5ABEB7D28CB19089 /* Pod */, + E08BBF560FA317D4F07D9B0393BE7C20 /* Requesters */, + FB6E32135CA3501DC7F95BE13886F809 /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; B2951A464D62F689D3C6044C7F73302B /* Frameworks */ = { isa = PBXGroup; children = ( @@ -11552,152 +11747,131 @@ name = Frameworks; sourceTree = ""; }; - B29DE9FCCC737C3E1BFD4F3B716A81EA /* Development Pods */ = { + B2F83BB50EEC9E67B09E24630565A87C /* Pod */ = { isa = PBXGroup; children = ( - 82A012E9979AE498413DA70862AB6DFF /* BugsnagReactNative */, - 0D0AD3655418022438CEF1B152B5381E /* EXAV */, - 6D7697A150FDA36C16E8D3A38337E1E1 /* EXConstants */, - 957EC19CCA8F674A2321D3B461A53A95 /* EXFileSystem */, - 42BFB295E0CF8B1595BA60D8B0DDBA0F /* EXHaptics */, - 9C67426BBFA5213CE185322D72CC433E /* EXImageLoader */, - 81C0870E49C2C1C6FCC73D1E4974A315 /* EXLocalAuthentication */, - 5D8A542AB9C7E0F72D9F10DF9CB9C7F1 /* EXPermissions */, - 7608AB024D1633872B42272B5E1F84FE /* EXWebBrowser */, - 06DA4245F4026EFCD52E35238DDAB908 /* FBLazyVector */, - 6D8A7CB344ECF80DB5110C18F436E842 /* FBReactNativeSpec */, - 29CB50E8CC69F4BB4048F2BB2B2F3823 /* KeyCommands */, - D7E1367DC02B906F7E6233718B617C29 /* RCTRequired */, - 968D1905EC986564B4FDF60599DC3F5C /* RCTTypeSafety */, - E1EF58544C1B364455464CE8173BBB43 /* React */, - 49DFB9D678A577EA84F92F9B365E3781 /* React-Core */, - F36B138CC8C6F856C9223C8DD70A9FAE /* React-CoreModules */, - 2F7690AE1FEF9B42F41E1F8F10D10735 /* React-cxxreact */, - C2699D76DBF367A07940914A73C27C56 /* React-jsi */, - 5325256D86BBD3F06F7B2A8D8CCEF5CF /* React-jsiexecutor */, - 0E7C726891F7E52D63E98B208261E36F /* React-jsinspector */, - 9A28FEB2FDDC6A6C50DD49E0728E987E /* react-native-appearance */, - 4690AAA8E351FE010BF9ADAE16FAA138 /* react-native-background-timer */, - 47B93930C148F7CF326BE7A02DA8C1B6 /* react-native-cameraroll */, - 9B8498762E7C4BFA0793E1B469FD23D0 /* react-native-document-picker */, - 9AD99CA97E87C898F621A96AF1CA0BCB /* react-native-jitsi-meet */, - FD5A082D0D2E340EEE411963B287F13E /* react-native-keyboard-input */, - 377C1100EC2B6658E5E10ED244F6F29F /* react-native-keyboard-tracking-view */, - D7754577A93FC5559AB6AB18E3CB980D /* react-native-notifications */, - AA7EF108B1AF468547A5017D68DE1F7B /* react-native-orientation-locker */, - 03E7D96C0B8726614C4C38EE7E118169 /* react-native-slider */, - 1EBAC964314CB542BDFBB1408A0EC70B /* react-native-video */, - EE41C57A7D32391E9ADD91A3A93F5666 /* react-native-webview */, - 8BC7B8D1E693EF5D8C8C84492C8695E5 /* React-RCTActionSheet */, - 4E13CFBCB0C4E5403AF5C72A29500C9F /* React-RCTAnimation */, - E98D67EA700C0206C36596B528DBCB8C /* React-RCTBlob */, - C8F1B7D0CBF30214472A56173889DEBF /* React-RCTImage */, - 2E25BD9D4FCAAE923B7BFF6C6A7D6DD2 /* React-RCTLinking */, - 97A3B90C8B725260DEF9C1EA02C502A0 /* React-RCTNetwork */, - F0327A6003E18CA9DA6F61303BDB3AC5 /* React-RCTSettings */, - 38E66E7C00D8504B205C563F363DD3DE /* React-RCTText */, - 824FCB05728F40A7EDB0DC578520661F /* React-RCTVibration */, - 767F2EBF981E8690469F1A8949CD95B2 /* ReactCommon */, - 16A8E7E73DC968A6084B1CC63E8D9EA4 /* ReactNativeART */, - B860D21F88BC75F1D273CDEB1130F71D /* rn-extensions-share */, - B09B1D032D62946A4FC9C721846F384F /* rn-fetch-blob */, - 77D12721DE5C7D86E49DFE81A82BCC48 /* RNAudio */, - 65D96D29A12911140E7B564778F069B2 /* RNBootSplash */, - A7BFC0F36DEB3F36F0FC94E319B441D0 /* RNDateTimePicker */, - 7ED1A83997F52CD057EE255451E9B4B4 /* RNDeviceInfo */, - 69A4802389093D8619F156274B3BB3A5 /* RNFastImage */, - 90FCB415BED4848548B3B66B60124569 /* RNFirebase */, - 784060C1F46AC7777BADE925641CCD77 /* RNGestureHandler */, - 59E05BEBD2D2251D2BFCDAE07C8F9A00 /* RNImageCropPicker */, - 216861150F80218EB8A430B06D640529 /* RNLocalize */, - 9191BDCF2CCBF32FF82A40EB7A711AA0 /* RNReanimated */, - 11C372AE7D76F21C17C5164D78F75EB1 /* RNRootView */, - C70AB892FD4BF69417F7CEB17715C03C /* RNScreens */, - 87F3033FCEAEAD21E9AD72258A4B448A /* RNUserDefaults */, - 6E3D9D081618F355E89BC08740B794C1 /* RNVectorIcons */, - F58E2BA46D9BE7AF7E944D70CB1A6DB4 /* UMAppLoader */, - A19A1CAEC2DC473E9CBBBFB88B53E2E2 /* UMBarCodeScannerInterface */, - 481F7DDC3704037F2C749AFF5137CDDD /* UMCameraInterface */, - ABD5AB3B3750E40F95CB957B0E21CA15 /* UMConstantsInterface */, - C6D3E90556C3FDA79928B553D2FF2DFD /* UMCore */, - 247345CA84B10AA5E3AB4E69734A154A /* UMFaceDetectorInterface */, - 8E9C320C4E8F816CA2D95CD6E65F4BF3 /* UMFileSystemInterface */, - 30F75404939D1A08E87AF042E94679A4 /* UMFontInterface */, - 9F2995718F449AA02D637224A2AB062F /* UMImageLoaderInterface */, - CD4E4159305A2E31809C3EF0588E1AED /* UMPermissionsInterface */, - 0A3E08B3A084D45CA8AF3B79FEBFF8C3 /* UMReactNativeAdapter */, - 601D81E7DB6D1A63E552FA48F9818A73 /* UMSensorsInterface */, - EF9BFAB2D3C8DA74B8320075B82B5445 /* UMTaskManagerInterface */, - 5C363871E886613C4F5656188959E6D5 /* Yoga */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - B3042851285834DAA75A12538B0233F1 /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - 5D06D7D56F20F828FAB576DD995736F4 /* RCTReconnectingWebSocket.h */, - 3AAF20889079680A79DCBEB09D19E881 /* RCTReconnectingWebSocket.m */, - 5160329ADA5B68E17C053672412941D6 /* RCTSRWebSocket.h */, - F50C39B607D9C89E5365FAE973EEFBFB /* RCTSRWebSocket.m */, - F3163268C537ADBAD8FD410E13BD2103 /* RCTWebSocketExecutor.h */, - 42E0AF342E91FEF4D7EA5F7325F5828F /* RCTWebSocketExecutor.m */, - AA6B1E1FA365A5D4A33FF54B14068FCF /* RCTWebSocketModule.h */, - BC53B760117C17C307A13435465215B7 /* RCTWebSocketModule.m */, - ); - name = RCTWebSocket; - sourceTree = ""; - }; - B4F6A7FA053B075A8363A7AD9D168C94 /* Pod */ = { - isa = PBXGroup; - children = ( - 26D64362C346777E7673F5F179426F93 /* React-jsiexecutor.podspec */, + 31E67ADA86F84C29CFD8C1E191495AB4 /* LICENSE */, + 85E61EF1CAA7BC61A21C0B1E6B0A2C99 /* react-native-keyboard-input.podspec */, + 94F462DE1645CA25C763B1B3941BE7AC /* README.md */, ); name = Pod; sourceTree = ""; }; - B788E545FAED88B23C64450C6955910A /* RawText */ = { + B41AD85C736A67EDC3B69A230FE54B55 /* Pod */ = { isa = PBXGroup; children = ( - 56C4203FB922C2EAEC70E9EF0E3F2ACA /* RCTRawTextShadowView.h */, - B3147B54DEFE43FB858A7D64F5171C34 /* RCTRawTextViewManager.h */, + C069CF07BD46D5DF39A5C365D865B694 /* LICENSE */, + F5DA0C190F424D4BFF3E077DBEACAA05 /* README.md */, + CC47743ACD98AF0A478D0396FC3DC1F1 /* RNGestureHandler.podspec */, ); - name = RawText; - path = Libraries/Text/RawText; + name = Pod; sourceTree = ""; }; - B860D21F88BC75F1D273CDEB1130F71D /* rn-extensions-share */ = { + B421EB9129064FF53BEDB58DDD04C3FE /* internal */ = { isa = PBXGroup; children = ( - 3FD87BD5009369711A2F79C3FE3DAFC6 /* ReactNativeShareExtension.h */, - D88F548D375DB8B478A3622B94B83072 /* ReactNativeShareExtension.m */, - 7BB8B5503AC95FE21EF47B1C5153752F /* Pod */, - F7713C2064D6509CD159244C4E39E9ED /* Support Files */, + 1FC04104E47C544DB34F84830707AAC2 /* experiments.cpp */, + C6949F425F809E697B92D53324097255 /* experiments.h */, + 26A3BE22B42273D384E66252BEA79D8B /* experiments-inl.h */, ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; + name = internal; + path = yoga/internal; sourceTree = ""; }; - B898FF0674107D7C7CFEEDCFBF7A63A5 /* admob */ = { + B48D2257937761E5FE2500431B12CBCC /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 933526594E2B49970B93C4331D304EB4 /* BannerComponent.h */, - 6838A85B8F9A94BEA6F282886E2B333E /* BannerComponent.m */, - AD2713659D9174B0454470119CFAA6D8 /* NativeExpressComponent.h */, - D322A8477E1753B864B19AED1740C45E /* NativeExpressComponent.m */, - D629257FE572D69ADAC74927CF7D729B /* RNFirebaseAdMob.h */, - 60978B2DFAAE74E084D487E2882749B4 /* RNFirebaseAdMob.m */, - C958BEB0EE0CA981708C7227698F7D9B /* RNFirebaseAdMobBannerManager.h */, - CDBD1952FFD5475618E10B078F85101C /* RNFirebaseAdMobBannerManager.m */, - A2A0865FC59C46533EFBE99829F2C6E2 /* RNFirebaseAdMobInterstitial.h */, - DE6B237DE91DF63A64ABC835E1448A62 /* RNFirebaseAdMobInterstitial.m */, - 8FCD67CABEA60260ACB5A3DE0C6E76F4 /* RNFirebaseAdMobNativeExpressManager.h */, - 45EA2FFCA9384FA8754DA17B8016F72B /* RNFirebaseAdMobNativeExpressManager.m */, - 770C7A2EFBD59228C347732E76C01546 /* RNFirebaseAdMobRewardedVideo.h */, - F524D386BD08B9CEE9E5CAC22FFEFE24 /* RNFirebaseAdMobRewardedVideo.m */, + 1407C31D488B436CE7D25ABA3655F8AF /* UMFaceDetectorManager.h */, + DFB6FFCFF894659F5B8F9D1D3ABDF8E4 /* UMFaceDetectorManagerProvider.h */, + EE91DBDB82A9255B24B926C5F6F6382A /* Pod */, + B63CBA2D14FA43FBBE3B3AB7F0836BBA /* Support Files */, ); - name = admob; - path = RNFirebase/admob; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + B4BA5A7D3A285C295FC714D53CA63EF7 /* UMAppLoader */ = { + isa = PBXGroup; + children = ( + 31DA3E058E22523E63E46E6DAE2686DF /* UMAppLoaderProvider.h */, + 03E686C3BE8C18BEA7F33C8E9CDE322F /* UMAppLoaderProvider.m */, + 6575610C03823B74E1916E412F79FF7D /* Interfaces */, + 4A9D2D1C1F2FF930A98750A775EB9ABE /* Pod */, + 4395C58E2EFC71131B5CD962D628918C /* Support Files */, + ); + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; + sourceTree = ""; + }; + B518BCDDD25125B3F4089187BFE61F13 /* Pod */ = { + isa = PBXGroup; + children = ( + EFFEF6DF4D7C0F5DD065B851FA5A2B6E /* LICENSE */, + BA5A619F1C49FDBF9EA3FC4972CAF6C9 /* react-native-webview.podspec */, + 2B3BA221965BAED23220AA0DA98B8D1C /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + B5619A0A2D2C31B432B3D6F00ED04042 /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + 146C58D18BBDA5F818E141414F4E9AB1 /* CoreModulesPlugins.h */, + D7069CBFBBA93224DD546702CA3B3972 /* RCTExceptionsManager.h */, + 1C5D33539C2A8FF785C0187DA6093C2C /* RCTImageEditingManager.h */, + 1D9F7B76B1974AAA9B7CEEF163314335 /* RCTImageLoader.h */, + C5C7F21ADAFE55C6ED0770ADDEADDE82 /* RCTImageStoreManager.h */, + 2B2BC3743749E4723E1B0BBB8F1076E2 /* RCTPlatform.h */, + ); + name = CoreModulesHeaders; + sourceTree = ""; + }; + B60228CCF0B40AC453D9371ED50294A5 /* jsi */ = { + isa = PBXGroup; + children = ( + 6196C1CFA713FD4566F941812157485B /* decorator.h */, + 7332046FA74AE36A09C3F3169C47AEC5 /* instrumentation.h */, + 9CBF95354230B098AF82F3AFE8D7A231 /* jsi.cpp */, + C9A176727CA7B50D4B52C5E33F84CC32 /* jsi.h */, + A12B459471E0A29EFFFF6351E9649B3D /* jsi-inl.h */, + 8916CA19D423F5B524882A6E43E80129 /* JSIDynamic.cpp */, + F655D94492FC6ECBA658C4771954484F /* JSIDynamic.h */, + 7DB5839020C0E34BAE29908EAF69DADB /* jsilib.h */, + 440EDB384D2390C01E177C6F0DCD8F34 /* jsilib-posix.cpp */, + 632B2A5DCD9ADC33532198F54AC838AE /* jsilib-windows.cpp */, + FAF37906744BE85E468C61D67DF913A6 /* threadsafe.h */, + ); + name = jsi; + path = jsi; + sourceTree = ""; + }; + B63CBA2D14FA43FBBE3B3AB7F0836BBA /* Support Files */ = { + isa = PBXGroup; + children = ( + 198EAA62B8F64DF0D48E66C6E43F8CDE /* UMFaceDetectorInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + sourceTree = ""; + }; + B88F5290BD2D664AD6351F550E7F59CD /* RCTActionSheetHeaders */ = { + isa = PBXGroup; + children = ( + 4B2AD9370C384FA38E08963F526E83E5 /* RCTActionSheetManager.h */, + ); + name = RCTActionSheetHeaders; + sourceTree = ""; + }; + B89D422C0A1EFEBE5EE1DDA8614C3D0A /* RNUserDefaults */ = { + isa = PBXGroup; + children = ( + C4A578F4C1550DF241581CCA328A7738 /* RNUserDefaults.h */, + B5A86A4A16B1C1402D8BE800134AAB09 /* RNUserDefaults.m */, + F5592DA778AFDDFC6B6CA41C4B8EBCAB /* Pod */, + 7FE3146D7DC65482251E2D1F9C57345A /* Support Files */, + ); + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; sourceTree = ""; }; B8FD7B66934E4234AD5AB2D5EE791A85 /* Support Files */ = { @@ -11711,23 +11885,108 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - B93E696AD81C6E78001C38538C32EAB2 /* Pod */ = { + B9829CBE705386AF70C5DF1AF865B7E5 /* Support Files */ = { isa = PBXGroup; children = ( - 2D6463879DFA88F1524A53FDFB525074 /* EXHaptics.podspec */, + F3C50A681DC3AE3B5EBDF51981415082 /* RNScreens.xcconfig */, + DF8D409E21046D82CC1AFDBFBC03C909 /* RNScreens-dummy.m */, + ECED4E94D8743FE117E124B2C3F4B6DA /* RNScreens-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; + BA1F697DA9FA805A4512628A142338D3 /* RNFastImage */ = { + isa = PBXGroup; + children = ( + BD03A4720E8C57AC0FAB9BBAB8BEB17B /* FFFastImageSource.h */, + 49267174E3D8CE90A23C692B8943907E /* FFFastImageSource.m */, + 5FFB615E00F80058067B4367CFF4B854 /* FFFastImageView.h */, + 31BFF5E1B9772471B3EE81AC70EB6B60 /* FFFastImageView.m */, + 82DA8005621A1BA989561187D8DC15D8 /* FFFastImageViewManager.h */, + 29B5AD1271E80498E631E7D678848663 /* FFFastImageViewManager.m */, + 8FF894F780FAEE5B1D80CCD47E9BE2A5 /* RCTConvert+FFFastImage.h */, + 4DBB8BA0CF8D842984247D297D6F54F7 /* RCTConvert+FFFastImage.m */, + 399325743B607CA9A7DCD17BFC3C0AB1 /* Pod */, + 9EE46CC266285019843699CB284F7DE3 /* Support Files */, + ); + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; + sourceTree = ""; + }; + BB7AAFADE7FCE132FF935919805FBB15 /* storage */ = { + isa = PBXGroup; + children = ( + 938DCBE6FC774E699F3E20271277E1E3 /* RNFirebaseStorage.h */, + 40A60FEF8FA0A9AE1FF033396FE7AE5A /* RNFirebaseStorage.m */, + ); + name = storage; + path = RNFirebase/storage; + sourceTree = ""; + }; + BB7B9DFF924481DAA326B20F28C649E8 /* Pod */ = { + isa = PBXGroup; + children = ( + 1A4B1EE2AA797F0D3A28D9CBF4822DA5 /* README.md */, + DC8504087EFA316D2D61345745FCCBA9 /* RNRootView.podspec */, ); name = Pod; sourceTree = ""; }; - B9F5D049D13D4CF55A254856B69E82C8 /* Support Files */ = { + BC60BF9D7D9E26FEB2706D14C2B7B79D /* Support Files */ = { isa = PBXGroup; children = ( - 2CB56EB5913B806DD6E096F58F4D9FF3 /* EXAV.xcconfig */, - B48EC1054F17F4B28C2DA20FE8DF6D50 /* EXAV-dummy.m */, - 33DE8D9A5ACCF2548B1090773EC7AC38 /* EXAV-prefix.pch */, + 04D0EE4DFCE7A182884E0B2303237CB8 /* EXHaptics.xcconfig */, + 27640CE393B8EBFD0720FE1F5FF97478 /* EXHaptics-dummy.m */, + 071F966DAFF92AC7DA35FDA7C4C26DA0 /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; + sourceTree = ""; + }; + BCC2EAD425E15EED42D1634B82E0AD31 /* Pod */ = { + isa = PBXGroup; + children = ( + DC5799B144077539CE41F191B9AFBC47 /* UMTaskManagerInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BCFE95163A7E786C777F5B657BD6FEB4 /* UMCore */ = { + isa = PBXGroup; + children = ( + DC1A06E88A8905EB529EC7DEEA2AC259 /* UMAppDelegateWrapper.h */, + 6DCE41CF26187E79129BAC59D68A588B /* UMAppDelegateWrapper.m */, + 9ABF5B669E0A008FEB83AA8AE729103B /* UMDefines.h */, + 9DB4076029771C2FC98E33FE2F8145A0 /* UMErrorCodes.h */, + 6AF067EE13D82C357CD92364DBFAEAEA /* UMErrorCodes.m */, + 4C4314A41F00C374FD70071D7D67FA6C /* UMExportedModule.h */, + 1804310A894359659E84418A06AF5AE6 /* UMExportedModule.m */, + 5CF1689796DF0258F63C2C60A4D2FF62 /* UMSingletonModule.h */, + E008D2B5EB7D0C472E16FF196068F7A6 /* UMSingletonModule.m */, + 78E9A448E060A9F0046C27D9089DA693 /* UMUtilities.h */, + 49CDE45A182450887E0E03DC524E1403 /* UMUtilities.m */, + 0BA94DB98B2B42BD865EE3F7D55B9D7D /* UMViewManager.h */, + 124015FC0C273293187C1E07EA396EB2 /* UMViewManager.m */, + 0319E6564791F133D26A9AA775DB3745 /* Pod */, + 4DB762C990E52D93A13F992E3D6D46EE /* Protocols */, + F1CEA6A9791B8CF9CA873401F500D15C /* Services */, + 51F112367706777B859744A874D1D575 /* Support Files */, + 3D0185EB56872593E9B35E51103909CA /* UMModuleRegistry */, + 2D762D739E2ECD37DF80F7B51273EBCF /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + BD1D760A1B30D46F57553A5526B48B2F /* BaseText */ = { + isa = PBXGroup; + children = ( + BDF4D001E9025103893D210B0C3371B8 /* RCTBaseTextShadowView.m */, + 476F22EF3734CA3C04E87AD8A00D2EA5 /* RCTBaseTextViewManager.m */, + ); + name = BaseText; + path = BaseText; sourceTree = ""; }; BD2D1D74DC7B94DF4049B5D3BE7A4B0E /* Support Files */ = { @@ -11762,6 +12021,17 @@ path = libwebp; sourceTree = ""; }; + BE313D2D093AB6287BA183C8B28FEFB8 /* Support Files */ = { + isa = PBXGroup; + children = ( + DD6E449B1111312DD65DBA1BC6FFE345 /* RNVectorIcons.xcconfig */, + 1FE30ED494D29C7F4C4CC97D2247C47E /* RNVectorIcons-dummy.m */, + EA0485E6A1E80FEBE4DE56BCB1DA9DF1 /* RNVectorIcons-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + sourceTree = ""; + }; BE81D7E783097ABE8C9B3F942F42FC1F /* Folly */ = { isa = PBXGroup; children = ( @@ -11803,92 +12073,39 @@ name = decode; sourceTree = ""; }; - BF0239A9FB18298116C3B7E18AF61725 /* Support Files */ = { + BFA2871F8180B3AE485639B3BBCD5C90 /* Pod */ = { isa = PBXGroup; children = ( - 2DF80B83CB74EB8528D11F700867D9EC /* Yoga.xcconfig */, - 7B4AF1BC881ABF078126D2DE6D9EDC0E /* Yoga-dummy.m */, - 152883F696C0BA3782146C4A42FF82F9 /* Yoga-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - BF186C75EA06E6813F1FBAC8C998D99D /* Handlers */ = { - isa = PBXGroup; - children = ( - AE263565EA9A6623E8098BDDC664794C /* RNFlingHandler.h */, - B2FFA88F32071559CBD53527B42B8AF9 /* RNFlingHandler.m */, - 54002BF23C709D0073AEFC546E5E45E9 /* RNForceTouchHandler.h */, - AA7A8DA70DD67769DD72D97B9581CC98 /* RNForceTouchHandler.m */, - 215284327ECF7BC0EC9C01C23DA52960 /* RNLongPressHandler.h */, - C8A1AD0ABD4B51F526A2B68A27A82E6E /* RNLongPressHandler.m */, - 2A59767FF3F8EBC30C89F5828D15A70F /* RNNativeViewHandler.h */, - AD56F36405180E5DBE926AB9B315D565 /* RNNativeViewHandler.m */, - B31E1FEB4913F38A62E60358EB9BCE37 /* RNPanHandler.h */, - 3C0F9B2DA9AFD56D2F2E9B9C75991BF6 /* RNPanHandler.m */, - 280D196B50B06623BAC88F7C17580D75 /* RNPinchHandler.h */, - 19B7DC0C36E8788004AC04F6BE858392 /* RNPinchHandler.m */, - 9D68A6D7E67D45B0196E2F6716B6A190 /* RNRotationHandler.h */, - 48FB58C1E8633B6CA3292D48F848E3F3 /* RNRotationHandler.m */, - 5DD3CB396B1E0BC01001BDFCBB89C6BD /* RNTapHandler.h */, - 1BDD5D8C1862DCB74794EE23E2C9D4D0 /* RNTapHandler.m */, - ); - name = Handlers; - path = ios/Handlers; - sourceTree = ""; - }; - C017DB12561A783826FF948A1F121C3D /* Singleline */ = { - isa = PBXGroup; - children = ( - 978DA240A5DA324CB45468880D17880F /* RCTSinglelineTextInputView.m */, - 88DF8989F874081F1E477ACCBD40F34C /* RCTSinglelineTextInputViewManager.m */, - 1C258ACC2E0DC8D657144811C2C0F840 /* RCTUITextField.m */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - C0AC1B78ED9785E3BB7A6DAA243F0543 /* Support Files */ = { - isa = PBXGroup; - children = ( - D65ED7023ED69D130708EF8FEC3925FA /* React-jsiexecutor.xcconfig */, - 3CF969E9497D5EEA00712AC408040AF6 /* React-jsiexecutor-dummy.m */, - 54008DE5511230DD7D05049D49C3B1B3 /* React-jsiexecutor-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = ""; - }; - C2699D76DBF367A07940914A73C27C56 /* React-jsi */ = { - isa = PBXGroup; - children = ( - D63308F085833F5B80CFD4C19FC1B4DA /* JSCRuntime.cpp */, - 12D0680A4FB4EE6DAC0C2C1E7E07543D /* JSCRuntime.h */, - 433AAF23E6B69256BECA8C24F639F2F5 /* jsi */, - C300B1AF29EB4021A6FBE1F9F6F46AC5 /* Pod */, - 50DAF21F75BA46F0CFF1BF4B8238D87D /* Support Files */, - ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; - sourceTree = ""; - }; - C300B1AF29EB4021A6FBE1F9F6F46AC5 /* Pod */ = { - isa = PBXGroup; - children = ( - 8EE70BC3A8197176114E7EABB6218665 /* React-jsi.podspec */, + A324ED0233FEFAB5BE61641A9FF75356 /* LICENSE */, + A00E1B4663CB53D2F2081C13D502043F /* README.md */, + B1A62F93CC9B20936EF9F1DC90F5FB51 /* RNAudio.podspec */, ); name = Pod; sourceTree = ""; }; - C3205B7DE975C5140E227DACC552CF13 /* CxxUtils */ = { + C3C3DEB68781FDAE94C180AB7C7C51C9 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - 148A1C8D6353A1FF05E6C4F40DF9FE8A /* RCTFollyConvert.h */, - 83448ADF44CF1911CCE4D8AAB2164880 /* RCTFollyConvert.mm */, + 40ADCED911CCA78FD27A1A816B6F454B /* RCTDataRequestHandler.h */, + 6F17BFC2A2727ED785F3EE65C498A70A /* RCTFileRequestHandler.h */, + 8C821F0EA2DD176D9BE4559FDAA64B9E /* RCTHTTPRequestHandler.h */, + EC9A8DC2A217B85BB9D423A9AF7F4B4E /* RCTNetInfo.h */, + 8DDE38DBD2FEC56DA009FF4C62EA5E86 /* RCTNetworking.h */, + 7FE59F23A4785078B898F9922FDAE818 /* RCTNetworkTask.h */, ); - name = CxxUtils; - path = React/CxxUtils; + name = RCTNetworkHeaders; + sourceTree = ""; + }; + C490254DCEAA8C2FCF1223288A35B7D6 /* RCTCustomInputController */ = { + isa = PBXGroup; + children = ( + 8621F09AEE97454E59022B77E8F3016C /* RCTCustomInputController.h */, + B63ADF446513C372AA91EA2AEB0CE60A /* RCTCustomInputController.m */, + C48544E8F498EEAB08419F5930C80608 /* RCTCustomKeyboardViewController.h */, + 49E08BE2FC87EC1981FC005AA338EF58 /* RCTCustomKeyboardViewController.m */, + ); + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; C5AC19D7A9D457167D564B1E75C41A57 /* encode */ = { @@ -11898,109 +12115,25 @@ name = encode; sourceTree = ""; }; - C5C5F26E96193E0BC6081DC7A572DF0C /* Core */ = { + C61BEABF86864AE60155BECFA1027069 /* Pod */ = { isa = PBXGroup; children = ( + C1B194FC9EC7A62AA72AEB4028438BAC /* LICENSE */, + C326DC9912A1507696EC77C2CC21605C /* README.md */, + 351BC2A0F9190241EC059BE6CF0C2659 /* RNLocalize.podspec */, ); - name = Core; + name = Pod; sourceTree = ""; }; - C61F00511035F3B8FF833E7B8B63B34A /* Support Files */ = { + C73999ADCC8613B2E501B3EDB3E4E61B /* Singleline */ = { isa = PBXGroup; children = ( - 189247C2BB52027FFA0C7C6710FE6764 /* React-CoreModules.xcconfig */, - B140EBBBDF37F8A960B5827F2CB7B09E /* React-CoreModules-dummy.m */, - 8F373EF97D2F667F5BA156702ACBEE0F /* React-CoreModules-prefix.pch */, + 7E09C6C043E69EF1D303B9D0A9555B27 /* RCTSinglelineTextInputView.h */, + 4EDEC62F4C614B147414320095E07BD1 /* RCTSinglelineTextInputViewManager.h */, + 85FF3B13F3C07DA68782FA821CDD28A0 /* RCTUITextField.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; - sourceTree = ""; - }; - C6D3E90556C3FDA79928B553D2FF2DFD /* UMCore */ = { - isa = PBXGroup; - children = ( - DCC990FEA4CF0D91B5AA704511B9A366 /* UMAppDelegateWrapper.h */, - 14A8661687FD61C71A893E1752F079E7 /* UMAppDelegateWrapper.m */, - 41C564A2EAAA42E538E570410F078D09 /* UMDefines.h */, - B8913B693F912E6D545EDCBEB75161E5 /* UMErrorCodes.h */, - CE5B2A1B6F1EFD38BF8C4D5052784952 /* UMErrorCodes.m */, - 0018DB3096F92D334478C93DC9F0224C /* UMExportedModule.h */, - FE36AD354A26A507F517A0A4F4B1692A /* UMExportedModule.m */, - 89FCAA5092C605B11E0AE9CF0E37A25F /* UMSingletonModule.h */, - 3300AF5C29476CE937A000A54DC91A65 /* UMSingletonModule.m */, - 86990969EC135D10A5E2D91C04647541 /* UMUtilities.h */, - DB374EFA51479560B62F10435C12AD7C /* UMUtilities.m */, - 2506D056FF1B5F554E6B1F7F8CA98110 /* UMViewManager.h */, - E879EE624715C69DD9F0F4E2CE434B74 /* UMViewManager.m */, - 9A5EBDA2852FF57826543043675865FB /* Pod */, - 17C4F089BDEDD5172F5587141F514CA7 /* Protocols */, - 754BC65B3E384E70A15C9B89EC311324 /* Services */, - EBC12745279778A882C72416E514E87C /* Support Files */, - 3CE3C357B97965F1EB80E54CA3AE881C /* UMModuleRegistry */, - 4FB4EC3B30CA4BFDE8C9BCA576D389F3 /* UMModuleRegistryProvider */, - ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; - sourceTree = ""; - }; - C70AB892FD4BF69417F7CEB17715C03C /* RNScreens */ = { - isa = PBXGroup; - children = ( - 1F0555768DB0E5A54A2ADB6CC879ED19 /* RNSScreen.h */, - C13C31ECD854DA37DE88AE1C00078DA8 /* RNSScreen.m */, - 16146E7458BB27ED2AAAAFE6755DE00B /* RNSScreenContainer.h */, - A152BFA1C5A859956B6D2415A42FDCA6 /* RNSScreenContainer.m */, - EF91A2BB1EDA2CD251578C0B4ABE65DE /* RNSScreenStack.h */, - 4125B11710991F319C4DB376FBE1CA9F /* RNSScreenStack.m */, - 6AA5EC5DA0AC2A640AD55520734F6D8F /* RNSScreenStackHeaderConfig.h */, - 72C42A5379F7678BC2480A469AE85D1A /* RNSScreenStackHeaderConfig.m */, - 1F9E65A79F95D4FF6189EFD3AAF437FE /* Pod */, - C761206C5F051CCDAB52F74CB26B5A6B /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - C718804C9031CD08FCCE88B1105D910B /* storage */ = { - isa = PBXGroup; - children = ( - 52CA71561A2446043A4E25FC55B9D7F4 /* RNFirebaseStorage.h */, - 39C1FDADC71496F9DD3313658F36CD5F /* RNFirebaseStorage.m */, - ); - name = storage; - path = RNFirebase/storage; - sourceTree = ""; - }; - C761206C5F051CCDAB52F74CB26B5A6B /* Support Files */ = { - isa = PBXGroup; - children = ( - 6B07E156D4BC56BAF650BF430017ADA8 /* RNScreens.xcconfig */, - F75B10ADD795D175038A5C942CC2F902 /* RNScreens-dummy.m */, - FC6ADFB46F1C49C39B89A1605D84EF32 /* RNScreens-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; - C78F7233EE2D4406A69AA0272F01DC28 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9838DD02C421D6A67A4DABE8E5BBD4DE /* RNBootSplash.xcconfig */, - A5783075A6C9B523DDA3C0B60647B0FD /* RNBootSplash-dummy.m */, - A090DCBB0F337EA42C4E3977A9F0B1B0 /* RNBootSplash-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; - sourceTree = ""; - }; - C7B597B80CF849B7979956947F8C4A8E /* Filters */ = { - isa = PBXGroup; - children = ( - CF1DA6CA493E93D7AFA97F5096626F49 /* BSG_KSCrashReportFilter.h */, - 43757FFCC4023081D0E0FA820FE32047 /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; + name = Singleline; + path = Singleline; sourceTree = ""; }; C7D050BE37BEB97CCFF3C328E1D81D8A /* Logger */ = { @@ -12013,35 +12146,18 @@ name = Logger; sourceTree = ""; }; - C8F1B7D0CBF30214472A56173889DEBF /* React-RCTImage */ = { + C8408EF539CD56BAFA27209DB50417CC /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 4DBF282DA8760EFB4100EDA72085C8D0 /* RCTAnimatedImage.m */, - 490B8C7C98FC25E75F19D4B8B135D6F5 /* RCTGIFImageDecoder.m */, - 577553B429DDED8615E5E164CB183A63 /* RCTImageBlurUtils.m */, - 018DA950D2BC6582FBF0875EF15BE036 /* RCTImageCache.m */, - 9452FD50EC910E745BFEA70CD7D7DFC5 /* RCTImageShadowView.m */, - ABB251627EA1EA9F5A808A72F87A62A9 /* RCTImageUtils.m */, - 834EB2958566569C54BB3BDFDCF112CD /* RCTImageView.m */, - 525EB8BBFE9CDE17D718698C8776AD64 /* RCTImageViewManager.m */, - ACE6509B53357A0C5DADE6031CB9CCCB /* RCTLocalAssetImageLoader.m */, - 70088BB7379E97AB2D9E9FF95F92F140 /* RCTResizeMode.m */, - E76502808A9CBAD48934D12CB8CA9BCD /* RCTUIImageViewAnimated.m */, - 8FD3406EFE24F28F50867946EEB4450B /* Pod */, - 4D102FBD7E42969A6E5555EA558F3314 /* Support Files */, + 1733B22FC843BF3F521D0E68073441D4 /* UMPermissionsInterface.h */, + 2B7C9EBBAFDBB553C6D8A0E385B323AF /* UMPermissionsMethodsDelegate.h */, + 1861CB3237A3A379F3104682BEFA38DC /* UMPermissionsMethodsDelegate.m */, + 9B79E4CBAEFC8F202562019D7D31FC1E /* UMUserNotificationCenterProxyInterface.h */, + 2ACE968F224CA303D35EDD6D51A42D29 /* Pod */, + 2430A79B28D89ACD307C0A8D380D83FA /* Support Files */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; - sourceTree = ""; - }; - C93AC788C6BD7BBC749D28E42F88C3EB /* Pod */ = { - isa = PBXGroup; - children = ( - 9A5ABF6A709F9F8B7344A710779D51D8 /* LICENSE */, - 91CBE1B1C314D1D24C75150A144A3BE1 /* README.md */, - B35987451A3EB17624358086304CB840 /* RNDeviceInfo.podspec */, - ); - name = Pod; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; C9762B9B989E3D2E0734F2D20257BA15 /* Support Files */ = { @@ -12053,31 +12169,35 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - CA5B2FB35C804FF0EE7A1DEF3AAB9BC4 /* Pod */ = { + CA514D1C1589381D7174354B84EE73AB /* React-RCTLinking */ = { isa = PBXGroup; children = ( - 4024F08ED7141F641C6D0F5B1CC7C75D /* UMImageLoaderInterface.podspec */, + B6F4F7A1E522E464AD977A65D47474B1 /* RCTLinkingManager.m */, + 1953CF92BBEEA790315DFEA37D783D4C /* Pod */, + 4ECC25D74EBFDC3D87CE6340895629DF /* Support Files */, ); - name = Pod; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; - CB57D8EDCFBC6E588ECFD35966437CF6 /* Pod */ = { + CB034D6746DCA0C8DC813B4427A2E198 /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - 600BF46675EC37CC1E4EB9CAEEF7BCDA /* React-RCTText.podspec */, + B9ECAC6246431F48C0854FF2D09FD29A /* RCTAnimationUtils.h */, + 771A9D2134AF7B8E015FEBC7B9BF9643 /* RCTNativeAnimatedModule.h */, + 283FE1E557C37A7203AD1722FEF8F958 /* RCTNativeAnimatedNodesManager.h */, + 81915EFA870C87D9F74F96BA434DF875 /* Drivers */, + 10F4B34966675F64C96B5B792DF15E6A /* Nodes */, ); - name = Pod; + name = RCTAnimationHeaders; sourceTree = ""; }; - CBF823573C79B7BBCD55B5B21FA365DE /* Support Files */ = { + CB9A6CEAA31FE30A27A54A281BD73641 /* Pod */ = { isa = PBXGroup; children = ( - F2A0626FD5854C9AB571E75A278FE003 /* React-RCTNetwork.xcconfig */, - 04AC24105BA7DC4445C81E39B4B8D8BE /* React-RCTNetwork-dummy.m */, - 3FD7FB0A67FFB3A6571000B0F9EF4FC2 /* React-RCTNetwork-prefix.pch */, + A7F1DC1FC84C2B818AC73674E6A0C94B /* FBLazyVector.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + name = Pod; sourceTree = ""; }; CC2718A0477F08C40D8D833570D6DCF7 /* Support Files */ = { @@ -12089,84 +12209,139 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - CC9E4FEF1978DBDF894BAA50CEB1EB50 /* database */ = { + CD99B22D2BFEFEF56AD5A7F0CB7E3607 /* Pod */ = { isa = PBXGroup; children = ( - 5A6A4F24729B892F09EEE969DB9C3100 /* RNFirebaseDatabase.h */, - 747C66EBF0E1D41E0EB7F66EA1494C98 /* RNFirebaseDatabase.m */, - 56768CE84A6E4F7706E8349354FD227B /* RNFirebaseDatabaseReference.h */, - 743F5E07CF92C6F606DD48A3BCCA1B27 /* RNFirebaseDatabaseReference.m */, + C6DB3BBC2567559A6D100058B4561C0B /* api.md */, + A6953958EF90871F4E7B254C85375FD3 /* LICENSE */, + B73CBC2C687018B3C79029359313931C /* ReactNativeART.podspec */, + E8F3BC229BD0959965AF64757134ABD3 /* README.md */, ); - name = database; - path = RNFirebase/database; + name = Pod; sourceTree = ""; }; - CD4E4159305A2E31809C3EF0588E1AED /* UMPermissionsInterface */ = { + CDBAAD9EE8C6EFEF335972A2D05F0E20 /* Support Files */ = { isa = PBXGroup; children = ( - EE56065787BBC3451B22B3A0C59BC47D /* UMPermissionsInterface.h */, - 505D956DD6CAAC97A19BD66A10131789 /* UMPermissionsMethodsDelegate.h */, - 140D85D2FCCE01CFA3794C3526771E62 /* UMPermissionsMethodsDelegate.m */, - 291516A2A64F6B8BB33660C84E91573C /* UMUserNotificationCenterProxyInterface.h */, - DD149305F868C34F075345D255E9B767 /* Pod */, - 10370B45AC99A668C3F2518C9359639F /* Support Files */, + 31A45DE33FD3776BCE1655FB290D81D6 /* react-native-background-timer.xcconfig */, + 4E459F3A71DD1AD78439B5520C6F5F9E /* react-native-background-timer-dummy.m */, + AB6B81B047AD90F64FC95C8C72264EDF /* react-native-background-timer-prefix.pch */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + sourceTree = ""; + }; + CDE50CA5003CA16EE29FC71C2BA00325 /* Support Files */ = { + isa = PBXGroup; + children = ( + 721543AF1BC1CB9481E7631289E7E765 /* UMImageLoaderInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + sourceTree = ""; + }; + CDFADBA4A7A5B7F0E11DEF3F66A99578 /* messaging */ = { + isa = PBXGroup; + children = ( + FA75329560DE85B2864E81DE0D4CB271 /* RNFirebaseMessaging.h */, + 02B303D0F808EE6B7EE020A45013A5BF /* RNFirebaseMessaging.m */, + ); + name = messaging; + path = RNFirebase/messaging; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - B29DE9FCCC737C3E1BFD4F3B716A81EA /* Development Pods */, + 9473EBEBB5A07F341D9BF0261E95401A /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 9160F20DFF7DC7F1CACEE969035ACE20 /* Pods */, - 890910D2505ED7E061FABFCD61823A18 /* Products */, + 05544C3B312BE37A0CB9B26F6BE0A3AE /* Products */, A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */, ); sourceTree = ""; }; - CF256EB76BF3C0AAF27AC421B283BCEC /* Pod */ = { + CFB3A3515C942BC1FFFD91C0137B10CA /* EXConstants */ = { isa = PBXGroup; children = ( - 0D9715EB95C9838A87A58AD5F196C593 /* EXConstants.podspec */, + BE8242280BF25BF44F38A27AD11233F4 /* EXConstants.h */, + 996801C699EFFFD25ACFEC41DC4EB4A8 /* EXConstants.m */, + 73D3B7D85B24ED236034102CCD4AD0E6 /* EXConstantsService.h */, + 105D069F6277F8F1CBF414D734064D70 /* EXConstantsService.m */, + 892ECE61F6EE2F5C0990EA33C67A379F /* Pod */, + 711EED8D213018761F16B38F2FE2E8ED /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = ""; + }; + CFC1E4D1C822CE39A7F8207C67BF6910 /* Modules */ = { + isa = PBXGroup; + children = ( + C845321768ECE81C715B08799A37C1B9 /* RCTAccessibilityManager.h */, + 98EC86A0F6320DFCACE00FD5D9A48933 /* RCTAccessibilityManager.m */, + 6C9E60A0C7C3435CF0DCC1C4FD2B98DE /* RCTAlertManager.h */, + 2E0BE30EA5CDEF65AD3914F98064A278 /* RCTAlertManager.m */, + 185F51EBD371C55922DC95F9F91B1EC8 /* RCTAppState.h */, + D7DFCB6E297BBC506B33C46A4BC770E9 /* RCTAppState.m */, + 80D0B71757A2D8F63BF8B9AA62C5BE3F /* RCTAsyncLocalStorage.h */, + 6BAD5AF74326E84903632846E3148523 /* RCTAsyncLocalStorage.m */, + 19259273260165E6F2BF2B18A958BC15 /* RCTClipboard.h */, + ED3481D84A5C7BF97684500C45226CFE /* RCTClipboard.m */, + F477107A2B803038ED4C0CE752003155 /* RCTDeviceInfo.h */, + E6CDBB8578B68E4A1806982883F0C6B0 /* RCTDeviceInfo.m */, + 48B5ACB57357C10B69BAA3790D0792F8 /* RCTDevSettings.h */, + 744762CA457E16CA86CCBF56BA8139E9 /* RCTDevSettings.mm */, + B8790185D4A434EF840ADA9054BCBD65 /* RCTEventEmitter.h */, + 17B6F54E970F5217C2857A8F50A3591C /* RCTEventEmitter.m */, + C8F60B77B8ECB9832C79FC49536E9187 /* RCTI18nManager.h */, + 5DBE73CF85E0FBD14FC9326FAE9707CE /* RCTI18nManager.m */, + 4544721082FD092C71131EAF10C9B613 /* RCTI18nUtil.h */, + EB6D86055425CB1521259B1763499D0B /* RCTI18nUtil.m */, + 0D954903953EE83F65DA07AFE0553C0E /* RCTKeyboardObserver.h */, + B27A0752AE9DCA39573FBA927B8F70D1 /* RCTKeyboardObserver.m */, + 9235594FC4FDFB8D5E20A23495F53B47 /* RCTLayoutAnimation.h */, + 139E85882E272B8AD1192218C2587F21 /* RCTLayoutAnimation.m */, + 0E0D0EF4FA73F307C1E3F62E498F14A4 /* RCTLayoutAnimationGroup.h */, + E4273CAEA810F3D1D6483CD510A30A05 /* RCTLayoutAnimationGroup.m */, + FB902AEE13313EE4E1BBE0238013A3AD /* RCTRedBox.h */, + 64CAE0B65E655BC13E5D037EAF53663D /* RCTRedBox.m */, + 2BF7FAEF97C933110868B7036892054A /* RCTRedBoxExtraDataViewController.h */, + 07FA7E11FD3C89C9CE4C33E5BE19092F /* RCTRedBoxExtraDataViewController.m */, + DEBACB8ECB0778B88824215A933E95CD /* RCTSourceCode.h */, + 70A62C01C748F3E2DB2E6771ED0053A0 /* RCTSourceCode.m */, + 1D37EF96C4EAD8B0212562D1E916839B /* RCTStatusBarManager.h */, + 1F46EFF2F933B33E980B2267CBE5B126 /* RCTStatusBarManager.m */, + BC105F2C6B905F9DB86038886D5EFD53 /* RCTSurfacePresenterStub.h */, + 1F64DF05D56CE84DDB7050420502C6CE /* RCTSurfacePresenterStub.m */, + 495AE9548E0B2A19CFAD7180BA840700 /* RCTTiming.h */, + 5615D378EFA4C2B190803E9A6D8190FD /* RCTTiming.m */, + 7BE0FBF7C339D8B1B66F05D3E8F7ABE4 /* RCTUIManager.h */, + 86C8391910D9B2640BB9EB8E938003CE /* RCTUIManager.m */, + 72A4CB03D5319F58E9F1B5E0AFABF94F /* RCTUIManagerObserverCoordinator.h */, + DA7EC402A8ABE0976D9FBF93D17D1774 /* RCTUIManagerObserverCoordinator.mm */, + 5F72874EDFE50D6E56444F9CFB997E0D /* RCTUIManagerUtils.h */, + ED6E0DC1D444EC1F52386FCF7ED88421 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; + CFDC0906CA33C5FD8D0DF0D699AC5BE3 /* Pod */ = { + isa = PBXGroup; + children = ( + B5E9A8FB0E5448CF4D5DB161BF7E6874 /* LICENSE */, + BA67ABE060E187BA308C54A0ED82060A /* README.md */, + 6C9799B9B74DD9892CE1F538E16C6DFD /* RNImageCropPicker.podspec */, ); name = Pod; sourceTree = ""; }; - CF3B9070ED4011E1DA0AA3784370E6C6 /* internal */ = { + D16FB2B424AA8B612D97864FA2421B6D /* Pod */ = { isa = PBXGroup; children = ( - AA513D0B104EF704EEBE81CD19D01108 /* experiments.cpp */, - 7BE0009AD5A62049E3DBCC72BB4C2C2E /* experiments.h */, - B43AF60286E224ACFA145A668E0211C9 /* experiments-inl.h */, - ); - name = internal; - path = yoga/internal; - sourceTree = ""; - }; - D022F2B2C803BAAEEF46852DDF1FC99B /* Pod */ = { - isa = PBXGroup; - children = ( - 69852DDB634F936AD67EF4AFEEC06D8D /* advancedIos.md */, - 45A7EA6D4B7C0B57FE1F1B0AE74005CE /* installation.md */, - 6538AEC00D420A68AEE31EED4F6580C8 /* LICENSE */, - DE9658FF8987FF4A567A0FC9DC49582D /* localNotifications.md */, - E8BD3D4427BD842D570DD8DC37853DEA /* notificationsEvents.md */, - 33FF8C6ED70EDD30BE81B4D019D5D7C2 /* react-native-notifications.podspec */, - B758A346013E4A3F52D56087B78F9A83 /* README.md */, - 98CA230ACBC6FAFCFD4918557133F565 /* subscription.md */, - ); - name = Pod; - sourceTree = ""; - }; - D170E80B182EC1326B18C57A13ED2FED /* Pod */ = { - isa = PBXGroup; - children = ( - 24A687B750C85CF34EF2CD2D32ED597E /* LICENSE */, - A6F8C6869B72004BE90924A432D55046 /* react-native-video.podspec */, - BD2E48A06D39D267D0A6DE54100BE71A /* README.md */, + 1DA5026704DCB4C74D10E8EC1EB8F7AF /* EXLocalAuthentication.podspec */, ); name = Pod; sourceTree = ""; @@ -12182,21 +12357,43 @@ name = Reachability; sourceTree = ""; }; - D28D7DAA3C32A57F7E68530A96482DEE /* Pod */ = { + D1B3017B97D18BC854ED3031B1C02C17 /* Pod */ = { isa = PBXGroup; children = ( - A2F288C170B5F2132D63BEBBA3CDC0C7 /* EXWebBrowser.podspec */, + 81D90D5B806AD98FBA979448235E5A18 /* React-jsi.podspec */, ); name = Pod; sourceTree = ""; }; - D4FDB6459CDA592A6EA166545D9D82C1 /* Support Files */ = { + D1C54F70295DC2CA401B5B726D276400 /* vendor */ = { isa = PBXGroup; children = ( - 390A59F129F705D241B9686AA66E2D7A /* FBLazyVector.xcconfig */, + 2AFA0AE60CA3B57F0334C9BCCADC697A /* bugsnag-cocoa */, + ); + name = vendor; + path = cocoa/vendor; + sourceTree = ""; + }; + D29F68DC54EECB210A3686F9F224DBC8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6023C618CFE4FF97CD04AF8685E051D4 /* EXFileSystem.xcconfig */, + D38DC5C9850947A9A6ADF2CF404A02EC /* EXFileSystem-dummy.m */, + 1CA757878A561781EABB9BD65C7DFCBE /* EXFileSystem-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + sourceTree = ""; + }; + D2E50D487EE97709C9638D1517AC818D /* React-RCTActionSheet */ = { + isa = PBXGroup; + children = ( + 9F7A90FFED7376A4D31F6DEF4729CCAD /* RCTActionSheetManager.m */, + 098DA056327AB9C33DAEAA9F91FCDEEB /* Pod */, + 765B8369ED68BA56227627EB094C7DC7 /* Support Files */, + ); + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; D55310A3D7A33E73CB444A32C1FF022B /* boost-for-react-native */ = { @@ -12208,28 +12405,15 @@ path = "boost-for-react-native"; sourceTree = ""; }; - D5656FDA6FD66D5606FAF2B5A9F9824E /* UMModuleRegistryAdapter */ = { + D6141A079FAF591DC330274179D968C7 /* Support Files */ = { isa = PBXGroup; children = ( - 76A01F927DE5F13405330006480C2E10 /* UMModuleRegistryAdapter.h */, - B163ED9C4BB7942553E67152AD19FC89 /* UMModuleRegistryAdapter.m */, - 4F9AD33270B26611BCAC001F0B32C8C0 /* UMModuleRegistryHolderReactModule.h */, - 31EE95149D57FDB9540F3A45E93F2594 /* UMModuleRegistryHolderReactModule.m */, - 312EAC12211C21781B4792A8CEB9CF55 /* UMViewManagerAdapterClassesRegistry.h */, - 08A767C7171B7484BC840053A91D0193 /* UMViewManagerAdapterClassesRegistry.m */, + D3CCC19F7FA3D7E88989C374AE66EAE9 /* RNLocalize.xcconfig */, + AE12E44C8191A2E8B1B8EFE32689F728 /* RNLocalize-dummy.m */, + 03D89AB99DEF1387573A1FAFA09D0003 /* RNLocalize-prefix.pch */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; - D583C4762FED683674C7C1A87E20571B /* Pod */ = { - isa = PBXGroup; - children = ( - 1B286F654B59426930A49C1708B01F8A /* LICENCE */, - 74FD8392A11AE2E8B81DD131A4011952 /* react-native-cameraroll.podspec */, - 87CC336CAC5653A542412393A4F8F4AB /* README.md */, - ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; D6F490C034FF3884052422C414FFF53A /* SDWebImage */ = { @@ -12242,53 +12426,14 @@ path = SDWebImage; sourceTree = ""; }; - D7754577A93FC5559AB6AB18E3CB980D /* react-native-notifications */ = { + D7389392029728FF08944384797DF9D5 /* perf */ = { isa = PBXGroup; children = ( - F881CC99AF63CFBF850897A4D0123EC2 /* RCTConvert+RNNotifications.h */, - 87DB8BAA7E0AA6309FC82A17A1670CF0 /* RCTConvert+RNNotifications.m */, - D1652AA28A4E5BB9606FA0F0223880BA /* RNBridgeModule.h */, - A4F5A1E99FA7D42C489D0381E573C849 /* RNBridgeModule.m */, - 4604EB84EA7D173EFB6BF96910AEE699 /* RNCommandsHandler.h */, - E222CCBAE4B8B73A1E7FD6E8F2E67F1F /* RNCommandsHandler.m */, - 7AF6A5BBC472C7054D73C96893FD931C /* RNEventEmitter.h */, - 31184F2A33D855B394E7FA887BE6E1C8 /* RNEventEmitter.m */, - 0FD67A5A0A0E791A241650D09B2C852B /* RNNotificationCenter.h */, - BC28432DB28E26600A79158B20F82B6B /* RNNotificationCenter.m */, - C36A46BD905DCD5C55106653B5BB691C /* RNNotificationCenterListener.h */, - EDA960B488DC6DD0DC8848BF6E76941F /* RNNotificationCenterListener.m */, - 9D1D04F15826580499B17234E3912288 /* RNNotificationEventHandler.h */, - 95EF3AD0840BFDDC76F676455E7154DD /* RNNotificationEventHandler.m */, - 34CC6521D5F9809960F39C9D570662BF /* RNNotificationParser.h */, - DF33E3CF7D684DB98F89BAEB8F8E2E65 /* RNNotificationParser.m */, - DCABCC9C8001FA20E4E1830A4BE93DA2 /* RNNotifications.h */, - F0035AD75AF409EED99CE638FCD79F36 /* RNNotifications.m */, - CFB77E55364F07756874798EC9AC40C5 /* RNNotificationsStore.h */, - 27456DCA1E6F6425090860FC8F695FC0 /* RNNotificationsStore.m */, - FDAF171CD6AD6E3563BCE2211C0F9FA2 /* RNNotificationUtils.h */, - D90DB9772E9FBE6044ED0537B3D578FA /* RNNotificationUtils.m */, - FE5E3DDE6DD52E7DD9A1126EAF36F66E /* RNPushKit.h */, - 8C775F0A3839BF88C0D89C889B59B26C /* RNPushKit.m */, - DE11E99498B7A9823D6DA87A938589A6 /* RNPushKitEventHandler.h */, - 4A3108E867C080F1BF3DD43EBB8CC6D7 /* RNPushKitEventHandler.m */, - 6F063C7CC4BD76F426301C2BBE30E27B /* RNPushKitEventListener.h */, - 832862A31898A88E781D6B4F7FECCF18 /* RNPushKitEventListener.m */, - D022F2B2C803BAAEEF46852DDF1FC99B /* Pod */, - 035311CECB99E4F29445B1FE7AE0FFC9 /* Support Files */, + 6764FD88432354A2870D85AB6082200E /* RNFirebasePerformance.h */, + 829A3EB9FA3CD3A0078F3AFE01CB5D76 /* RNFirebasePerformance.m */, ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; - sourceTree = ""; - }; - D7E1367DC02B906F7E6233718B617C29 /* RCTRequired */ = { - isa = PBXGroup; - children = ( - ABA6FA0F42B7391DB470C7DD7C8E6BB1 /* RCTRequired.h */, - 80E471F80B32E863E50DD113FCB69EAC /* Pod */, - 1253B43AD4B219811D516CD43567CB45 /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = perf; + path = RNFirebase/perf; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -12298,55 +12443,40 @@ name = Frameworks; sourceTree = ""; }; - D8DEB1B3CAFFA0C1972EB62B79371208 /* Support Files */ = { + D90DA521FFAD28439E16F6B172FE8243 /* ReactCommon */ = { isa = PBXGroup; children = ( - 9501CFD3C936BC73BFADBCEFE40AEB0A /* UMFileSystemInterface.xcconfig */, + 99BD16722E76F0F6C52D668430196026 /* jscallinvoker */, + F411B5C79A42A3FF07AEFB35464EBE99 /* Support Files */, + 42BA71782241714E439CE87C1862723E /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = ""; + }; + D98645150F2958A364F57E2A2B2C825E /* Support Files */ = { + isa = PBXGroup; + children = ( + F842088A50C96B15DA82622BB55C1A6B /* RNDeviceInfo.xcconfig */, + 92B37FF6213B5C53AAD606CFED6D52F6 /* RNDeviceInfo-dummy.m */, + E6545E722707998F0CE00ED353637D3F /* RNDeviceInfo-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - D9EFA9C00413793029A953444995E0DF /* RCTImageHeaders */ = { + DB59E7F0F0BC5D90D4888C577016D7CC /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 40DD1EB0A38626D7672CEF0EEFF5C426 /* RCTAnimatedImage.h */, - 9C8B81AE3B3926554D716E80CB3FB004 /* RCTGIFImageDecoder.h */, - C637E0FACF0DC21188B21A19BE3893CD /* RCTImageBlurUtils.h */, - EA39A846885AEDDA4978D47BBBC488C4 /* RCTImageCache.h */, - BDD4EC0D01813218623B5372433F8219 /* RCTImageDataDecoder.h */, - A89F5903324F1CD3F6DF49F596580EE9 /* RCTImageLoaderProtocol.h */, - 5277215B950EB8FB831F92FD56554BE3 /* RCTImageShadowView.h */, - 2EC3AF692C410BF61B4507625A2481B4 /* RCTImageURLLoader.h */, - 1E5C2F8D2DDCE00D1854B6E7130E97D6 /* RCTImageUtils.h */, - A8FEE9E165727EA2834D50BF5CD1A68D /* RCTImageView.h */, - 8347D154BA5BF61C554572F3EA4E1F5F /* RCTImageViewManager.h */, - B5FE8F6B235D306BBC8054E5BCA09CDE /* RCTLocalAssetImageLoader.h */, - 43E5FD1C5B9357E739C64C0EAC4F8290 /* RCTResizeMode.h */, - 49777C8BDCF41658EF1462402BDAA962 /* RCTUIImageViewAnimated.h */, + 49147E609F4F8ACD6F1CCEF995FE3031 /* RCTConvertHelpers.h */, + 5C5387AD6CB51F99D7C94D5A2CDEFF68 /* RCTConvertHelpers.mm */, + 5B4908159FDD0846F3B8CD2995E5006B /* RCTTypedModuleConstants.h */, + A601EFDD2541CB929B3B74CA94D92DAC /* RCTTypedModuleConstants.mm */, + 40A5243363E95533536C10F166243198 /* Pod */, + A2BED3D74789814CA77459548DB287F0 /* Support Files */, ); - name = RCTImageHeaders; - sourceTree = ""; - }; - DAF384CBE05A0AC4F06C3593D900EDEE /* Support Files */ = { - isa = PBXGroup; - children = ( - 65CB6926EE4164B88B485A0EB2C889B8 /* react-native-webview.xcconfig */, - B4F2B2382DC297766F83388DBE6A9689 /* react-native-webview-dummy.m */, - 14E28936216B895E1CA952A7599FACA1 /* react-native-webview-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; - sourceTree = ""; - }; - DB2F04FEFFA88D64A56C1891D6D33EB5 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 702CADBFFDC7EF3FBCCA9A11A221319C /* RCTVirtualTextShadowView.h */, - 0E76F3759E8407C982EDBF7A405F370E /* RCTVirtualTextViewManager.h */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; DB6752B59873A91592A7998C80544B13 /* CoreOnly */ = { @@ -12357,39 +12487,31 @@ name = CoreOnly; sourceTree = ""; }; - DB812DDD4FBD4840842D56B53C970284 /* KSCrash */ = { + DB6A4FA41E2CC61DA905CC84067DFEFD /* Pod */ = { isa = PBXGroup; children = ( - 0BC7458E471671745D749CEDDC1AAA49 /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - DBB6767F634D140A8B2B723353E7299E /* Pod */ = { - isa = PBXGroup; - children = ( - B472997F9BA4ED98BA2A1E2F65256632 /* README.md */, - 492AF4B3182C3F6AB2718B67D8E997FB /* RNRootView.podspec */, + FE158E330F1D8B18CA528D302D7038F6 /* LICENSE */, + 8B9E8D6054BABEC13C9BA516388D9104 /* README.md */, + 58545F9A302A7EB660BC7C141F030537 /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; }; - DBDFDE81C85A3EF35AEE1191D1DD2FD2 /* Support Files */ = { + DC4D298CD70386447E4D518330143735 /* Support Files */ = { isa = PBXGroup; children = ( - C5CA46DC3BAC8E34D065E5D96307C663 /* React-RCTLinking.xcconfig */, - 8C1F97DF376D9798299710820D5A07C9 /* React-RCTLinking-dummy.m */, - 28E31A5195F966E49BB86E25398B2B4E /* React-RCTLinking-prefix.pch */, + 77889E1ADBAD703C2F09E1802502CFBD /* react-native-document-picker.xcconfig */, + C6BAE88016ED84819ECC59A8E1E84682 /* react-native-document-picker-dummy.m */, + 391377710ACDD32AD3E3AC9573D5E890 /* react-native-document-picker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - DD149305F868C34F075345D255E9B767 /* Pod */ = { + DC8CCBD7E9F42471C772B5589F5E43EF /* Pod */ = { isa = PBXGroup; children = ( - 8655DCC2849051DFAD85B0C211E8A423 /* UMPermissionsInterface.podspec */, + D828143E852FCA1323B338F26ACD76E9 /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; @@ -12420,95 +12542,52 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - DDD2D92B40A00B4FEA77410C5F4356E9 /* Support Files */ = { + DFAD69D292EB9701F0372231204879E2 /* Support Files */ = { isa = PBXGroup; children = ( - 17D5A84F8747106DDCA033C31C5D274F /* RNRootView.xcconfig */, - A060D275F6FB2202E39824FE20772A14 /* RNRootView-dummy.m */, - BFC24908B59EB8AA5084F7D8299EC4EA /* RNRootView-prefix.pch */, + 2D78E1AB2CAABE25DB0CB1CD9AFC1ED2 /* RNDateTimePicker.xcconfig */, + F5A8224B47E4E204C913A8027996EF23 /* RNDateTimePicker-dummy.m */, + 0473101A50080CC5249620DC9C016303 /* RNDateTimePicker-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = ""; }; - DDDE51211789C88B2A3B31BC8D030F15 /* Pod */ = { + E003E96934F6F28AF0861B11679EB562 /* Support Files */ = { isa = PBXGroup; children = ( - F2B977120DCE58A53B2F07C61AF5CE2F /* LICENSE */, - EC3C0204BB6B6C009CA6714C0402304B /* README.md */, - 83EE8080CE4DB87300106A0DD3EEFEA0 /* RNReanimated.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - DDF5F20BC9738C8599221D84B8F0C10B /* UMViewManagerAdapter */ = { - isa = PBXGroup; - children = ( - 8F0E564DE338119666276106356B8119 /* UMViewManagerAdapter.h */, - 77060C09E6D87AD7316709FF3E32F992 /* UMViewManagerAdapter.m */, - ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; - sourceTree = ""; - }; - DE11E11452EA3705402E9A845B1CE0D8 /* Resources */ = { - isa = PBXGroup; - children = ( - 0200BF5B53B1EAE97CEA1BBB0277DC76 /* AntDesign.ttf */, - D1C21A1963B18619080396F1952EEFF9 /* Entypo.ttf */, - B3EC19732CF8EEFDA9F2B588187D1BE2 /* EvilIcons.ttf */, - 2E20522CFC3FF714F71215AB5DDB9A15 /* Feather.ttf */, - 3BA923BAE3DF1C7582F9AEDBA2BD7679 /* FontAwesome.ttf */, - BCDDAE6A7E41FD7CA7BB64FD8EB9AEF7 /* FontAwesome5_Brands.ttf */, - 9D4106ED572E83D913CD2439E1370845 /* FontAwesome5_Regular.ttf */, - 6F87B8345A7593294B6A9E132EB575AC /* FontAwesome5_Solid.ttf */, - 734CF0DF7D6A8D1307EF38D0E62DFFDC /* Fontisto.ttf */, - 0A517D02219DB5640240657199D64B29 /* Foundation.ttf */, - FB2115D629A9747CDEF3713B6841D0F2 /* Ionicons.ttf */, - 3CACEDF0FB91B2EE5BC301A94357EC00 /* MaterialCommunityIcons.ttf */, - 58DC1810B6C7CB4BD28689381462F2AE /* MaterialIcons.ttf */, - 0A2A0BA4AF08430D48A45519F923A40F /* Octicons.ttf */, - DF320A32A89DFDD836242CF9ACDE905C /* SimpleLineIcons.ttf */, - C293551CD5204586E6F8D5CB1DAF2BE6 /* Zocial.ttf */, - ); - name = Resources; - sourceTree = ""; - }; - DE15CCEF4A2330052F15BED37FF4332E /* Pod */ = { - isa = PBXGroup; - children = ( - 286E26A6C91BBC63A1A66EDCFE83188E /* React-RCTBlob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - DE162CB7DF8F690F562B7785D34B6E87 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9584BF8B7116E9533B527075D84FC6E2 /* UMCameraInterface.xcconfig */, + 62829234738E6F5FFE3884757E2A1565 /* React-jsinspector.xcconfig */, + A3ACFAC389C1C0E967F0B246CAFED2B8 /* React-jsinspector-dummy.m */, + D2C2179BCA4218E3D55F487626D098E8 /* React-jsinspector-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - DF78D4F2DFA4FE1826958AA01886153F /* KSCrash */ = { + E08BBF560FA317D4F07D9B0393BE7C20 /* Requesters */ = { isa = PBXGroup; children = ( - 4B97B54F5497DA6A63A9DEB57979A463 /* Recording */, - FE56202C6992520F70A848D30B72BF6E /* Reporting */, + 7C7861D210EA1A3CBA669B97E6779E6A /* RemoteNotification */, + 0963F6A675A1FEF684A2943F91B04300 /* UserNotification */, ); - name = KSCrash; - path = KSCrash; + name = Requesters; + path = EXPermissions/Requesters; sourceTree = ""; }; - E009B0369075FA826BED6EF7E4029CC2 /* Pod */ = { + E0F2361CAFF1219818C4B31D6A059EA7 /* Services */ = { isa = PBXGroup; children = ( - D8B3C196C1D0A315CE2BA6A45CECAB7F /* LICENSE */, - 43DAA5C77986E68FEF3383BADC08E3AE /* README.md */, - D135C5009F92091AE2163A9A2E2BE67A /* RNAudio.podspec */, + 3748541FA350513B9ACA6BE46AFF1276 /* UMReactFontManager.h */, + FA5ABB39A77B81C72A91FECE2C1EE4F4 /* UMReactFontManager.m */, + C499F171AA5C6CE2B613EF6A9CFEE13C /* UMReactLogHandler.h */, + 381832CDC240F6A0687658ACE989D6FE /* UMReactLogHandler.m */, + 5530190986E93D6ED287CED2C9B4DACA /* UMReactNativeAdapter.h */, + 9002723A97E6B9C1D70CE43DECB62A2D /* UMReactNativeAdapter.m */, + 5E2CB9F08639ADA17E02444D67B09671 /* UMReactNativeEventEmitter.h */, + F3326BB6015447D408ACE84177F73D8A /* UMReactNativeEventEmitter.m */, ); - name = Pod; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; E16AA748B8479800EC9221A9DE4E360E /* Support Files */ = { @@ -12522,63 +12601,163 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - E1EF58544C1B364455464CE8173BBB43 /* React */ = { + E1B8AF69B39ECFF21B1B24606646F4D8 /* RNFirebase */ = { isa = PBXGroup; children = ( - 41AB71CF1960229EB3168DEC12D6D7A1 /* Pod */, - 43219D9397ABE3178694DBEC1762B03F /* Support Files */, + 241A07C0E3A25843A3AEC03817BD5953 /* RNFirebase.h */, + D861B08940AC3607865C3A60E48580AC /* RNFirebase.m */, + 74A8380FADE2FEB9624BE15865A439E1 /* RNFirebaseEvents.h */, + 67CF8038805502BA2D7476EDDED5223B /* RNFirebaseUtil.h */, + 357DC213D350A3EFDF67D24C886A424D /* RNFirebaseUtil.m */, + 8895DA8A423CD4B09B5BD1106ABC412D /* admob */, + AA32D8E3673DEF1CB7F7AAE36B3F3B90 /* analytics */, + F5FA12291DC4DCEC23CCD0F695D46475 /* auth */, + 35E4E93D48056041A586D1FC9CD32BB5 /* config */, + 0C04CA62B8029593AD6332E08A77FC46 /* converters */, + E287DE90BC821105C1F4C2A2F60DE601 /* database */, + E435AB8EFD8441E28F7AA3B63DCFA610 /* fabric */, + A2F53ABD4440AAD348C22BE92B0A466E /* firestore */, + 9F2C85EAD4890209012FFD538C437561 /* functions */, + ABBDCA1A9A5505FA3925820B03864E03 /* instanceid */, + 7EEE7F0D1155F75AC9726B0023BC8E15 /* links */, + CDFADBA4A7A5B7F0E11DEF3F66A99578 /* messaging */, + 064CD34C07F833C642520ED0AC72516E /* notifications */, + D7389392029728FF08944384797DF9D5 /* perf */, + 6401EC82E49758EAC427BAE9137B4399 /* Pod */, + BB7AAFADE7FCE132FF935919805FBB15 /* storage */, + 3FFB1D0932CDF007881A23583A7BA09E /* Support Files */, + ); + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; + sourceTree = ""; + }; + E1DA775A07E6B6EC28DA4BA47DF2CDCC /* CxxBridge */ = { + isa = PBXGroup; + children = ( + 856096519116E9F83726C5B56485242F /* JSCExecutorFactory.h */, + F57A875B935129BBC5FED8BA1EB01ADA /* JSCExecutorFactory.mm */, + F5494133D52BD624EC64308919BEEDE4 /* NSDataBigString.h */, + 2E080A395CA90341C7DE1F26F70B08C9 /* NSDataBigString.mm */, + 00719456C3F689CCFCCAAAB3F5A25AD2 /* RCTCxxBridge.mm */, + 4E7A512D07E627B025D9CA4F59AAAEA7 /* RCTCxxBridgeDelegate.h */, + DE77279B6D322D56F97E3232C005326C /* RCTMessageThread.h */, + DEE3E1E7ED88DBFB409E2ECE39F0AB43 /* RCTMessageThread.mm */, + 7281B2FF997C0B0469201D429C8ECB8B /* RCTObjcExecutor.h */, + CBF4B442297F465BB78756CC5517CDCA /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; + E21FCE85B53DA0526A40A7A71F7168CA /* Reporting */ = { + isa = PBXGroup; + children = ( + AAA762DEB684B9A15DE5200DDBF2E25C /* Filters */, + ); + name = Reporting; + path = Reporting; + sourceTree = ""; + }; + E287DE90BC821105C1F4C2A2F60DE601 /* database */ = { + isa = PBXGroup; + children = ( + 9F7F117EBD7C909A9728EF18CE943C88 /* RNFirebaseDatabase.h */, + 67FC56B3B3AEED7464E5912801435C7B /* RNFirebaseDatabase.m */, + 352CE27332BC9A1B0396A41302F73937 /* RNFirebaseDatabaseReference.h */, + 9850C16F99A808CA2DFADA2ADA3BA284 /* RNFirebaseDatabaseReference.m */, + ); + name = database; + path = RNFirebase/database; + sourceTree = ""; + }; + E2C3F1A19F25A0B5CFA4F7485BB0857D /* UMViewManagerAdapter */ = { + isa = PBXGroup; + children = ( + 73BE64D94A0851F0978E49B13D8A5B6F /* UMViewManagerAdapter.h */, + 447377E7699F4E8CB22E9247DA5F775D /* UMViewManagerAdapter.m */, + ); + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; + sourceTree = ""; + }; + E435AB8EFD8441E28F7AA3B63DCFA610 /* fabric */ = { + isa = PBXGroup; + children = ( + EACC00C9F33754ED5FCB79A863EF32FF /* crashlytics */, + ); + name = fabric; + path = RNFirebase/fabric; + sourceTree = ""; + }; + E4918554E77ABF7ABC72C8EA8A548145 /* react-native-keyboard-tracking-view */ = { + isa = PBXGroup; + children = ( + 6A423C70BD0655107C91DA23F04FACFB /* KeyboardTrackingViewManager.h */, + 6041E844744D7775DB92A58CA9C7D1B2 /* KeyboardTrackingViewManager.m */, + 694A203704E75A8F8243758600129A26 /* ObservingInputAccessoryView.h */, + FEB5B8E160C5D916CC66A91F2A9469A5 /* ObservingInputAccessoryView.m */, + D1799D95F22B054CE23AC4A4F4A36EF0 /* UIResponder+FirstResponder.h */, + 24D34F9D57102D6CE933D7AD85DE4B34 /* UIResponder+FirstResponder.m */, + 3427C543C2EB965117965AA3DF42B04E /* Pod */, + 75029FCBC9B54EC1D1BF62173B4F0040 /* Support Files */, + ); + name = "react-native-keyboard-tracking-view"; + path = "../../node_modules/react-native-keyboard-tracking-view"; + sourceTree = ""; + }; + E4E7A20F45C4401929CFF9C8C57E78DD /* React */ = { + isa = PBXGroup; + children = ( + 55894DC70216F6D263361B64D5F52A4E /* Pod */, + 7DA988E9A72772EBFF675C8C654D18C2 /* Support Files */, ); name = React; path = "../../node_modules/react-native"; sourceTree = ""; }; - E2D7EA628465A53CE606804DC0F9E87E /* Pod */ = { + E4F9CC5C093D990DF8CFB30963F968BA /* Support Files */ = { isa = PBXGroup; children = ( - C8CED9B8885A6D580D6E754E1FE18F32 /* LICENSE */, - A7046377F97424F11727A7BA72F8F52E /* react-native-jitsi-meet.podspec */, - 332A3997F34D8535DA1FD468B7773195 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - E538D4FDC6999A30DA004E57B587F5E3 /* core */ = { - isa = PBXGroup; - children = ( - D68D7349299EDC71DB05EB4EB4E8C029 /* LongLivedObject.cpp */, - 3F91D027E837C20A326639C1BDCE6567 /* LongLivedObject.h */, - D2915E98F4D3522C540CEB1DAEB4968C /* TurboCxxModule.cpp */, - 8F9250A90777B0FF446D2599F1718133 /* TurboCxxModule.h */, - 30327B3BBCCCAE76BB48273350864929 /* TurboModule.cpp */, - EAC91A933451B8E0BD44C846366D89C1 /* TurboModule.h */, - E847FBA812E94CC9BCCD9EE428CC1966 /* TurboModuleBinding.cpp */, - 6BFB0D55EFAEBD52BC0FBC03A19D7393 /* TurboModuleBinding.h */, - A281B418998BA4257474919CBA88225C /* TurboModuleUtils.cpp */, - 0BD10F59E4A10D804EB12B741C087F5B /* TurboModuleUtils.h */, - 1AD3B7EBD0036F9F4B8506B7411EA899 /* platform */, - ); - name = core; - sourceTree = ""; - }; - E5DF34F2E001EB71173C4194172DDE53 /* Support Files */ = { - isa = PBXGroup; - children = ( - 60EBB00780FF2A181C094F49615EB38C /* EXFileSystem.xcconfig */, - D7D51A791FED6E76B08D4DF61681B7E7 /* EXFileSystem-dummy.m */, - F9092F343B1335E2E42BE8DD93B7ABF6 /* EXFileSystem-prefix.pch */, + 1A821AB27C747D3E025FAC0AA6808FC2 /* React-RCTText.xcconfig */, + 6CC0B61C0FF14A37EB6CC7BBFE3E8901 /* React-RCTText-dummy.m */, + E7608A4EC7BA9B296B04FA88C8DBBFAA /* React-RCTText-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - E85D54DAE27FA6537A064F3A51309A0A /* Pod */ = { + E81482AB5E9B6A6BFA81F4D05D86565F /* React-Core */ = { isa = PBXGroup; children = ( - BD7A672E7B21F7C2EB85B2FB241E9428 /* LICENSE */, - 2B8E9C9831ED2F1A5721DC2FE887D0BE /* react-native-orientation-locker.podspec */, - 42DA57592399439652D812EB26D67263 /* README.md */, + B5619A0A2D2C31B432B3D6F00ED04042 /* CoreModulesHeaders */, + FB24BBCDDE50E9902A636F4A7CD68F01 /* Default */, + 4DAEC74B7F8DC8FE1693EAC367F70D16 /* DevSupport */, + 627A94DC4C75E9C031F55DB914B2C892 /* Pod */, + B88F5290BD2D664AD6351F550E7F59CD /* RCTActionSheetHeaders */, + CB034D6746DCA0C8DC813B4427A2E198 /* RCTAnimationHeaders */, + 6FFF82A5B8ADCC0E0B6D3ECC7A65A114 /* RCTBlobHeaders */, + 6803053EF31DB79562E16D4715ACD3FC /* RCTImageHeaders */, + A72150CE75E2B351EE8F805FAC248E1E /* RCTLinkingHeaders */, + C3C3DEB68781FDAE94C180AB7C7C51C9 /* RCTNetworkHeaders */, + 76574FB32CCDC693B4D95D10785F3E9E /* RCTSettingsHeaders */, + 787194A9DAB2DB427C1351E25F81E677 /* RCTTextHeaders */, + 2164A917A13AADECCDD23018763226D5 /* RCTVibrationHeaders */, + 64F60278B4BBF95DC1D88D9182A46686 /* RCTWebSocket */, + 3261A7403DD7EBD1685726D691924C1F /* Support Files */, ); - name = Pod; + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + E82C8CEA04EA86DCE2AC711D278233DF /* Support Files */ = { + isa = PBXGroup; + children = ( + 870B74D93D63ABE3FF6D58FD8AB6C1C1 /* React-RCTAnimation.xcconfig */, + E763F629910487B9E9170C3ED4F841B0 /* React-RCTAnimation-dummy.m */, + 1A449D837847AC63A97AEEDA827DF369 /* React-RCTAnimation-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; E8B6A85956573B9F30CD1427074D8E31 /* mux */ = { @@ -12595,286 +12774,255 @@ name = mux; sourceTree = ""; }; - E98D67EA700C0206C36596B528DBCB8C /* React-RCTBlob */ = { + E8E227C9BA683EF18E3295DCF36DA266 /* Pod */ = { isa = PBXGroup; children = ( - 78444D9D4D9D3C0917B8998976E40C70 /* RCTBlobCollector.h */, - 49081BDA96EB16FA72B9EF7FA37F10AF /* RCTBlobCollector.mm */, - EACBACF9153DD3E5D782F861B1761ED0 /* RCTBlobManager.mm */, - 1F94016E68EEB217508CD4C5B2289C21 /* RCTFileReaderModule.m */, - DE15CCEF4A2330052F15BED37FF4332E /* Pod */, - F17FD1931E1CAD6AC06B4D95C7E42A0C /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - E9F30F25519F63BF0442A29E1423FFF1 /* Base */ = { - isa = PBXGroup; - children = ( - 1DF145921DE85DB434850DC4736F5445 /* RCTAssert.h */, - 14F9A05013AE6BE94D9456BBB14712E2 /* RCTAssert.m */, - C452BF0E9DD1DEB06C0598D01E65657B /* RCTBridge.h */, - 6F0C2E0E933DF322244E10D335D3AA3B /* RCTBridge.m */, - 83669ADFC2BA035A11A398BCCDFB4819 /* RCTBridge+Private.h */, - 0E91B911130158B9E8F172DC0BBB76C9 /* RCTBridgeDelegate.h */, - 6FE00F5B510EE2652825473F9A8E14F2 /* RCTBridgeMethod.h */, - 058D28B4A68C709F7AA6A06D8A25D3F3 /* RCTBridgeModule.h */, - E0B1D28C01B0D9FF019BD11F48423BE1 /* RCTBundleURLProvider.h */, - C644DF549BD49E875B7C6EAADFC9A82A /* RCTBundleURLProvider.m */, - 2978BA2DEBC49B6BF77A935822359DBF /* RCTComponentEvent.h */, - FF47DDBF0E22453293ECB197BA2FC0C5 /* RCTComponentEvent.m */, - DCFDBA48F4D45DD625444D5E3836E3EE /* RCTConvert.h */, - 03DEF745B4A8AB46F50B24D0270F4753 /* RCTConvert.m */, - EDEDC37F633DC4E7C3D71348613CEFDA /* RCTCxxConvert.h */, - B4C688ACFAAB5C8C2F3F7922A721D3C3 /* RCTCxxConvert.m */, - 83A89F0F53AF583C4DDF0EA48B180780 /* RCTDefines.h */, - 553244C5D8BAF7E5DE26EC41D16D370E /* RCTDisplayLink.h */, - AFCB43D3827AE977D3013BE069F70FCD /* RCTDisplayLink.m */, - 915F0FFDA3662093AEC20E034BDB87FC /* RCTErrorCustomizer.h */, - AAD3F86D1EB9651A77F4480C76E25349 /* RCTErrorInfo.h */, - 71A8D8AD63970F41D631921F678B5C49 /* RCTErrorInfo.m */, - B9DEA0BF498BD7640F87AD72AD51B60C /* RCTEventDispatcher.h */, - 9EBE1FD358D5DB444D1994A23AF5B744 /* RCTEventDispatcher.m */, - 129CC95C969B20399F41C6937A02D570 /* RCTFrameUpdate.h */, - C9D0647297B92E80FC92B2CA069FAB5F /* RCTFrameUpdate.m */, - 3B5C9F26FED4E0761F637BAC9D86AD38 /* RCTImageSource.h */, - 6D52E6CD1695F8CFA8572D11EB15479C /* RCTImageSource.m */, - F330BF2530869556DBD57DDFD63437EE /* RCTInvalidating.h */, - FCD33AC7A683628CABF9B4DE61ECAC31 /* RCTJavaScriptExecutor.h */, - BB2398BE031D52DFDEFD4D59EED50148 /* RCTJavaScriptLoader.h */, - FA5F8B27C3393ECAFC57D32F193C67B1 /* RCTJavaScriptLoader.mm */, - FA31819E9AE01BFDEA17BCABC8327379 /* RCTJSStackFrame.h */, - 59F015CD4C3AD382FF8AB6E95C5C94F7 /* RCTJSStackFrame.m */, - B6B1D9D2E4B60BD628785C1C0FD559AF /* RCTKeyCommands.h */, - 87D2BC77CB55F4F29196EF2403D8C31A /* RCTKeyCommands.m */, - E08543FDC39180F83C50169CA50E00A0 /* RCTLog.h */, - 88648F732932432F6DAC9EBED580C353 /* RCTLog.mm */, - 9E795BB03EFA38DE1BDD66FE34A941BC /* RCTManagedPointer.h */, - 6EB980952287CDFD8FC85276F1077929 /* RCTManagedPointer.mm */, - 8BD2A23277F30FEB5D8CC12D42BFE63D /* RCTModuleData.h */, - 59BCEC3BB130D851C55FEEC9372580DA /* RCTModuleData.mm */, - F8963C48B4C9E71258D0BCE42665AC26 /* RCTModuleMethod.h */, - 8F05191A1FFA378F8D0BEFACAF94CF16 /* RCTModuleMethod.mm */, - FE024E817AC1A13A002CF2102FBF3444 /* RCTMultipartDataTask.h */, - B8B19FA68A32FFF3FCFA024A6DA603B3 /* RCTMultipartDataTask.m */, - B2A0D22A3DECC27109C0E62487A5D8E9 /* RCTMultipartStreamReader.h */, - 1C055DB23C96B16780E4FB84A89F34E2 /* RCTMultipartStreamReader.m */, - 03985525EDA89F3F7A68A80B93EC051C /* RCTNullability.h */, - 99AC0483E6DC8F46D5EF5A81815C0919 /* RCTParserUtils.h */, - 534768FC35D1ACE995311324A92A4BF0 /* RCTParserUtils.m */, - 3C0D335F37A02AAF91899A2D661D3AFA /* RCTPerformanceLogger.h */, - B65DD7A796FA1FE4E5337786362D6ADF /* RCTPerformanceLogger.m */, - 5DE3D54D2AA53A71F3B57D92ACDD7671 /* RCTReloadCommand.h */, - 7DDF0744665656F4901AF9C85D660756 /* RCTReloadCommand.m */, - 415459B9DCB71DFC1B666BBDBF009DC0 /* RCTRootContentView.h */, - 0AD90983FA7D465181A1A5CFF499F0DD /* RCTRootContentView.m */, - F1FCB8B8C78B3CC67C0B2905CCC4AAD7 /* RCTRootView.h */, - 447FFC16368F27E9F314B1280981547C /* RCTRootView.m */, - 425FCABB9C9CE8B1487E385F1EBD1E2B /* RCTRootViewDelegate.h */, - F39DA98B4560F63097808A59C778BF0F /* RCTRootViewInternal.h */, - A0C2CBE489F6BE8623AF5ED5DC1FB0B1 /* RCTTouchEvent.h */, - 595753034D06481EB8E563E3BE145B52 /* RCTTouchEvent.m */, - A23FC1C6EEB4D286D5681F8C73164353 /* RCTTouchHandler.h */, - 0142AF2AC764160F5E7DDCFAC7A40FC4 /* RCTTouchHandler.m */, - BF447A67C41DB59965B58758672AA97F /* RCTURLRequestDelegate.h */, - 4265EE4EF3E088E3BB46CCEEF6C01DD7 /* RCTURLRequestHandler.h */, - D79973939CE8EC7D031363E1E2FC21FD /* RCTUtils.h */, - 0CDA8FCB4FCCED71D58F8B8D0C98D377 /* RCTUtils.m */, - 4F385180DE11379132F14DAA02D3F24F /* RCTVersion.h */, - 6EFA3A284870757064A62A77CA020A25 /* RCTVersion.m */, - C22B7A513CC428E42255314BBA5921B6 /* RCTWeakProxy.h */, - 4AB3E49F970E4FD72D9971F0C86245C4 /* RCTWeakProxy.m */, - AD2FA45F1B35CDA794A4D46F1DFC95E4 /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; - EBC12745279778A882C72416E514E87C /* Support Files */ = { - isa = PBXGroup; - children = ( - 06B0D6A47C619AD6632A50690B027C2D /* UMCore.xcconfig */, - 339D47919E93B2CAED01DCEFD6253C17 /* UMCore-dummy.m */, - E88C45E4936F0D384CC06AC38B3C065C /* UMCore-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; - sourceTree = ""; - }; - EC216FA997440897912EB514820B2C70 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4057007FFCC1F9167336EA33D4D3F28E /* UMFaceDetectorInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; - sourceTree = ""; - }; - ECD0E388727ACC2986139E9FB2E9A41D /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - D4ECAB3FBF1E5C23384E87E852D246E1 /* RCTLinkingManager.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - EE41C57A7D32391E9ADD91A3A93F5666 /* react-native-webview */ = { - isa = PBXGroup; - children = ( - 5A67CFD126B01032A4BB740C95C4F1A0 /* RNCWebView.h */, - 48FD13DB39CB84687FE2099B379E9042 /* RNCWebView.m */, - BA901DC34FE6CC5679CFCB66E02766D6 /* RNCWebViewManager.h */, - F96477C90288FED4C886718B8328F74C /* RNCWebViewManager.m */, - 943E9B246FD22B5A90F44E9DEE7538D3 /* RNCWKProcessPoolManager.h */, - D28C3C37EFCF29A4649B7A20E82CBEDC /* RNCWKProcessPoolManager.m */, - 2B7ED1B7786AE1885AA5E2948D2A9F21 /* Pod */, - DAF384CBE05A0AC4F06C3593D900EDEE /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - EEA1A85B6760F650D4DDF334111F1B26 /* Pod */ = { - isa = PBXGroup; - children = ( - 1E67697363D6ACE2401338E16B3C4BD3 /* LICENSE */, - 5810B799297AAF7BE8E41C230D48EDE1 /* react-native-appearance.podspec */, - CD14C4916843DE205E1E912FA7B8E281 /* README.md */, + 4F296D64BCEFAB4B7FFE87B7F792CD19 /* Yoga.podspec */, ); name = Pod; sourceTree = ""; }; - EF9BFAB2D3C8DA74B8320075B82B5445 /* UMTaskManagerInterface */ = { + E9152C496C9645EF4F97EFAF7A1C5F22 /* Pod */ = { isa = PBXGroup; children = ( - F526CECC51F92CB747322256AE7477A6 /* UMTaskConsumerInterface.h */, - 683256651E619B3F182E3AB4CCA4744F /* UMTaskInterface.h */, - C01B4BFAB4AEDF34EF7BBCBB178D7FA7 /* UMTaskLaunchReason.h */, - B6173241AB27379E5EC529D7392BA90A /* UMTaskManagerInterface.h */, - D3826D8A27E574463157C55E58AE94AE /* UMTaskServiceInterface.h */, - 9C56294BA63CF629E9A870B5321B4677 /* Pod */, - B12C4BAC2F9FFE423EBEACA4D7F304BE /* Support Files */, - ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; - sourceTree = ""; - }; - EFD403C3B9850858E56B3FD6BE1897BC /* Pod */ = { - isa = PBXGroup; - children = ( - 2AC9B5128EFD1963AE00DB8143F10906 /* EXLocalAuthentication.podspec */, + F8F8AD2AF3CFA2FE2A6A02357A4F24D6 /* LICENSE */, + 5B9A882997DDE98C9C6B984CCC630E7E /* README.md */, + B7E7E64489DADC6AEC3A10A6CA2ED535 /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; }; - F0327A6003E18CA9DA6F61303BDB3AC5 /* React-RCTSettings */ = { + E9509F914EB80051924BD6E4114D6A08 /* Pod */ = { isa = PBXGroup; children = ( - 2A871FA84A52BD22BB179B42C1F44F20 /* RCTSettingsManager.m */, - 2B20EFB79432F08207A0BC2109EE1EBB /* Pod */, - 238B28F479949ED98B0EC82115122286 /* Support Files */, + 8F97BD07FC5F5BBD6274EACF7A33930B /* UMSensorsInterface.podspec */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = Pod; sourceTree = ""; }; - F17FD1931E1CAD6AC06B4D95C7E42A0C /* Support Files */ = { + E9802D6CA0E7C5D06A5136FFFE28E85E /* Pod */ = { isa = PBXGroup; children = ( - 34390AC1C4436AA28EA4274C83B23674 /* React-RCTBlob.xcconfig */, - 3A5C5801730B079C30BC743C5E2977DD /* React-RCTBlob-dummy.m */, - A9A1808533E8B43C330738D66896F12F /* React-RCTBlob-prefix.pch */, + 29C336D9226520891234B03D031FA7D9 /* LICENSE */, + 8E669CFAF682DD22415996B5FA21EBFD /* README.md */, + 288041C435661B627CC75525B30A3690 /* RNReanimated.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + EA7B918DD88FC4CA896470EBBEA3AD8E /* Views */ = { + isa = PBXGroup; + children = ( + 1740959860512594A2F76151CF0BBDA0 /* RCTActivityIndicatorView.h */, + CC3FC9700712FBD1AA567F7AC6F218AF /* RCTActivityIndicatorView.m */, + D69701D88CD49E6A2117BF0A85D5CAD1 /* RCTActivityIndicatorViewManager.h */, + B529C81C0DD00D71DDA39F12B1114DE8 /* RCTActivityIndicatorViewManager.m */, + 2D47C18B1A38566DDA509463846D5D40 /* RCTAnimationType.h */, + F8626A5A17612355C68F8F392AACCFAE /* RCTAutoInsetsProtocol.h */, + D30CFBB9075AD715CF0814F3C42F20D7 /* RCTBorderDrawing.h */, + 6CCBDBDC29BB7A39B822CA3F8564B7B7 /* RCTBorderDrawing.m */, + 488A442FC5F3D5C01FF614989EA8CFE6 /* RCTBorderStyle.h */, + 75B0D5740DA16048DBA67EB3C7383D21 /* RCTComponent.h */, + 90C8F2A291F4C215285BB4BCAEEF3023 /* RCTComponentData.h */, + D6217C740A21F0E53B36EEB9DA8F8008 /* RCTComponentData.m */, + FF68D0F31AA6AC72471400C95CCDAE70 /* RCTConvert+CoreLocation.h */, + 81156FC61B2407D7FBE118A27C14193E /* RCTConvert+CoreLocation.m */, + 3367E71248A5F32DA25F6114C127C578 /* RCTConvert+Transform.h */, + 4F9FB5107FDAA1D9BF1AF83427C734B9 /* RCTConvert+Transform.m */, + 0D252E3C100FD303C25081AFE1229E84 /* RCTDatePicker.h */, + 6E9D774887725A4ECCE32F017053F4DE /* RCTDatePicker.m */, + DFF7DE5F0E6D5918C40DE557A7FAF89E /* RCTDatePickerManager.h */, + EB4237BA3DA5584A32961F36AA1B7F66 /* RCTDatePickerManager.m */, + 7D1D277C7F462961CB68E7F43331AB64 /* RCTFont.h */, + 533EA3923C59C2A738D04531D4A94881 /* RCTFont.mm */, + 352AF6D0141F74CA1CDE25B1AE5F1B3B /* RCTLayout.h */, + BFBD6424DEE4DCF24BE84BE610F65546 /* RCTLayout.m */, + 57E60159AB87F8DA8AFEB39C37E2FA8A /* RCTMaskedView.h */, + 0449471EF3A5708C2759E98F99644180 /* RCTMaskedView.m */, + 73C2931D3997BF61E3E2E6B1736271F3 /* RCTMaskedViewManager.h */, + A269D8FE51AEEFAC281A7D418C975799 /* RCTMaskedViewManager.m */, + 4280EDF91E5FB5C9D72FFAC569B1BDCB /* RCTModalHostView.h */, + EC2FB715FA49FFF3B3138A1BF8247C2A /* RCTModalHostView.m */, + 064168F3E6D4B3220633AFA8BC13A274 /* RCTModalHostViewController.h */, + 51261E7F928A4468C08D31F03437F546 /* RCTModalHostViewController.m */, + AB28407587558555967015E8CB7A76D8 /* RCTModalHostViewManager.h */, + 19D4129EAA408A10CF04AD75D38966D6 /* RCTModalHostViewManager.m */, + 6C0ADB4CAC6CB1449ED944347FAD66A2 /* RCTModalManager.h */, + 0C4BCF079199D3E37AEFC84C99381150 /* RCTModalManager.m */, + 768D65199A038233AD69D44C5B5D03E9 /* RCTPicker.h */, + 11DDABF4BC9E23F1781EAEB5854D4E98 /* RCTPicker.m */, + 72A4CC60E4F4C039837A5B2BE263639E /* RCTPickerManager.h */, + 947156C3718A8BA4D97424E2F46ED875 /* RCTPickerManager.m */, + A77B4DF8755277B47E0F43375B019207 /* RCTPointerEvents.h */, + C2497B03EB62600C3D899A10DBD8B2FA /* RCTProgressViewManager.h */, + DB781FD5558E2764E0E59705E19C075F /* RCTProgressViewManager.m */, + 6E332A0B6AD930A1A05393F5F9162296 /* RCTRefreshControl.h */, + 7543543D9993C20E6F8CE3657C8DDA30 /* RCTRefreshControl.m */, + 0FA4798A52CA12F26B8E30FEB501FCAC /* RCTRefreshControlManager.h */, + 995E47FECAE1580AC1EFB9BECD361BB6 /* RCTRefreshControlManager.m */, + 6480EA26EDF295AF13EEE512A75A7031 /* RCTRootShadowView.h */, + 306ABE44DCE2212928B2FC946062B7AE /* RCTRootShadowView.m */, + F061C6D214A0820BF89E8CC5B4440E27 /* RCTSegmentedControl.h */, + 625CF074D1CFC7EF2D456B18DCD83D2E /* RCTSegmentedControl.m */, + 26CF9F46F4DAE142363F418BAF47E969 /* RCTSegmentedControlManager.h */, + DD40E1C6D697D823E20C70F0A188C3F6 /* RCTSegmentedControlManager.m */, + 6DB27FF64B6A9BA9A085B210AC20AD1F /* RCTShadowView.h */, + 65FEE83F67CE8425B6DB921B10F69298 /* RCTShadowView.m */, + AECC493FF67B112DA1222D066A114C76 /* RCTShadowView+Internal.h */, + C7E62426A79E8FEDA73850FDE790D0E6 /* RCTShadowView+Internal.m */, + 6341F132B17A63401DBBD1072F64E34E /* RCTShadowView+Layout.h */, + D2F1EF22CDE9B012FC37464BEC211A3F /* RCTShadowView+Layout.m */, + 9A2532A5E6FDB846AF250D4982310444 /* RCTSlider.h */, + F16B41A3F0930FB8BF3A64E14311AC3E /* RCTSlider.m */, + 83BE6018B6A96DAAC1671C04AADF96DA /* RCTSliderManager.h */, + 38494B8B4ECF453F4E64964A02EFAC18 /* RCTSliderManager.m */, + 31CF54D379E1CCF5E3E81CA003713A00 /* RCTSwitch.h */, + 6FF692CFDF8EFD2AEDB97B1CE9CF0F75 /* RCTSwitch.m */, + 513597538F028FA79DDB70C44A32E1EA /* RCTSwitchManager.h */, + D6D1F6AD95564001DBFAADB6EAB26B7F /* RCTSwitchManager.m */, + A05437ECADA33B2E1D9515C59BA539A9 /* RCTTextDecorationLineType.h */, + 986CD91741357115E3FE5B8C88A11BCA /* RCTView.h */, + 49C8C50270229A19B70BEC8DA6A20D2D /* RCTView.m */, + 4CD06C33C223DAE7A71C13826F70C5F7 /* RCTViewManager.h */, + 7B59C34D69CC54D82CD7FF24983792CB /* RCTViewManager.m */, + 1E7AD59F4DD120C3E7EF9749301C907C /* RCTWrapperViewController.h */, + 7E288E5D203F6FDE17E47E4F651E8BD4 /* RCTWrapperViewController.m */, + 6F5E079B861FCA508F242744A7864093 /* UIView+Private.h */, + 4CBCC216BB9AFD66A64CC1F5C84B6884 /* UIView+React.h */, + E2A11C44D39427C26147B8402A7BB452 /* UIView+React.m */, + A3B3DE4A310F4FF21E50C36954521DC1 /* SafeAreaView */, + 6BB96610449144E3F422B2CA1ED8465D /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + EACC00C9F33754ED5FCB79A863EF32FF /* crashlytics */ = { + isa = PBXGroup; + children = ( + 5461767FC7476889BD889DFDA137CE90 /* RNFirebaseCrashlytics.h */, + 38FBBC46C03DC3A0B07ADD4AD0155E2C /* RNFirebaseCrashlytics.m */, + ); + name = crashlytics; + path = crashlytics; + sourceTree = ""; + }; + EC823A739F3856D45BF09923A1DDF0C9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5470308F14447616497C1800B29BC25B /* React-jsi.xcconfig */, + 36C394F0D29C2ACD1E2C90C0DA9A1B26 /* React-jsi-dummy.m */, + D9DF7DF103E2C8E69A6EEB006F1E1B0C /* React-jsi-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - F1BDB9B9D34F3B7FE27B9A8AC02719FD /* Support Files */ = { + EC91402F9651CAA6B5AECC3DAF65C5CD /* platform */ = { isa = PBXGroup; children = ( - 7E31A6B449E57AABC9237A24B247CB6A /* ReactNativeART.xcconfig */, - D85FDDE6F7D1E0584936A5EC114653D0 /* ReactNativeART-dummy.m */, - 25657EDE3FE1FA2CCBB881EC2F327BAA /* ReactNativeART-prefix.pch */, + 14A5AE354B95475C1542D1F0EB0195D4 /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + ECCA4149EA74A1A751E843D0F2F98CFC /* Support Files */ = { + isa = PBXGroup; + children = ( + 288A5207816312BA56B03B2711BDEF23 /* RNBootSplash.xcconfig */, + 5203B1D6FFE15C94662FE30BC8831B35 /* RNBootSplash-dummy.m */, + AFF5A9DFF659E98B68EAFAB41146E151 /* RNBootSplash-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = ""; }; - F219CAF7F8BC8FCF331E390A74833695 /* TextInput */ = { + ECDF26B0119BB68A947790DBE641E7DE /* Support Files */ = { isa = PBXGroup; children = ( - 1308887462257AEAE38116C2EF6147D7 /* RCTBackedTextInputDelegate.h */, - 249EA4001666958E10159EC31E37103B /* RCTBackedTextInputDelegateAdapter.h */, - 21DE35A2679D9ED09F78CC7F60A228D8 /* RCTBackedTextInputViewProtocol.h */, - 0C2B5550BAD8A5777A79E8FB7EB4D833 /* RCTBaseTextInputShadowView.h */, - 885AA0A3C1FC7159967E28C438FE0FB7 /* RCTBaseTextInputView.h */, - EB63F685143CFE850F245E806125F4AE /* RCTBaseTextInputViewManager.h */, - 76092B968AAC9C724EC9667F654AC5B4 /* RCTInputAccessoryShadowView.h */, - C1B98CFF2D3F49F6DFED56367DEDF379 /* RCTInputAccessoryView.h */, - 51E045377B57602000DED486F9BA7183 /* RCTInputAccessoryViewContent.h */, - 379936F1F3A202E81F05EB564A22F2FB /* RCTInputAccessoryViewManager.h */, - 420B51DB8652B52DD1B92079DF6EFBB8 /* RCTTextSelection.h */, - 6B386F027F4B267841A3111DB1104A2B /* Multiline */, - 172890F8F0175FAF1FD29B3C52C16897 /* Singleline */, + A2582CB0B2FC461BFE6ADC4CBF2E1F9C /* EXImageLoader.xcconfig */, + 6D3289502FF1A6E7C33A98A37059E697 /* EXImageLoader-dummy.m */, + 463B204C86AACC29735430F6A73D2AE6 /* EXImageLoader-prefix.pch */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; sourceTree = ""; }; - F26AAD006FF956042BD5D10835BFAD9F /* ScrollView */ = { + ED9097E459F07548977E5CB06F59D0BE /* RawText */ = { isa = PBXGroup; children = ( - 05B625DEEE974C099FC67FA0558BC026 /* RCTScrollableProtocol.h */, - 30E517EE6A81BC1E2A5ABBEB29553B67 /* RCTScrollContentShadowView.h */, - 1BE510633AEDC567A5FC1865B344C48C /* RCTScrollContentShadowView.m */, - 85FF47ECA5D929CEE09263D7E7DBA3B3 /* RCTScrollContentView.h */, - 87F1FB06E4034624ADF89C7264155A30 /* RCTScrollContentView.m */, - 99FBE28ACFF451E8AC265AEE68702C39 /* RCTScrollContentViewManager.h */, - F8F38AFD3B266BA2D4AEBDA526734BCC /* RCTScrollContentViewManager.m */, - AD4C01981405A7597CB80DEE9DAF3C4E /* RCTScrollView.h */, - 440B6391AA28FA24977CB94B3896EDD0 /* RCTScrollView.m */, - B41185A17A123EA4A1F48887C13EF48D /* RCTScrollViewManager.h */, - 5567F41097BA02556E86FC147A5DA435 /* RCTScrollViewManager.m */, + 184DC0D7DE1AE0F20800399CA4E36527 /* RCTRawTextShadowView.h */, + B5BA33E546CC64E70F3001F24607E3DC /* RCTRawTextViewManager.h */, ); - name = ScrollView; - path = ScrollView; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; - F34ACEB766383EDB5038DABE8BCDB9A1 /* ViewManagers */ = { + EE91DBDB82A9255B24B926C5F6F6382A /* Pod */ = { isa = PBXGroup; children = ( - 7AC949A6CDC9FAD791701093030E2C19 /* ARTGroupManager.h */, - D499DB14204DC262235EAD034FA63FC1 /* ARTGroupManager.m */, - D7C7649AFE69309F676CF78B232B1D1A /* ARTNodeManager.h */, - CEEA07457F9F80108524E600457D4058 /* ARTNodeManager.m */, - 45224B74709B8DD765226CAF36340E9E /* ARTRenderableManager.h */, - 2FBD67DD275E4D2357C19CDB02960A2E /* ARTRenderableManager.m */, - 50D140D10C5D3ADF647AD0DAE5449594 /* ARTShapeManager.h */, - 3A26988C43DEAD2433F7FDAF9DAE8BF2 /* ARTShapeManager.m */, - 547D8A09A994D72FE717196BE4DB1272 /* ARTSurfaceViewManager.h */, - 0DDE34F065DF5E05D72D5B285F4B2FB3 /* ARTSurfaceViewManager.m */, - AA0F80AA3E4AA05D56513CF3F9689879 /* ARTTextManager.h */, - 3DF5B2C7483E20A7A39072BA3B0AF5A0 /* ARTTextManager.m */, + 32B344D3B5E4407C916A2D2B6D94C19C /* UMFaceDetectorInterface.podspec */, ); - name = ViewManagers; - path = ios/ViewManagers; + name = Pod; sourceTree = ""; }; - F36B138CC8C6F856C9223C8DD70A9FAE /* React-CoreModules */ = { + EEA99F92ED3071457898AD0F0FA77005 /* react-native-keyboard-input */ = { isa = PBXGroup; children = ( - 72B02B27678B51B83704A4BE3DFEF191 /* CoreModulesPlugins.mm */, - E5F4B99ABD683869879D48CC022775B4 /* RCTExceptionsManager.mm */, - 2930A500E273DC05E1A45287FE4CA79F /* RCTImageEditingManager.m */, - E17056756AD03B5D1A3A24AE1C8217A1 /* RCTImageLoader.mm */, - BD2997D0C57A5E9834A3F6E7D5A2CDC9 /* RCTImageStoreManager.m */, - 7E9AE99C7865CC26536BC2DD0CB0854B /* RCTPlatform.mm */, - 7AFEC717B70C015C7A0756DF889212C2 /* Pod */, - C61F00511035F3B8FF833E7B8B63B34A /* Support Files */, + 8FB63ADA9B91287CF1E9872C442F7DD9 /* LNInterpolation */, + B2F83BB50EEC9E67B09E24630565A87C /* Pod */, + C490254DCEAA8C2FCF1223288A35B7D6 /* RCTCustomInputController */, + 04A2BEA841EABB24F8A007F49D2328DF /* Support Files */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; + name = "react-native-keyboard-input"; + path = "../../node_modules/react-native-keyboard-input"; + sourceTree = ""; + }; + F1CEA6A9791B8CF9CA873401F500D15C /* Services */ = { + isa = PBXGroup; + children = ( + BB8E71FDFCC3B06D04E7727522B17445 /* UMLogManager.h */, + 754672E23890332E320247B27CC283D7 /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; + sourceTree = ""; + }; + F213C0F835D928401B65E6EF24461DA7 /* EXLocalAuthentication */ = { + isa = PBXGroup; + children = ( + 221D2BD011CFCB20913B91E68A690619 /* EXLocalAuthentication.h */, + FF02551016BB7F5A3FDF31DBC21468A5 /* EXLocalAuthentication.m */, + D16FB2B424AA8B612D97864FA2421B6D /* Pod */, + 3EE3226A34E4349C5936738189149766 /* Support Files */, + ); + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; + sourceTree = ""; + }; + F21A7433B667AE50CD8C4A4DE117FB65 /* RNVectorIcons */ = { + isa = PBXGroup; + children = ( + A7097DEC97FC9C5A3B3379CFE4E8D2DE /* RNVectorIconsManager.h */, + 467359208C028140699A9312DCFD1E88 /* RNVectorIconsManager.m */, + DB6A4FA41E2CC61DA905CC84067DFEFD /* Pod */, + 73689BA02E4808C807C38A120C0F45D0 /* Resources */, + BE313D2D093AB6287BA183C8B28FEFB8 /* Support Files */, + ); + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; + sourceTree = ""; + }; + F411B5C79A42A3FF07AEFB35464EBE99 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2FBC1B863BDBA06A826657CB1B9544D6 /* ReactCommon.xcconfig */, + 6D6DF6A4DE770B1B4D1ABA4D14041655 /* ReactCommon-dummy.m */, + 70269DBC38F10E5E180E949FC1068CFF /* ReactCommon-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; F4E8C74AE7E1C7626C68E1FBF69F4B75 /* GoogleAppMeasurement */ = { @@ -12887,28 +13035,49 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - F58E2BA46D9BE7AF7E944D70CB1A6DB4 /* UMAppLoader */ = { + F4FE2F0AA00612F6EA54085F3AE6ED4B /* Pod */ = { isa = PBXGroup; children = ( - CA6146538D9EC08C954D0E457725B2A9 /* UMAppLoaderProvider.h */, - D1ADC607BB15353F965858ABCFB3CC56 /* UMAppLoaderProvider.m */, - 87B43EFE108D744676A25D0DE7AB40F7 /* Interfaces */, - 011563D36C5AE7076FD2BDDBB3FD0610 /* Pod */, - 4EFE31D50AF7A61F24A42460E98A5E42 /* Support Files */, + 9FEDE31EF7A464473C511A99EF5AFC39 /* UMFileSystemInterface.podspec */, ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; + name = Pod; sourceTree = ""; }; - F650E908CCC38313A969EC02E0FB24DD /* Support Files */ = { + F5592DA778AFDDFC6B6CA41C4B8EBCAB /* Pod */ = { isa = PBXGroup; children = ( - C209D034DDFC1F6D088783677CACB505 /* React-Core.xcconfig */, - 5AA3E3F6E87FB7BCB39803BEBA093109 /* React-Core-dummy.m */, - 2FFCB9D89EDE35F822F28CD3B3532E08 /* React-Core-prefix.pch */, + 4DA2B1DE3A0F37A02BF1C003EFB97553 /* LICENSE */, + 37DA2A66F28FA804CDDF289CB656BD88 /* README.md */, + 52516C4A5BE8EA216C181F32B49DC43F /* RNUserDefaults.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + name = Pod; + sourceTree = ""; + }; + F5F142E701DD6C92C1257AD119A906A6 /* CxxModule */ = { + isa = PBXGroup; + children = ( + 7EF7D3F8EAE56AEC4BB585166C4985C5 /* DispatchMessageQueueThread.h */, + AB7B13E6692DE8466C4698413277AAEE /* RCTCxxMethod.h */, + 570E8CC0C7BFE3CD3F2F32545D3DB556 /* RCTCxxMethod.mm */, + 8B0953F1B9DB2AC74DF16269D5829B7D /* RCTCxxModule.h */, + 79F7D6AB62949A7B3E94E31B11CA27C6 /* RCTCxxModule.mm */, + 4A4DF667BC7852DA1E97CD42B3B7714A /* RCTCxxUtils.h */, + 052C34FCF8FC8205C631C9C1B77BC2B9 /* RCTCxxUtils.mm */, + 458B1BF17FD2B5C712BE6ADEC78775C2 /* RCTNativeModule.h */, + 956861CF893663DCF60E9E263F20A1FB /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; + sourceTree = ""; + }; + F5FA12291DC4DCEC23CCD0F695D46475 /* auth */ = { + isa = PBXGroup; + children = ( + 88B8A999A9E3B56BAC3E1105CF17726F /* RNFirebaseAuth.h */, + 873E15B90C90984EC598DAD3E2B3ABA5 /* RNFirebaseAuth.m */, + ); + name = auth; + path = RNFirebase/auth; sourceTree = ""; }; F6908B7F3DAA9157C0C6086537CC4F7A /* demux */ = { @@ -12921,38 +13090,6 @@ name = demux; sourceTree = ""; }; - F71F1B3ABD955B695D466A833B0D17F5 /* Sentry */ = { - isa = PBXGroup; - children = ( - ED6418C05DC7F19AB106263F7C32FCC6 /* BSG_KSCrashSentry.c */, - 97BE7BFFF182E661D432FFE8E3898511 /* BSG_KSCrashSentry.h */, - C95C4506AB6B5CFC28D1AEDBD48CAF91 /* BSG_KSCrashSentry_CPPException.h */, - 630934A42CE715B3E03D88D2901ACCFB /* BSG_KSCrashSentry_CPPException.mm */, - D46C8720FF023E767A3FD73608E6AAFC /* BSG_KSCrashSentry_MachException.c */, - AA0C881E8B3849CF7F576CD086990F1B /* BSG_KSCrashSentry_MachException.h */, - 856E1B287658CC783C39D96BB611437E /* BSG_KSCrashSentry_NSException.h */, - E3DCC62AAF84C99768664D5FCB9581FC /* BSG_KSCrashSentry_NSException.m */, - 2C4321BC4A132B3112F042E5A4BEB420 /* BSG_KSCrashSentry_Private.h */, - A400C135266E951FFAF31B82700341CC /* BSG_KSCrashSentry_Signal.c */, - C3648A8322404CC8C46A79E0F95A315A /* BSG_KSCrashSentry_Signal.h */, - 5614982E5BAB6B26628667BE302DB37F /* BSG_KSCrashSentry_User.c */, - 5D86346C2AE41566D1B246082A4B399A /* BSG_KSCrashSentry_User.h */, - ); - name = Sentry; - path = Sentry; - sourceTree = ""; - }; - F7713C2064D6509CD159244C4E39E9ED /* Support Files */ = { - isa = PBXGroup; - children = ( - 5D3CEA80B14F24C4D770A2E19D7204DB /* rn-extensions-share.xcconfig */, - 8EB4958C1AAE02BF779DE65F281D502C /* rn-extensions-share-dummy.m */, - B44A94BD5E5C4FA747BAE1692543611B /* rn-extensions-share-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = ""; - }; F81EBDFF90F8EF7E9C7FD80A121F087B /* RSKImageCropper */ = { isa = PBXGroup; children = ( @@ -12979,133 +13116,104 @@ path = RSKImageCropper; sourceTree = ""; }; - F8D5524FB063092E3325F8D28B28D52C /* Pod */ = { + F92A59C1E1D35B689C4739898ED356EB /* Drivers */ = { isa = PBXGroup; children = ( - C69C04ADD9CF573C52C251C1A991FF4D /* UMFontInterface.podspec */, + 8ABCAECA41A28982B4031CBF172B04E5 /* RCTDecayAnimation.m */, + 592D062BBE4E8BEE4FD8119CA38B65EE /* RCTEventAnimation.m */, + 0AA219B73C9530F7BDE4DFABCE95FA91 /* RCTFrameAnimation.m */, + CA6CE05E2A41411E77ECBEE029D33795 /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + FA42F2806D2A85706EB650D165092E2C /* UMModuleRegistryAdapter */ = { + isa = PBXGroup; + children = ( + F5E52AFA1FA6C1027A76F40FDCC7E87B /* UMModuleRegistryAdapter.h */, + 09B7E6D3698A2D6F4705657F0FD89151 /* UMModuleRegistryAdapter.m */, + 33BA8FB7DB870B1E4B61D70DC960EB2B /* UMModuleRegistryHolderReactModule.h */, + 0618BB5EC9C7630E6F677980ACC2E9CF /* UMModuleRegistryHolderReactModule.m */, + 79264A81150031ACCF915DC657D669AE /* UMViewManagerAdapterClassesRegistry.h */, + CC039D26CC07B6E394E69C8209323C0B /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + FAB267B8842102D37E721FF0DD511875 /* Pod */ = { + isa = PBXGroup; + children = ( + 1C2907EF1D5D9BB543C0FAE2A712EA22 /* EXWebBrowser.podspec */, ); name = Pod; sourceTree = ""; }; - F99CDB4483656045B76B189556196FA0 /* DevSupport */ = { + FAC05CC1A29C560381E2059C9003FB59 /* Support Files */ = { isa = PBXGroup; children = ( - EB72252CAC0049312C0A632E2F8F719B /* RCTDevLoadingView.h */, - EED0607F4BFC943666CFC8386F9377F4 /* RCTDevLoadingView.m */, - 65E0D2157B64854FED419EF02DE3FD1B /* RCTDevMenu.h */, - 3100F37554E286058370BD062FAC1D47 /* RCTDevMenu.m */, - 15CFC51C2159AED55EF822EE01AA5DFD /* RCTInspectorDevServerHelper.h */, - FF3804F6E5B0A5D91DBA8A993D10FB6A /* RCTInspectorDevServerHelper.mm */, - BEDE3328BA1A8945076556E42D63F101 /* RCTPackagerClient.h */, - E6FEC01938E6E2881B3F79CA8423559A /* RCTPackagerClient.m */, - A8602FC077BA48E60F4F61D2627E4B0F /* RCTPackagerConnection.h */, - 82DE597588FF763411D2654522BE7936 /* RCTPackagerConnection.mm */, + 7E7D8C6F45F44A274AFAEBAADCD82DD4 /* FBLazyVector.xcconfig */, ); - name = DevSupport; - path = React/DevSupport; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - F9AE074AB8667E103AB4D29D06057F3E /* Tools */ = { + FB24BBCDDE50E9902A636F4A7CD68F01 /* Default */ = { isa = PBXGroup; children = ( - 83DE6C3F3438F8E994848E8EFA9A1D28 /* BSG_KSArchSpecific.h */, - 98329DCCF0E9C701206E2578C76953D5 /* BSG_KSBacktrace.c */, - C80725470BFDE1260F794A5179DD62A2 /* BSG_KSBacktrace.h */, - 63DDE0DC4AACDEEC86EF46E256EFBCE1 /* BSG_KSBacktrace_Private.h */, - A10936A5CFE73F4649919F750A19356F /* BSG_KSCrashCallCompletion.h */, - 9DFEBD29FC57E8774800E8CBB8128456 /* BSG_KSCrashCallCompletion.m */, - CD77225F3389FD634A05B840D1B19DF3 /* BSG_KSDynamicLinker.c */, - 8CE510F89D067BBF690E179DBFE1E75D /* BSG_KSDynamicLinker.h */, - 07FC8D474C39CCD1546659DCEB345DF7 /* BSG_KSFileUtils.c */, - EAC3D0BCF30C8AE869CCC160C96A4108 /* BSG_KSFileUtils.h */, - 1A9CFC66C39806B6AED10B7D782682F5 /* BSG_KSJSONCodec.c */, - B43642FD0E1029A07935168BAA1A3FE9 /* BSG_KSJSONCodec.h */, - C29F91CE67C0C0BD5E497A29A8AF5C6E /* BSG_KSJSONCodecObjC.h */, - 2842B5FFC5432783179FF44CD633B830 /* BSG_KSJSONCodecObjC.m */, - 62479198ABD12ABC2AB2CBB922468BF2 /* BSG_KSLogger.h */, - 8C48D6A870D541C9C33E4D3391F7940F /* BSG_KSLogger.m */, - 19FB76F75E765847C76B32E82B7FD006 /* BSG_KSMach.c */, - 6229001BE76DEB8679ABD3715883D420 /* BSG_KSMach.h */, - 29670EA7212693B9A77B25BCB1B2DE89 /* BSG_KSMach_Arm.c */, - 6C42D1AEB2EA0DD81E36AE847D421E47 /* BSG_KSMach_Arm64.c */, - 5C236F69F20B76124FCDF88A46243966 /* BSG_KSMach_x86_32.c */, - 9C48FC3DE43ECB47614C9E744A10EADB /* BSG_KSMach_x86_64.c */, - 5551575C22DFECDAF2FC590238BBB242 /* BSG_KSMachApple.h */, - B209B9F601D63E666CAD8C90CAC0B43E /* BSG_KSObjC.c */, - 32220994394A40DE7B9D36CAE714B59A /* BSG_KSObjC.h */, - 466503B6AAEA47B56A7ECA1834A44B75 /* BSG_KSObjCApple.h */, - 008EF4A8E637E3AEF9D320EA581F1D58 /* BSG_KSSignalInfo.c */, - 06CBBD83E6C1F160B7D5A5719C8DCBEB /* BSG_KSSignalInfo.h */, - 90790859284BE76172F93E9F7813BB5D /* BSG_KSSingleton.h */, - 73A8489BE4513CBADC8D8802AF64A207 /* BSG_KSString.c */, - 407195066338AC41FC1C9733A789B974 /* BSG_KSString.h */, - 06277AF1991D365E5B1E771917DD49D7 /* BSG_KSSysCtl.c */, - 4B4F0F981C6AD43F5E733E48EBBEC200 /* BSG_KSSysCtl.h */, - 36A03901B4DC6ECFD9F75A20F0D222A6 /* BSG_RFC3339DateTool.h */, - F98E9A2244FBE47544AD9A5D8A263A1D /* BSG_RFC3339DateTool.m */, - 32E8670CCB6423A4F5E3C093AF04252B /* NSError+BSG_SimpleConstructor.h */, - C36359EBCDDD39DCBDD63F8A091AF733 /* NSError+BSG_SimpleConstructor.m */, + 469CAF51A0CCDC31820174853B439B74 /* Base */, + E1DA775A07E6B6EC28DA4BA47DF2CDCC /* CxxBridge */, + F5F142E701DD6C92C1257AD119A906A6 /* CxxModule */, + A941FB7D2276E7FB414361F42AF69BAB /* CxxUtils */, + CFC1E4D1C822CE39A7F8207C67BF6910 /* Modules */, + 275122FFA14AA658DFF70E63B261B572 /* Profiler */, + 64C3BB85B39AE86DE11937260225455D /* UIUtils */, + EA7B918DD88FC4CA896470EBBEA3AD8E /* Views */, ); - name = Tools; - path = Tools; + name = Default; sourceTree = ""; }; - FA967AC70E4B763378E1F4FEA9D13281 /* DevSupport */ = { + FB354B85F2AD1654778970D69228EA84 /* Pod */ = { isa = PBXGroup; children = ( - F99CDB4483656045B76B189556196FA0 /* DevSupport */, - 8DDE3E86EDA2D6AE1A6843AFAEAF9573 /* Inspector */, + 81267A7E1E30585F28BFA81015BF7DB8 /* UMBarCodeScannerInterface.podspec */, ); - name = DevSupport; + name = Pod; sourceTree = ""; }; - FC2C423674CE9AAA49F583CD0276499E /* Transitioning */ = { + FB6E32135CA3501DC7F95BE13886F809 /* Support Files */ = { isa = PBXGroup; children = ( - 1FC6230FB6919867F9E4FFE36EE66EDB /* RCTConvert+REATransition.h */, - B99B50260D3C74CC0BE95A439511508F /* RCTConvert+REATransition.m */, - B1817447D08BB116B2B09ECD993E1770 /* REAAllTransitions.h */, - 91EAA0DE0CBBA7A05103808C326CDA3E /* REAAllTransitions.m */, - BCC1509149AD55868B0A8C7F4BA1936A /* REATransition.h */, - BF2D6E7BE353183521A57A78A49ADA16 /* REATransition.m */, - 8AC291AC8A6255C6CA2555A29AD5470A /* REATransitionAnimation.h */, - 644EF624B21614E883715488CDB1713E /* REATransitionAnimation.m */, - 871606E35697C7A214F174393C32C5A3 /* REATransitionManager.h */, - 6CF3C6C0E55376CABB4BFAC540BCC319 /* REATransitionManager.m */, - DC7A46600FBDC9BC873D1E50C0822400 /* REATransitionValues.h */, - C57ADAB61AC6F95EDE1531DCF48B51A0 /* REATransitionValues.m */, + 8DCCD7ED568883191E1AD19331D3D2DB /* EXPermissions.xcconfig */, + D20C340B88715C7DAB6F46620313AA76 /* EXPermissions-dummy.m */, + F6EE154550CBE38E2AF693AA3FBBDB0F /* EXPermissions-prefix.pch */, ); - name = Transitioning; - path = ios/Transitioning; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - FC59B7331AE341F0413D952C9259C402 /* CxxModule */ = { + FC57D1CAA94A4B0065B9B6E8DC4DBE76 /* Support Files */ = { isa = PBXGroup; children = ( - 10A3D7035CD7D2F0C8454D9EDC73BA99 /* DispatchMessageQueueThread.h */, - 89D910E4F42FE041573767A15964B6A7 /* RCTCxxMethod.h */, - 6D47D80CBD48D815F683A354FF3FAFF8 /* RCTCxxMethod.mm */, - 430AB1CF43FF88FADBEFA7054F43AD7C /* RCTCxxModule.h */, - 6E47D5D95BAEAF224B1C3E50EB8D703B /* RCTCxxModule.mm */, - 8EF4278534C114B75848F65D72660EB2 /* RCTCxxUtils.h */, - 9BD2DF60DA184804CFE750C979ACC465 /* RCTCxxUtils.mm */, - 77B65A07E70545FED8EB9F3870F539D4 /* RCTNativeModule.h */, - 55D3CD657EE4B6F69D3372EF182FD636 /* RCTNativeModule.mm */, + 54B60F0DE0518D91AF7A28A40AA23BF4 /* React-RCTNetwork.xcconfig */, + E95A3CE98CB4A9EB2A7472A669722D3A /* React-RCTNetwork-dummy.m */, + ACD2F0880899F34C02C6ECC889890018 /* React-RCTNetwork-prefix.pch */, ); - name = CxxModule; - path = React/CxxModule; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; - FD5A082D0D2E340EEE411963B287F13E /* react-native-keyboard-input */ = { + FC6F727396515D95B3E02AF36476F5A6 /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - 218477F23FA810D68B35E0DF533922A3 /* LNInterpolation */, - 88F1C5CDED7D1A41F977E22A57792F3E /* Pod */, - 3C323F0E225E5DB3AB4E1EDD64942BB1 /* RCTCustomInputController */, - 8EE59F4CD63FDEC3C8A02E47D3D1B10E /* Support Files */, + 2DE1ABA6B10284D4EDC7655A5CB20176 /* UMFilePermissionModuleInterface.h */, + 65DE0AA70E51996A19EB85C49F0D3F32 /* UMFileSystemInterface.h */, + F4FE2F0AA00612F6EA54085F3AE6ED4B /* Pod */, + 5BB28E2699BDF65F2A3AE459C4DA83DE /* Support Files */, ); - name = "react-native-keyboard-input"; - path = "../../node_modules/react-native-keyboard-input"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; FE43C14EE339FF31B74ECE47E1D075CD /* Support Files */ = { @@ -13117,36 +13225,6 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - FE56202C6992520F70A848D30B72BF6E /* Reporting */ = { - isa = PBXGroup; - children = ( - C7B597B80CF849B7979956947F8C4A8E /* Filters */, - ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; - FE98B0896FF26D43B4DA4510D54A3213 /* UserNotification */ = { - isa = PBXGroup; - children = ( - 6E5DD8E9C4EDFA25C3D2507671F7D2AB /* EXUserNotificationPermissionRequester.h */, - E6670F2D0C21AAC77816339E4F162C86 /* EXUserNotificationPermissionRequester.m */, - ); - name = UserNotification; - path = UserNotification; - sourceTree = ""; - }; - FF530D20D1A8D927B43CFB93470B89E7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5FF709631B88B27D8DC8102633CDC321 /* EXLocalAuthentication.xcconfig */, - 7CD14069E0DC340CAEA66EBACA998E48 /* EXLocalAuthentication-dummy.m */, - 797BF8D47C6BF3255EE647CCA8E6D2EA /* EXLocalAuthentication-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; - sourceTree = ""; - }; FFB3455A3E37A9225E29597AD5CD25E2 /* Support Files */ = { isa = PBXGroup; children = ( @@ -13592,6 +13670,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5975E94A821922BCC9093DA0954E2007 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */, + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5F3DFFE24F43B961A51574872B281E9A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13865,6 +13952,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 760B97D1F923CE7A30D4FB9F537DC194 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7B0C748C5BBCE283B0E70D943593F9DF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13931,13 +14025,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 872381D4916F2E9FFB439945BDBFFEE2 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 89C68E4127297AAB36A30F848FAF3423 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14281,6 +14368,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A5EDFECD8A4D864C06D422AFF5788AD4 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A8E84D39F7C64351339D2369F445B81F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14438,13 +14532,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CBF84CDE22A1ED74F4BF34E7F117CCDB /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; CD897D09918237F229C7C7101EA0EF0A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -15470,6 +15557,24 @@ productReference = 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */; productType = "com.apple.product-type.library.static"; }; + 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */ = { + isa = PBXNativeTarget; + buildConfigurationList = E755D7171EE28A0BD3F13C7FB6B31334 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */; + buildPhases = ( + 5975E94A821922BCC9093DA0954E2007 /* Headers */, + 32C10B386D5EC00648469CEA23658E10 /* Sources */, + F28874E19D1005DE4580E71D01B5D07D /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */, + ); + name = RNCAsyncStorage; + productName = RNCAsyncStorage; + productReference = 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */; + productType = "com.apple.product-type.library.static"; + }; 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */ = { isa = PBXNativeTarget; buildConfigurationList = D017603F108532D6E37B54B383428AA1 /* Build configuration list for PBXNativeTarget "react-native-webview" */; @@ -15581,92 +15686,93 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = B12B60C654B48E714ED50F40AA8255AC /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = DA65A19A3D351A6E7706F6E95BA49374 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - CBF84CDE22A1ED74F4BF34E7F117CCDB /* Headers */, - 0F084BC786DC4E32129F3DC780CE55E9 /* Sources */, - 0D62B59AA78AC18F1F6FA511C5D196A8 /* Frameworks */, + A5EDFECD8A4D864C06D422AFF5788AD4 /* Headers */, + E27626E54C4FF7C91EC6A34251763BED /* Sources */, + CCD9F85CC476B9A700C5BF2B053CE613 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 9296ACB615A242C598BD5B8651C60E56 /* PBXTargetDependency */, - 5924D847641E3D79FD6103D481F9E03B /* PBXTargetDependency */, - A23070E2AC8D432C5107A1256E0275F4 /* PBXTargetDependency */, - EFD075E2561A9315EB30A1E324BFDC10 /* PBXTargetDependency */, - FBE7D09D723DD7D835AA6D7E9A2F11DA /* PBXTargetDependency */, - 6BFCF0F68DFACC9F38F562CBA1DE7F1B /* PBXTargetDependency */, - F5F021B3F52BBD277BD05ECE566E042C /* PBXTargetDependency */, - 8641D87D24B973C225A85E11DDB59FAB /* PBXTargetDependency */, - 1847296CDFA157445A7BFAD6A48346A0 /* PBXTargetDependency */, - 48837EC9D5F49AD53AA5143B4F3F02A3 /* PBXTargetDependency */, - 6E3094A3142A3C6F5498971075430716 /* PBXTargetDependency */, - EE5C681F19C2BD960C9FE0FB6B28DC90 /* PBXTargetDependency */, - 45DC7BE3A7DCBE4CCA2D7E955A28F755 /* PBXTargetDependency */, - DFE54EFB8E8ADDF029A3564B9073A3BC /* PBXTargetDependency */, - C8B5D585C828BE4AB1C1BFFB31AD7B21 /* PBXTargetDependency */, - BC14137DC7B24901959AF5A38B67F823 /* PBXTargetDependency */, - 365771C693DCBDCD5369BEC06B810DEF /* PBXTargetDependency */, - 5442F8F2BDBC8AC54D88CF67B0A6EF72 /* PBXTargetDependency */, - 09126DFF7FCFB86790EF6CE9945D5F26 /* PBXTargetDependency */, - 292B1B72A9EB54CF781D20ED86E1775D /* PBXTargetDependency */, - ABFEEAB51B34B9279043783E67531D27 /* PBXTargetDependency */, - 277155B2CEB0727BCE69659F0CBAA651 /* PBXTargetDependency */, - DA9F12C62FFA20659AFC6C54AF4E9F7D /* PBXTargetDependency */, - CD2914DB228D70418A1EC14EE9D193A8 /* PBXTargetDependency */, - 7B5B1CAA45FD7BF119DC4F3D415B654B /* PBXTargetDependency */, - A9ED98A5552DD136966D3057C908CB45 /* PBXTargetDependency */, - 41DEE25658C05A5628083882254FA586 /* PBXTargetDependency */, - 96223EBAFF1A97E77F70B672C1DD807F /* PBXTargetDependency */, - B95A7CF2597F141CCFEA682BB5379A65 /* PBXTargetDependency */, - 72A85A37787F6E23105BF02E813A4602 /* PBXTargetDependency */, - BC252F1BA48F3C06EEDA912ED47F7ABE /* PBXTargetDependency */, - 684D5D501940DC984F5CB0F6A8D9FE7F /* PBXTargetDependency */, - DA93591AA43259D16E6136A821EC1D26 /* PBXTargetDependency */, - C256CB6781A3CFDD1B57532D602B8E50 /* PBXTargetDependency */, - AA221BE904C0C01C40321032D459D905 /* PBXTargetDependency */, - 7B02650CB9C93F58B9C3465A2CD904E6 /* PBXTargetDependency */, - 4A2A06BAACA010C027AC499C459031AD /* PBXTargetDependency */, - D49D843655AD1EC0C07874F136577A0E /* PBXTargetDependency */, - 87CF0EBD1522704B60F2E5362406733B /* PBXTargetDependency */, - 028A2F4ABD87F1E04A574DD52A514166 /* PBXTargetDependency */, - C659FC088434EE64D230439BA13947C7 /* PBXTargetDependency */, - 16287F1A04D1FD826286E74E1DFCAA4F /* PBXTargetDependency */, - 8225282040A0A860898C20E90CF47878 /* PBXTargetDependency */, - 93758C4B0D549F9D1531B7A242E150A6 /* PBXTargetDependency */, - 9B848D16E111D4984B7C6DBC23CC1609 /* PBXTargetDependency */, - 777C61721A7AF46C5FA6FD015A73949C /* PBXTargetDependency */, - EBF53D7C37C35CC2489D0C6A47D3E9AA /* PBXTargetDependency */, - D9C70B462572E65C4929094AC7476233 /* PBXTargetDependency */, - BDE22947B2463B68D2CA8E87F08E1B8F /* PBXTargetDependency */, - 67A599BAE4124D75F84EDFB374C07387 /* PBXTargetDependency */, - A00A0F656DEE6460F7E22B50FBBB5ADE /* PBXTargetDependency */, - 97C3DCF6215BD4F79AD7B1DF3F1CA1F3 /* PBXTargetDependency */, - AD340DED1B8692F53508AB1F18B76C5E /* PBXTargetDependency */, - B761561CFFC648F4B058F9B496469FD7 /* PBXTargetDependency */, - 31D7553C59D34192E1999597259D474E /* PBXTargetDependency */, - D368BF377DB802C5F5B6F07958738103 /* PBXTargetDependency */, - BD8F590BE104F22AF290628E172A35C7 /* PBXTargetDependency */, - E528B28EAE6AC6A2D51788DB2F13BAE0 /* PBXTargetDependency */, - 87B668CA7AFE25BBDCD382B4B1747560 /* PBXTargetDependency */, - CC1E39817A216780CA9BEFAD07BD06A7 /* PBXTargetDependency */, - 941C1B18F4AAB8DF66B054A5E0B46C45 /* PBXTargetDependency */, - F8508129A7E0A701D29FCE7C600AF256 /* PBXTargetDependency */, - E2E64A87B139897B2E726C43839063B7 /* PBXTargetDependency */, - C673AB2CE2B75DC9E95EDA7E2ADDE62D /* PBXTargetDependency */, - 24490FC5D8FD6C825E67E30EBE7E91BD /* PBXTargetDependency */, - F1BA23F2FB7643FFBDD1DAD459ABB176 /* PBXTargetDependency */, - 95B3AC8755412D4F14AE552C0D021574 /* PBXTargetDependency */, - 3574436076660220B89F7A70BC6E18FE /* PBXTargetDependency */, - C8FE0EEE04628A4A12FD7557EC6E5E48 /* PBXTargetDependency */, - 46A0CF0B3EC9C0345F709D702C0D88C4 /* PBXTargetDependency */, - 405971DE6EC14F620353F9ED880AAC0B /* PBXTargetDependency */, - 63AAD1D3E0C939FC658C240C51CD89E9 /* PBXTargetDependency */, - 0195F5DEB7685B9F2265A12A925425D7 /* PBXTargetDependency */, - 80E39326DAF03630566E6F04B988F5C4 /* PBXTargetDependency */, - 78C3E049647A441330DCCD8089408D2B /* PBXTargetDependency */, - 326D5AF86E1BC28ED8B7F95FB174FBD3 /* PBXTargetDependency */, - 712C238E87A4A55B2C12C9C6B9788C48 /* PBXTargetDependency */, + 056B39E905B11C19C4FC3FA4E256CAAA /* PBXTargetDependency */, + 36B5F2D4DF579F9D6A65F22F45F57E79 /* PBXTargetDependency */, + 075E8CBA651A90A74DCE3CC975078A52 /* PBXTargetDependency */, + A648BA168CBC74CCD7A64149287DF2EC /* PBXTargetDependency */, + 3DC338C0972CEB2ACEADD014EB7C1BB5 /* PBXTargetDependency */, + EF5C2BEFF942513E6D01C4045933E846 /* PBXTargetDependency */, + 4434F715A18ACED217155F5B9499D23D /* PBXTargetDependency */, + E92BB90EC7E43D73E303D401D76C7A6B /* PBXTargetDependency */, + 55F8CF21C32097CF0DF813447F4A9A7E /* PBXTargetDependency */, + 485D55AA71353EF4AB62FFB276316548 /* PBXTargetDependency */, + 474F84ACE546CC02A216A7566C49A64F /* PBXTargetDependency */, + 0FD78EAFAE705E930B255A0D1AB53307 /* PBXTargetDependency */, + 02896C471FABECA3B7BB5266365C3DD9 /* PBXTargetDependency */, + F495B9EEAAADAF161349A8A27123EF5B /* PBXTargetDependency */, + DDD77BA91902FA67CBCAF30E7AD82A7B /* PBXTargetDependency */, + B2CCA1A619BA13A3B92E3FFFD6E698FC /* PBXTargetDependency */, + 2F0905E6270BD295125F578464B4ED9F /* PBXTargetDependency */, + DD51D7DD9DA3B907167FAD018A6710FB /* PBXTargetDependency */, + AA462DC05FEDA5125DDE33B6C5D9FE23 /* PBXTargetDependency */, + 1D2ADAF66376466F067E7DA0813C8947 /* PBXTargetDependency */, + 35183F5581F36CEE74188A91F4E08FCE /* PBXTargetDependency */, + 2D59ACF34800D1DF8A20634932EDDA33 /* PBXTargetDependency */, + 715574D5FE839BFA69846B5846656540 /* PBXTargetDependency */, + AD516B6D89ADEE314543D6B8B10337AE /* PBXTargetDependency */, + 2D41C93E6556BB77F212D21054456398 /* PBXTargetDependency */, + 0AE77EBCA34AF12807A2C06154952678 /* PBXTargetDependency */, + B5F449E4A3D794561B4E7ECFC36787F2 /* PBXTargetDependency */, + 8FF3A24AC08F80F33A3C4F5005E3D482 /* PBXTargetDependency */, + B2FC9838633CFA8ECEDCC337D05D8600 /* PBXTargetDependency */, + 65216BF54F77B8D4FD360F8A38E8B60E /* PBXTargetDependency */, + F4EFDCE98D14CB00EE82D0FEE704795D /* PBXTargetDependency */, + B4A1DCEF26F5D17D0A23F42A2CCACFB3 /* PBXTargetDependency */, + AB764963A7B36CCB3ADBCA05B627E33B /* PBXTargetDependency */, + 3DD1E6F8CEFCF2D1C8B7301F8458CD19 /* PBXTargetDependency */, + AA47BF8E640DE0007B465DA4BB74E369 /* PBXTargetDependency */, + 88A8C54685DA1D2692BD8E3DBA5A890F /* PBXTargetDependency */, + 59881FFB95E919985A99E42CED114EEF /* PBXTargetDependency */, + ED6825EB214D4AC5AAF432D93AC4EE92 /* PBXTargetDependency */, + E15869BDBADE26DD60254E9FD6C395BE /* PBXTargetDependency */, + 5950019A9C6E128B412BB22C9E24F736 /* PBXTargetDependency */, + 581120892CA4CC6CEF90C37D34964ED9 /* PBXTargetDependency */, + F878F90F2B3ACF807CDD361762E860B7 /* PBXTargetDependency */, + 61767C46BDAD33B393F4A0796DE077F4 /* PBXTargetDependency */, + 57E695AEB9A3440C27B05A8167972756 /* PBXTargetDependency */, + 4B41A75FCA05099B04D985E85A7D7A90 /* PBXTargetDependency */, + 7E36A61820FC8CAB7AEF9C63D953D073 /* PBXTargetDependency */, + D683D16710997BCE054585DF4D79B767 /* PBXTargetDependency */, + 6A87985EE4DFFDF59158868C01A73CCB /* PBXTargetDependency */, + 385B8562FA0151FDC9ACAED01C8CCDF5 /* PBXTargetDependency */, + 17C139E74A35C39283CC328279DCF890 /* PBXTargetDependency */, + 70AC042E78F885100F40C7C06A4DF442 /* PBXTargetDependency */, + 12B898C72DC004FDCC94D74A96647892 /* PBXTargetDependency */, + F7EBBB4D942F259F59A9EB14DE724CC8 /* PBXTargetDependency */, + DDA8CFA9246A8D984BAB1E2AABD97B7B /* PBXTargetDependency */, + 75468C39DE56752D538851601902A7AA /* PBXTargetDependency */, + DA2F17F8A6D26A07394A5ED67854708E /* PBXTargetDependency */, + 5D01EBDB74773AC5D685FD8D352AFB80 /* PBXTargetDependency */, + 835D39738D72084CDC041EAFED0D8B70 /* PBXTargetDependency */, + 75239CC7E9C6EE93727C2B4E203CAB0E /* PBXTargetDependency */, + 0FE2B017E8CC3C26E31CB23394738D9C /* PBXTargetDependency */, + 6CAEC23395443D405A789E81CADE9B7B /* PBXTargetDependency */, + F26BC9AC460AD334EBC636E219D93AE1 /* PBXTargetDependency */, + D35FA60EC499CC6724B7C3ABAF31A96B /* PBXTargetDependency */, + 2B8F2353CF5232F8DAE5B4E15EF45D5B /* PBXTargetDependency */, + A9BC96E7408235652EEC5300C6ACCAE1 /* PBXTargetDependency */, + 28A96F886A22691ABB7B2C9556FAC508 /* PBXTargetDependency */, + 1BB37AF5CE18B89477BD699B31DE2FD9 /* PBXTargetDependency */, + D7E01DF72AC007E1D658ECCC6F2E44E8 /* PBXTargetDependency */, + 459D884058D02DFD4336C57F999ABCB0 /* PBXTargetDependency */, + 91C09971E88C42E00CD6AFE8204DAEA8 /* PBXTargetDependency */, + 5B672CC564127916242ED09E80D9B793 /* PBXTargetDependency */, + 412EC1440445D077BB35E1DF81A88900 /* PBXTargetDependency */, + E7E442D658726EA9940C3F730632A1E5 /* PBXTargetDependency */, + 165BFAF939F6E40EF440E141D50FC30B /* PBXTargetDependency */, + EE6FC0766F20ECF8518483301C1235CB /* PBXTargetDependency */, + 35B05AE1C5F5CF4A3D38A71EE348A04D /* PBXTargetDependency */, + 4C4CFF6106E7CF4414F3081A7A2030CE /* PBXTargetDependency */, + 86E620808E24D5132BD34E7F34A1FBD4 /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -15807,113 +15913,114 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 24CFDE8E6B59E85841835E4459C1B21E /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 7F50F656497F5867807834E58136CBF7 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - 872381D4916F2E9FFB439945BDBFFEE2 /* Headers */, - 802D8F4FD9EA610011367FB2EAD9F9FE /* Sources */, - B6B295ECFF8B0B341BF334FEE8E81B65 /* Frameworks */, + 760B97D1F923CE7A30D4FB9F537DC194 /* Headers */, + E9ABF6A3E6D0776BE63FB55603373BDF /* Sources */, + D88B88EE7A17738F0559CB8A4D111EFC /* Frameworks */, ); buildRules = ( ); dependencies = ( - 0F5AC68B8F821BBC65F6AD5B157A18AD /* PBXTargetDependency */, - 47A3BA653CB3E560483CEB5784298DF8 /* PBXTargetDependency */, - F0B9FD087F82784B9A70207837E386AF /* PBXTargetDependency */, - 0B9CD7D1986FFCAD7F18DF6841FC0CD8 /* PBXTargetDependency */, - A2C844D4DC58B9F97D4AC1FC800548F5 /* PBXTargetDependency */, - 9ACE2ADFDEBE68E4FCCA88976FB3CE7A /* PBXTargetDependency */, - 3C020EF79E1484A006CA298B5C275B7B /* PBXTargetDependency */, - 12010EBD7A8C4FFE93CF37675B582BFB /* PBXTargetDependency */, - 9F4CFCA9BC82118FFBF78C0B72ACC94C /* PBXTargetDependency */, - 6A72B467767A7B3986726F5B79772B36 /* PBXTargetDependency */, - 85029F5EB910A907C275C2C712517B1B /* PBXTargetDependency */, - 8BB1C29F712B8C5DF39DFB9B8140B7D8 /* PBXTargetDependency */, - AD3982566AD1002C35248C61015494E3 /* PBXTargetDependency */, - 4E3E946268023BE8AA406DC1422D57D0 /* PBXTargetDependency */, - A9F1DDED590825469EA873A8E0694C8C /* PBXTargetDependency */, - B9799B6DA322AD50EC4B04325EA554D3 /* PBXTargetDependency */, - C0CD4B115AF32DE4F52266A949F58BC3 /* PBXTargetDependency */, - 4CC001915FDB3AFCA05B8B266E65B47A /* PBXTargetDependency */, - 95DD0C3CE9B6B3793053D081D757F749 /* PBXTargetDependency */, - 3AC6557BA6C9CA302B438E6966922CD7 /* PBXTargetDependency */, - 3CF89670A4DE4B1EDEF8DDD910015E85 /* PBXTargetDependency */, - BFE48FA185215467778A90B18D4BC4B4 /* PBXTargetDependency */, - 3FD1803971E707CBD0225A281FD40E4E /* PBXTargetDependency */, - 68F224AFF674DD4299735389C9E0A3EA /* PBXTargetDependency */, - 0A4229A5BE369057D1A795555A24F892 /* PBXTargetDependency */, - B9EA0838D098B37EEFD1960E17A898AA /* PBXTargetDependency */, - AB07C974BD70E3B197B7923D52C115EC /* PBXTargetDependency */, - 4DA01EC7028D1057127D121972CA0F59 /* PBXTargetDependency */, - EE13F855FFD4A175849E154EF38C3099 /* PBXTargetDependency */, - 20710B5CCD95B8069610E5B3748F1AC9 /* PBXTargetDependency */, - 9D5B0B4BAA18E7FC3EBA5F9532D330CF /* PBXTargetDependency */, - A91F595EB8A2ACC3E2B368E8A47D6C67 /* PBXTargetDependency */, - 24009844375A5ECFB4324F4DDDF75D1E /* PBXTargetDependency */, - DAE915E26056C93906E8A1B04F56AA0D /* PBXTargetDependency */, - 59BDD4E987E20DFE99862EF7B8DDED15 /* PBXTargetDependency */, - CBD2F9D3CBE2717E24E09A737DFE801C /* PBXTargetDependency */, - 783C7A4BF6D4F52D6641CD06F0CF150D /* PBXTargetDependency */, - 01509242F40226F02A79A24FCCAABF9D /* PBXTargetDependency */, - 9329640E64A875BE2D6E333F11CB5D3E /* PBXTargetDependency */, - EC1397A3235EF60E03D6BA6283DF2C57 /* PBXTargetDependency */, - 54FB066B207A0E19C8B59746FE053B36 /* PBXTargetDependency */, - 38772D2A402A8554C0E8D50B8A2FF601 /* PBXTargetDependency */, - A9A8A542AD7A0B35E075C3E07D132720 /* PBXTargetDependency */, - EFA20BBD349FFA6BBE19093E83F0072D /* PBXTargetDependency */, - 9A6F8FEA9E0AFC127DA9ABD5BF694B32 /* PBXTargetDependency */, - A7DE55FF81A199753C33BB0FF60CF10B /* PBXTargetDependency */, - DCD5A2D3D1B59A3B78D92E40EED0B557 /* PBXTargetDependency */, - 44A3AE260F57AE982CA9137FF7E53209 /* PBXTargetDependency */, - 7729F116E58CCBBF2BB25B8F358AD099 /* PBXTargetDependency */, - F968CC5BFA92B79143588DA28EB600AF /* PBXTargetDependency */, - E50013E07D1B758D4DB54CF1D7D8E057 /* PBXTargetDependency */, - 2E2CAF9A1787060693AC55D0A39EB282 /* PBXTargetDependency */, - B835A9847018155857C6F7EEFA489993 /* PBXTargetDependency */, - C6D033D4965A83E51682F8D176CBD190 /* PBXTargetDependency */, - E72253786BAC9675B9B901505BA7E0BD /* PBXTargetDependency */, - C83870D84414B274428A901251F2A0CC /* PBXTargetDependency */, - 4BA08B05E6FEF61848F16C4922FB3461 /* PBXTargetDependency */, - B7141525630398CD759CF12D639C1C70 /* PBXTargetDependency */, - 594950D05FEB529075EEF0413E8D412E /* PBXTargetDependency */, - C6C9BA57D6B9E5E63518B6DDBB178383 /* PBXTargetDependency */, - DE235AFB04088ACE99A5172675F402C2 /* PBXTargetDependency */, - B1795AB7FF93851119E344734596F8C8 /* PBXTargetDependency */, - D194470B7DAA44624DEA160F934FA0B4 /* PBXTargetDependency */, - 4B332B52776123DEBAE7F5F56206983C /* PBXTargetDependency */, - C0CC47BDC6FDD04B0015CBDFEF8AEA08 /* PBXTargetDependency */, - 8358C68443853E1186176B2C08B5E629 /* PBXTargetDependency */, - 64060F33B5D34105944C73A876EA3528 /* PBXTargetDependency */, - BB91FABE98864B5420AD34B5552AE752 /* PBXTargetDependency */, - 2D47A30F992A44607813E85C3190665E /* PBXTargetDependency */, - 2FDDEF79244DA0AAAAAC94C32C18A2F6 /* PBXTargetDependency */, - D7BFCFCB56D34393D79178E24B3E5436 /* PBXTargetDependency */, - A10F028786CFD8379F8F202CECC53828 /* PBXTargetDependency */, - 3D72E16ED21BC3D52CD121881EC290E2 /* PBXTargetDependency */, - 04F8EBA88BEBF70B12474D708E1B166E /* PBXTargetDependency */, - 61C9CA43B73A8823740491FA1A6C49BF /* PBXTargetDependency */, - A8CC4594BD5ADDF40463AEC9B3C71A9E /* PBXTargetDependency */, - 7C7CD2936ED779A875F8429F4608CA8D /* PBXTargetDependency */, - 851F4DDA4A5AFCBDC9FA448C61764BFD /* PBXTargetDependency */, - A222A6167B100CD181C1B406EFD3EBC4 /* PBXTargetDependency */, - B640C702D7B3879174D76E36AAB68157 /* PBXTargetDependency */, - 1930E635DFC182EF51B6593EE6BAEC00 /* PBXTargetDependency */, - 25FC803241FEDC235161DE6790A788BE /* PBXTargetDependency */, - D453B131DE00E30C0C551DBA5EDC984B /* PBXTargetDependency */, - D6BDCC81ACFAFB3FA8FFFC2107431323 /* PBXTargetDependency */, - E866327FFC1162431884B82F14B5F964 /* PBXTargetDependency */, - CB112F564EA1F429184FE996AEDF2386 /* PBXTargetDependency */, - D1AA7C4F247E7691115F4D8995DC5ABB /* PBXTargetDependency */, - D3E5FE5F812BB250FC13AC7AF58B9A75 /* PBXTargetDependency */, - 9045DE354437144318FB896AECE0B0D8 /* PBXTargetDependency */, - EBF039172671835D2E43AF4392FC2FF2 /* PBXTargetDependency */, - 03C317C68CB8AF7D0D34030F8520446C /* PBXTargetDependency */, - B394EB23099E0BFD990E14927708C6CD /* PBXTargetDependency */, - A5566EF8FD918838B34FD9AB79AFC6DE /* PBXTargetDependency */, - BC0C1D1BF373901A193B57FEB886C277 /* PBXTargetDependency */, - FC436C7B528B08F9DC831249F794DB6E /* PBXTargetDependency */, - B66087BDCB72F4F675E8791E50F1C036 /* PBXTargetDependency */, - 1118F75D7EE8F9808786F531BCC08A6E /* PBXTargetDependency */, - 4BA5600396F4FFC1F7BE02C0672C728B /* PBXTargetDependency */, + 7648C03DA8F750AD13AC901B24031BF1 /* PBXTargetDependency */, + A3209D023B70F05953F589B1C36DBDAA /* PBXTargetDependency */, + 88BFF3E3C4EB070DA9BFA137AF62BA38 /* PBXTargetDependency */, + A5273966B0B350AA94F272F18902056C /* PBXTargetDependency */, + 0740E696744ED823DC38EA7A3C563652 /* PBXTargetDependency */, + F021ADA541ABF1FCF5A5CC95848B8322 /* PBXTargetDependency */, + 6188193545B8D92564028754D71A4265 /* PBXTargetDependency */, + F169E1CFAF68BC27EE6052BC0294F887 /* PBXTargetDependency */, + B72591CA72DF6427D394D2BBF4926358 /* PBXTargetDependency */, + 9631EFC3DB6253434DD2BB487EC4A27D /* PBXTargetDependency */, + 08B9B7294D8A50EF4B3DCCA6095EBC8B /* PBXTargetDependency */, + 8BBB7D3FD055FABC749EB793F1B7F149 /* PBXTargetDependency */, + 542DFAA0E6A79E1A53B2C51158364340 /* PBXTargetDependency */, + E5E8AA3554F813016A1645AD8AC25579 /* PBXTargetDependency */, + 1581BA26D8399CDD3696A2901487E782 /* PBXTargetDependency */, + 1CA7AF0A58187CC306099BB95FEADF18 /* PBXTargetDependency */, + FC924B6BA6A216A6B846FC23AF98353B /* PBXTargetDependency */, + 43C3863EBB94059A4D2A9CC354AB9D58 /* PBXTargetDependency */, + 19B9284C151D486FF81E4180F5A8A6FB /* PBXTargetDependency */, + 73FB66BDF6E3D515C3D98C38ACD7CA1E /* PBXTargetDependency */, + 304685074EB23DDC37494B532B7E8771 /* PBXTargetDependency */, + D1E682A606EBC3015078BE228C2327C0 /* PBXTargetDependency */, + A0DDC0CF4715900CA922DAFDD8194A58 /* PBXTargetDependency */, + 60CDCF9615790233BBCA2D57DB10629D /* PBXTargetDependency */, + FA745255DF055B2BA92B1792E4439C02 /* PBXTargetDependency */, + 3E0A70128FB1881CF29367F431B7C832 /* PBXTargetDependency */, + 8B439CF36BB463F2C5EAF0769BD92509 /* PBXTargetDependency */, + 132DF13C9AAB628ED336DF610F739BB3 /* PBXTargetDependency */, + 1A36918814348E51C6EE2CC50C90D723 /* PBXTargetDependency */, + D103760C0D9018A6882EC5EBF5BC2B7D /* PBXTargetDependency */, + 2F9C2416269BE62DDACE948E16F53A24 /* PBXTargetDependency */, + FFE5482B0CBD4C12DCC2627E673D65AA /* PBXTargetDependency */, + 1C4A521D8D42D75C0DCC2D1F73EC742F /* PBXTargetDependency */, + B7C845764E1BB34E92BCCAE07474C17F /* PBXTargetDependency */, + DFBC52EBB38DF12FF35889728138E5FC /* PBXTargetDependency */, + F35CAB2EC916912DDB90C18D15D30B3C /* PBXTargetDependency */, + CA7B1F475FD2CFA87DB1A47A6720D340 /* PBXTargetDependency */, + DF9D13A62C3EABC526E6CB17AC72BC46 /* PBXTargetDependency */, + 4E5100A92FD420BF015BEE8D7FE35DF7 /* PBXTargetDependency */, + B8CCE7F4361F9AFDC3A681D490DB4A26 /* PBXTargetDependency */, + 3AF3716DB01414606D68271068B1F871 /* PBXTargetDependency */, + 8BF9ABB09437837E6498A2F16C4AD4DA /* PBXTargetDependency */, + 0DE544FACEC2184C6C76CDD10B3C0582 /* PBXTargetDependency */, + 9A8DA9F77F51ACBE3A3873E803F61171 /* PBXTargetDependency */, + 2B046771A3B0A437CA34659FA3EEB99B /* PBXTargetDependency */, + 97061A5FC12B282558A306C8A28A6EB9 /* PBXTargetDependency */, + 8A2E3E7F16E9A08B8FA89427F09513E2 /* PBXTargetDependency */, + FBECB347DAE259450A1352E16A61977F /* PBXTargetDependency */, + DB33CC5B1A0743BE0B9F1F27F606C35B /* PBXTargetDependency */, + 2146D872211D0FA3769DDBE1E4FA47B3 /* PBXTargetDependency */, + A97CE3301EA385726FF6BAA3456461A0 /* PBXTargetDependency */, + D218A6647D97C8B492D2ECE646575747 /* PBXTargetDependency */, + 21A09866E72E910A838EB23BF3C18976 /* PBXTargetDependency */, + 801BC183CAAB1341E1453C2997DECD94 /* PBXTargetDependency */, + 7859BA28BB6C797ED3905DA729B17335 /* PBXTargetDependency */, + E1987DC1A2A2A6496A00D67309CD430F /* PBXTargetDependency */, + 53248F04107C003EAA1501D97485335C /* PBXTargetDependency */, + A4772A82B867E63CA92F2B2B0367C89D /* PBXTargetDependency */, + 36882DE0C15FE469AAA763B6FDD2F6A6 /* PBXTargetDependency */, + C4BF17DF464ED873F5B1CEBD2808D627 /* PBXTargetDependency */, + 855ED396FDA17E0560D570865C6F253D /* PBXTargetDependency */, + 8C748506DF3688CBFDA828E6B821D7C1 /* PBXTargetDependency */, + C43665412AAEA15F68B6F9BE1E0C4580 /* PBXTargetDependency */, + 1BF12E7B47741567CDDF545FE5A92CB0 /* PBXTargetDependency */, + 31F7EB946048AF405A5AD2A54DE96D95 /* PBXTargetDependency */, + 431BCE1B756539FA4C6127E1005FBBEB /* PBXTargetDependency */, + BF3C067F2935C0F7ED14BCAA8F015820 /* PBXTargetDependency */, + 6C1978B7AEFBBFE4C9761613995F5F59 /* PBXTargetDependency */, + 19CF3133A13D7DC4554698BE1A4AD2D8 /* PBXTargetDependency */, + B5C85E35A4890AC54DCE700D0C94A4FC /* PBXTargetDependency */, + C1F26AB58E66F025ED87DE2ADA0D6EAB /* PBXTargetDependency */, + DE9C9D2695B6889F83203391A460B060 /* PBXTargetDependency */, + D7FDF226033B510860E2BC8959A9B683 /* PBXTargetDependency */, + 694545E5CA59727EB682695CAF70C618 /* PBXTargetDependency */, + F7C59BDC5995D5C202C9C392284AD2B1 /* PBXTargetDependency */, + D5453E0B7F15C62ED423693A4F56ED8A /* PBXTargetDependency */, + D80F4FD97C73D39CDF1CC7369F5BCDEC /* PBXTargetDependency */, + 662112E3FC98A4543A4C61884941DB12 /* PBXTargetDependency */, + CEDC79159C1B268ACC3E5D60EE1D2128 /* PBXTargetDependency */, + F65CF9B1B39E5A1E7A78BDEFA294B7D8 /* PBXTargetDependency */, + 2271DED6476D896468BC47651D7588D4 /* PBXTargetDependency */, + F7C3DD21FC287B398B52B6D9E4350BC6 /* PBXTargetDependency */, + 5F341C262AA960072DA4E14200F17162 /* PBXTargetDependency */, + 208E02D0FB6BF87FF1AED9ED30ED52A8 /* PBXTargetDependency */, + 1AC6D55C0C3BB2C2DDA10453050E7902 /* PBXTargetDependency */, + C90FCF371490EFEB5340C12555680A9A /* PBXTargetDependency */, + 9AEEC21CA54BE997331ACEAD5002A2CF /* PBXTargetDependency */, + 46EFD0E2F793AC41086A513CEF3F58E3 /* PBXTargetDependency */, + 0FD051BB94207506A7336605F720F6F9 /* PBXTargetDependency */, + D4E50B9796ADB879B11A867D3D25D3D0 /* PBXTargetDependency */, + 1A68CD44403307753516EBC0784BA114 /* PBXTargetDependency */, + 7504FDDFDA09D40FAE1F012E2BB69F01 /* PBXTargetDependency */, + CF42390FDCBFE859677C499F6DC470DA /* PBXTargetDependency */, + A6B69106CB6EB2EBA4A1D124069F81E3 /* PBXTargetDependency */, + C1B6667B78F3D783AA2076C330B9C1C8 /* PBXTargetDependency */, + CC41D941582650D6F0B43E7230DC38B0 /* PBXTargetDependency */, + E46DFD8724996454D3616CFEC9677925 /* PBXTargetDependency */, + 36F0A86419B661CF1B54133319328F57 /* PBXTargetDependency */, + BE8F03D8CA9BFE0EC33AF4F4683AB561 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -16374,7 +16481,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 890910D2505ED7E061FABFCD61823A18 /* Products */; + productRefGroup = 05544C3B312BE37A0CB9B26F6BE0A3AE /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -16449,6 +16556,7 @@ 64F427905796B33B78A704063422979D /* rn-fetch-blob */, 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */, 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */, + 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */, D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */, 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */, 0BB7745637E0758DEA373456197090C6 /* RNFastImage */, @@ -16526,14 +16634,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0F084BC786DC4E32129F3DC780CE55E9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 82B3F4C318BA4FD63398DE44A20A7367 /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0F4F8578468E69A8701D946920E5C85B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16749,6 +16849,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 32C10B386D5EC00648469CEA23658E10 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */, + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 336DD63A991C2F740B88BEF51D47EBC8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17469,14 +17578,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 802D8F4FD9EA610011367FB2EAD9F9FE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 798057C43424B8388D37B37C0FF3D516 /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 8554764A2D1C1901709057D3B8ABEBB9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17799,6 +17900,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E27626E54C4FF7C91EC6A34251763BED /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 35A25D73072000FCDC154E5D52F12925 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E52752F659F5427D67E7BC18DCD04B86 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17890,6 +17999,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E9ABF6A3E6D0776BE63FB55603373BDF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 06F69F5024C048D9F5F3D6C441B4C7A7 /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; EC2F803034C82734E1C7B0418C5C60CF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -18011,35 +18128,17 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 01509242F40226F02A79A24FCCAABF9D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 2A905BCFAF16D3E950B9D2A951CD7B8E /* PBXContainerItemProxy */; - }; - 0195F5DEB7685B9F2265A12A925425D7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 311444313BA6A2014AF61E6FFCF67BB4 /* PBXContainerItemProxy */; - }; 01C4775EBB1ADD0B79CC48B319789E79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 97B757EDAC3A7488ACC8A43E74C8388E /* PBXContainerItemProxy */; }; - 028A2F4ABD87F1E04A574DD52A514166 /* PBXTargetDependency */ = { + 02896C471FABECA3B7BB5266365C3DD9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C978E2B36D38968087242ADBB0DE8929 /* PBXContainerItemProxy */; - }; - 03C317C68CB8AF7D0D34030F8520446C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = 428AE3E3B0C434B2BE72A0E6DC13CFAA /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = 0AE0AD74441235EC05DDE72238C3DCE3 /* PBXContainerItemProxy */; }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18047,11 +18146,11 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */; }; - 04F8EBA88BEBF70B12474D708E1B166E /* PBXTargetDependency */ = { + 056B39E905B11C19C4FC3FA4E256CAAA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 78960F097FC7A2E31B0C67A8BF19D7C0 /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 258310BC70980B69C0F38FF4A81C053D /* PBXContainerItemProxy */; }; 0601407CEF1C58A062803387CCDB2AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18071,6 +18170,18 @@ target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = B7EE9B1370B572054C651D54BC4B9907 /* PBXContainerItemProxy */; }; + 0740E696744ED823DC38EA7A3C563652 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 9541E5A3CCD444A0BFEBBA45B1168043 /* PBXContainerItemProxy */; + }; + 075E8CBA651A90A74DCE3CC975078A52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 4DB553BA91EB321E16E02F459A8CD268 /* PBXContainerItemProxy */; + }; 0819D4E8DCB748F652F6C3216F88A453 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -18083,23 +18194,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A9D92F68FAFAEBBE26C78B0172ED347C /* PBXContainerItemProxy */; }; - 09126DFF7FCFB86790EF6CE9945D5F26 /* PBXTargetDependency */ = { + 08B9B7294D8A50EF4B3DCCA6095EBC8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 2AF3E62F6A3C8DFFC033624C8B125A17 /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 480D090BF9357EBB54BD50CC054B006D /* PBXContainerItemProxy */; }; - 0A4229A5BE369057D1A795555A24F892 /* PBXTargetDependency */ = { + 0AE77EBCA34AF12807A2C06154952678 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = D681F2B0538A69821F2C0FD7218C3B49 /* PBXContainerItemProxy */; - }; - 0B9CD7D1986FFCAD7F18DF6841FC0CD8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 9F4E2440EF4574322286CDA4DA94C082 /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 1C19AB26752E282389E09285E2389E97 /* PBXContainerItemProxy */; }; 0BDC71A280A13EDA3BACEEA9FFA4057C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18113,23 +18218,35 @@ target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */; }; + 0DE544FACEC2184C6C76CDD10B3C0582 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 9C08D46660FD261E8683F83DFF68F1E7 /* PBXContainerItemProxy */; + }; 0EA175BD24BB28A0E0412FF094DE386B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */; }; - 0F5AC68B8F821BBC65F6AD5B157A18AD /* PBXTargetDependency */ = { + 0FD051BB94207506A7336605F720F6F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 7479C9A02CE9BD8D4DD262E3491EA1C7 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 0D78D3AAD7B2009964060A8D32981754 /* PBXContainerItemProxy */; }; - 1118F75D7EE8F9808786F531BCC08A6E /* PBXTargetDependency */ = { + 0FD78EAFAE705E930B255A0D1AB53307 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 037069A333838AB146D7F63FFFE3951D /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 0E781E90FC692F1025C68E2F9BF4EE08 /* PBXContainerItemProxy */; + }; + 0FE2B017E8CC3C26E31CB23394738D9C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 78402DB0832AA9FF8FD2C9058B512FDA /* PBXContainerItemProxy */; }; 111B42C5DC57FD6481F10A216C2A2A54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18143,17 +18260,29 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */; }; - 12010EBD7A8C4FFE93CF37675B582BFB /* PBXTargetDependency */ = { + 12B898C72DC004FDCC94D74A96647892 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = C295506CE457FFFFB2D724BE5655F8B0 /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = C184E539E7DEF8D34A2AEBBF4EE8ED8F /* PBXContainerItemProxy */; }; - 16287F1A04D1FD826286E74E1DFCAA4F /* PBXTargetDependency */ = { + 132DF13C9AAB628ED336DF610F739BB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 1AEF2AE5DA4BA57F6D0DD29D48C9BBB4 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 6C297928E18D44F5953BAF8CE0EF981D /* PBXContainerItemProxy */; + }; + 1581BA26D8399CDD3696A2901487E782 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 62B38692516D6A5E78428F1EC039B546 /* PBXContainerItemProxy */; + }; + 165BFAF939F6E40EF440E141D50FC30B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 1743924C8D91985530852AC44F7B98BE /* PBXContainerItemProxy */; }; 16D9EDA83A5EAC350AAADE42DC833185 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18167,11 +18296,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 1847296CDFA157445A7BFAD6A48346A0 /* PBXTargetDependency */ = { + 17C139E74A35C39283CC328279DCF890 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = D4CAA9CA7C8E69C0DC481167E31BE48B /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 1EF30FD97FA557B7C3CE5383A10031EB /* PBXContainerItemProxy */; }; 18FD1501C797648CCBBE6F5A312BFE05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18179,11 +18308,65 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */; }; - 1930E635DFC182EF51B6593EE6BAEC00 /* PBXTargetDependency */ = { + 19B9284C151D486FF81E4180F5A8A6FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 079575269BF1C202F91689D97EB0CB8C /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 00DEB2BB9439B7EA673008CBF0893F1F /* PBXContainerItemProxy */; + }; + 19CF3133A13D7DC4554698BE1A4AD2D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = A9655AA41F689086680FD6CB95DB2A66 /* PBXContainerItemProxy */; + }; + 1A36918814348E51C6EE2CC50C90D723 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 7939FF264391697DD8ADD14707580AA3 /* PBXContainerItemProxy */; + }; + 1A68CD44403307753516EBC0784BA114 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-input"; + target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; + targetProxy = 753607300D6D5D24E790F6C94A029667 /* PBXContainerItemProxy */; + }; + 1AC6D55C0C3BB2C2DDA10453050E7902 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 47A25B4923DEBFB6F157ADFF5C3C85B4 /* PBXContainerItemProxy */; + }; + 1BB37AF5CE18B89477BD699B31DE2FD9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 93542BAE65FD8D678AEF4A127BF57FD7 /* PBXContainerItemProxy */; + }; + 1BF12E7B47741567CDDF545FE5A92CB0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = B6FAF51BF8E439B34505FAD42F89B7E8 /* PBXContainerItemProxy */; + }; + 1C4A521D8D42D75C0DCC2D1F73EC742F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = E7077A3CE305DA43BD5D0315DBC847CF /* PBXContainerItemProxy */; + }; + 1CA7AF0A58187CC306099BB95FEADF18 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 4A882638CE98EDB10A9449CBA4216384 /* PBXContainerItemProxy */; + }; + 1D2ADAF66376466F067E7DA0813C8947 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = D08B040994AA76EC8F0C35519BB43D86 /* PBXContainerItemProxy */; }; 1F7F74A9D27293B2CD3A13D6A29E8DCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18191,23 +18374,29 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */; }; - 20710B5CCD95B8069610E5B3748F1AC9 /* PBXTargetDependency */ = { + 208E02D0FB6BF87FF1AED9ED30ED52A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = EA5E346BB2401BCD34D7C25846427199 /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 967EC7AF152BB7F9CEA8D6B0BC9F1AC4 /* PBXContainerItemProxy */; }; - 24009844375A5ECFB4324F4DDDF75D1E /* PBXTargetDependency */ = { + 2146D872211D0FA3769DDBE1E4FA47B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = DE9AC43A73900857969F0FAA687D7E50 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 89F74E8C510C7DC69AD71D7C3302C6CE /* PBXContainerItemProxy */; }; - 24490FC5D8FD6C825E67E30EBE7E91BD /* PBXTargetDependency */ = { + 21A09866E72E910A838EB23BF3C18976 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 260FF0C211C41ACD759800FFA5607DA5 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = AC2B5404C97BAA0B445F050DCC7DBBC7 /* PBXContainerItemProxy */; + }; + 2271DED6476D896468BC47651D7588D4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 276D437DA14F9AB8A5DAC833872DA3DD /* PBXContainerItemProxy */; }; 24B55147C941BE9797F6BC794F57308C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18221,12 +18410,6 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */; }; - 25FC803241FEDC235161DE6790A788BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = AD880691E573EBE9FCDF6F2A893C48CE /* PBXContainerItemProxy */; - }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -18245,17 +18428,11 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = 9AC1F06D86A0940CBEDC84127390E31D /* PBXContainerItemProxy */; }; - 277155B2CEB0727BCE69659F0CBAA651 /* PBXTargetDependency */ = { + 28A96F886A22691ABB7B2C9556FAC508 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 089558083C37398D29C4A58DC2A7459D /* PBXContainerItemProxy */; - }; - 292B1B72A9EB54CF781D20ED86E1775D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = C920F0CCDE6B125D03C36F35E1B070B0 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = BE538079A83FE9F0F88873B6425EDE84 /* PBXContainerItemProxy */; }; 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18263,6 +18440,18 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */; }; + 2B046771A3B0A437CA34659FA3EEB99B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 12195A157C608BEB4F8D549CB50EE4FF /* PBXContainerItemProxy */; + }; + 2B8F2353CF5232F8DAE5B4E15EF45D5B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 6AACC31E19431CEF6E27441FC1D65554 /* PBXContainerItemProxy */; + }; 2C093D825CD5837807DDB5B0FBABE56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; @@ -18293,17 +18482,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */; }; - 2D47A30F992A44607813E85C3190665E /* PBXTargetDependency */ = { + 2D41C93E6556BB77F212D21054456398 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 1EB1D3D9073FEC354A84EF669DD545EB /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = E2180C4235F7A779475D025F5C18BC58 /* PBXContainerItemProxy */; }; - 2E2CAF9A1787060693AC55D0A39EB282 /* PBXTargetDependency */ = { + 2D59ACF34800D1DF8A20634932EDDA33 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 10B716BE952DF4ACDC263269B6902701 /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = F90756FAAEA013079D7A4BF64DAFCB6F /* PBXContainerItemProxy */; }; 2E5A8B52DC4EB0A2B4F078A2DEBADCF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18311,11 +18500,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */; }; - 2FDDEF79244DA0AAAAAC94C32C18A2F6 /* PBXTargetDependency */ = { + 2F0905E6270BD295125F578464B4ED9F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 94B3FE0841D5771605B743B9D9C34B0F /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 0E1F52E2EB19AA19090383FCAE10654F /* PBXContainerItemProxy */; + }; + 2F9C2416269BE62DDACE948E16F53A24 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = B152A07862B10DD05A320C6612ABEF0C /* PBXContainerItemProxy */; }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18323,17 +18518,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; }; - 31D7553C59D34192E1999597259D474E /* PBXTargetDependency */ = { + 304685074EB23DDC37494B532B7E8771 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = B7282A609EFDBCCF6DFE5923B1E9396A /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = 56668102C01DCC60C707BCFA6FA6493A /* PBXContainerItemProxy */; }; - 326D5AF86E1BC28ED8B7F95FB174FBD3 /* PBXTargetDependency */ = { + 31F7EB946048AF405A5AD2A54DE96D95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 53FC24855C50722674F55D40910C81FF /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 46EBA33EF66A3653124275BC88E5DD5B /* PBXContainerItemProxy */; }; 330F77DFE2073004CAEAE6D131E54D67 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18347,11 +18542,17 @@ target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 3574436076660220B89F7A70BC6E18FE /* PBXTargetDependency */ = { + 35183F5581F36CEE74188A91F4E08FCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = E8E93431DE5B9EDBC4D3B99AA008285F /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = AA2D3B487B5D1AFCEDC703AEB2A911CE /* PBXContainerItemProxy */; + }; + 35B05AE1C5F5CF4A3D38A71EE348A04D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = AA09C6696ADEE54F579515F039A69A89 /* PBXContainerItemProxy */; }; 35D5269AD31979BA1B767BBD3ED53885 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18359,11 +18560,23 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = BF3AAFF64628FD7E9E7A7DD743002FFF /* PBXContainerItemProxy */; }; - 365771C693DCBDCD5369BEC06B810DEF /* PBXTargetDependency */ = { + 36882DE0C15FE469AAA763B6FDD2F6A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 66CA566BF093B4FA85B1B5D4D953BBDA /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 5114A9DB91CD9DB47B6122293B8BC197 /* PBXContainerItemProxy */; + }; + 36B5F2D4DF579F9D6A65F22F45F57E79 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = 99C6558D36DCBD91A1CF0C2D7C047987 /* PBXContainerItemProxy */; + }; + 36F0A86419B661CF1B54133319328F57 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 10190C716661132D95C4B23F3C52F0AA /* PBXContainerItemProxy */; }; 3739916787D47022FEBE0DBE7FDAC532 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18371,17 +18584,17 @@ target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; targetProxy = AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */; }; - 38772D2A402A8554C0E8D50B8A2FF601 /* PBXTargetDependency */ = { + 385B8562FA0151FDC9ACAED01C8CCDF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 1681F444A2C51CE79C7CBC093E01B2B3 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = D021960456FAD3D239C3CDD1E5087022 /* PBXContainerItemProxy */; }; - 3AC6557BA6C9CA302B438E6966922CD7 /* PBXTargetDependency */ = { + 3AF3716DB01414606D68271068B1F871 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 8E2912F692FBDA68360FBA733E4BD06E /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 31691CD4E7F2785A8A7A91BC5EA84DD9 /* PBXContainerItemProxy */; }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18389,29 +18602,29 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3C020EF79E1484A006CA298B5C275B7B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 70FAF6A591BC2B09C3E9689203FA3205 /* PBXContainerItemProxy */; - }; 3CDE7CA6B5E8DC488FDB8E4812131AE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 61101C6B91C9ABBD9763AA3B33D38B1C /* PBXContainerItemProxy */; }; - 3CF89670A4DE4B1EDEF8DDD910015E85 /* PBXTargetDependency */ = { + 3DC338C0972CEB2ACEADD014EB7C1BB5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = 4112A28F2A24F4716BA9B280425C93C1 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = DCBCB40C70BFE88D82F98F15AA2DF49C /* PBXContainerItemProxy */; }; - 3D72E16ED21BC3D52CD121881EC290E2 /* PBXTargetDependency */ = { + 3DD1E6F8CEFCF2D1C8B7301F8458CD19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = F5A9D915D6C8FD061CB4DB0667D354C8 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = B72650848D062ABA87D2A79D79DD616F /* PBXContainerItemProxy */; + }; + 3E0A70128FB1881CF29367F431B7C832 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 71CF03C3857D948CBE37630D03870F8B /* PBXContainerItemProxy */; }; 3EC9C41467F00AB41E8790F4AABEC57D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18419,29 +18632,17 @@ target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = C5D50E7D903962E2C2E382B536062BDB /* PBXContainerItemProxy */; }; - 3FD1803971E707CBD0225A281FD40E4E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 590A41B12D8E65F97795BD838AF35F3E /* PBXContainerItemProxy */; - }; - 405971DE6EC14F620353F9ED880AAC0B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 70C8D8D121922CA292DF26257F5999A6 /* PBXContainerItemProxy */; - }; 41013E96A559735139B429989B2F3644 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */; }; - 41DEE25658C05A5628083882254FA586 /* PBXTargetDependency */ = { + 412EC1440445D077BB35E1DF81A88900 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = EA7D3C9BF70768251AC619FFF3DC5BAD /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 74D8B64863EF2D0678DF3DA83B0C2861 /* PBXContainerItemProxy */; }; 41FF68034D509FCE39317463A46EE39D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18449,11 +18650,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 44A3AE260F57AE982CA9137FF7E53209 /* PBXTargetDependency */ = { + 431BCE1B756539FA4C6127E1005FBBEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = FD2DF1CD4E96EAAF9AA56671852F345E /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 39323F4B84435CF2307A40F4D5993C96 /* PBXContainerItemProxy */; + }; + 43C3863EBB94059A4D2A9CC354AB9D58 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = E6FD3A9A715191123C78658EAFD9BC1D /* PBXContainerItemProxy */; + }; + 4434F715A18ACED217155F5B9499D23D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 3313ADD6A7DC42FE7EF1CCA50CFEDBAA /* PBXContainerItemProxy */; }; 4525B78AB9B05D2433479A9579FE333F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18461,23 +18674,23 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 557407361285FA301951204E241F9CDB /* PBXContainerItemProxy */; }; - 45DC7BE3A7DCBE4CCA2D7E955A28F755 /* PBXTargetDependency */ = { + 459D884058D02DFD4336C57F999ABCB0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = 37562607B50897FB3AAA234B8CC037CC /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 621CFAC4BFF216843BAB3EE331A0924F /* PBXContainerItemProxy */; }; - 46A0CF0B3EC9C0345F709D702C0D88C4 /* PBXTargetDependency */ = { + 46EFD0E2F793AC41086A513CEF3F58E3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = CE4ABC821438FE01620EA075157CDAD2 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 4AA398C21A1F71E7166B00823A5E314F /* PBXContainerItemProxy */; }; - 47A3BA653CB3E560483CEB5784298DF8 /* PBXTargetDependency */ = { + 474F84ACE546CC02A216A7566C49A64F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = 646FD43A8C1D0BF61EA88C3762BB9EF7 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 3C521BE18F8AC26B1510B7E9A782C33A /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18485,11 +18698,11 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 48837EC9D5F49AD53AA5143B4F3F02A3 /* PBXTargetDependency */ = { + 485D55AA71353EF4AB62FFB276316548 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 67DBA14725D781CE21CD917340667E43 /* PBXContainerItemProxy */; + targetProxy = EDE273110A403C66740514ECF77419B6 /* PBXContainerItemProxy */; }; 49B84289A3B9871A10A133360307483A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18509,17 +18722,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */; }; - 4A2A06BAACA010C027AC499C459031AD /* PBXTargetDependency */ = { + 4B41A75FCA05099B04D985E85A7D7A90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 33023E1C4E6C76195C27F42572686F64 /* PBXContainerItemProxy */; - }; - 4B332B52776123DEBAE7F5F56206983C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 5723BD8BC9FC87052D11640A573EA5A8 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = C55193773EDC605C1B1DABFC3393812E /* PBXContainerItemProxy */; }; 4B7CF4BCE880915A07A1011FB01F4A55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18527,23 +18734,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */; }; - 4BA08B05E6FEF61848F16C4922FB3461 /* PBXTargetDependency */ = { + 4C4CFF6106E7CF4414F3081A7A2030CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 7E6AE3A663516C885BEC6831BB93EA13 /* PBXContainerItemProxy */; - }; - 4BA5600396F4FFC1F7BE02C0672C728B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 49132977A4DA3680C1269CBAB66DEFE5 /* PBXContainerItemProxy */; - }; - 4CC001915FDB3AFCA05B8B266E65B47A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 0C1F6CC4A277B307210A9116412BCF88 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 02CB4B4F7A13A42556E5EEBD0FB739E9 /* PBXContainerItemProxy */; }; 4CF06059EAB58EC36AFC1EB383725395 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18551,17 +18746,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 3E4CD36F9EC3B65498E3DB16276FF67A /* PBXContainerItemProxy */; }; - 4DA01EC7028D1057127D121972CA0F59 /* PBXTargetDependency */ = { + 4E5100A92FD420BF015BEE8D7FE35DF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 91BEA0F05746420FDC0C50149AEC23BB /* PBXContainerItemProxy */; - }; - 4E3E946268023BE8AA406DC1422D57D0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = C88F1C5A940B23F4CC7C8E730D593988 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 252E089DF8D74DA74E597D6AB7BE2185 /* PBXContainerItemProxy */; }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18599,23 +18788,41 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */; }; + 53248F04107C003EAA1501D97485335C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 45F841CE92F82C11E1CC799B2777DA23 /* PBXContainerItemProxy */; + }; 53B411A732F99F8D51E15B2CE451B1C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */; }; - 5442F8F2BDBC8AC54D88CF67B0A6EF72 /* PBXTargetDependency */ = { + 542DFAA0E6A79E1A53B2C51158364340 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 878C9C18439BE6DA5F4652C3D8CC13AA /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = B4D22105647F677A4F1F0A7ACEA65A57 /* PBXContainerItemProxy */; }; - 54FB066B207A0E19C8B59746FE053B36 /* PBXTargetDependency */ = { + 55F8CF21C32097CF0DF813447F4A9A7E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 14B666024CA64597B43CE38F6D7DDE09 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = FAE86DC1927A5D32793F94ACF9EA117B /* PBXContainerItemProxy */; + }; + 57E695AEB9A3440C27B05A8167972756 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = A8E2CA4ABFC3545B4F5302D2E1D8EB8C /* PBXContainerItemProxy */; + }; + 581120892CA4CC6CEF90C37D34964ED9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = E294F385D1E71B88EEB2BDB8C08C43E7 /* PBXContainerItemProxy */; }; 58EB016622ABE5A31A364D8F7F8E67EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18623,29 +18830,47 @@ target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; targetProxy = 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */; }; - 5924D847641E3D79FD6103D481F9E03B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = EEF09367EDBBB6D281BF444445784F90 /* PBXContainerItemProxy */; - }; 593EED89BEA0A6FAB5FB78DAF42A92C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 594950D05FEB529075EEF0413E8D412E /* PBXTargetDependency */ = { + 5950019A9C6E128B412BB22C9E24F736 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 30D7589FC8A6B5E61EACF670AD7DE482 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 0BB38221B6ADAB230825F30049057BF6 /* PBXContainerItemProxy */; }; - 59BDD4E987E20DFE99862EF7B8DDED15 /* PBXTargetDependency */ = { + 59881FFB95E919985A99E42CED114EEF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 24E824196205BBC567A456AAE112E95F /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 33EF101A1E52213A7EB51BD07F67A9DC /* PBXContainerItemProxy */; + }; + 5B672CC564127916242ED09E80D9B793 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = 6C6460CB4726372CA6AB1695009DD37D /* PBXContainerItemProxy */; + }; + 5D01EBDB74773AC5D685FD8D352AFB80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 0050D36EFD60409D250AE6344CCC7546 /* PBXContainerItemProxy */; + }; + 5F341C262AA960072DA4E14200F17162 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 3321E7CA5934D08327E2DB37FC547256 /* PBXContainerItemProxy */; + }; + 60CDCF9615790233BBCA2D57DB10629D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 8917B426201A3AC18DBFF5504314D3ED /* PBXContainerItemProxy */; }; 6142C90C7067738802070DBD12BAA802 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18653,11 +18878,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */; }; - 61C9CA43B73A8823740491FA1A6C49BF /* PBXTargetDependency */ = { + 61767C46BDAD33B393F4A0796DE077F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 704327F4FCF1D8A6879F755448C69B26 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = CF7585903ACB4C56902E2BDF5071EFC3 /* PBXContainerItemProxy */; + }; + 6188193545B8D92564028754D71A4265 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 86544B6DDDC0A5144B7D5DEE3C6B2E0D /* PBXContainerItemProxy */; }; 6395E3254FF15C5334B441B2D03EFBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18665,30 +18896,30 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 9999A457A3E364808C9E122EC64D955D /* PBXContainerItemProxy */; }; - 63AAD1D3E0C939FC658C240C51CD89E9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = EEE33F6558983BA2DF282DB4EE7B037C /* PBXContainerItemProxy */; - }; - 64060F33B5D34105944C73A876EA3528 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = C6344B644685ABDE6E42DAE49708EB83 /* PBXContainerItemProxy */; - }; 6451B8973D840A0A374086225070784F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 72AEF3DC8768694E58AE665D174CE14F /* PBXContainerItemProxy */; }; + 65216BF54F77B8D4FD360F8A38E8B60E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = 7146592A72F6D0AF3256BD66850CE712 /* PBXContainerItemProxy */; + }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; + 662112E3FC98A4543A4C61884941DB12 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 5C83B6A1379D3FB304E7AA980FA7AB01 /* PBXContainerItemProxy */; + }; 6623FDBE6380766AFECCE4ED0A17EF8A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFontInterface; @@ -18701,41 +18932,29 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */; }; - 67A599BAE4124D75F84EDFB374C07387 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 0D54CC8FA15B8E03ED01ED73B9D48C5F /* PBXContainerItemProxy */; - }; - 684D5D501940DC984F5CB0F6A8D9FE7F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 1FE0D22DE8F2CC26E4B8CDC4387197BD /* PBXContainerItemProxy */; - }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; - 68F224AFF674DD4299735389C9E0A3EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 6D40AA86B2E2885EA4685884E1B247A7 /* PBXContainerItemProxy */; - }; 68FB2B8F06277465B5375A45215CC9BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; - 6A72B467767A7B3986726F5B79772B36 /* PBXTargetDependency */ = { + 694545E5CA59727EB682695CAF70C618 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 802EFC4137516115D17EF457E62E586F /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 33F0510F75CA866A0A03AEBF5EE4AE67 /* PBXContainerItemProxy */; + }; + 6A87985EE4DFFDF59158868C01A73CCB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = E23BCB1A15010122E0A39ECA7740FCD0 /* PBXContainerItemProxy */; }; 6AC6BE62F45C5A349953D87D6DB3C545 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18743,11 +18962,17 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = DA72BD0D2ED3CB12079CDD61E7D8396D /* PBXContainerItemProxy */; }; - 6BFCF0F68DFACC9F38F562CBA1DE7F1B /* PBXTargetDependency */ = { + 6C1978B7AEFBBFE4C9761613995F5F59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = C505646291F935A38C2D95467150C6BF /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 9082D18F52A98E978D910A8BE49D455B /* PBXContainerItemProxy */; + }; + 6CAEC23395443D405A789E81CADE9B7B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 9EE5A06C460B97C9E84351FE4782EF3F /* PBXContainerItemProxy */; }; 6D8C00952B65F5BD4F322D959F307D80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18755,17 +18980,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = D9E3EDC835FCF7086651DEA02BD80CC6 /* PBXContainerItemProxy */; }; - 6E3094A3142A3C6F5498971075430716 /* PBXTargetDependency */ = { + 70AC042E78F885100F40C7C06A4DF442 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 832315DA7CF7E5E93C27A1A2AC92539D /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 016B4611B955592B6A380C4638439B73 /* PBXContainerItemProxy */; }; - 712C238E87A4A55B2C12C9C6B9788C48 /* PBXTargetDependency */ = { + 715574D5FE839BFA69846B5846656540 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 013EDC54FCA487BBAA6C48CDC97113A2 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 380F14BF3D7EE48CC456102540E8C895 /* PBXContainerItemProxy */; }; 7256F46E80FAF060C9B45570D9CDD063 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18773,18 +18998,18 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 9EEE23D6519FCEE6884F6DF117317D7A /* PBXContainerItemProxy */; }; - 72A85A37787F6E23105BF02E813A4602 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = F5F7CB4B73527CAE5938631602CC182F /* PBXContainerItemProxy */; - }; 72B059030824F625CF2C5364414F81B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */; }; + 73FB66BDF6E3D515C3D98C38ACD7CA1E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = FA221DBCA2BA9ECF0CEC392CD412E7DF /* PBXContainerItemProxy */; + }; 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -18797,17 +19022,29 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */; }; - 7729F116E58CCBBF2BB25B8F358AD099 /* PBXTargetDependency */ = { + 7504FDDFDA09D40FAE1F012E2BB69F01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 182481D8C5E337F94FA9D3653C09772D /* PBXContainerItemProxy */; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = EB895E94AFCD1E6E4BE7D7CB7FDD71B9 /* PBXContainerItemProxy */; }; - 777C61721A7AF46C5FA6FD015A73949C /* PBXTargetDependency */ = { + 75239CC7E9C6EE93727C2B4E203CAB0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 2CD0E8A1AA347D1C3EDBCE86CCD40E82 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = C2627F9875A9BD6C1CDDA66E7C98D53D /* PBXContainerItemProxy */; + }; + 75468C39DE56752D538851601902A7AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 635696EDBBFB83361E798F16BCA8EC73 /* PBXContainerItemProxy */; + }; + 7648C03DA8F750AD13AC901B24031BF1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 463C3F313A65566C398D9B97DC7A166D /* PBXContainerItemProxy */; }; 7818A97BE9882F05F0EE52CA3FB7ABEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18821,17 +19058,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; }; - 783C7A4BF6D4F52D6641CD06F0CF150D /* PBXTargetDependency */ = { + 7859BA28BB6C797ED3905DA729B17335 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 57EAE39E918ED16C96A59433DEDBE065 /* PBXContainerItemProxy */; - }; - 78C3E049647A441330DCCD8089408D2B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 8B7A5156DF566192088634AF35396110 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 42480C403B26B0DF65ACF1032A1EE421 /* PBXContainerItemProxy */; }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18845,24 +19076,6 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; - 7B02650CB9C93F58B9C3465A2CD904E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = 01FFD3CB91B418CC5113D5E39E3FF816 /* PBXContainerItemProxy */; - }; - 7B5B1CAA45FD7BF119DC4F3D415B654B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 3003CE0CFABA4E201818060DE26E35D6 /* PBXContainerItemProxy */; - }; - 7C7CD2936ED779A875F8429F4608CA8D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 5B947975706BA7F74B186549D744C4F8 /* PBXContainerItemProxy */; - }; 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; @@ -18875,11 +19088,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 80E39326DAF03630566E6F04B988F5C4 /* PBXTargetDependency */ = { + 7E36A61820FC8CAB7AEF9C63D953D073 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-video"; - target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; - targetProxy = 66882DD906C9CBF33A822B0F489B5493 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 4D7C1EAE1FBA47006E06EEA3152DB4F0 /* PBXContainerItemProxy */; + }; + 801BC183CAAB1341E1453C2997DECD94 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 02FB2BE82F3FC085481C4EA9A96E5F4A /* PBXContainerItemProxy */; }; 819BAF10584B377A2216A0F89DF68CEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18887,23 +19106,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 256A3233D39C474C08913C7F1FE396E2 /* PBXContainerItemProxy */; }; - 8225282040A0A860898C20E90CF47878 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 2AF0B10DBE76D0FEE52E5C20C9D9D14E /* PBXContainerItemProxy */; - }; 82DE4A10C611155EAA73BA712DF1D258 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnosticsInterop; target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; - 8358C68443853E1186176B2C08B5E629 /* PBXTargetDependency */ = { + 835D39738D72084CDC041EAFED0D8B70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = BC406AA3DA99669F34D95FC9E8727CCE /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = B35E699392FD5F908293904DAE116FA5 /* PBXContainerItemProxy */; }; 8428EE18A7782DDB4023470F96AFF628 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18917,29 +19130,23 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = B59CFF3791DD86ED3E948C16CAA52C6E /* PBXContainerItemProxy */; }; - 85029F5EB910A907C275C2C712517B1B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = C25EC963308C8AD23F2EAEE4190FBF7F /* PBXContainerItemProxy */; - }; 8516F632E2ACF7BD9A95F0E2E17B1068 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = F11BC96676F5675A20A8EEF5971E90CC /* PBXContainerItemProxy */; }; - 851F4DDA4A5AFCBDC9FA448C61764BFD /* PBXTargetDependency */ = { + 855ED396FDA17E0560D570865C6F253D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 664EF26E9FE25B5113E4BA5E3DF75A7C /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 47A7BD0B5AB1FD2EC9B2452DDF38E5B6 /* PBXContainerItemProxy */; }; - 8641D87D24B973C225A85E11DDB59FAB /* PBXTargetDependency */ = { + 86E620808E24D5132BD34E7F34A1FBD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = B23F32F8A9D5B42A97CA1716E450157C /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 9D9A012F4F08A007DCC4AE97EA7A418F /* PBXContainerItemProxy */; }; 87AEF2C8DFA51306ED9C9AB1DE0F546C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18947,18 +19154,6 @@ target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; targetProxy = 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */; }; - 87B668CA7AFE25BBDCD382B4B1747560 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 702C6F3D5E323B675431CD28EE281130 /* PBXContainerItemProxy */; - }; - 87CF0EBD1522704B60F2E5362406733B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 3B1E2FFD930C86F3A634F797B87CDDE6 /* PBXContainerItemProxy */; - }; 87F4EB768B2F51A0598DEB9AE9C17D34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; @@ -18971,17 +19166,47 @@ target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = A3B47DA7FB5AF667B2756DAC549D2642 /* PBXContainerItemProxy */; }; + 88A8C54685DA1D2692BD8E3DBA5A890F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 3D6F5F66692A6EABA7090A443FB328C4 /* PBXContainerItemProxy */; + }; + 88BFF3E3C4EB070DA9BFA137AF62BA38 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 2C99D0EFA82D2A2AE838FA4AC67F66CE /* PBXContainerItemProxy */; + }; + 8A2E3E7F16E9A08B8FA89427F09513E2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = 028ABCBE645B3B53FC5A26BA02CEDBBC /* PBXContainerItemProxy */; + }; + 8B439CF36BB463F2C5EAF0769BD92509 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 27BEEDA5741A10C1238046480D30F064 /* PBXContainerItemProxy */; + }; 8B45BA9683C0AE1D7149D313D4FDC461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */; }; - 8BB1C29F712B8C5DF39DFB9B8140B7D8 /* PBXTargetDependency */ = { + 8BBB7D3FD055FABC749EB793F1B7F149 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBLazyVector; target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 4F327B4F5B04100E23934DEAE1F1ADF9 /* PBXContainerItemProxy */; + targetProxy = 6ADA5E64C851DED1DC66DF8FAF637149 /* PBXContainerItemProxy */; + }; + 8BF9ABB09437837E6498A2F16C4AD4DA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = E2109AF5673C73E5FB35B314E7C70EED /* PBXContainerItemProxy */; }; 8C496C378AF5C2C390ABB9ACAD262DA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18989,35 +19214,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DE8F7B6EA7B1B017A43DEDEAA9020A16 /* PBXContainerItemProxy */; }; - 9045DE354437144318FB896AECE0B0D8 /* PBXTargetDependency */ = { + 8C748506DF3688CBFDA828E6B821D7C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = DDEC6C04AA59AC1B97F3C2BB108C4518 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 235645E7A547F3F6020B18379680CD6A /* PBXContainerItemProxy */; }; - 9296ACB615A242C598BD5B8651C60E56 /* PBXTargetDependency */ = { + 8FF3A24AC08F80F33A3C4F5005E3D482 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = D224D3EBA87061A216C2971F45AA7EBD /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 5F1939F0560722E1A64C4CA1CC7A52C7 /* PBXContainerItemProxy */; }; - 9329640E64A875BE2D6E333F11CB5D3E /* PBXTargetDependency */ = { + 91C09971E88C42E00CD6AFE8204DAEA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 7C0EFBC3DA1A8FEEE7CCF50505737ECA /* PBXContainerItemProxy */; - }; - 93758C4B0D549F9D1531B7A242E150A6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = B18F531D8621BA8DA9400B26175750BE /* PBXContainerItemProxy */; - }; - 941C1B18F4AAB8DF66B054A5E0B46C45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = ECB0846A8D8B0BEE23EE31A925213C3A /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; + targetProxy = 232F1447DAA64985AA7A4B207C2C4BF1 /* PBXContainerItemProxy */; }; 943D3BD4A6984BC783E7677F30722A02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19031,23 +19244,11 @@ target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */; }; - 95B3AC8755412D4F14AE552C0D021574 /* PBXTargetDependency */ = { + 9631EFC3DB6253434DD2BB487EC4A27D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 3A87B12C316BC1DE6A35D15571BD605F /* PBXContainerItemProxy */; - }; - 95DD0C3CE9B6B3793053D081D757F749 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 1973D2AB91A1181FC1F0BCCCE2121517 /* PBXContainerItemProxy */; - }; - 96223EBAFF1A97E77F70B672C1DD807F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = F9D5F40BCFDFFDC398817338196D7F89 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 01005DE34676C721CC34940404977FEC /* PBXContainerItemProxy */; }; 966429256B271DD0F30E2FA25D97B79D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19061,11 +19262,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 97C3DCF6215BD4F79AD7B1DF3F1CA1F3 /* PBXTargetDependency */ = { + 97061A5FC12B282558A306C8A28A6EB9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = CB8A7E990CD7E856B8CADD28DC191F90 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = ED13635DAE227B0989ADCFBA8F7D4312 /* PBXContainerItemProxy */; }; 9944716ED82209B066C56C02B90FA94B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19079,17 +19280,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */; }; - 9A6F8FEA9E0AFC127DA9ABD5BF694B32 /* PBXTargetDependency */ = { + 9A8DA9F77F51ACBE3A3873E803F61171 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 1A6CA696B572F159D2EE37ABDDCD59DF /* PBXContainerItemProxy */; - }; - 9ACE2ADFDEBE68E4FCCA88976FB3CE7A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = CB066F03A91730AB0A64FB00C885A955 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 4249B8F1AD28A15C4FFD89D83029E544 /* PBXContainerItemProxy */; }; 9AE14FA1F306013F286ABA20DD87B69C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19097,11 +19292,11 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */; }; - 9B848D16E111D4984B7C6DBC23CC1609 /* PBXTargetDependency */ = { + 9AEEC21CA54BE997331ACEAD5002A2CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 60630CC2B00EAB9D8A1BC762FFB41D39 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = C7F2D2FCA3028EC7122DAB9F705B78A0 /* PBXContainerItemProxy */; }; 9C390500C3C568F59A8589C455BFF4D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19109,59 +19304,29 @@ target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; targetProxy = C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */; }; - 9D5B0B4BAA18E7FC3EBA5F9532D330CF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 90490396F7C1E940A6B8AD3BB303EFAD /* PBXContainerItemProxy */; - }; 9F4B49F01A597EA4F18DDCEBB1AF2B2E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTText"; target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */; }; - 9F4CFCA9BC82118FFBF78C0B72ACC94C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 2C18553D873449FD7C3173E75DF691C9 /* PBXContainerItemProxy */; - }; 9F65DE6BF013C35BE1F4C9234232B8C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = A93E606DCB9E6493FE4333269FB7DB4D /* PBXContainerItemProxy */; }; - A00A0F656DEE6460F7E22B50FBBB5ADE /* PBXTargetDependency */ = { + A0DDC0CF4715900CA922DAFDD8194A58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 861146BBBDF6493BE7981140D74FCF30 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = B4C36762CB8BEBF177C049BB4DB7DD13 /* PBXContainerItemProxy */; }; - A10F028786CFD8379F8F202CECC53828 /* PBXTargetDependency */ = { + A3209D023B70F05953F589B1C36DBDAA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 5FF29D64C467F8686429C38FCC131E61 /* PBXContainerItemProxy */; - }; - A222A6167B100CD181C1B406EFD3EBC4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 02525C2141BB9A4A01F1E0FA5C519889 /* PBXContainerItemProxy */; - }; - A23070E2AC8D432C5107A1256E0275F4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 7A9D426F64FA97581C779ECB7FA9F4E1 /* PBXContainerItemProxy */; - }; - A2C844D4DC58B9F97D4AC1FC800548F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 3E67D0361165AA4BE02DBF5A3BD9A612 /* PBXContainerItemProxy */; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = C2C17B885DB3B3B251FEBDE7CD5EBDD1 /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19169,6 +19334,18 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; + A4772A82B867E63CA92F2B2B0367C89D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 37A017E4076008C86BCB9CD225FEAE86 /* PBXContainerItemProxy */; + }; + A5273966B0B350AA94F272F18902056C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = FAC32A41C3B9C520D6EA096FD0BA91A8 /* PBXContainerItemProxy */; + }; A5351590EF2D946171B0ECC1142DED94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransportCCTSupport; @@ -19181,53 +19358,41 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; - A5566EF8FD918838B34FD9AB79AFC6DE /* PBXTargetDependency */ = { + A648BA168CBC74CCD7A64149287DF2EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = EDF75265390BF1433C61420DD800DE17 /* PBXContainerItemProxy */; + }; + A6B69106CB6EB2EBA4A1D124069F81E3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-orientation-locker"; target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 3D02FF26ACBED825F851904ABFF34A97 /* PBXContainerItemProxy */; + targetProxy = C230682E49F1FC017A4D98AEF4D496D1 /* PBXContainerItemProxy */; }; - A7DE55FF81A199753C33BB0FF60CF10B /* PBXTargetDependency */ = { + A97CE3301EA385726FF6BAA3456461A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = 27A25526B87AA7A8A1D634F37B5D6D92 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 0567A84C8292C4E4178DB8DFF710D9C8 /* PBXContainerItemProxy */; }; - A8CC4594BD5ADDF40463AEC9B3C71A9E /* PBXTargetDependency */ = { + A9BC96E7408235652EEC5300C6ACCAE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = F7C50B898D179D7DFE35ECD39EC435E5 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 5ACF316D30AB49FCB47A5140919D5A26 /* PBXContainerItemProxy */; }; - A91F595EB8A2ACC3E2B368E8A47D6C67 /* PBXTargetDependency */ = { + AA462DC05FEDA5125DDE33B6C5D9FE23 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = D34E826E72AAC6075591C569DE222FC3 /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = F9A7717997BE1D110236DFAB193D3E34 /* PBXContainerItemProxy */; }; - A9A8A542AD7A0B35E075C3E07D132720 /* PBXTargetDependency */ = { + AA47BF8E640DE0007B465DA4BB74E369 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 05F3296DC7B71257BAB4E7EA20B49B5C /* PBXContainerItemProxy */; - }; - A9ED98A5552DD136966D3057C908CB45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = F41400F9BEE622517440881C0BD1FD56 /* PBXContainerItemProxy */; - }; - A9F1DDED590825469EA873A8E0694C8C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = C9BE69FB541275F9EC7555AE25270410 /* PBXContainerItemProxy */; - }; - AA221BE904C0C01C40321032D459D905 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = BD32043515F4B199AB0E22406C68A35D /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = FA629105F21A1F6A1BA4D3FB07B7C42A /* PBXContainerItemProxy */; }; AA55BD4562CF0DDCA3C38F5ABA08AF89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19247,17 +19412,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */; }; - AB07C974BD70E3B197B7923D52C115EC /* PBXTargetDependency */ = { + AB764963A7B36CCB3ADBCA05B627E33B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = C833FE201BE782A869104308A103F20A /* PBXContainerItemProxy */; - }; - ABFEEAB51B34B9279043783E67531D27 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = CCFD53E94AFA8D4B32BA9AA6DA6A23FB /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 7948D6EDC8DA1D44C406BF7B01328FD9 /* PBXContainerItemProxy */; }; ACDFD30135AB57A1F062637C78FB2E81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19265,17 +19424,11 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = D30AD787E43DE3AC8E24B315F185B31F /* PBXContainerItemProxy */; }; - AD340DED1B8692F53508AB1F18B76C5E /* PBXTargetDependency */ = { + AD516B6D89ADEE314543D6B8B10337AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 8F2CFEAA002887A4B7BB9024FB93494D /* PBXContainerItemProxy */; - }; - AD3982566AD1002C35248C61015494E3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 26354B7FDB6A56A235F8E0C3C3F671DD /* PBXContainerItemProxy */; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = 617E54A9F8AEA743D190CAAE0001224D /* PBXContainerItemProxy */; }; AD8CC2C3AD641422282F5A8CD85BA0A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19289,17 +19442,23 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - B1795AB7FF93851119E344734596F8C8 /* PBXTargetDependency */ = { + B2CCA1A619BA13A3B92E3FFFD6E698FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = DA35838819017E5F13ACCA694A4E876D /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = D9DA3FD6DD928FE41EE74E475DF2A313 /* PBXContainerItemProxy */; }; - B394EB23099E0BFD990E14927708C6CD /* PBXTargetDependency */ = { + B2FC9838633CFA8ECEDCC337D05D8600 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 679C5C413972E4C8C96CE0EDE50D9F82 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 38484BA9E70219CF25EAEAD72C2BCDC6 /* PBXContainerItemProxy */; + }; + B4A1DCEF26F5D17D0A23F42A2CCACFB3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 8F7452E295C1C8A7F5ABE5727C93BA70 /* PBXContainerItemProxy */; }; B522C45997E90058E7BACAB65C97DDE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19307,35 +19466,35 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */; }; + B5C85E35A4890AC54DCE700D0C94A4FC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 4755D1EE192D023E728CD5417D6159E5 /* PBXContainerItemProxy */; + }; + B5F449E4A3D794561B4E7ECFC36787F2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 2A38498FD161D1A49F332F81339610A9 /* PBXContainerItemProxy */; + }; B6179D636B4AB55FAF69B12DDDBEA250 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */; }; - B640C702D7B3879174D76E36AAB68157 /* PBXTargetDependency */ = { + B72591CA72DF6427D394D2BBF4926358 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 5DDF9A546640B539CD3819B6E7B9C201 /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 392BB1735E9813327A0EB7333A2B4E94 /* PBXContainerItemProxy */; }; - B66087BDCB72F4F675E8791E50F1C036 /* PBXTargetDependency */ = { + B7C845764E1BB34E92BCCAE07474C17F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 571319F08F76CC193EBD50B6E656DB59 /* PBXContainerItemProxy */; - }; - B7141525630398CD759CF12D639C1C70 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 2E86699B107E612C4D1692104AA502A8 /* PBXContainerItemProxy */; - }; - B761561CFFC648F4B058F9B496469FD7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 509A25B05A998CAB3B86A6C80C7B78C7 /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = DEEFF9810E8129DDCAA838FEB9EF108A /* PBXContainerItemProxy */; }; B7CA987A1545E9E4D990C621C4B0D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19343,12 +19502,6 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */; }; - B835A9847018155857C6F7EEFA489993 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 431A487526903183015DF762ADFE9D43 /* PBXContainerItemProxy */; - }; B89D2CB67178C93A2DFF80F628C7A710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -19361,30 +19514,18 @@ target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; targetProxy = 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */; }; + B8CCE7F4361F9AFDC3A681D490DB4A26 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 724607A9D5852D97C492E60AC3E4739B /* PBXContainerItemProxy */; + }; B92630B331C84A01EBE7ECA0D823D9FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */; }; - B95A7CF2597F141CCFEA682BB5379A65 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 11D6BA14BE41FE745D7D6A4967351B99 /* PBXContainerItemProxy */; - }; - B9799B6DA322AD50EC4B04325EA554D3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 065BFE3FBC016DE8B3F82D6E861F4425 /* PBXContainerItemProxy */; - }; - B9EA0838D098B37EEFD1960E17A898AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 13AC1F43D30AB26B7E2C8CF0E0C7AF85 /* PBXContainerItemProxy */; - }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -19397,53 +19538,23 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */; }; - BB91FABE98864B5420AD34B5552AE752 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 98DC88E4F289D79EC718F92BFAEEA55A /* PBXContainerItemProxy */; - }; - BC0C1D1BF373901A193B57FEB886C277 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = B9FDCA5AC3313C8525A813F6509EA979 /* PBXContainerItemProxy */; - }; - BC14137DC7B24901959AF5A38B67F823 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = C8C199D46FD3DD67148F0D47BF9A2023 /* PBXContainerItemProxy */; - }; - BC252F1BA48F3C06EEDA912ED47F7ABE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 6DBD6F286817EB85A8F0BB2E8D08F4D9 /* PBXContainerItemProxy */; - }; BD1C2D29B9FAFAFEC379903BBA7FB010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = CEEAB0ABDC6919813DC4584C776CA72F /* PBXContainerItemProxy */; }; - BD8F590BE104F22AF290628E172A35C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = C9C235729131851E3935743551F6290B /* PBXContainerItemProxy */; - }; BD9A27944522233DC0927B646379AEDA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */; }; - BDE22947B2463B68D2CA8E87F08E1B8F /* PBXTargetDependency */ = { + BE8F03D8CA9BFE0EC33AF4F4683AB561 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = F7418F0EFC7ADFE136104192A9809D6A /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 6A07148151B5775B3B994F1E21A8ECE3 /* PBXContainerItemProxy */; }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19451,35 +19562,35 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; + BF3C067F2935C0F7ED14BCAA8F015820 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = ACDFB288EB2025F231779DEBA1EBDF0A /* PBXContainerItemProxy */; + }; BF9BF0CDEA697B8AF2D71C6FF954AC77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; }; - BFE48FA185215467778A90B18D4BC4B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 2805E98090370AB565058323100E30E1 /* PBXContainerItemProxy */; - }; C0B06A5C5229F7876D8CF13D76EADE7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */; }; - C0CC47BDC6FDD04B0015CBDFEF8AEA08 /* PBXTargetDependency */ = { + C1B6667B78F3D783AA2076C330B9C1C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = B12303CADAB09821A27E506ABCC2BF15 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = AD140A60D36A529ADEC6439C4599C003 /* PBXContainerItemProxy */; }; - C0CD4B115AF32DE4F52266A949F58BC3 /* PBXTargetDependency */ = { + C1F26AB58E66F025ED87DE2ADA0D6EAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = BE30554915EAC89D8ABF9586ADFB7195 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 5FE0A1A7CDD3F949A1A487BBA78285BE /* PBXContainerItemProxy */; }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19487,11 +19598,23 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C256CB6781A3CFDD1B57532D602B8E50 /* PBXTargetDependency */ = { + C43665412AAEA15F68B6F9BE1E0C4580 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 026F5244571FA414E08736B1E2149CA1 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 6039590220CE7E16E89CAD6713CCAF3B /* PBXContainerItemProxy */; + }; + C4BF17DF464ED873F5B1CEBD2808D627 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 43D3BA0270A7B7E8B1A9F5ABAED1A06F /* PBXContainerItemProxy */; + }; + C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */; }; C5AE41D857959DAFF5E75B0995A21A95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19499,59 +19622,23 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 983AD1895C24585DEA95A1E14A0A74C6 /* PBXContainerItemProxy */; }; - C659FC088434EE64D230439BA13947C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 10EEA2C29319093946EC6A3B886E46CC /* PBXContainerItemProxy */; - }; - C673AB2CE2B75DC9E95EDA7E2ADDE62D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 25911D74E71C182E5A343DC800E7A898 /* PBXContainerItemProxy */; - }; - C6C9BA57D6B9E5E63518B6DDBB178383 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 241B0C0FBFB4AB65D5322D5FF2360773 /* PBXContainerItemProxy */; - }; - C6D033D4965A83E51682F8D176CBD190 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = A5C032CADFDD5FF9425906A35EEF7600 /* PBXContainerItemProxy */; - }; C76A0EE6871933CE34033765BE030A22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */; }; - C83870D84414B274428A901251F2A0CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 6B407D74ACD4C0726B90F63D35661B74 /* PBXContainerItemProxy */; - }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */; }; - C8B5D585C828BE4AB1C1BFFB31AD7B21 /* PBXTargetDependency */ = { + C90FCF371490EFEB5340C12555680A9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 5062F87E3425DACD2975174B3E87F828 /* PBXContainerItemProxy */; - }; - C8FE0EEE04628A4A12FD7557EC6E5E48 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = D9200E48A5A008F3A8BDECD7D97CD249 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = C2D55249DEC8CD1281E03744E6B47B2C /* PBXContainerItemProxy */; }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19565,11 +19652,11 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; - CB112F564EA1F429184FE996AEDF2386 /* PBXTargetDependency */ = { + CA7B1F475FD2CFA87DB1A47A6720D340 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 720CC6AB7ACA5F827E8E8393EBC84D85 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = B0E35110CB44111FD4A2609A54FE9FC1 /* PBXContainerItemProxy */; }; CB1231450678EB40FF6D52E17793B56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19583,23 +19670,23 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CBD2F9D3CBE2717E24E09A737DFE801C /* PBXTargetDependency */ = { + CC41D941582650D6F0B43E7230DC38B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 3C6AAF9121D88F931A8C5859842DAD29 /* PBXContainerItemProxy */; + name = "react-native-video"; + target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; + targetProxy = 1B0AB76C8AF2BAEEF1661FD6DEAEC614 /* PBXContainerItemProxy */; }; - CC1E39817A216780CA9BEFAD07BD06A7 /* PBXTargetDependency */ = { + CEDC79159C1B268ACC3E5D60EE1D2128 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = AEC90D7C236E9F9A844FCDAEAFFB250F /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = E51563EB23F14E835005282A9A52036F /* PBXContainerItemProxy */; }; - CD2914DB228D70418A1EC14EE9D193A8 /* PBXTargetDependency */ = { + CF42390FDCBFE859677C499F6DC470DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = C10C10F78B02C8C76D9682A59B3593F3 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 13F113F0B322642CE52B1BA1ABD2FF2C /* PBXContainerItemProxy */; }; D0E424AA51C6766027686207E235EA45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19607,17 +19694,17 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */; }; - D194470B7DAA44624DEA160F934FA0B4 /* PBXTargetDependency */ = { + D103760C0D9018A6882EC5EBF5BC2B7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 4AAD8356AB559C18D4616CBF8EDFF5C1 /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 7CAC44D21086830CDDE7232A4A1C3CD3 /* PBXContainerItemProxy */; }; - D1AA7C4F247E7691115F4D8995DC5ABB /* PBXTargetDependency */ = { + D1E682A606EBC3015078BE228C2327C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = AF3BD2E560D9BCB5EB0470EC5E3F3D6A /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = B032F24D0330F08B94B5512AAF57BA7D /* PBXContainerItemProxy */; }; D1F1057A65FDD43412DCD824E1BE5E0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19625,29 +19712,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = A6C96CD915FAFFA438FE9774216C27FC /* PBXContainerItemProxy */; }; + D218A6647D97C8B492D2ECE646575747 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = F3DFCF646979763A17BB4C410D5D721B /* PBXContainerItemProxy */; + }; D2E623008359A110154980E885DEA890 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 876F633EF64F3B86DDACB4D9765F88C3 /* PBXContainerItemProxy */; }; - D368BF377DB802C5F5B6F07958738103 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 76EEA5F62CC441995D555175CAB0A477 /* PBXContainerItemProxy */; - }; - D3E5FE5F812BB250FC13AC7AF58B9A75 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 6D065445C5F828CD139CE00E33ABA0A9 /* PBXContainerItemProxy */; - }; - D453B131DE00E30C0C551DBA5EDC984B /* PBXTargetDependency */ = { + D35FA60EC499CC6724B7C3ABAF31A96B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = E9C75B361059AEFF9DABA06F2AB989EA /* PBXContainerItemProxy */; + targetProxy = B64978B459671D9BAC98857D2805206F /* PBXContainerItemProxy */; }; D4675DE12C9CE28E7BE2DF3CB5F65EE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19655,11 +19736,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 0FBA34E2E29F880F6473E91F3C51B883 /* PBXContainerItemProxy */; }; - D49D843655AD1EC0C07874F136577A0E /* PBXTargetDependency */ = { + D4E50B9796ADB879B11A867D3D25D3D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = C17763A82AC031E86E43BE4FA0F3FC4F /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 81F7166461A4877994A00F77C9788AB2 /* PBXContainerItemProxy */; + }; + D5453E0B7F15C62ED423693A4F56ED8A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 4DEB5EE86CA2452A6041DA38C5C8E8F6 /* PBXContainerItemProxy */; }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19667,23 +19754,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D6BDCC81ACFAFB3FA8FFFC2107431323 /* PBXTargetDependency */ = { + D683D16710997BCE054585DF4D79B767 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 443A841EF4596E3CCD4E5368DB1090E2 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 106F20B8AA93493B2A6D1F5B1E4635BF /* PBXContainerItemProxy */; }; - D7BFCFCB56D34393D79178E24B3E5436 /* PBXTargetDependency */ = { + D7E01DF72AC007E1D658ECCC6F2E44E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 803F096642966EB8F55A6272ACDE03AE /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = D7FFAF193B7B9FCC9135B1FC6DE7C474 /* PBXContainerItemProxy */; }; - D9C70B462572E65C4929094AC7476233 /* PBXTargetDependency */ = { + D7FDF226033B510860E2BC8959A9B683 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = A1CACC0574AB439458D00BDADA747D2B /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 09F6E81B94C122A41FF41720813257DC /* PBXContainerItemProxy */; + }; + D80F4FD97C73D39CDF1CC7369F5BCDEC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = A143A1558C2499B34419E3ABEE01D5C2 /* PBXContainerItemProxy */; + }; + DA2F17F8A6D26A07394A5ED67854708E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = F95786102559F7E9D1591508CE25FA7D /* PBXContainerItemProxy */; }; DA7A7B33C9919FB0F7AAF95AD29445CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19691,23 +19790,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = B45BFCA094BB2306A256FB04420598F1 /* PBXContainerItemProxy */; }; - DA93591AA43259D16E6136A821EC1D26 /* PBXTargetDependency */ = { + DB33CC5B1A0743BE0B9F1F27F606C35B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 067E5D93DB083FB51E091E438339E7F1 /* PBXContainerItemProxy */; - }; - DA9F12C62FFA20659AFC6C54AF4E9F7D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = ACE9683B43AB87C56DB560A905FE8BA5 /* PBXContainerItemProxy */; - }; - DAE915E26056C93906E8A1B04F56AA0D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 965AB3845BF6C37B9A2E428591D1EE93 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 764710586272888D7D0CC28AF871973B /* PBXContainerItemProxy */; }; DC365AF9AFF0EED32BE0CC92E8B78C42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19721,23 +19808,29 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */; }; - DCD5A2D3D1B59A3B78D92E40EED0B557 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 81B4FA49E72F5B07122014F9148A9903 /* PBXContainerItemProxy */; - }; DD42749A0327BDFDE691A4721767F0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */; }; - DE235AFB04088ACE99A5172675F402C2 /* PBXTargetDependency */ = { + DD51D7DD9DA3B907167FAD018A6710FB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 73E477F51EE138B389381278AA54C965 /* PBXContainerItemProxy */; + }; + DDA8CFA9246A8D984BAB1E2AABD97B7B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = EF1EEBC25EEF9243F1A601C1A96218C2 /* PBXContainerItemProxy */; + targetProxy = 206D37C097BEC158030105970950F7C7 /* PBXContainerItemProxy */; + }; + DDD77BA91902FA67CBCAF30E7AD82A7B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 76F19E87573B2D0D6B17E607E35825ED /* PBXContainerItemProxy */; }; DE716E784C9BE88B8C21494C695AA318 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19745,23 +19838,41 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 048AC4BFC3DEB50A8114C3826879AEB7 /* PBXContainerItemProxy */; }; + DE9C9D2695B6889F83203391A460B060 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 37E97E8A92730240DFCE7CFCCA210F90 /* PBXContainerItemProxy */; + }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - DFE54EFB8E8ADDF029A3564B9073A3BC /* PBXTargetDependency */ = { + DF9D13A62C3EABC526E6CB17AC72BC46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 4E10E94546B9897329BB7132343AC50E /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = F53BB23CD9D485EFB612FF7031750C2D /* PBXContainerItemProxy */; }; - E2E64A87B139897B2E726C43839063B7 /* PBXTargetDependency */ = { + DFBC52EBB38DF12FF35889728138E5FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = DFEA33431E17294C1ED8951538F844D0 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 906184BDB3BC56B1AC9CE2D4B6D63263 /* PBXContainerItemProxy */; + }; + E15869BDBADE26DD60254E9FD6C395BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = B892459032A2C1FE708215C34A92B57C /* PBXContainerItemProxy */; + }; + E1987DC1A2A2A6496A00D67309CD430F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 187E0D0ABD0C9C723CC49CCB89113169 /* PBXContainerItemProxy */; }; E33A6948181332F36C1B948AB5E3D4F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19781,17 +19892,17 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; - E50013E07D1B758D4DB54CF1D7D8E057 /* PBXTargetDependency */ = { + E46DFD8724996454D3616CFEC9677925 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = E3055A8F01220FCFBA2C6E15CEAAA9B4 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 1F7A79282B1F65150410EFACE23DA9A9 /* PBXContainerItemProxy */; }; - E528B28EAE6AC6A2D51788DB2F13BAE0 /* PBXTargetDependency */ = { + E5E8AA3554F813016A1645AD8AC25579 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 5395F90884A47A1667129CA57D99C81B /* PBXContainerItemProxy */; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = C96582E4537C6F4AA13CBD325ADC7BA9 /* PBXContainerItemProxy */; }; E6C446C9931D7EE8FED9B58FE9C9ADB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19799,11 +19910,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */; }; - E72253786BAC9675B9B901505BA7E0BD /* PBXTargetDependency */ = { + E7E442D658726EA9940C3F730632A1E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 449A7602971F7F4AD6E8484B88342D55 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 352B97DC4EEC22E737487EEDA2212F27 /* PBXContainerItemProxy */; }; E81B9D94D6D9DDB9A947C7FB8749DA9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19811,29 +19922,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4FF10556B9B41D07EFAC6AA420559421 /* PBXContainerItemProxy */; }; - E866327FFC1162431884B82F14B5F964 /* PBXTargetDependency */ = { + E92BB90EC7E43D73E303D401D76C7A6B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 7ED2152CB8618F6EE3F905D50E567C27 /* PBXContainerItemProxy */; - }; - EBF039172671835D2E43AF4392FC2FF2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = 010F36F2347E5BDCBC4E6E49710D2278 /* PBXContainerItemProxy */; - }; - EBF53D7C37C35CC2489D0C6A47D3E9AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 4E1A7F06A2ADFDF1CD0745680382112F /* PBXContainerItemProxy */; - }; - EC1397A3235EF60E03D6BA6283DF2C57 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 99F60170E12FF8170CD126673B97BE8D /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 46EF0E8A566C8AFE3169D50A00203FC8 /* PBXContainerItemProxy */; }; EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19841,47 +19934,41 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */; }; + ED6825EB214D4AC5AAF432D93AC4EE92 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 36C6831B53D697B61F77A8EFA6C23220 /* PBXContainerItemProxy */; + }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */; }; - EE13F855FFD4A175849E154EF38C3099 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 4F9FAD4B19C28355027266679630E3C7 /* PBXContainerItemProxy */; - }; EE1CC51893DCF92DD4E8E26E4F3526E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8110DAB12235E146C76645C74A703974 /* PBXContainerItemProxy */; }; - EE5C681F19C2BD960C9FE0FB6B28DC90 /* PBXTargetDependency */ = { + EE6FC0766F20ECF8518483301C1235CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 6BA468018F66C1D47DAEA3ECC88158D1 /* PBXContainerItemProxy */; + name = "react-native-video"; + target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; + targetProxy = 1BE83BAA40647BF43154CB42978D9EF3 /* PBXContainerItemProxy */; }; - EFA20BBD349FFA6BBE19093E83F0072D /* PBXTargetDependency */ = { + EF5C2BEFF942513E6D01C4045933E846 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = 03F91BE40E4BA9EF5AEC14AE2493E3C6 /* PBXContainerItemProxy */; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = D578EC5B4CDC1944BCB41833960AF363 /* PBXContainerItemProxy */; }; - EFD075E2561A9315EB30A1E324BFDC10 /* PBXTargetDependency */ = { + F021ADA541ABF1FCF5A5CC95848B8322 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = C1BB201CBC816A7930A924C64808A024 /* PBXContainerItemProxy */; - }; - F0B9FD087F82784B9A70207837E386AF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 857F47971C60AB633BBCA1479AD1A1F9 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = F61D86FA957632698000312EEB02CD98 /* PBXContainerItemProxy */; }; F13EA7DAE7A846C572332EFD93580166 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19889,41 +19976,59 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = FC9ECE85F287C504E4BF453D581199F5 /* PBXContainerItemProxy */; }; + F169E1CFAF68BC27EE6052BC0294F887 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = D0835FB563F6338ABFE6FED8C0AFE443 /* PBXContainerItemProxy */; + }; F1887910E1D2307247370E110F5C97EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */; }; - F1BA23F2FB7643FFBDD1DAD459ABB176 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = F2DC85F54A13CF837109A697617C4E93 /* PBXContainerItemProxy */; - }; F25EE5C729FC3245E37C095E9683A3AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C737ED823B86A2EB5AE9F688BEE3FDCE /* PBXContainerItemProxy */; }; + F26BC9AC460AD334EBC636E219D93AE1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 74F240E627632A2E194D41F12BA3D4C8 /* PBXContainerItemProxy */; + }; + F35CAB2EC916912DDB90C18D15D30B3C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 635399205230BDF31D4408A3C7AC6CA6 /* PBXContainerItemProxy */; + }; F40AEEAA637FAD62AA68E398038D3782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */; }; + F495B9EEAAADAF161349A8A27123EF5B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 635D11F50EACCDD5F8F3DE4940E7DA1E /* PBXContainerItemProxy */; + }; F4ABC2B3D06CA044325DADC1ED59161D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = DE426B84920AAD68A99A39CB81DA3490 /* PBXContainerItemProxy */; }; - F5F021B3F52BBD277BD05ECE566E042C /* PBXTargetDependency */ = { + F4EFDCE98D14CB00EE82D0FEE704795D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 3D45E3DCD38109B38F5BA73AFDB65794 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = B1D14CFA50279E3692EF8A81B85926DF /* PBXContainerItemProxy */; }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19937,6 +20042,12 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */; }; + F65CF9B1B39E5A1E7A78BDEFA294B7D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 22FCE46CBB11D57446BEEECADFFD7A6F /* PBXContainerItemProxy */; + }; F7584C8C1825DEDF9A742D3A3F75CC27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -19949,17 +20060,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */; }; - F8508129A7E0A701D29FCE7C600AF256 /* PBXTargetDependency */ = { + F7C3DD21FC287B398B52B6D9E4350BC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = DFCEEA3FA40436CB4AA040326D6F8E6D /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 286FC26273C18481A55192FC59D2D297 /* PBXContainerItemProxy */; }; - F968CC5BFA92B79143588DA28EB600AF /* PBXTargetDependency */ = { + F7C59BDC5995D5C202C9C392284AD2B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 1B0B63EFB5EDF8CAF404F6A7CA74FBED /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = EE7EB3F54734952B59F60AE0B92BCB63 /* PBXContainerItemProxy */; + }; + F7EBBB4D942F259F59A9EB14DE724CC8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = D1777774E119C077FD0C86D751AE35EB /* PBXContainerItemProxy */; + }; + F878F90F2B3ACF807CDD361762E860B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 2DC34E8093A7DF95C2E019F90012C279 /* PBXContainerItemProxy */; + }; + FA745255DF055B2BA92B1792E4439C02 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = A1DB956420BEA733DDBE486C5530707F /* PBXContainerItemProxy */; }; FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19967,17 +20096,17 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */; }; - FBE7D09D723DD7D835AA6D7E9A2F11DA /* PBXTargetDependency */ = { + FBECB347DAE259450A1352E16A61977F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 6D3BF89DF4987F4669AD095F4AB5877B /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 00F11D8D56A7D1F208BFF9F9A2315440 /* PBXContainerItemProxy */; }; - FC436C7B528B08F9DC831249F794DB6E /* PBXTargetDependency */ = { + FC924B6BA6A216A6B846FC23AF98353B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-video"; - target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; - targetProxy = A5E93EA8063D382962CD625FB871E75A /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = DAF630019E088E9D17DD36947FF74B59 /* PBXContainerItemProxy */; }; FD7FFC18DDE8D049C817E5F819EF924E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19991,12 +20120,18 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 273EEB006344CBC3B742234147B60471 /* PBXContainerItemProxy */; }; + FFE5482B0CBD4C12DCC2627E673D65AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = 69B0C1C02A0DB7E2FC09E0D5FC7F11AC /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 00718DA2EF2C79DDC75597E5CCB5F43B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 32AAFADD3DD8438F7CBA97F98D670481 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 77889E1ADBAD703C2F09E1802502CFBD /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20072,7 +20207,7 @@ }; 024274BA705D432C4A7E56971B76D5C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B6F4AC2C5C639CD50BF159830CC8CFA /* KeyCommands.xcconfig */; + baseConfigurationReference = C0565B3F72A1E8A56C02E4C9CBFDD324 /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20098,7 +20233,7 @@ }; 02590A2E54E292E4B163CC19E59F2F78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 80D020E86A3DB547A971CA1B20F7E6C7 /* react-native-appearance.xcconfig */; + baseConfigurationReference = 45CDC5952DE2A914698B3DA075934A2C /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20153,7 +20288,7 @@ }; 06BC0A8E01BE9D8AA3FB15051DD205D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93FAB1745DC86F18A7B2CF702DE72503 /* React.xcconfig */; + baseConfigurationReference = A9F440F61A7A540D6C743513425E6070 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20167,7 +20302,7 @@ }; 07503BE4DBA728321A66841DFD7B509C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 80D020E86A3DB547A971CA1B20F7E6C7 /* react-native-appearance.xcconfig */; + baseConfigurationReference = 45CDC5952DE2A914698B3DA075934A2C /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20191,9 +20326,32 @@ }; name = Release; }; + 09C9A9A9E19D49E557253EB749A8BA3C /* 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 = F2A0626FD5854C9AB571E75A278FE003 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 54B60F0DE0518D91AF7A28A40AA23BF4 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20219,7 +20377,7 @@ }; 0B4C266D7201BE42578B00130B939087 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 32AAFADD3DD8438F7CBA97F98D670481 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 77889E1ADBAD703C2F09E1802502CFBD /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20295,7 +20453,7 @@ }; 0EC3A23A31F25E370EFBA1F1586B2011 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 390A59F129F705D241B9686AA66E2D7A /* FBLazyVector.xcconfig */; + baseConfigurationReference = 7E7D8C6F45F44A274AFAEBAADCD82DD4 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20334,7 +20492,7 @@ }; 0FFE4A7E6463DF8D2BF607C001EF26C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5E6658E4489794B6871AB115234109D0 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = CF72BD4423453F95A443F02F30161D3D /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20384,7 +20542,7 @@ }; 12FAC84E34D27F50918DC68E37434C4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E866CECE6F9A3676B266DA1070DF8A37 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 76F17F993FDA2F75B204D361ED77A590 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20474,7 +20632,7 @@ }; 17ADCC17D6FBAC88D3849258BEE3E4D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED2B0EF803D68091C2A97BE33361B636 /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 2D78E1AB2CAABE25DB0CB1CD9AFC1ED2 /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20564,7 +20722,7 @@ }; 1A149D092E2CFC6DDCD8E48A2155676C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB30A0C1F84B37E7A63836AD635BF79E /* React-cxxreact.xcconfig */; + baseConfigurationReference = EFB8F756FA964C31DEA83DBBD3765A29 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20590,7 +20748,7 @@ }; 1ADC1178A3B04EF7FE98ACB41A34CD34 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 08D8CE592E3E6D38A9ADF97B640DA0CB /* EXPermissions.xcconfig */; + baseConfigurationReference = 8DCCD7ED568883191E1AD19331D3D2DB /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20639,33 +20797,9 @@ }; name = Debug; }; - 1BA15885B9AD13582E65019E666D898E /* 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; - }; 1BBF1FC67203BE8FFEF02CD562A0ABB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 21AC208C4538DED1D54AB4C102653BF0 /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 6307F3286D96C57A78B3915CDA5896C9 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20705,7 +20839,7 @@ }; 21B20C7A656B8B26606666450F233202 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D65ED7023ED69D130708EF8FEC3925FA /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 4D29F42E1A369E44DBBA2DBBDF8F4E81 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20730,7 +20864,7 @@ }; 23C22B2E5EC2C98879114D860E72E83B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 564AC08059D7AA58D39DD0DF9EAAB6A9 /* UMAppLoader.xcconfig */; + baseConfigurationReference = 5683BF5F00D3AD794CFB35F8C653915D /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20757,7 +20891,7 @@ }; 23C6C4DC319C746B0FB2B500A5F11865 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 34D25768B4EDCBE8AD32CF4F46796704 /* react-native-notifications.xcconfig */; + baseConfigurationReference = 5890F6284FF3A60CE3CFADC549951C33 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20797,7 +20931,7 @@ }; 244CAA427CEE1963C66E8F160A2D7C44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 21AC208C4538DED1D54AB4C102653BF0 /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 6307F3286D96C57A78B3915CDA5896C9 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20823,7 +20957,7 @@ }; 24E956857A25D64EBE7A89C2B15C277C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 564AC08059D7AA58D39DD0DF9EAAB6A9 /* UMAppLoader.xcconfig */; + baseConfigurationReference = 5683BF5F00D3AD794CFB35F8C653915D /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20849,7 +20983,7 @@ }; 26551564308AC8D658D695032AA5AE58 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B70F154A574728B8D4C1C0B9438FF4B3 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 41FC7D8A1386B7220C9D6CD996A9D6DF /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20875,7 +21009,7 @@ }; 269C7EC08CD9FB35EE6AF46DB2BAF924 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CB56EB5913B806DD6E096F58F4D9FF3 /* EXAV.xcconfig */; + baseConfigurationReference = 3FDF18BE60DB983D9CC91AC0B7E3FB99 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20902,7 +21036,7 @@ }; 26AE1A694F9D65DF074CD64665B2C058 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06B0D6A47C619AD6632A50690B027C2D /* UMCore.xcconfig */; + baseConfigurationReference = C96F181EF98997FE21D592A74A67F412 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20929,7 +21063,7 @@ }; 2703B7272D54F6883D4FB415677DB5D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 34390AC1C4436AA28EA4274C83B23674 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 433D8D0C7022405DB54D273A5D2D01CD /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20954,7 +21088,7 @@ }; 27BCC9CA860F306C015533FEE3107CCD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17D5A84F8747106DDCA033C31C5D274F /* RNRootView.xcconfig */; + baseConfigurationReference = EC9C75C8C697AAF606A60399EE240358 /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20980,7 +21114,7 @@ }; 28D56E215E53845903676C02E9E657A4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93FAB1745DC86F18A7B2CF702DE72503 /* React.xcconfig */; + baseConfigurationReference = A9F440F61A7A540D6C743513425E6070 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20995,7 +21129,7 @@ }; 2953790EFB1BD8A9E78C65D8FCEEACFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D5CC0DC1CF5E80A3E4FAD91A65678C96 /* EXConstants.xcconfig */; + baseConfigurationReference = DB5454C1FAFF496B3B2506A5CCFD9E69 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21022,7 +21156,7 @@ }; 2A5E7696D7993201DAD047C1A0D2C4E3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9838DD02C421D6A67A4DABE8E5BBD4DE /* RNBootSplash.xcconfig */; + baseConfigurationReference = 288A5207816312BA56B03B2711BDEF23 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21047,7 +21181,7 @@ }; 2AF938D92353FFD31BE3DB678B15377C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DED3C306036B86D6BAD40A6FC8471859 /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 072BE4DF7B3DC0B23063AB83D4F52F43 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21072,7 +21206,7 @@ }; 2B272C4CE6BEAA0B9E0AA72279542905 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C209D034DDFC1F6D088783677CACB505 /* React-Core.xcconfig */; + baseConfigurationReference = 1122716D821F5E98F684F6C17A79B568 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21097,7 +21231,7 @@ }; 2BE44409CF53F7716718039FCCF13617 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 65CB6926EE4164B88B485A0EB2C889B8 /* react-native-webview.xcconfig */; + baseConfigurationReference = B3EF9DC14FC5563E4DDBD96C08432EDA /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21163,7 +21297,7 @@ }; 324577209359925CC1ED71DD383014A2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9501CFD3C936BC73BFADBCEFE40AEB0A /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = BD8B0AE9639E7176108CECE5CA9A340C /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21193,7 +21327,7 @@ }; 335ABEB200F4DFB0F95C1E68123C8F5E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06B0D6A47C619AD6632A50690B027C2D /* UMCore.xcconfig */; + baseConfigurationReference = C96F181EF98997FE21D592A74A67F412 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21233,7 +21367,7 @@ }; 34F3BB3A9EA6790A534F9E5EF2254D12 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = A6085EF77FB9A7F1116F1851BD1AACDB /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21258,7 +21392,7 @@ }; 371989D182BF95DFA0EC5239D0C21ADD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0515A170A399D7811374BCD654EC21A /* RNReanimated.xcconfig */; + baseConfigurationReference = 670E38A691D7C5017C913049C87439DC /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21283,7 +21417,7 @@ }; 37E163221C1422D15853A75EC40F1ADE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F218E27E1059AFDA5D2F6B49784ED27 /* RNLocalize.xcconfig */; + baseConfigurationReference = D3CCC19F7FA3D7E88989C374AE66EAE9 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21334,7 +21468,7 @@ }; 3C6DE2ACA62B044A7E5C8C6941B307DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 08D8CE592E3E6D38A9ADF97B640DA0CB /* EXPermissions.xcconfig */; + baseConfigurationReference = 8DCCD7ED568883191E1AD19331D3D2DB /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21361,7 +21495,7 @@ }; 412737804873ADD8C2E2F340ABFF6718 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2BEA966F870B42067C20AF302F59BCAD /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 870B74D93D63ABE3FF6D58FD8AB6C1C1 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21386,7 +21520,7 @@ }; 42944898C766E1F58CF1D114D908DF7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = A6085EF77FB9A7F1116F1851BD1AACDB /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21404,7 +21538,7 @@ }; 455A8CE12E5E915C83AB73A3C62F3F68 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 34D25768B4EDCBE8AD32CF4F46796704 /* react-native-notifications.xcconfig */; + baseConfigurationReference = 5890F6284FF3A60CE3CFADC549951C33 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21455,7 +21589,7 @@ }; 499E8F90EC6439418D63F128B5D6DCD1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 759D90D1019D505AD70BE871F8950D2B /* ReactCommon.xcconfig */; + baseConfigurationReference = 2FBC1B863BDBA06A826657CB1B9544D6 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21481,7 +21615,7 @@ }; 4C88F3DB03A9D5244D6399F2531E7EFA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 43815A8525F773276C57D3783821EC68 /* RNFirebase.xcconfig */; + baseConfigurationReference = FA9A7BCC965E4412222BFD628ACC52C5 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21506,7 +21640,7 @@ }; 5021E076026902F8042B602ED2AB1FDD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED2B0EF803D68091C2A97BE33361B636 /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 2D78E1AB2CAABE25DB0CB1CD9AFC1ED2 /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21529,32 +21663,9 @@ }; name = Debug; }; - 50F939AB9E92DE79127D2B609B52C82D /* 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; - }; 521E903B734D3E2B9720D043ACC4F421 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 569B6F1D87183821E96F79C08CFAA86F /* RNAudio.xcconfig */; + baseConfigurationReference = 23E42333DCFA1C476A29DC9D8EF88F28 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21579,7 +21690,7 @@ }; 531DF162FE7827B65B86953D3626930F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = A6085EF77FB9A7F1116F1851BD1AACDB /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21621,7 +21732,7 @@ }; 5869D54D3A851396E2E6C856D06E7E60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48AAA8346CB5AF2DFBF2FAE3648FBE8B /* RNGestureHandler.xcconfig */; + baseConfigurationReference = EF5DFA0047DCFB89F0F9C6BC56DBFB18 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21661,7 +21772,7 @@ }; 596CD7959D539F7F649544D11CD4713F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6FE23694EA167907586135DDAE4DE7EC /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 614C632A125345307D7C19F68F26D2C3 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21687,7 +21798,7 @@ }; 5A8324EA210DF55F87E0DF91047C3A4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = A6085EF77FB9A7F1116F1851BD1AACDB /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21711,9 +21822,33 @@ }; name = Release; }; + 5BFEB40B16AB3828089DA012538449B7 /* 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; + }; 5C0B9265CAB0D9CD227A92F72C06CC20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F6CB564AE5D839003189C16F3289EEF1 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = A06761A7F4506AB0BBCEEE8415D74071 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21739,7 +21874,7 @@ }; 5DC883AB0B0414AD48BB3AB4F3269D66 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11C8A67A523D91820F05E1E75A938EB7 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = B3790D2C749F3BEB5460510FCCBF447E /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21755,7 +21890,7 @@ }; 5DDAA8C3F7FCC062776754B1F3B95D1E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F2A0626FD5854C9AB571E75A278FE003 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 54B60F0DE0518D91AF7A28A40AA23BF4 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21821,7 +21956,7 @@ }; 5E7869770EA6F89BE71AB5A82A8747EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB30A0C1F84B37E7A63836AD635BF79E /* React-cxxreact.xcconfig */; + baseConfigurationReference = EFB8F756FA964C31DEA83DBBD3765A29 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21846,7 +21981,7 @@ }; 60EC64E5B79C5F949116BD34130957D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 325E42DDCF9C6C3954ED8A465D38C362 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 90CC2265CE93E0224E5485B17D2FE529 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21872,7 +22007,7 @@ }; 6513D57E09C36B05CF916F7E8A662077 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 60EBB00780FF2A181C094F49615EB38C /* EXFileSystem.xcconfig */; + baseConfigurationReference = 6023C618CFE4FF97CD04AF8685E051D4 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21899,7 +22034,7 @@ }; 65177BF401CF3D4E9EAACC190BD37AC3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 43815A8525F773276C57D3783821EC68 /* RNFirebase.xcconfig */; + baseConfigurationReference = FA9A7BCC965E4412222BFD628ACC52C5 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21925,7 +22060,7 @@ }; 65EB1A7A5D1465B289935D8C2F1BBD30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4057007FFCC1F9167336EA33D4D3F28E /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 198EAA62B8F64DF0D48E66C6E43F8CDE /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21941,7 +22076,7 @@ }; 664E5CB9279DF965C75A308E4C19DE1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 65CB6926EE4164B88B485A0EB2C889B8 /* react-native-webview.xcconfig */; + baseConfigurationReference = B3EF9DC14FC5563E4DDBD96C08432EDA /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21966,7 +22101,7 @@ }; 66B5F5845EEB10E57A3A46D451238559 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F75A97E72944AAAD3BFFC5CCB7806BB7 /* React-RCTText.xcconfig */; + baseConfigurationReference = 1A821AB27C747D3E025FAC0AA6808FC2 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21991,7 +22126,7 @@ }; 677C55C5482A68F862361238F7F8E2D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05DE3B152B393181033A3529CEC2B6BE /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 6543F5BC0CC8D7366DA0145987DDED39 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22016,7 +22151,7 @@ }; 68862420C9D14D6D543E26A3029DA27D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F75A97E72944AAAD3BFFC5CCB7806BB7 /* React-RCTText.xcconfig */; + baseConfigurationReference = 1A821AB27C747D3E025FAC0AA6808FC2 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22068,7 +22203,7 @@ }; 69C2BA4F9009FED344405012652F51CA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05DE3B152B393181033A3529CEC2B6BE /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 6543F5BC0CC8D7366DA0145987DDED39 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22094,7 +22229,7 @@ }; 6A441642FC3FFE19200089E9B23E8FF7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0515A170A399D7811374BCD654EC21A /* RNReanimated.xcconfig */; + baseConfigurationReference = 670E38A691D7C5017C913049C87439DC /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22120,7 +22255,7 @@ }; 6BCF1CCFC9C90ED9DE69A10FDE40B529 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C28AD31F48DE2DABE75E803A84132594 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 66225A64B113B885CB93457885C99D2E /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22135,7 +22270,7 @@ }; 6CD41DE3D505BD5D9B21FBDE590087B3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4F59E818975B0DAF1677936CC7928F8 /* EXImageLoader.xcconfig */; + baseConfigurationReference = A2582CB0B2FC461BFE6ADC4CBF2E1F9C /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22162,7 +22297,7 @@ }; 6DB18DF4D7CB92ACF500AA4CB91574EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 189247C2BB52027FFA0C7C6710FE6764 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 542CBA029E6ED75F27E2435B3DC6DCF5 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22187,7 +22322,7 @@ }; 6DD833DF82AD945EAC590428925265F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D3CEA80B14F24C4D770A2E19D7204DB /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 6A419EAE6646DDE68BCC3B1A4DD9C1F5 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22210,29 +22345,6 @@ }; name = Debug; }; - 6EA917213D23C1837368DF0DE29007F7 /* 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; - }; 71633DFB8C995054BED7FB1F22EBD760 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = B05C43896E9F95B6A4756C24B12C8DBB /* SDWebImageWebPCoder.xcconfig */; @@ -22260,7 +22372,7 @@ }; 71909F570922582EB29779D954A7655F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A7BDFA4779468035CA517CC2B92B606 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 32A71A392990AA38DA83502C56103130 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22286,7 +22398,7 @@ }; 72925EA6EA996E5BDF5CFBC3D3F10109 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9501CFD3C936BC73BFADBCEFE40AEB0A /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = BD8B0AE9639E7176108CECE5CA9A340C /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22301,7 +22413,7 @@ }; 72C0F38FC6842701424DB20D290EE53C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 569B6F1D87183821E96F79C08CFAA86F /* RNAudio.xcconfig */; + baseConfigurationReference = 23E42333DCFA1C476A29DC9D8EF88F28 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22375,7 +22487,7 @@ }; 7452D595EDF76721ACCD09888C4300EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A7BDFA4779468035CA517CC2B92B606 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 32A71A392990AA38DA83502C56103130 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22400,7 +22512,7 @@ }; 745584283E329E8703A11278C5FD98AA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8F82E2568CD387AE71DA33BE9E526FA /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 9CBE9CC10DDA7BD6F80C4B15E26A0A04 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22423,9 +22535,34 @@ }; name = Debug; }; + 7517F9E40868037D9A09A37D9CF7879D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4897B093E0D46D5F4CFD99DC3EBE98E8 /* RNCAsyncStorage.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/RNCAsyncStorage/RNCAsyncStorage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNCAsyncStorage; + PRODUCT_NAME = RNCAsyncStorage; + 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; + }; 76100320E21D42374BB0F0BD2DD157C1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9584BF8B7116E9533B527075D84FC6E2 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = BA9EE239835BEBB1498B0C10EEE54131 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22438,9 +22575,32 @@ }; name = Debug; }; + 76CCA537A0E05F8F75F305F1E3DF9F36 /* 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; + }; 779B1B52B5C8BD4D67CE2B7E314D68A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5E6658E4489794B6871AB115234109D0 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = CF72BD4423453F95A443F02F30161D3D /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22465,7 +22625,7 @@ }; 79A0890C0FF0EE7CE7DDB7CF814436E7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D3CEA80B14F24C4D770A2E19D7204DB /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 6A419EAE6646DDE68BCC3B1A4DD9C1F5 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22491,7 +22651,7 @@ }; 79C72A59DBC7A8408A00437C32C7766C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2A41668B7A227780F09DE51D11387E2B /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = E1E5E0E7BB58C2CF3EC6CBFFF82C3498 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22532,7 +22692,7 @@ }; 7BC8ECF42B51502BDEC0C678012395A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54352B464F96C6F36A4E3BF21A0AAF4C /* React-RCTImage.xcconfig */; + baseConfigurationReference = F5B3D17FB8FFA0A2B941F4B27AFE4352 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22558,7 +22718,7 @@ }; 7ED2663CADBE5D8B55630D2A2DBE74FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EF106A6DD349A9D728B07E4FF7D0B6FC /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = F6805A2D652953069BF9CD5BAE3B9684 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22574,7 +22734,7 @@ }; 82E853AAD06F4C932AAEAEA9A8AE1EB4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D879E3AFB811F795F505E30DA3F55296 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 3468185C6A123C9B0B267B1785EB1175 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22597,9 +22757,33 @@ }; name = Debug; }; + 83A06C74521536CD34CFAAD899B29778 /* 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; + }; 83B8667023CCABE7930FECF4308F42C1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9838DD02C421D6A67A4DABE8E5BBD4DE /* RNBootSplash.xcconfig */; + baseConfigurationReference = 288A5207816312BA56B03B2711BDEF23 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22625,7 +22809,7 @@ }; 83D51B373BC655474060B7059374A055 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0CF4A6E68D0685DE586ED50622C61AB0 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 6963CE9D04E17D9D800781536E876D59 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22641,7 +22825,7 @@ }; 85F758BB2896EF75F72B6F2A77364175 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8381E2B75F16FCF9DAF41EE8E3433C8 /* EXHaptics.xcconfig */; + baseConfigurationReference = 04D0EE4DFCE7A182884E0B2303237CB8 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22693,7 +22877,7 @@ }; 88FCAFE7B06BCEC0AC4CA29D98C90803 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 325E42DDCF9C6C3954ED8A465D38C362 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 90CC2265CE93E0224E5485B17D2FE529 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22718,7 +22902,7 @@ }; 89944B7D12A48C902BF42ACDFC063D1F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2A41668B7A227780F09DE51D11387E2B /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = E1E5E0E7BB58C2CF3EC6CBFFF82C3498 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22769,7 +22953,7 @@ }; 911D20316B507B8E73EBD2ADE090E8EA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26F384A95B89DD4DEE81C0AF3AEA0503 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 31A45DE33FD3776BCE1655FB290D81D6 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22794,7 +22978,7 @@ }; 917A20C7C8D878581AC4A8285097017A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2DF80B83CB74EB8528D11F700867D9EC /* Yoga.xcconfig */; + baseConfigurationReference = 6FF675B67F064CC12B6573CA90ED3D3F /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22820,7 +23004,7 @@ }; 91B7B1EA6F476888FC9C4D7B4CF23675 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4546767F3188A259899C9560A580DFDE /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 65343CE5E18AC74ACF73D009DBBCB881 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22847,7 +23031,7 @@ }; 921CB93956632503338319DD71FF15A5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 42E629407F5F9986664769B85BDE758C /* RNFastImage.xcconfig */; + baseConfigurationReference = 0D63FA32B0624F29F46C66B41C5731CA /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22872,7 +23056,7 @@ }; 932715893B5D8A998947BDF948EDEA0F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0CF4A6E68D0685DE586ED50622C61AB0 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 6963CE9D04E17D9D800781536E876D59 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22887,7 +23071,7 @@ }; 9379E6366D9E11C636D1E54575E216EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D879E3AFB811F795F505E30DA3F55296 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 3468185C6A123C9B0B267B1785EB1175 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22913,7 +23097,7 @@ }; 94E3653223086209F995373532C8F7EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD1565950EC44B931A48C481E30CE33C /* React-jsi.xcconfig */; + baseConfigurationReference = 5470308F14447616497C1800B29BC25B /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22938,7 +23122,7 @@ }; 9798DF63F7267FE1AD56F263EADD5B6A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B07E156D4BC56BAF650BF430017ADA8 /* RNScreens.xcconfig */; + baseConfigurationReference = F3C50A681DC3AE3B5EBDF51981415082 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22963,7 +23147,7 @@ }; 98D1BE1C631327534141623ED69DFAB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 60EBB00780FF2A181C094F49615EB38C /* EXFileSystem.xcconfig */; + baseConfigurationReference = 6023C618CFE4FF97CD04AF8685E051D4 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22989,7 +23173,7 @@ }; 9A3174FDB1F4445ADEA8F35751AD8207 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 316CE9524A5CBC00F625F390AF349412 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 62829234738E6F5FFE3884757E2A1565 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23014,7 +23198,7 @@ }; 9B80322166315DE06CF92ECB3BE31E88 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15B1B18F7BCA23D317AEB00634D5E7E0 /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = 3B5290A65C40648D797A811AB24661CF /* react-native-keyboard-input.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23040,7 +23224,7 @@ }; 9CAE17F3AEAA92514573A6AFC28F58F8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4057007FFCC1F9167336EA33D4D3F28E /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 198EAA62B8F64DF0D48E66C6E43F8CDE /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23055,7 +23239,7 @@ }; 9D25004EDED3EA338107FA6F993E40BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 34390AC1C4436AA28EA4274C83B23674 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 433D8D0C7022405DB54D273A5D2D01CD /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23096,7 +23280,7 @@ }; 9D7C7C3A1425C18171275C2A383FA8CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54E5BFB8C428641CEB02F8AEB19B9EFF /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = F842088A50C96B15DA82622BB55C1A6B /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23121,7 +23305,7 @@ }; 9EACAE2DF1FB29D6CD5849750D0E945D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 42E629407F5F9986664769B85BDE758C /* RNFastImage.xcconfig */; + baseConfigurationReference = 0D63FA32B0624F29F46C66B41C5731CA /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23147,7 +23331,7 @@ }; 9F252DECF660AD99C57FE172DC3377CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B6F4AC2C5C639CD50BF159830CC8CFA /* KeyCommands.xcconfig */; + baseConfigurationReference = C0565B3F72A1E8A56C02E4C9CBFDD324 /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23172,7 +23356,7 @@ }; 9FF84870B7F6FDF9150FDD60E6D57C4F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2BEA966F870B42067C20AF302F59BCAD /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 870B74D93D63ABE3FF6D58FD8AB6C1C1 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23198,7 +23382,7 @@ }; A071A0C7DF65F1D9E326DD3CE2DE8C9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 759D90D1019D505AD70BE871F8950D2B /* ReactCommon.xcconfig */; + baseConfigurationReference = 2FBC1B863BDBA06A826657CB1B9544D6 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23223,7 +23407,7 @@ }; A0CE7427B29B950D5C3D9D14D5F0956F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11C8A67A523D91820F05E1E75A938EB7 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = B3790D2C749F3BEB5460510FCCBF447E /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23238,7 +23422,7 @@ }; A2194A79914B5CC215FA2FF1CF8CFCF8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26F384A95B89DD4DEE81C0AF3AEA0503 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 31A45DE33FD3776BCE1655FB290D81D6 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23264,7 +23448,7 @@ }; AA08A4CFB27E8D0764FB1F3E7659D277 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D65ED7023ED69D130708EF8FEC3925FA /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 4D29F42E1A369E44DBBA2DBBDF8F4E81 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23290,7 +23474,7 @@ }; AA3C608C1EFBFF6195298DABF3846DE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EF106A6DD349A9D728B07E4FF7D0B6FC /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = F6805A2D652953069BF9CD5BAE3B9684 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23305,7 +23489,7 @@ }; AC7D788F43301FFAEDED241C7A7099A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54352B464F96C6F36A4E3BF21A0AAF4C /* React-RCTImage.xcconfig */; + baseConfigurationReference = F5B3D17FB8FFA0A2B941F4B27AFE4352 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23330,7 +23514,7 @@ }; AEE4C1B4604FAAC1DEA8D5FF30CD56C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B70F154A574728B8D4C1C0B9438FF4B3 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 41FC7D8A1386B7220C9D6CD996A9D6DF /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23355,7 +23539,7 @@ }; B006F308D2A947732D25BF32E328BD7C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA744873B7F2AC32520D0FD4D5055112 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 4AD863146F6A048F2CB31FC7ECEB172B /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23445,7 +23629,7 @@ }; B1B7713286195D091EC5BC6F27BD5581 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E31A6B449E57AABC9237A24B247CB6A /* ReactNativeART.xcconfig */; + baseConfigurationReference = 92D37DCEA5F912CD83F2BF86201FBCB5 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23470,7 +23654,7 @@ }; B4E87D0668029199CD617DB2DDE97D86 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2615D87890C398C541274B84091F4118 /* react-native-slider.xcconfig */; + baseConfigurationReference = 2DF73263658389F8568E38761A19E8DF /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23521,7 +23705,7 @@ }; B74A66D1B4DB325F337289BC6923B612 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E37FA286A65A13B6EACE4F2949703FCF /* RCTRequired.xcconfig */; + baseConfigurationReference = 6A0081E92C4286A22421D3C0C73B0BA4 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23610,7 +23794,7 @@ }; B93AD636A7701AACBF5C0DEB8249D15D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5CA46DC3BAC8E34D065E5D96307C663 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = E951B711ABC5535548EA9722528C7042 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23636,7 +23820,7 @@ }; BD044681D243E0E09FBA04ACF21FA123 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B07E156D4BC56BAF650BF430017ADA8 /* RNScreens.xcconfig */; + baseConfigurationReference = F3C50A681DC3AE3B5EBDF51981415082 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23662,7 +23846,7 @@ }; BE55AFAEBDF9C2CF98BBE3D1136D8F7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CB56EB5913B806DD6E096F58F4D9FF3 /* EXAV.xcconfig */; + baseConfigurationReference = 3FDF18BE60DB983D9CC91AC0B7E3FB99 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23688,7 +23872,7 @@ }; BE5AE6E1F2B58CFF3217A86780F6336C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9584BF8B7116E9533B527075D84FC6E2 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = BA9EE239835BEBB1498B0C10EEE54131 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23704,7 +23888,7 @@ }; BF89345BE7A481AA4055FF310B7F3956 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F218E27E1059AFDA5D2F6B49784ED27 /* RNLocalize.xcconfig */; + baseConfigurationReference = D3CCC19F7FA3D7E88989C374AE66EAE9 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23730,7 +23914,7 @@ }; BFB2316A669B0D479BA6634A0904B083 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6178BBA9B9B9A78E0C232275C315D603 /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = CF7B9397D510EEF821D6E8FEB6FCCDD9 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23754,9 +23938,35 @@ }; name = Release; }; + C053CFC528E471BD26CB6977AFCEF3DB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4897B093E0D46D5F4CFD99DC3EBE98E8 /* RNCAsyncStorage.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/RNCAsyncStorage/RNCAsyncStorage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNCAsyncStorage; + PRODUCT_NAME = RNCAsyncStorage; + 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; + }; C128C18739AA9067D388429C13824733 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 390A59F129F705D241B9686AA66E2D7A /* FBLazyVector.xcconfig */; + baseConfigurationReference = 7E7D8C6F45F44A274AFAEBAADCD82DD4 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23771,7 +23981,7 @@ }; C1413F798E37FBF0F0B0CBF49398107C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D5CC0DC1CF5E80A3E4FAD91A65678C96 /* EXConstants.xcconfig */; + baseConfigurationReference = DB5454C1FAFF496B3B2506A5CCFD9E69 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23797,7 +24007,7 @@ }; C675F1101EC56FF48D0EAAF987511073 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6FE23694EA167907586135DDAE4DE7EC /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 614C632A125345307D7C19F68F26D2C3 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23822,7 +24032,7 @@ }; C67E686CB71286AEE8194B8F91695BD7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 929ADB4BD381ED2AA60F8FF8E7317730 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 721543AF1BC1CB9481E7631289E7E765 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23838,7 +24048,7 @@ }; C68F8BE3073459D980E297CA1951C3DB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6178BBA9B9B9A78E0C232275C315D603 /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = CF7B9397D510EEF821D6E8FEB6FCCDD9 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23863,7 +24073,7 @@ }; C9AD4422D1F772604AC286D0A6DF4189 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4A9777CADEB6A3788DB137532CF5E2C /* RNVectorIcons.xcconfig */; + baseConfigurationReference = DD6E449B1111312DD65DBA1BC6FFE345 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23889,7 +24099,7 @@ }; C9E113D47DEE6500FA656727AD637A71 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17D5A84F8747106DDCA033C31C5D274F /* RNRootView.xcconfig */; + baseConfigurationReference = EC9C75C8C697AAF606A60399EE240358 /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23914,7 +24124,7 @@ }; CBAC48129BCC71255BE1413BD06DFB43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8F82E2568CD387AE71DA33BE9E526FA /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 9CBE9CC10DDA7BD6F80C4B15E26A0A04 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23940,7 +24150,7 @@ }; CD26F4BEB83F26811BF1081A76FAA47F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4A9777CADEB6A3788DB137532CF5E2C /* RNVectorIcons.xcconfig */; + baseConfigurationReference = DD6E449B1111312DD65DBA1BC6FFE345 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23965,7 +24175,7 @@ }; D04F94085B40D8D4779EBFD0F4383CA8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C209D034DDFC1F6D088783677CACB505 /* React-Core.xcconfig */; + baseConfigurationReference = 1122716D821F5E98F684F6C17A79B568 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23991,7 +24201,7 @@ }; D17FDDE9E8075FCA5001DB700CFDC7EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 189247C2BB52027FFA0C7C6710FE6764 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 542CBA029E6ED75F27E2435B3DC6DCF5 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24069,33 +24279,9 @@ }; name = Debug; }; - D51837F5FE5634298F3FC6024F99F546 /* 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; - }; D59C3B7BE5D98BD3A70A5E5B073C631B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA744873B7F2AC32520D0FD4D5055112 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 4AD863146F6A048F2CB31FC7ECEB172B /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24163,7 +24349,7 @@ }; DB3E7A155C245721FC07D01632F0CFAB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8381E2B75F16FCF9DAF41EE8E3433C8 /* EXHaptics.xcconfig */; + baseConfigurationReference = 04D0EE4DFCE7A182884E0B2303237CB8 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24216,7 +24402,7 @@ }; DB9E714E74F88B6DD317822487883DBA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54E5BFB8C428641CEB02F8AEB19B9EFF /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = F842088A50C96B15DA82622BB55C1A6B /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24242,7 +24428,7 @@ }; DE4E0DAFF0236084703632955B393B89 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E37FA286A65A13B6EACE4F2949703FCF /* RCTRequired.xcconfig */; + baseConfigurationReference = 6A0081E92C4286A22421D3C0C73B0BA4 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24257,7 +24443,7 @@ }; DE8CEC7E031F3505797998B9F3C37A92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD1565950EC44B931A48C481E30CE33C /* React-jsi.xcconfig */; + baseConfigurationReference = 5470308F14447616497C1800B29BC25B /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24283,7 +24469,7 @@ }; DF099D9819C5D304192EBE7A7475E55A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15B1B18F7BCA23D317AEB00634D5E7E0 /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = 3B5290A65C40648D797A811AB24661CF /* react-native-keyboard-input.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24308,7 +24494,7 @@ }; DFF7D8C851FEE03E5A02EAC5E945D35F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 929ADB4BD381ED2AA60F8FF8E7317730 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 721543AF1BC1CB9481E7631289E7E765 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24323,7 +24509,7 @@ }; E232728C3141A337EE441B8D93B20DAC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5FF709631B88B27D8DC8102633CDC321 /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = 3CE8DB135BD84815A56BD056D34BD742 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24350,7 +24536,7 @@ }; E38047BBE4979D9C53D6D7FEA4422373 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C28AD31F48DE2DABE75E803A84132594 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 66225A64B113B885CB93457885C99D2E /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24391,7 +24577,7 @@ }; E651B8F553C5C42CD9C5F0480D01A3A2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2615D87890C398C541274B84091F4118 /* react-native-slider.xcconfig */; + baseConfigurationReference = 2DF73263658389F8568E38761A19E8DF /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24416,7 +24602,7 @@ }; E7C01DC159749822F32A915919D90ECF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DED3C306036B86D6BAD40A6FC8471859 /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 072BE4DF7B3DC0B23063AB83D4F52F43 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24442,7 +24628,7 @@ }; EAD69AF5DEF01031F1B45B5E1FB65899 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F6CB564AE5D839003189C16F3289EEF1 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = A06761A7F4506AB0BBCEEE8415D74071 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24467,7 +24653,7 @@ }; EB43E6D3164DBC292ECD433D4903DA88 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5FF709631B88B27D8DC8102633CDC321 /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = 3CE8DB135BD84815A56BD056D34BD742 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24493,7 +24679,7 @@ }; EB9D4FF27A66AB5460886EA1D7F6EF2D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F85392B2599302F91F4B0D19284BA676 /* react-native-video.xcconfig */; + baseConfigurationReference = 79AE51DE109D3E965D8E3B7F09CE3EDE /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24518,7 +24704,7 @@ }; EF0788D08C339FE1FB8A20A21A46A640 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5CA46DC3BAC8E34D065E5D96307C663 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = E951B711ABC5535548EA9722528C7042 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24543,7 +24729,7 @@ }; EFF46113088B01826DDB9EE5A92D5CDF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 316CE9524A5CBC00F625F390AF349412 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 62829234738E6F5FFE3884757E2A1565 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24569,7 +24755,7 @@ }; F16023777DD0FF55E40F3B59623B664D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4F59E818975B0DAF1677936CC7928F8 /* EXImageLoader.xcconfig */; + baseConfigurationReference = A2582CB0B2FC461BFE6ADC4CBF2E1F9C /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24620,7 +24806,7 @@ }; F4BB0B9A68137AA0D4D3ED480DBFFA5A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48AAA8346CB5AF2DFBF2FAE3648FBE8B /* RNGestureHandler.xcconfig */; + baseConfigurationReference = EF5DFA0047DCFB89F0F9C6BC56DBFB18 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24645,7 +24831,7 @@ }; F5413AE83955B591D3DA4DC3663AFCB5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E31A6B449E57AABC9237A24B247CB6A /* ReactNativeART.xcconfig */; + baseConfigurationReference = 92D37DCEA5F912CD83F2BF86201FBCB5 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24671,7 +24857,7 @@ }; F648CF6CEC8C69D7950C96E36109B383 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4546767F3188A259899C9560A580DFDE /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 65343CE5E18AC74ACF73D009DBBCB881 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24737,7 +24923,7 @@ }; FBFFAAAD143D5203AF55B1DFDE1C9F19 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F85392B2599302F91F4B0D19284BA676 /* react-native-video.xcconfig */; + baseConfigurationReference = 79AE51DE109D3E965D8E3B7F09CE3EDE /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24763,7 +24949,7 @@ }; FC71C31E2668416B9072953D27DC64CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E866CECE6F9A3676B266DA1070DF8A37 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 76F17F993FDA2F75B204D361ED77A590 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24815,7 +25001,7 @@ }; FF9F97A496BA9B674F13E18785C6F22B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2DF80B83CB74EB8528D11F700867D9EC /* Yoga.xcconfig */; + baseConfigurationReference = 6FF675B67F064CC12B6573CA90ED3D3F /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24976,15 +25162,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 24CFDE8E6B59E85841835E4459C1B21E /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6EA917213D23C1837368DF0DE29007F7 /* Debug */, - 1BA15885B9AD13582E65019E666D898E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 272C318C3C138518DD0B0FB5BF575E70 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25300,6 +25477,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 7F50F656497F5867807834E58136CBF7 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 09C9A9A9E19D49E557253EB749A8BA3C /* Debug */, + 83A06C74521536CD34CFAAD899B29778 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 81FB9040311F79957A4B9AD8B61E2804 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25471,15 +25657,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B12B60C654B48E714ED50F40AA8255AC /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 50F939AB9E92DE79127D2B609B52C82D /* Debug */, - D51837F5FE5634298F3FC6024F99F546 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; B16590D3A26F524C4A34D5B9050B819E /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25615,6 +25792,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + DA65A19A3D351A6E7706F6E95BA49374 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 76CCA537A0E05F8F75F305F1E3DF9F36 /* Debug */, + 5BFEB40B16AB3828089DA012538449B7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; DA7E050CE24ECA79D5DF0933A3978EAA /* Build configuration list for PBXNativeTarget "React-RCTActionSheet" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25687,6 +25873,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + E755D7171EE28A0BD3F13C7FB6B31334 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7517F9E40868037D9A09A37D9CF7879D /* Debug */, + C053CFC528E471BD26CB6977AFCEF3DB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; ED4A26BFADE81FBE92EA4F7647C8409C /* Build configuration list for PBXNativeTarget "React-jsi" */ = { 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 75d698db6..a1b80289f 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 @@ -2424,6 +2424,30 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## RNCAsyncStorage + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +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. + ## RNDateTimePicker MIT License diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist index 96456cccb..d351e361d 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 @@ -2559,6 +2559,36 @@ SOFTWARE. FooterText MIT License +Copyright (c) 2015-present, Facebook, Inc. + +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 + RNCAsyncStorage + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2019 React Native Community Permission is hereby granted, free of charge, to any person obtaining a copy 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 920a84c42..07a3abde2 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/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${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/FirebaseInstallations" "${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/PromisesObjC" "${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/UMAppLoader" "${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_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(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/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${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/FirebaseInstallations" "${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/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${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/UMAppLoader" "${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_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(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}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${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}/FirebaseInstallations" "${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}/PromisesObjC" "${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}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${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"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -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"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -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}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${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}/FirebaseInstallations" "${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}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${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}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${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"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -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"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -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" 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 920a84c42..07a3abde2 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/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${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/FirebaseInstallations" "${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/PromisesObjC" "${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/UMAppLoader" "${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_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(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/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${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/FirebaseInstallations" "${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/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${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/UMAppLoader" "${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_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(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}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${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}/FirebaseInstallations" "${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}/PromisesObjC" "${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}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${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"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -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"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -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}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${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}/FirebaseInstallations" "${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}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${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}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${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"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -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"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -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" 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 75d698db6..a1b80289f 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 @@ -2424,6 +2424,30 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## RNCAsyncStorage + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +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. + ## RNDateTimePicker MIT License diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist index 96456cccb..d351e361d 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 @@ -2559,6 +2559,36 @@ SOFTWARE. FooterText MIT License +Copyright (c) 2015-present, Facebook, Inc. + +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 + RNCAsyncStorage + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2019 React Native Community Permission is hereby granted, free of charge, to any person obtaining a copy 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 7a55f56ef..cbf519b83 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/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${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/FirebaseInstallations" "${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/PromisesObjC" "${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/UMAppLoader" "${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_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(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/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${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/FirebaseInstallations" "${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/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${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/UMAppLoader" "${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_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(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}/FirebaseInstallations" "${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}/PromisesObjC" "${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"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -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}/FirebaseInstallations" "${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}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${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"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -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" 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 7a55f56ef..cbf519b83 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/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${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/FirebaseInstallations" "${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/PromisesObjC" "${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/UMAppLoader" "${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_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(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/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${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/FirebaseInstallations" "${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/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${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/UMAppLoader" "${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_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(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}/FirebaseInstallations" "${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}/PromisesObjC" "${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"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -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}/FirebaseInstallations" "${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}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${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"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -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" 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/RNCAsyncStorage/RNCAsyncStorage-dummy.m b/ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage-dummy.m new file mode 100644 index 000000000..f9295b81b --- /dev/null +++ b/ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RNCAsyncStorage : NSObject +@end +@implementation PodsDummy_RNCAsyncStorage +@end diff --git a/ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage-prefix.pch b/ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage.xcconfig b/ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage.xcconfig new file mode 100644 index 000000000..2d82b0a09 --- /dev/null +++ b/ios/Pods/Target Support Files/RNCAsyncStorage/RNCAsyncStorage.xcconfig @@ -0,0 +1,11 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${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_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-community/async-storage +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 c2e7ffc6b..ece2f8918 100644 --- a/package.json +++ b/package.json @@ -23,8 +23,10 @@ } }, "dependencies": { + "@haskkor/react-native-pincode": "^1.22.2", "@nozbe/watermelondb": "^0.16.0-9", "@react-native-community/art": "^1.0.4", + "@react-native-community/async-storage": "^1.9.0", "@react-native-community/cameraroll": "^1.3.0", "@react-native-community/datetimepicker": "^2.1.0", "@react-native-community/slider": "2.0.5", diff --git a/yarn.lock b/yarn.lock index 024bdda79..914abfe31 100644 --- a/yarn.lock +++ b/yarn.lock @@ -830,6 +830,13 @@ dependencies: regenerator-runtime "^0.12.0" +"@babel/runtime@^7.2.0", "@babel/runtime@^7.7.2": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" + integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== + dependencies: + regenerator-runtime "^0.13.4" + "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.3", "@babel/runtime@^7.4.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.5.5.tgz#74fba56d35efbeca444091c7850ccd494fd2f132" @@ -858,13 +865,6 @@ dependencies: regenerator-runtime "^0.13.2" -"@babel/runtime@^7.7.2": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" - integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== - dependencies: - regenerator-runtime "^0.13.4" - "@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2": version "7.2.2" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907" @@ -1237,6 +1237,20 @@ dependencies: "@hapi/hoek" "8.x.x" +"@haskkor/react-native-pincode@^1.22.2": + version "1.22.2" + resolved "https://registry.yarnpkg.com/@haskkor/react-native-pincode/-/react-native-pincode-1.22.2.tgz#fd201708a025549db93b0a760164cfb7122e1281" + integrity sha512-sti/SX2YlHkcsO0i+fmYFF8iGlmKqMEuIEJK2vBqkahLxPBLyYSBnM9/LIHOeZaojtjQqiEJ/C9YYJp9xDSMuw== + dependencies: + "@react-native-community/async-storage" "^1.7.1" + d3-ease "^1.0.3" + lodash "^4.17.5" + react-move "^2.7.0" + react-native-easy-grid "^0.2.2" + react-native-keychain "^5.0.1" + react-native-touch-id "^4.4.1" + react-native-vector-icons "^6.6.0" + "@jest/console@^24.7.1": version "24.7.1" resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" @@ -1741,6 +1755,13 @@ invariant "^2.2.4" prop-types "^15.7.2" +"@react-native-community/async-storage@^1.7.1", "@react-native-community/async-storage@^1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/async-storage/-/async-storage-1.9.0.tgz#af26a8879bd2987970fbbe81a9623851d29a56f1" + integrity sha512-TlGMr02JcmY4huH1P7Mt7p6wJecosPpW+09+CwCFLn875IhpRqU2XiVA+BQppZOYfQdHUfUzIKyCBeXOlCEbEg== + dependencies: + deep-assign "^3.0.0" + "@react-native-community/cameraroll@^1.3.0": version "1.3.0" resolved "https://registry.yarnpkg.com/@react-native-community/cameraroll/-/cameraroll-1.3.0.tgz#a340334440f4d08280da839130ef51c931b07483" @@ -3964,6 +3985,28 @@ currently-unhandled@^0.4.1: dependencies: array-find-index "^1.0.1" +d3-color@1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-1.4.0.tgz#89c45a995ed773b13314f06460df26d60ba0ecaf" + integrity sha512-TzNPeJy2+iEepfiL92LAAB7fvnp/dV2YwANPVHdDWmYMm23qIJBYww3qT8I8C1wXrmrg4UWs7BKc2tKIgyjzHg== + +d3-ease@^1.0.3: + version "1.0.6" + resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.6.tgz#ebdb6da22dfac0a22222f2d4da06f66c416a0ec0" + integrity sha512-SZ/lVU7LRXafqp7XtIcBdxnWl8yyLpgOmzAk0mWBI9gXNzLDx5ybZgnRbH9dN/yY5tzVBqCQ9avltSnqVwessQ== + +d3-interpolate@^1.3.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.4.0.tgz#526e79e2d80daa383f9e0c1c1c7dcc0f0583e987" + integrity sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA== + dependencies: + d3-color "1" + +d3-timer@^1.0.9: + version "1.0.10" + resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.10.tgz#dfe76b8a91748831b13b6d9c793ffbd508dd9de5" + integrity sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw== + damerau-levenshtein@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" @@ -4040,6 +4083,13 @@ decode-uri-component@^0.2.0: resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= +deep-assign@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-3.0.0.tgz#c8e4c4d401cba25550a2f0f486a2e75bc5f219a2" + integrity sha512-YX2i9XjJ7h5q/aQ/IM9PEwEnDqETAIYbggmdDB3HLTlSgo1CxPsj6pvhPG68rq6SVE0+p+6Ywsm5fTYNrYtBWw== + dependencies: + is-obj "^1.0.0" + deep-equal@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" @@ -9850,6 +9900,17 @@ react-lifecycles-compat@^3.0.2, react-lifecycles-compat@^3.0.4: resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== +react-move@^2.7.0: + version "2.9.1" + resolved "https://registry.yarnpkg.com/react-move/-/react-move-2.9.1.tgz#966a1e7312795b03aa6b4834f9392a3bfbbe2ca0" + integrity sha512-5qKYsJrKKpSypEaaYyR2HBbBgX65htRqKDa8o5OGDkq2VfklmTCbLawtYFpdmcJRqbz4jCYpzo2Rrsazq9HA8Q== + dependencies: + "@babel/runtime" "^7.2.0" + d3-interpolate "^1.3.2" + d3-timer "^1.0.9" + prop-types "^15.6.2" + react-lifecycles-compat "^3.0.4" + react-native-action-sheet@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/react-native-action-sheet/-/react-native-action-sheet-2.2.0.tgz#309a87f53bf4e7b17fdd9d24b10b8dcbaebb7230" @@ -9903,6 +9964,13 @@ react-native-document-picker@^3.2.4: resolved "https://registry.yarnpkg.com/react-native-document-picker/-/react-native-document-picker-3.2.4.tgz#8e1801ba9b81f42f928e8e5e519c3d8e1320cfab" integrity sha512-5l0/fkgasUZdIk9jUUkReDtNCQn2yg1+BrMPHMt45c/NVmE15ThnhIuDj8/n8h1F1RlhUb3SzF86ANK4OdZAiQ== +react-native-easy-grid@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/react-native-easy-grid/-/react-native-easy-grid-0.2.2.tgz#f0be33620be1ebe2d2295918eb58b0a27e8272ab" + integrity sha512-MlYrNIldnEMKn6TVatQN1P64GoVlwGIuz+8ncdfJ0Wq/xtzUkQwlil8Uksyp7MhKfENE09MQnGNcba6Mx3oSAA== + dependencies: + lodash "^4.17.15" + react-native-easy-toast@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/react-native-easy-toast/-/react-native-easy-toast-1.2.0.tgz#0f70bcb99e3306cda4800c244bfb4a67d42276ed" @@ -9986,6 +10054,11 @@ react-native-keyboard-tracking-view@^5.5.0, react-native-keyboard-tracking-view@ 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-keychain@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/react-native-keychain/-/react-native-keychain-5.0.1.tgz#2751de436f017c87b8aabb32533bee88657d643e" + integrity sha512-CLIPNexPBufPpNqgF7/smZNAiv6x0SCsztfEi/hWPCQ7yHxNwdRUyUzOLGrw1lPe/6fQE+TC3iS1+cbDTaRJag== + react-native-keycommands@2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/react-native-keycommands/-/react-native-keycommands-2.0.3.tgz#09b799c1f70832e5cd9fbdb712ddaa3ee683f70e" @@ -10126,6 +10199,11 @@ react-native-tab-view@^1.2.0: dependencies: prop-types "^15.6.1" +react-native-touch-id@^4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/react-native-touch-id/-/react-native-touch-id-4.4.1.tgz#8b1bb2d04c30bac36bb9696d2d723e719c4a8b08" + integrity sha512-1jTl8fC+0fxvqegy/XXTyo6vMvPhjzkoDdaqoYZx0OH8AT250NuXnNPyKktvigIcys3+2acciqOeaCall7lrvg== + react-native-unimodules@^0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/react-native-unimodules/-/react-native-unimodules-0.9.0.tgz#5ce642ac50d124b9d41c09ff7cb397e22f1110ea" @@ -10151,7 +10229,7 @@ react-native-unimodules@^0.9.0: unimodules-sensors-interface "~5.1.0" unimodules-task-manager-interface "~5.1.0" -react-native-vector-icons@6.6.0: +react-native-vector-icons@6.6.0, react-native-vector-icons@^6.6.0: version "6.6.0" resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-6.6.0.tgz#66cf004918eb05d90778d64bd42077c1800d481b" integrity sha512-MImKVx8JEvVVBnaShMr7/yTX4Y062JZMupht1T+IEgbqBj4aQeQ1z2SH4VHWKNtWtppk4kz9gYyUiMWqx6tNSw==